DBA Data[Home] [Help]

APPS.JL_BR_AR_GENERATE_DEBIT_MEMO dependencies on RA_ACCOUNT_DEFAULT_SEGMENTS

Line 55: FROM ra_account_default_segments

51: /* Select the segment number, table name and constant to get the account */
52:
53: CURSOR c1 IS
54: SELECT segment, table_name, constant
55: FROM ra_account_default_segments
56: WHERE gl_default_id = X_gl_default_id;
57:
58: BEGIN
59: X_first_time := TRUE;

Line 62: /* Get the id to access RA_ACCOUNT_DEFAULT_SEGMENTS table */

58: BEGIN
59: X_first_time := TRUE;
60: x_dyn_insert := 'N';
61:
62: /* Get the id to access RA_ACCOUNT_DEFAULT_SEGMENTS table */
63:
64: SELECT gl_default_id
65: INTO X_gl_default_id
66: FROM ra_account_defaults

Line 73: FROM ra_account_default_segments

69: /* Get number of segments to the transaction type */
70:
71: SELECT count(*)
72: INTO X_counter
73: FROM ra_account_default_segments
74: WHERE gl_default_id = X_gl_default_id;
75:
76: /* Get the account id to the Revene and Receivables tables
77: RA_CUST_TRX_TYPES e RA_SALESREPS AR_MEMO_LINES*/