DBA Data[Home] [Help]

APPS.MSD_SR_UTIL dependencies on FND_PROFILE

Line 331: x_master_org := fnd_profile.value('MSD_MASTER_ORG') ;

327: end ;
328:
329: /* Get the profile option MSD_MASTER_ORG */
330:
331: x_master_org := fnd_profile.value('MSD_MASTER_ORG') ;
332:
333: if (x_product_group_type = 'Y') then
334: if (x_master_org is NULL) then
335: select organization_id into x_master_org

Line 365: x_item_org := fnd_profile.value('MSD_ITEM_ORG') ;

361: begin
362:
363: /* Get the profile option MSD_ITEM_ORG */
364:
365: x_item_org := fnd_profile.value('MSD_ITEM_ORG') ;
366:
367: return x_item_org;
368:
369: exception

Line 381: x_cat_set_id := fnd_profile.value('MSD_CATEGORY_SET_NAME') ;

377: begin
378:
379: /* Get the profile option MSD_CATEGORY_SET_NAME */
380:
381: x_cat_set_id := fnd_profile.value('MSD_CATEGORY_SET_NAME') ;
382:
383: return x_cat_set_id ;
384:
385: exception

Line 398: x_conv_type := fnd_profile.value('MSD_CONVERSION_TYPE') ;

394: begin
395:
396: /* Get the profile option MSD_CONVERSION_TYPE */
397:
398: x_conv_type := fnd_profile.value('MSD_CONVERSION_TYPE') ;
399:
400: return x_conv_type;
401:
402: exception

Line 414: x_cust_attr := fnd_profile.value('MSD_CUSTOMER_ATTRIBUTE') ;

410: begin
411:
412: /* Get the profile option MSD_CUSTOMER_ATTRIBUTE */
413:
414: x_cust_attr := fnd_profile.value('MSD_CUSTOMER_ATTRIBUTE') ;
415:
416: return x_cust_attr;
417:
418: exception

Line 970: x_ret_value := fnd_profile.save(p_profile_name,p_profile_value,p_profile_Level);

966: p_profile_value IN VARCHAR2,
967: p_profile_Level IN VARCHAR2) return number is
968: x_ret_value boolean;
969: begin
970: x_ret_value := fnd_profile.save(p_profile_name,p_profile_value,p_profile_Level);
971: if x_ret_value then
972: return 0;
973: else
974: return 2;

Line 1370: x_cat_set_id := fnd_profile.value('MSD_EOL_CATEGORY_SET_NAME') ;

1366: IS
1367: x_cat_set_id number;
1368: BEGIN
1369: /* Get the profile option MSD_EOL_CATEGORY_SET_NAME */
1370: x_cat_set_id := fnd_profile.value('MSD_EOL_CATEGORY_SET_NAME') ;
1371:
1372: RETURN x_cat_set_id ;
1373:
1374: EXCEPTION