2014-06-04 Created By BaoXinjian

AP_费用报表报销基本操作(流程)一、汇总


(1). 建立Expense Report

(2). 触发工作流-请主管签合OIE_REQ_EXPENSE_REPORT_APPRVL

(3). 触发工作流-通知申请人已签

(4). 审批结束后对Expense Report Audit

(5). 通过CP<Expense Report Export>产生Invoice

(6). 产生Invoice

 

AP_费用报表报销基本操作(流程)二、基本操作


1. 建立Expense Report

    AP_费用报表报销基本操作(流程)

    select * from apps.ap_expense_report_headers_all

    where report_header_id = 42016

 

    select * from apps.ap_expense_report_lines_all

    where report_header_id = 42016

 

    select * from ap_exp_report_dists_all

    where report_header_id = 42016

 

2 触发工作流-请主管签合OIE_REQ_EXPENSE_REPORT_APPRVL

    AP_费用报表报销基本操作(流程)

    select * from wf_notifications
    where message_type = 'APEXP'

    and message_name = 'OIE_AME_EXPENSE_REPORT_APPRVL'
    and from_role = 'OPERATIONS'

    and begin_date > TRUNC (SYSDATE)

 

    select * from applsys.wf_item_attribute_values val

    where val.item_key = '33593-1'

 

3. 触发工作流-通知申请人已签

    AP_费用报表报销基本操作(流程)

    select * from wf_notifications
    where message_type = 'APEXP'
    and message_name = 'OIE_EXP_REPORT_MGR_APPROVED'
    and from_role = 'CBROWN'
    and begin_date > TRUNC (SYSDATE)

 

4. 审批结束后对Expense Report Audit

    AP_费用报表报销基本操作(流程)

 

5. 通过CP<Expense Report Export>产生Invoice

    AP_费用报表报销基本操作(流程)
    a. expense_status_code not in ('ERROR', 'PEND_HOLDS_CLEARANCE', 'HOLD_PENDING_RECEIPTS')

    b. soure in (CREDIT CARD, Both Pay, SelfService)

 

6. 产生Invoice

     AP_费用报表报销基本操作(流程)

    select * from ap_invoices_all

    where invoice_num ='42016'

 

    select * from ap_invoice_lines_all

    where invoice_id = 457112

 

Thanks and Regards

AP_费用报表报销基本操作(流程)

 

相关文章:

  • 2022-01-23
  • 2022-12-23
  • 2021-08-05
  • 2022-12-23
  • 2022-02-02
  • 2022-01-17
  • 2022-01-16
  • 2021-05-16
猜你喜欢
  • 2022-02-14
  • 2021-09-01
  • 2021-09-17
  • 2021-07-07
  • 2021-06-12
  • 2021-05-22
  • 2022-12-23
相关资源
相似解决方案