DBA Data[Home] [Help]

APPS.CSP_PC_FORM_MTLTXNS dependencies on FND_PROFILE_OPTION_VALUES

Line 980: from fnd_profile_option_values

976: where profile_option_name = 'CSP_INTRANSIT_SUBINVENTORY';
977:
978: -- retrieve the csp intransit subinventory
979: select profile_option_value into l_csp_intransit_subinventory
980: from fnd_profile_option_values
981: where profile_option_id = l_profile_option_id;
982:
983: -- check whether the intransit subinventory exists in the organization
984: select organization_id into l_check_existence

Line 1000: fnd_message.set_token('TABLE', 'fnd_profile_option_values', TRUE);

996: WHEN OTHERS THEN
997: fnd_message.set_name('CSP', 'CSP_UNEXPECTED_ERRORS');
998: fnd_message.set_token('ERR_FIELD', 'profile_option_value', TRUE);
999: fnd_message.set_token('ROUTINE', l_api_name, TRUE);
1000: fnd_message.set_token('TABLE', 'fnd_profile_option_values', TRUE);
1001: FND_MSG_PUB.ADD;
1002: RAISE EXCP_USER_DEFINED;
1003: END;
1004: