统计oracle APPS中的发票数量
我想要一个查询来显示最近一个月在 AR 模块中使用特定界面创建了多少张发票。除了 ar、ap 、gl 之外,我们没有使用任何其他模块。我们的所有发票仅通过接口生成。请告诉我可以找到使用特定接口在 AR 模块中创建的所有发票的表。
i want a query to display how many invoices are created using a particular interface for the last one month in AR module. we are not using any other module except ar,ap ,gl.All our invoices are generated through interface only.Please tell me the table which i can find all the invoices created in AR module using a particular Interface.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这对我来说听起来很简单,但我没有很多 AR 经验。
选择计数(*)
从
AP_INVOICES_ALL
在哪里
创建日期>系统日期 - 30
和 SOURCE = '&来源'
;
This sounds simple to me but I don't have a lot of AR experience.
select count(*)
from
AP_INVOICES_ALL
where
CREATION_DATE > SYSDATE - 30
and SOURCE = '&source'
;