DBA Data[Home] [Help]

APPS.OE_CNCL_UTIL dependencies on OE_VALUE_TO_ID

Line 733: -- For e.g. oe_value_to_id.ship_to_org_id requires sold_to_org_id

729:
730: -- Below IF is not required for CNCL but not removing for now.
731: -- Retrieve the sold_to_org_id if not passed on the header record. This
732: -- will be needed by the value_to_id functions for related fields.
733: -- For e.g. oe_value_to_id.ship_to_org_id requires sold_to_org_id
734:
735: IF p_x_header_rec.operation = OE_GLOBALS.G_OPR_UPDATE
736: AND p_x_header_rec.sold_to_org_id = FND_API.G_MISS_NUM
737: THEN

Line 1078: p_x_header_rec.end_customer_id:=OE_Value_To_Id.end_customer

1074: END IF;
1075:
1076: ELSE
1077: oe_Debug_pub.add('attribute procedure');
1078: p_x_header_rec.end_customer_id:=OE_Value_To_Id.end_customer
1079: ( p_end_customer => p_header_val_rec.end_customer_name
1080: ,p_end_customer_number=> p_header_val_rec.end_customer_number
1081: );
1082:

Line 1109: p_x_header_rec.end_customer_contact_id := OE_Value_To_Id.end_customer_contact

1105: END IF;
1106:
1107: ELSE
1108: oe_debug_pub.add('before calling aend customer contact value to id');
1109: p_x_header_rec.end_customer_contact_id := OE_Value_To_Id.end_customer_contact
1110: ( p_end_customer_contact => p_header_val_rec.end_customer_contact
1111: ,p_end_customer_id =>p_x_header_rec.end_customer_id
1112: );
1113: oe_debug_pub.add('End customer contact id is '||p_x_header_rec.end_customer_contact_id);

Line 1148: p_x_header_rec.end_customer_site_use_id := OE_Value_To_Id.end_customer_site

1144: END IF;
1145:
1146: ELSE
1147: oe_debug_pub.add('Before calling End custoemr site use value to id');
1148: p_x_header_rec.end_customer_site_use_id := OE_Value_To_Id.end_customer_site
1149: ( p_end_customer_site_address1 => p_header_val_rec.end_customer_site_address1
1150: , p_end_customer_site_address2 => p_header_val_rec.end_customer_site_address2
1151: , p_end_customer_site_address3 => p_header_val_rec.end_customer_site_address3
1152: , p_end_customer_site_address4 => p_header_val_rec.end_customer_site_address4

Line 1189: p_x_header_rec.ib_owner:=OE_Value_To_Id.ib_owner

1185: END IF;
1186:
1187: ELSE
1188:
1189: p_x_header_rec.ib_owner:=OE_Value_To_Id.ib_owner
1190: ( p_ib_owner => p_header_val_rec.ib_owner_dsp
1191: );
1192:
1193: IF p_x_header_rec.ib_owner = FND_API.G_MISS_CHAR THEN

Line 1216: p_x_header_rec.ib_installed_at_location:=OE_Value_To_Id.ib_installed_at_location

1212: END IF;
1213:
1214: ELSE
1215:
1216: p_x_header_rec.ib_installed_at_location:=OE_Value_To_Id.ib_installed_at_location
1217: ( p_ib_installed_at_location => p_header_val_rec.ib_installed_at_location_dsp
1218: );
1219:
1220: IF p_x_header_rec.ib_installed_at_location = FND_API.G_MISS_CHAR THEN

Line 1243: p_x_header_rec.ib_current_location:=OE_Value_To_Id.ib_current_location

1239: END IF;
1240:
1241: ELSE
1242:
1243: p_x_header_rec.ib_current_location:=OE_Value_To_Id.ib_current_location
1244: ( p_ib_current_location => p_header_val_rec.ib_current_location_dsp
1245: );
1246:
1247: IF p_x_header_rec.ib_current_location = FND_API.G_MISS_CHAR THEN

Line 2094: -- For e.g. oe_value_to_id.ship_to_org_id requires sold_to_org_id

2090: -------------------------------------------------------------------
2091:
2092: -- Retrieve the sold_to_org_id if not passed on the line record. This
2093: -- will be needed by the value_to_id functions for related fields.
2094: -- For e.g. oe_value_to_id.ship_to_org_id requires sold_to_org_id
2095:
2096: IF p_x_line_rec.sold_to_org_id = FND_API.G_MISS_NUM
2097: THEN
2098:

Line 2261: -- For e.g. oe_value_to_id.ship_to_contact_id requires ship_to_org_id

2257: END IF;
2258:
2259: -- Retrieve the org_ids if not passed on the line record. These
2260: -- IDs will be needed by the value_to_id functions for CONTACT fields.
2261: -- For e.g. oe_value_to_id.ship_to_contact_id requires ship_to_org_id
2262:
2263: IF p_x_line_rec.operation = OE_GLOBALS.G_OPR_UPDATE
2264: AND ( p_x_line_rec.ship_to_org_id = FND_API.G_MISS_NUM
2265: OR p_x_line_rec.invoice_to_org_id = FND_API.G_MISS_NUM

Line 2409: p_x_line_rec.end_customer_id:=OE_Value_To_Id.end_customer

2405: END IF;
2406:
2407: ELSE
2408:
2409: p_x_line_rec.end_customer_id:=OE_Value_To_Id.end_customer
2410: ( p_end_customer => p_line_val_rec.end_customer_name
2411: ,p_end_customer_number=> p_line_val_rec.end_customer_number
2412: );
2413:

Line 2441: p_x_line_rec.end_customer_contact_id := OE_Value_To_Id.end_customer_contact

2437: END IF;
2438:
2439: ELSE
2440: oe_debug_pub.add('before calling aend customer contact value to id');
2441: p_x_line_rec.end_customer_contact_id := OE_Value_To_Id.end_customer_contact
2442: ( p_end_customer_contact => p_line_val_rec.end_customer_contact
2443: ,p_end_customer_id =>p_x_line_rec.end_customer_id
2444: );
2445: oe_debug_pub.add('End customer contact id is '||p_x_line_rec.end_customer_contact_id);

Line 2480: p_x_line_rec.end_customer_site_use_id := OE_Value_To_Id.end_customer_site

2476: END IF;
2477:
2478: ELSE
2479: oe_debug_pub.add('Before calling End custoemr site use value to id');
2480: p_x_line_rec.end_customer_site_use_id := OE_Value_To_Id.end_customer_site
2481: ( p_end_customer_site_address1 => p_line_val_rec.end_customer_site_address1
2482: , p_end_customer_site_address2 => p_line_val_rec.end_customer_site_address2
2483: , p_end_customer_site_address3 => p_line_val_rec.end_customer_site_address3
2484: , p_end_customer_site_address4 => p_line_val_rec.end_customer_site_address4

Line 2522: p_x_line_rec.ib_owner:=OE_Value_To_Id.ib_owner

2518: END IF;
2519:
2520: ELSE
2521:
2522: p_x_line_rec.ib_owner:=OE_Value_To_Id.ib_owner
2523: ( p_ib_owner => p_line_val_rec.ib_owner_dsp
2524: );
2525:
2526: IF p_x_line_rec.ib_owner = FND_API.G_MISS_CHAR THEN

Line 2549: p_x_line_rec.ib_installed_at_location:=OE_Value_To_Id.ib_installed_at_location

2545: END IF;
2546:
2547: ELSE
2548:
2549: p_x_line_rec.ib_installed_at_location:=OE_Value_To_Id.ib_installed_at_location
2550: ( p_ib_installed_at_location => p_line_val_rec.ib_installed_at_location_dsp
2551: );
2552:
2553: IF p_x_line_rec.ib_installed_at_location = FND_API.G_MISS_CHAR THEN

Line 2576: p_x_line_rec.ib_current_location:=OE_Value_To_Id.ib_current_location

2572: END IF;
2573:
2574: ELSE
2575:
2576: p_x_line_rec.ib_current_location:=OE_Value_To_Id.ib_current_location
2577: ( p_ib_current_location => p_line_val_rec.ib_current_location_dsp
2578: );
2579:
2580: IF p_x_line_rec.ib_current_location = FND_API.G_MISS_CHAR THEN