DBA Data[Home] [Help]

APPS.WSH_ROUTING_REQUEST dependencies on WSH_SUPPLIER_PARTY

Line 1495: -- 6.Finally call api WSH_SUPPLIER_PARTY.Process_Address to process

1491: -- 2.Loop through address record as pass by Supplier address book UI.
1492: -- 3.Validate and assign field value to type Address_Rec_Type.
1493: -- 4.Scan through record created to find missing column.
1494: -- 5.Check if not all the records have errors..
1495: -- 6.Finally call api WSH_SUPPLIER_PARTY.Process_Address to process
1496: -- address book records.
1497: -- Parameters :
1498: -- IN:
1499: -- p_in_param IN Hold additional parameter passed by UI.

Line 1663: WSH_SUPPLIER_PARTY.Process_Address(

1659:
1660: IF (x_return_status NOT IN (WSH_UTIL_CORE.G_RET_STS_ERROR,
1661: WSH_UTIL_CORE.G_RET_STS_UNEXP_ERROR) ) THEN
1662: --Process the Supplier address book information.
1663: WSH_SUPPLIER_PARTY.Process_Address(
1664: p_in_param => p_in_param,
1665: p_Address => l_Address,
1666: x_success_tbl => x_message_tbl,
1667: x_error_tbl => g_error_tbl,

Line 2416: -- 2.If Not create address information by calling api WSH_SUPPLIER_PARTY.Create_Address.

2412: -- Type : Public
2413: -- Pre-reqs : None.
2414: -- Procedure: Wrapper API to create Location, Party and Contacts for delivery. Api does.
2415: -- 1.For input party_id and location code,check if address is already created.
2416: -- 2.If Not create address information by calling api WSH_SUPPLIER_PARTY.Create_Address.
2417: -- 3.If create ,update the address information by calling api WSH_SUPPLIER_PARTY.update_Address.
2418: -- Parameters :
2419: -- IN:
2420: -- P_vendor_id IN Vendor Id

Line 2417: -- 3.If create ,update the address information by calling api WSH_SUPPLIER_PARTY.update_Address.

2413: -- Pre-reqs : None.
2414: -- Procedure: Wrapper API to create Location, Party and Contacts for delivery. Api does.
2415: -- 1.For input party_id and location code,check if address is already created.
2416: -- 2.If Not create address information by calling api WSH_SUPPLIER_PARTY.Create_Address.
2417: -- 3.If create ,update the address information by calling api WSH_SUPPLIER_PARTY.update_Address.
2418: -- Parameters :
2419: -- IN:
2420: -- P_vendor_id IN Vendor Id
2421: -- P_party_id IN Party Id

Line 2541: WSH_SUPPLIER_PARTY.Create_Address(

2537: --
2538: IF (check_location_csr%NOTFOUND) THEN --{
2539:
2540: --If Address Information where not present, create new address information.
2541: WSH_SUPPLIER_PARTY.Create_Address(
2542: P_vendor_id => p_vendor_id,
2543: P_party_id => p_party_id,
2544: P_location_code => p_location_code,
2545: P_address1 => p_Address1,

Line 2588: WSH_SUPPLIER_PARTY.Update_address(

2584: END IF;
2585: -- } IB-Phase-2
2586:
2587: --Address information are already created, so update the Address Information
2588: WSH_SUPPLIER_PARTY.Update_address(
2589: P_location_id => x_location_id,
2590: P_party_id => p_party_id,
2591: P_party_site_id => l_party_site_id,
2592: P_address1 => P_address1,

Line 4577: WSH_SUPPLIER_PARTY.Validate_Supplier(

4573: END IF;
4574:
4575:
4576: --Validate and create Supplier information.
4577: WSH_SUPPLIER_PARTY.Validate_Supplier(
4578: p_in_param => p_in_param,
4579: p_supplier_name => p_supplier_name,
4580: x_vendor_id => p_detail_att.vendor_id,
4581: x_party_id => p_detail_att.party_id,