DBA Data[Home] [Help]

APPS.WSH_PROCESS_INTERFACED_PKG dependencies on OE_VALUE_TO_ID

Line 1379: WSH_DEBUG_SV.logmsg(l_module_name, 'Calling OE_Value_To_Id.Sold_To_Org', WSH_DEBUG_SV.C_PROC_LEVEL);

1375: IF ( delivery_rec.customer_name is not null )
1376: THEN
1377: --
1378: IF l_debug_on THEN
1379: WSH_DEBUG_SV.logmsg(l_module_name, 'Calling OE_Value_To_Id.Sold_To_Org', WSH_DEBUG_SV.C_PROC_LEVEL);
1380: END IF;
1381: --
1382: l_customer_id := OE_Value_To_Id.Sold_To_Org(
1383: p_sold_to_org => delivery_rec.customer_name,

Line 1382: l_customer_id := OE_Value_To_Id.Sold_To_Org(

1378: IF l_debug_on THEN
1379: WSH_DEBUG_SV.logmsg(l_module_name, 'Calling OE_Value_To_Id.Sold_To_Org', WSH_DEBUG_SV.C_PROC_LEVEL);
1380: END IF;
1381: --
1382: l_customer_id := OE_Value_To_Id.Sold_To_Org(
1383: p_sold_to_org => delivery_rec.customer_name,
1384: p_customer_number => NULL );
1385:
1386: --

Line 1417: WSH_DEBUG_SV.logmsg(l_module_name, 'Calling OE_Value_To_Id.Sold_To_Org to derive Ship-To customer', WSH_DEBUG_SV.C_PROC_LEVEL);

1413: l_ship_to_cust_id := l_customer_id;
1414: ELSE
1415: --
1416: IF l_debug_on THEN
1417: WSH_DEBUG_SV.logmsg(l_module_name, 'Calling OE_Value_To_Id.Sold_To_Org to derive Ship-To customer', WSH_DEBUG_SV.C_PROC_LEVEL);
1418: WSH_DEBUG_SV.logmsg(l_module_name, 'delivery_rec.ship_to_customer_name ='||delivery_rec.ship_to_customer_name, WSH_DEBUG_SV.C_PROC_LEVEL);
1419: END IF;
1420: --
1421: l_ship_to_cust_id := OE_Value_To_Id.Sold_To_Org(

Line 1421: l_ship_to_cust_id := OE_Value_To_Id.Sold_To_Org(

1417: WSH_DEBUG_SV.logmsg(l_module_name, 'Calling OE_Value_To_Id.Sold_To_Org to derive Ship-To customer', WSH_DEBUG_SV.C_PROC_LEVEL);
1418: WSH_DEBUG_SV.logmsg(l_module_name, 'delivery_rec.ship_to_customer_name ='||delivery_rec.ship_to_customer_name, WSH_DEBUG_SV.C_PROC_LEVEL);
1419: END IF;
1420: --
1421: l_ship_to_cust_id := OE_Value_To_Id.Sold_To_Org(
1422: p_sold_to_org => delivery_rec.ship_to_customer_name,
1423: p_customer_number => NULL );
1424:
1425: WSH_DEBUG_SV.logmsg(l_module_name, 'l_ship_to_cust_id = '||l_ship_to_cust_id, WSH_DEBUG_SV.C_PROC_LEVEL);

Line 1444: WSH_DEBUG_SV.logmsg(l_module_name, 'Calling OE_Value_To_Id.Ship_To_Org', WSH_DEBUG_SV.C_PROC_LEVEL);

1440: IF (delivery_rec.ship_to_address1 is not null)
1441: THEN
1442: --
1443: IF l_debug_on THEN
1444: WSH_DEBUG_SV.logmsg(l_module_name, 'Calling OE_Value_To_Id.Ship_To_Org', WSH_DEBUG_SV.C_PROC_LEVEL);
1445: END IF;
1446: --
1447: l_ship_to_site_use_id :=
1448: OE_Value_To_Id.Ship_To_Org(

Line 1448: OE_Value_To_Id.Ship_To_Org(

1444: WSH_DEBUG_SV.logmsg(l_module_name, 'Calling OE_Value_To_Id.Ship_To_Org', WSH_DEBUG_SV.C_PROC_LEVEL);
1445: END IF;
1446: --
1447: l_ship_to_site_use_id :=
1448: OE_Value_To_Id.Ship_To_Org(
1449: p_ship_to_address1 => delivery_rec.ship_to_address1,
1450: p_ship_to_address2 => delivery_rec.ship_to_address2,
1451: p_ship_to_address3 => delivery_rec.ship_to_address3,
1452: p_ship_to_address4 => delivery_rec.ship_to_address4,