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.3 2008/12/31 06:24:01 smanian 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.3 2008/12/31 06:24:01 smanian 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 847: oe_debug_pub.add('Exiting oe_oe_inline_address.create_location', 1);

843: ( p_count => x_msg_count
844: , p_data => x_msg_data
845: );
846:
847: oe_debug_pub.add('Exiting oe_oe_inline_address.create_location', 1);
848:
849: EXCEPTION
850:
851: WHEN FND_API.G_EXC_ERROR THEN

Line 1916: oe_oe_inline_address.create_account(

1912: l_cust_number := in_cust_number;
1913:
1914: IF in_cust_account_id is null then
1915:
1916: oe_oe_inline_address.create_account(
1917: p_party_number=>null,
1918: p_organization_name=>in_cust_name,
1919: p_alternate_name=>null,
1920: p_tax_reference=>NULL,

Line 2095: oe_oe_inline_address.Create_Location

2091: end if;
2092:
2093: IF in_addr_line1 is not null then
2094:
2095: oe_oe_inline_address.Create_Location
2096: (
2097: p_country => in_addr_country_Code,
2098: p_address1=> in_addr_line1,
2099: p_address2 =>in_addr_line2,

Line 2167: oe_oe_inline_address.Create_Party_Site

2163:
2164:
2165: --x_location_id := 1048;
2166:
2167: oe_oe_inline_address.Create_Party_Site
2168: (
2169: p_party_id => x_party_id,
2170: p_location_id=>x_location_id ,
2171: p_party_site_number =>in_party_site_number,

Line 2183: oe_oe_inline_address.Create_Account_Site

2179: rollback;
2180: return;
2181: end if;
2182:
2183: oe_oe_inline_address.Create_Account_Site
2184: (
2185: p_cust_account_id =>x_cust_account_id,
2186: p_party_site_id =>x_party_site_id,
2187: c_attribute_category=>null,

Line 2222: oe_oe_inline_address.Create_Acct_Site_Uses

2218:
2219: -- if SHIPTO needs to be created
2220: if in_ship_usage = 'Y' then
2221:
2222: oe_oe_inline_address.Create_Acct_Site_Uses
2223: (
2224: p_cust_acct_site_id =>x_customer_site_id,
2225: p_location =>in_addr_location,
2226: p_site_use_code =>'SHIP_TO',

Line 2284: oe_oe_inline_address.Create_Acct_Site_Uses

2280:
2281: -- if BILLTO needs to be created
2282: if in_bill_usage = 'Y' then
2283:
2284: oe_oe_inline_address.Create_Acct_Site_Uses
2285: (
2286: p_cust_acct_site_id =>x_customer_site_id,
2287: p_location =>in_addr_location,
2288: p_site_use_code =>'BILL_TO',

Line 2346: oe_oe_inline_address.Create_Acct_Site_Uses

2342: -- if DELIVERTO needs to be created
2343: if in_deliver_usage = 'Y' then
2344:
2345:
2346: oe_oe_inline_address.Create_Acct_Site_Uses
2347: (
2348: p_cust_acct_site_id =>x_customer_site_id,
2349: p_location =>in_addr_location,
2350: p_site_use_code =>'DELIVER_TO',

Line 2408: oe_oe_inline_address.Create_Acct_Site_Uses

2404:
2405: -- if SOLDTO needs to be created
2406: if in_sold_usage = 'Y' then
2407:
2408: oe_oe_inline_address.Create_Acct_Site_Uses
2409: (
2410: p_cust_acct_site_id =>x_customer_site_id,
2411: p_location =>in_addr_location,
2412: p_site_use_code =>'SOLD_TO',

Line 2473: oe_oe_inline_address.Create_contact

2469:
2470:
2471: IF in_cont_last_name is not null then
2472:
2473: oe_oe_inline_address.Create_contact
2474: (p_contact_last_name =>in_cont_last_name,
2475: p_contact_first_name =>in_cont_first_name,
2476: p_contact_title =>in_cont_title,
2477: p_email =>in_cont_email,

Line 2557: END oe_oe_inline_address;

2553:
2554: END Add_Customer;
2555:
2556:
2557: END oe_oe_inline_address;