DBA Data[Home] [Help]

APPS.OE_OE_INLINE_ADDRESS dependencies on OE_OE_INLINE_ADDRESS

Line 1: PACKAGE BODY oe_oe_inline_address AS

1: PACKAGE BODY oe_oe_inline_address AS
2: /* $Header: OEXFINLB.pls 120.0.12010000.2 2008/11/18 06:20:57 vmachett ship $ */
3:
4: -- Global constant holding the package name
5:

Line 6: G_PKG_NAME CONSTANT VARCHAR2(30) := 'oe_oe_inline_address';

2: /* $Header: OEXFINLB.pls 120.0.12010000.2 2008/11/18 06:20:57 vmachett ship $ */
3:
4: -- Global constant holding the package name
5:
6: G_PKG_NAME CONSTANT VARCHAR2(30) := 'oe_oe_inline_address';
7: G_CREATED_BY_MODULE CONSTANT VARCHAR2(30) := 'ONT_UI_ADD_CUSTOMER';
8:
9:
10:

Line 824: oe_debug_pub.add('Exiting oe_oe_inline_address.create_location', 1);

820: ( p_count => x_msg_count
821: , p_data => x_msg_data
822: );
823:
824: oe_debug_pub.add('Exiting oe_oe_inline_address.create_location', 1);
825:
826: EXCEPTION
827:
828: WHEN FND_API.G_EXC_ERROR THEN

Line 1872: oe_oe_inline_address.create_account(

1868: l_cust_number := in_cust_number;
1869:
1870: IF in_cust_account_id is null then
1871:
1872: oe_oe_inline_address.create_account(
1873: p_party_number=>null,
1874: p_organization_name=>in_cust_name,
1875: p_alternate_name=>null,
1876: p_tax_reference=>NULL,

Line 2051: oe_oe_inline_address.Create_Location

2047: end if;
2048:
2049: IF in_addr_line1 is not null then
2050:
2051: oe_oe_inline_address.Create_Location
2052: (
2053: p_country => in_addr_country_Code,
2054: p_address1=> in_addr_line1,
2055: p_address2 =>in_addr_line2,

Line 2123: oe_oe_inline_address.Create_Party_Site

2119:
2120:
2121: --x_location_id := 1048;
2122:
2123: oe_oe_inline_address.Create_Party_Site
2124: (
2125: p_party_id => x_party_id,
2126: p_location_id=>x_location_id ,
2127: p_party_site_number =>in_party_site_number,

Line 2139: oe_oe_inline_address.Create_Account_Site

2135: rollback;
2136: return;
2137: end if;
2138:
2139: oe_oe_inline_address.Create_Account_Site
2140: (
2141: p_cust_account_id =>x_cust_account_id,
2142: p_party_site_id =>x_party_site_id,
2143: c_attribute_category=>null,

Line 2178: oe_oe_inline_address.Create_Acct_Site_Uses

2174:
2175: -- if SHIPTO needs to be created
2176: if in_ship_usage = 'Y' then
2177:
2178: oe_oe_inline_address.Create_Acct_Site_Uses
2179: (
2180: p_cust_acct_site_id =>x_customer_site_id,
2181: p_location =>in_addr_location,
2182: p_site_use_code =>'SHIP_TO',

Line 2240: oe_oe_inline_address.Create_Acct_Site_Uses

2236:
2237: -- if BILLTO needs to be created
2238: if in_bill_usage = 'Y' then
2239:
2240: oe_oe_inline_address.Create_Acct_Site_Uses
2241: (
2242: p_cust_acct_site_id =>x_customer_site_id,
2243: p_location =>in_addr_location,
2244: p_site_use_code =>'BILL_TO',

Line 2302: oe_oe_inline_address.Create_Acct_Site_Uses

2298: -- if DELIVERTO needs to be created
2299: if in_deliver_usage = 'Y' then
2300:
2301:
2302: oe_oe_inline_address.Create_Acct_Site_Uses
2303: (
2304: p_cust_acct_site_id =>x_customer_site_id,
2305: p_location =>in_addr_location,
2306: p_site_use_code =>'DELIVER_TO',

Line 2364: oe_oe_inline_address.Create_Acct_Site_Uses

2360:
2361: -- if SOLDTO needs to be created
2362: if in_sold_usage = 'Y' then
2363:
2364: oe_oe_inline_address.Create_Acct_Site_Uses
2365: (
2366: p_cust_acct_site_id =>x_customer_site_id,
2367: p_location =>in_addr_location,
2368: p_site_use_code =>'SOLD_TO',

Line 2429: oe_oe_inline_address.Create_contact

2425:
2426:
2427: IF in_cont_last_name is not null then
2428:
2429: oe_oe_inline_address.Create_contact
2430: (p_contact_last_name =>in_cont_last_name,
2431: p_contact_first_name =>in_cont_first_name,
2432: p_contact_title =>in_cont_title,
2433: p_email =>in_cont_email,

Line 2513: END oe_oe_inline_address;

2509:
2510: END Add_Customer;
2511:
2512:
2513: END oe_oe_inline_address;