DBA Data[Home] [Help]

APPS.CSTPACDP dependencies on RCV_PARAMETERS

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

5137:
5138: -- Initialize
5139: l_stmt_num := 10;
5140:
5141: -- Get the retro price update account from RCV_PARAMETERS
5142: select nvl(retroprice_adj_account_id,-1)
5143: into l_retro_acct_id
5144: from rcv_parameters
5145: where organization_id = i_org_id;

Line 5144: from rcv_parameters

5140:
5141: -- Get the retro price update account from RCV_PARAMETERS
5142: select nvl(retroprice_adj_account_id,-1)
5143: into l_retro_acct_id
5144: from rcv_parameters
5145: where organization_id = i_org_id;
5146:
5147: if (l_retro_acct_id = -1) then
5148: l_err_num := SQLCODE;

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

5146:
5147: if (l_retro_acct_id = -1) then
5148: l_err_num := SQLCODE;
5149: l_err_msg := 'CSTPACDP.consigned_update_cost_txn (10): '||
5150: 'RCV_PARAMETERS.RETROOPRICE_ADJ_ACCOUNT_ID must not be NULL';
5151: raise process_error;
5152: end if;
5153:
5154: l_stmt_num := 20;