DBA Data[Home] [Help]

APPS.JAI_AP_MATCH_TAX_PKG dependencies on GL_CODE_COMBINATIONS

Line 16: FROM gl_code_combinations

12: RETURN VARCHAR2
13: IS
14: CURSOR get_account_type IS
15: SELECT account_type
16: FROM gl_code_combinations
17: WHERE code_combination_id = cp_code_combination_id ;
18:
19: lv_account_type gl_code_combinations.account_type%TYPE;
20: BEGIN

Line 19: lv_account_type gl_code_combinations.account_type%TYPE;

15: SELECT account_type
16: FROM gl_code_combinations
17: WHERE code_combination_id = cp_code_combination_id ;
18:
19: lv_account_type gl_code_combinations.account_type%TYPE;
20: BEGIN
21: OPEN get_account_type;
22: FETCH get_account_type INTO lv_account_type;
23: CLOSE get_account_type;

Line 984: lv_account_type gl_code_combinations.account_type%TYPE;

980: /* End 5763527 */
981:
982:
983: -- Bug 5401111. Added by Lakshmi Gopalsami
984: lv_account_type gl_code_combinations.account_type%TYPE;
985:
986: /* Service Tax */
987: cursor c_rcv_transactions(p_transaction_id number) is
988: select po_line_id, organization_id

Line 5992: lv_account_type gl_code_combinations.account_type%TYPE;

5988: v_apportn_factor_for_item_line number;
5989: v_dist_code_combination_id ap_invoice_distributions_all.dist_code_combination_id%type;--bug#367196
5990:
5991: -- Bug 5401111. Added by Lakshmi Gopalsami
5992: lv_account_type gl_code_combinations.account_type%TYPE;
5993:
5994: /* 5763527 */
5995: ln_project_id ap_invoice_distributions_all.project_id%TYPE;
5996: ln_task_id ap_invoice_distributions_all.task_id%TYPE;