|
|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。如果您注册时有任何问题请联系客服QQ: 83569622 。
您需要 登录 才可以下载或查看,没有帐号?注册
x
应收模块的杂项会计分录表结构
请问有谁做过应收模块的杂项会计分录表结构,我看了TRM还是不知道怎么关联。
select gs.period_name
from gl_period_statuses gs
,ar_cash_receipt_history_all acrha
where gs.start_date <= acrha.gl_date
and gs.end_date >= acrha.gl_date
and acrha.cash_receipt_id =
acra.cash_receipt_id
and rownum = 1) period_name --»á¼ÆÇø¼ä
--end by xwy 2009-05-07
,acra.set_of_books_id set_of_books_id --sob
from ar_cash_receipts_all acra
-- ,ar_distributions_all ada
,ar_misc_cash_distributions_all amc --,ar_distributions_all ada
where acra.cash_receipt_id = amc.cash_receipt_id
-- and ada.source_id = amc.cash_receipt_id
and acra.type = 'MISC' --ÐÐÀàÐÍΪÏÖ½ð
-- and ada.source_type = 'CASH'
-- and acra.status not in ('STOP', 'REV', 'UNID')
and acra.attribute1 is not null
请问这样那里错了。 |
|