DBA Data[Home] [Help]

APPS.AR_RAAPI_UTIL dependencies on OE_PROFILE

Line 58: oe_profile.get('SO_ORGANIZATION_ID',g_inv_org_id);

54:
55: /* 5126974 - this was raising an error if MOAC not init'd
56: so I moved it to inv_org_id function where it initializes
57: on the first call
58: oe_profile.get('SO_ORGANIZATION_ID',g_inv_org_id);
59: */
60:
61: OPEN c_get_category_set;
62: FETCH c_get_category_set INTO g_category_set_id, g_category_structure_id;

Line 901: oe_profile.get('SO_ORGANIZATION_ID',g_inv_org_id);

897: /* 5126974 - move initialization to this function
898: to avoid org-specific failure in constant_system_values */
899: IF g_inv_org_id IS NULL
900: THEN
901: oe_profile.get('SO_ORGANIZATION_ID',g_inv_org_id);
902: END IF;
903:
904: -- Initialize message list if p_init_msg_list is set to TRUE.
905: IF FND_API.to_Boolean( p_init_msg_list )

Line 1220: oe_profile.get('SO_ORGANIZATION_ID',g_inv_org_id);

1216: /* 5126974 - move initialization to this function
1217: to avoid org-specific failure in constant_system_values */
1218: IF g_inv_org_id IS NULL
1219: THEN
1220: oe_profile.get('SO_ORGANIZATION_ID',g_inv_org_id);
1221: END IF;
1222: -- Initialize message list if p_init_msg_list is set to TRUE.
1223: IF FND_API.to_Boolean( p_init_msg_list )
1224: THEN

Line 1890: oe_profile.get('SO_ORGANIZATION_ID',g_inv_org_id);

1886: /* 5126974 - move initialization to this function
1887: to avoid org-specific failure in constant_system_values */
1888: IF g_inv_org_id IS NULL
1889: THEN
1890: oe_profile.get('SO_ORGANIZATION_ID',g_inv_org_id);
1891: END IF;
1892: -- Initialize message list if p_init_msg_list is set to TRUE.
1893: IF FND_API.to_Boolean( p_init_msg_list )
1894: THEN

Line 1975: oe_profile.get('SO_ORGANIZATION_ID',g_inv_org_id);

1971: /* 5126974 - move initialization to this function
1972: to avoid org-specific failure in constant_system_values */
1973: IF g_inv_org_id IS NULL
1974: THEN
1975: oe_profile.get('SO_ORGANIZATION_ID',g_inv_org_id);
1976: END IF;
1977: OPEN c_all_line_total;
1978: FETCH c_all_line_total INTO l_all_line_total;
1979: CLOSE c_all_line_total;

Line 2244: oe_profile.get('SO_ORGANIZATION_ID',g_inv_org_id);

2240: /* 5126974 - move initialization to this function
2241: to avoid org-specific failure in constant_system_values */
2242: IF g_inv_org_id IS NULL
2243: THEN
2244: oe_profile.get('SO_ORGANIZATION_ID',g_inv_org_id);
2245: END IF;
2246:
2247: /* 7365097 - centralized CM test */
2248: IF NOT check_credit_memos(p_customer_trx_id, p_adjustment_type)

Line 2525: oe_profile.get('SO_ORGANIZATION_ID',g_inv_org_id);

2521: /* 5126974 - move initialization to this function
2522: to avoid org-specific failure in constant_system_values */
2523: IF g_inv_org_id IS NULL
2524: THEN
2525: oe_profile.get('SO_ORGANIZATION_ID',g_inv_org_id);
2526: END IF;
2527:
2528: -- Initialize message list if p_init_msg_list is set to TRUE.
2529: IF FND_API.to_Boolean( p_init_msg_list )

Line 2929: oe_profile.get('SO_ORGANIZATION_ID',g_inv_org_id);

2925: /* NOTE: This is returned as a varchar.. not sure why */
2926: /* 5861728 - Initialize the value if null */
2927: IF g_inv_org_id IS NULL
2928: THEN
2929: oe_profile.get('SO_ORGANIZATION_ID',g_inv_org_id);
2930: END IF;
2931: RETURN g_inv_org_id;
2932: END inv_org_id;
2933: