DBA Data[Home] [Help]

APPS.PO_SOURCING_PVT dependencies on PO_VENDORS_SV

Line 383: PO_VENDORS_SV.get_vendor_info (

379: p_token => g_progress,
380: p_message => 'Before calling get_vendor_info');
381: END IF;
382:
383: PO_VENDORS_SV.get_vendor_info (
384: X_vendor_id => g_cpa_csr.vendor_id,
385: X_ship_to_location_id => g_vendor_default_rec.ship_to_location_id,
386: X_bill_to_location_id => g_vendor_default_rec.bill_to_location_id,
387: X_ship_via_lookup_code => l_ship_via_lookup_code,

Line 483: po_vendors_sv.val_freight_carrier(

479:
480: -- Defaulting the ship_via_lookup_code
481: IF g_cpa_csr.ship_via_lookup_code IS NULL THEN
482: if l_vs_ship_via_lookup_code is not null then
483: po_vendors_sv.val_freight_carrier(
484: X_temp_ship_via => l_vs_ship_via_lookup_code,
485: X_org_id => g_params_rec.inventory_organization_id,
486: X_res_ship_via => g_cpa_csr.ship_via_lookup_code
487: );

Line 491: po_vendors_sv.val_freight_carrier(

487: );
488: end if;
489: IF g_cpa_csr.ship_via_lookup_code IS NULL THEN
490: if l_ship_via_lookup_code is not null then
491: po_vendors_sv.val_freight_carrier(
492: X_temp_ship_via => l_ship_via_lookup_code,
493: X_org_id => g_params_rec.inventory_organization_id,
494: X_res_ship_via => g_cpa_csr.ship_via_lookup_code
495: );

Line 506: po_vendors_sv.val_fob(

502:
503: -- Defaulting the fob_lookup_code
504: IF g_cpa_csr.fob_lookup_code IS NULL THEN
505: if l_vs_fob_lookup_code is not null then
506: po_vendors_sv.val_fob(
507: X_temp_fob_lookup_code => l_vs_fob_lookup_code,
508: X_res_fob => g_cpa_csr.fob_lookup_code
509: );
510: end if;

Line 513: po_vendors_sv.val_fob(

509: );
510: end if;
511: IF g_cpa_csr.fob_lookup_code IS NULL THEN
512: if l_fob_lookup_code is not null then
513: po_vendors_sv.val_fob(
514: X_temp_fob_lookup_code => l_fob_lookup_code,
515: X_res_fob => g_cpa_csr.fob_lookup_code
516: );
517: end if;

Line 532: po_vendors_sv.val_freight_terms(

528:
529: -- Defaulting the freight_terms_lookup_code
530: IF g_cpa_csr.freight_terms_lookup_code IS NULL THEN
531: if l_vs_freight_lookup_code is not null then
532: po_vendors_sv.val_freight_terms(
533: X_temp_freight_terms => l_vs_freight_lookup_code,
534: X_res_freight_terms => g_cpa_csr.freight_terms_lookup_code
535: );
536: end if;

Line 539: po_vendors_sv.val_freight_terms(

535: );
536: end if;
537: IF g_cpa_csr.freight_terms_lookup_code IS NULL THEN
538: if l_freight_lookup_code is not null then
539: po_vendors_sv.val_freight_terms(
540: X_temp_freight_terms => l_freight_lookup_code,
541: X_res_freight_terms => g_cpa_csr.freight_terms_lookup_code
542: );
543: end if;