DBA Data[Home] [Help]

APPS.CS_INVENTORY_TXNS dependencies on FND_PROFILE

Line 42: FND_Profile.Value_Specific('CS_FIELD_SERVICE_ORGANIZATION');

38:
39: BEGIN
40:
41: p_mfg_org_id :=
42: FND_Profile.Value_Specific('CS_FIELD_SERVICE_ORGANIZATION');
43:
44: IF (NVL(p_mfg_org_id,0) = 0) THEN
45: p_error_flag := 'Y';
46: p_error_profile := 'CS_FIELD_SERVICE_ORGANIZATION';

Line 53: FND_Profile.Value_Specific('CS_FIELD_SERVICE_TRANSACTION_TYPE');

49:
50: /* Get Transaction Type profile. If it is not set, error out **/
51:
52: p_transaction_type :=
53: FND_Profile.Value_Specific('CS_FIELD_SERVICE_TRANSACTION_TYPE');
54: IF (NVL(p_transaction_type,0) = 0) THEN
55: p_error_flag := 'Y';
56: p_error_profile := 'CS_FIELD_SERVICE_TRANSACTION_TYPE';
57: return;

Line 68: WHERE transaction_type_id = to_number(fnd_profile.value_specific('CS_FIELD_SERVICE_TRANSACTION_TYPE'));

64:
65: SELECT transaction_action_id
66: INTO p_transaction_action_id
67: FROM mtl_transaction_types
68: WHERE transaction_type_id = to_number(fnd_profile.value_specific('CS_FIELD_SERVICE_TRANSACTION_TYPE'));
69:
70: IF p_transaction_action_id <> 1 THEN
71: p_error_flag := 'Y';
72: return;

Line 75: p_service_item_flex_code := FND_PROFILE.Value('SERVICE_ITEM_FLEX_CODE');

71: p_error_flag := 'Y';
72: return;
73: END IF;
74:
75: p_service_item_flex_code := FND_PROFILE.Value('SERVICE_ITEM_FLEX_CODE');
76:
77: /* Get Profile value of subinventory. If it exists,
78: copy it as default value
79: to the transactions block and set the corresponding

Line 84: FND_Profile.Value_Specific('CS_FIELD_SERVICE_SUBINVENTORY');

80: locator properties. **/
81:
82: IF (p_Subinventory_Code IS NULL) THEN
83: p_subinventory_Code :=
84: FND_Profile.Value_Specific('CS_FIELD_SERVICE_SUBINVENTORY');
85: END IF;
86:
87: p_error_flag := 'N';
88: