DBA Data[Home] [Help]

APPS.CSTPACDP dependencies on RCV_PARAMETERS

Line 5049: -- Get the retro price update account from RCV_PARAMETERS

5045:
5046: -- Initialize
5047: l_stmt_num := 10;
5048:
5049: -- Get the retro price update account from RCV_PARAMETERS
5050: select nvl(retroprice_adj_account_id,-1)
5051: into l_retro_acct_id
5052: from rcv_parameters
5053: where organization_id = i_org_id;

Line 5052: from rcv_parameters

5048:
5049: -- Get the retro price update account from RCV_PARAMETERS
5050: select nvl(retroprice_adj_account_id,-1)
5051: into l_retro_acct_id
5052: from rcv_parameters
5053: where organization_id = i_org_id;
5054:
5055: if (l_retro_acct_id = -1) then
5056: l_err_num := SQLCODE;

Line 5058: 'RCV_PARAMETERS.RETROOPRICE_ADJ_ACCOUNT_ID must not be NULL';

5054:
5055: if (l_retro_acct_id = -1) then
5056: l_err_num := SQLCODE;
5057: l_err_msg := 'CSTPACDP.consigned_update_cost_txn (10): '||
5058: 'RCV_PARAMETERS.RETROOPRICE_ADJ_ACCOUNT_ID must not be NULL';
5059: raise process_error;
5060: end if;
5061:
5062: l_stmt_num := 20;