DBA Data[Home] [Help]

APPS.CSD_PROCESS_PVT dependencies on FND_PROFILE

Line 1652: If (fnd_profile.value('CSD_PROCESS_AUTO_PICK_RELEASE') = 'S') then

1648: --'A' means "All ship lines in an order",
1649: --'S' menas "Selected ship line only"
1650: --if the profile value set to "Selected ship line only", then pass the delivery_detail_id
1651: --else it will pass null value to delivery_detail_id.
1652: If (fnd_profile.value('CSD_PROCESS_AUTO_PICK_RELEASE') = 'S') then
1653: open get_delivery_detail_id(p_order_rec.order_header_id, p_order_rec.order_line_id);
1654: fetch get_delivery_detail_id into l_delivery_detail_id;
1655: close get_delivery_detail_id;
1656: End if;

Line 2724: l_no_contract_bp_vldn := NVL(Fnd_Profile.value('CSD_NO_CONTRACT_BP_VLDN'),

2720: Fnd_Api.G_MISS_NUM
2721: THEN
2722: BEGIN
2723: --Bug fix for 3399883 [
2724: l_no_contract_bp_vldn := NVL(Fnd_Profile.value('CSD_NO_CONTRACT_BP_VLDN'),
2725: 'N');
2726:
2727: IF (l_no_contract_bp_vldn = 'Y')
2728: THEN

Line 2959: (nvl(fnd_profile.value('CSD_DEFAULT_SR_ACCT_ADDR_FOR_LOGISTICS'), 'N') = 'Y'))

2955: x_product_txn_rec.line_category_code := l_line_category_code;
2956:
2957: -- swai bug 7572247/7628204: default account primary bill-to and ship to
2958: IF ((l_incident_id is not NULL) AND
2959: (nvl(fnd_profile.value('CSD_DEFAULT_SR_ACCT_ADDR_FOR_LOGISTICS'), 'N') = 'Y'))
2960: THEN
2961:
2962: IF ((nvl(x_product_txn_rec.bill_to_account_id, FND_API.G_MISS_NUM) = FND_API.G_MISS_NUM) AND
2963: (nvl(x_product_txn_rec.invoice_to_org_id, FND_API.G_MISS_NUM) = FND_API.G_MISS_NUM))

Line 3185: FND_PROFILE.PUT('CSD_UNIT_NUMBER', x_product_txn_rec.unit_number);

3181: 1);
3182:
3183: --taklam
3184: if (x_product_txn_rec.unit_number) is not null then
3185: FND_PROFILE.PUT('CSD_UNIT_NUMBER', x_product_txn_rec.unit_number);
3186: end if;
3187:
3188: PROCESS_SALES_ORDER(p_api_version => 1.0,
3189: p_commit => Fnd_Api.g_false,

Line 3199: FND_PROFILE.PUT('CSD_UNIT_NUMBER', null);

3195: x_msg_count => x_msg_count,
3196: x_msg_data => x_msg_data);
3197:
3198: if (x_product_txn_rec.unit_number) is not null then
3199: FND_PROFILE.PUT('CSD_UNIT_NUMBER', null);
3200: end if;
3201:
3202: Debug('x_return_status from process_sales_order =' ||
3203: x_return_status,

Line 3658: Fnd_Profile.Get('CSD_AUTO_SRL_RESERVE', l_auto_reserve_profile);

3654: CSD_LOGISTICS_UTIL.Get_ItemAttributes(p_Inventory_Item_Id => x_Product_Txn_Rec.Inventory_Item_Id,
3655: p_inv_org_id => x_Product_Txn_Rec.inventory_org_id,
3656: x_ItemAttributes => l_ItemAttributes);
3657: -- Get the default pick rule id
3658: Fnd_Profile.Get('CSD_AUTO_SRL_RESERVE', l_auto_reserve_profile);
3659: if(l_auto_reserve_profile is null) then
3660: l_auto_reserve_profile := 'N';
3661: end if;
3662:

Line 3718: Fnd_Profile.Get('CSD_DEF_PICK_RELEASE_RULE',

3714: -- not have it.
3715: IF (x_product_txn_rec.picking_rule_id IS NULL)
3716: THEN
3717: -- Get the default pick rule id
3718: Fnd_Profile.Get('CSD_DEF_PICK_RELEASE_RULE',
3719: l_picking_rule_id);
3720:
3721: ELSE
3722:

Line 4209: IF Fnd_Profile.value('CSD_DEBUG_LEVEL') > 5

4205: p_api_name => l_api_name);
4206:
4207: -- Dump the IN parameters in the log file
4208: -- if the debug level > 5
4209: IF Fnd_Profile.value('CSD_DEBUG_LEVEL') > 5
4210: THEN
4211: Csd_Gen_Utility_Pvt.dump_prod_txn_rec(p_prod_txn_rec => x_product_txn_rec);
4212: END IF;
4213:

Line 5309: l_sr_add_to_order_flag := fnd_profile.value('CSD_ADD_TO_SO_WITHIN_SR');

5305: THEN
5306: Csd_Gen_Utility_Pvt.ADD('Build the product txn table');
5307: END IF;
5308:
5309: l_sr_add_to_order_flag := fnd_profile.value('CSD_ADD_TO_SO_WITHIN_SR');
5310: l_sr_add_to_order_flag := nvl(l_sr_Add_to_order_flag, 'N');
5311:
5312: l_ro_add_to_order_flag := fnd_profile.value('CSD_ADD_TO_SO_WITHIN_RO');
5313: l_ro_add_to_order_flag := nvl(l_ro_add_to_order_flag, 'N');

Line 5312: l_ro_add_to_order_flag := fnd_profile.value('CSD_ADD_TO_SO_WITHIN_RO');

5308:
5309: l_sr_add_to_order_flag := fnd_profile.value('CSD_ADD_TO_SO_WITHIN_SR');
5310: l_sr_add_to_order_flag := nvl(l_sr_Add_to_order_flag, 'N');
5311:
5312: l_ro_add_to_order_flag := fnd_profile.value('CSD_ADD_TO_SO_WITHIN_RO');
5313: l_ro_add_to_order_flag := nvl(l_ro_add_to_order_flag, 'N');
5314: -- subhat 12.2 changes.
5315: Csd_Process_Util.BUILD_PROD_TXN_TBL(p_repair_line_id => p_repair_line_id,
5316: p_create_thirdpty_line => p_create_thirdpty_line,

Line 7402: l_prof_value := NVL(Fnd_Profile.value('CSD_CLOSE_SR'), 'N');

7398:
7399: (p_pkg_name => G_PKG_NAME, p_api_name => l_api_name);
7400: END IF;
7401:
7402: l_prof_value := NVL(Fnd_Profile.value('CSD_CLOSE_SR'), 'N');
7403: --------------------------------------------
7404: -- Check whether status has to updated for
7405: -- a group / Repair Order
7406: --------------------------------------------

Line 8643: Fnd_Profile.get('csd_pick_release_rule_defect_subinv',

8639: THEN
8640: IF x_product_txn_rec.Action_Type =
8641: C_ACTION_TYPE_MOVE_IN
8642: THEN
8643: Fnd_Profile.get('csd_pick_release_rule_defect_subinv',
8644: l_picking_rule_id);
8645: ELSIF x_product_txn_rec.Action_Type =
8646: C_ACTION_TYPE_MOVE_OUT
8647: THEN

Line 8648: Fnd_Profile.get('csd_pick_release_rule_usable_subinv',

8644: l_picking_rule_id);
8645: ELSIF x_product_txn_rec.Action_Type =
8646: C_ACTION_TYPE_MOVE_OUT
8647: THEN
8648: Fnd_Profile.get('csd_pick_release_rule_usable_subinv',
8649: l_picking_rule_id);
8650: END IF;
8651: ELSE
8652: l_picking_rule_id := x_product_txn_rec.picking_rule_id;

Line 8654: -- fnd_profile.get('csd_def_pick_release_rule',l_picking_rule_id);

8650: END IF;
8651: ELSE
8652: l_picking_rule_id := x_product_txn_rec.picking_rule_id;
8653: END IF;
8654: -- fnd_profile.get('csd_def_pick_release_rule',l_picking_rule_id);
8655: IF l_Statement_level >= l_debug_level
8656: THEN
8657: Fnd_Log.string(l_Statement_level,
8658: l_module_name,