DBA Data[Home] [Help]

APPS.INV_CG_UPGRADE dependencies on INV_CG_UPGRADE

Line 1: PACKAGE BODY inv_cg_upgrade AS

1: PACKAGE BODY inv_cg_upgrade AS
2: /* $Header: INVCGUGB.pls 120.3 2006/03/17 11:47:02 kdong noship $*/
3:
4: PROCEDURE mydebug(msg IN VARCHAR2) IS
5: BEGIN

Line 1882: inv_cg_upgrade.invmsisb( org_id,

1878: BEGIN
1879: org_id := c.organization_id;
1880: l_cost_method := c.primary_cost_method ;
1881:
1882: inv_cg_upgrade.invmsisb( org_id,
1883: user_name,
1884: password,
1885: return_status,
1886: msg_count,

Line 1890: inv_cg_upgrade.invmpsb( org_id,

1886: msg_count,
1887: msg_data
1888: );
1889: if ( return_status = fnd_api.g_ret_sts_error ) then GOTO continue_loop ; end if;
1890: inv_cg_upgrade.invmpsb( org_id,
1891: user_name,
1892: password,
1893: return_status,
1894: msg_count,

Line 1898: inv_cg_upgrade.invmoqsb( org_id,

1894: msg_count,
1895: msg_data
1896: );
1897: if ( return_status = fnd_api.g_ret_sts_error ) then GOTO continue_loop ; end if;
1898: inv_cg_upgrade.invmoqsb( org_id,
1899: l_cost_method,
1900: user_name,
1901: password,
1902: return_status,

Line 1909: inv_cg_upgrade.invmpssb( org_id,

1905: );
1906: if ( return_status = fnd_api.g_ret_sts_error ) then GOTO continue_loop; end if;
1907: /*
1908: if ( p_open_periods_only <> 1 ) then
1909: inv_cg_upgrade.invmpssb( org_id,
1910: l_cost_method,
1911: user_name,
1912: password,
1913: return_status,

Line 1921: inv_cg_upgrade.invmmtsb( org_id,

1917:
1918: if ( return_status = fnd_api.g_ret_sts_error ) then GOTO continue_loop; end if;
1919: end if;
1920: */
1921: inv_cg_upgrade.invmmtsb( org_id,
1922: l_cost_method,
1923: p_open_periods_only,
1924: user_name,
1925: password,

Line 1932: inv_cg_upgrade.INVMCCESB (

1928: msg_data
1929: );
1930:
1931: if ( return_status = fnd_api.g_ret_sts_error ) then GOTO continue_loop; end if;
1932: inv_cg_upgrade.INVMCCESB (
1933: org_id,
1934: l_cost_method,
1935: USER_NAME,
1936: PASSWORD,

Line 1942: inv_cg_upgrade.INVMPASB (

1938: msg_count,
1939: msg_data) ;
1940:
1941: if ( return_status = fnd_api.g_ret_sts_error ) then GOTO continue_loop; end if;
1942: inv_cg_upgrade.INVMPASB (
1943: org_id,
1944: l_cost_method,
1945: USER_NAME,
1946: PASSWORD,

Line 1952: inv_cg_upgrade.INVMPITSB (

1948: msg_count,
1949: msg_data) ;
1950:
1951: if ( return_status = fnd_api.g_ret_sts_error ) then GOTO continue_loop; end if;
1952: inv_cg_upgrade.INVMPITSB (
1953: org_id,
1954: l_cost_method,
1955: USER_NAME,
1956: PASSWORD,

Line 2851: -- This API inturn calls INV_CG_UPGRADE.LAUNCH_UPGRADE()

2847: -- x_retcode -> Error Return code
2848: --
2849: -- Functions: This API is used in the concurrent program
2850: -- 'Costgroup upgrade for closed periods'.
2851: -- This API inturn calls INV_CG_UPGRADE.LAUNCH_UPGRADE()
2852: -- with input parameter 2 to include transactions
2853: -- from closed periods for Cost Group Upgrade.
2854:
2855: PROCEDURE CG_UPGR_FOR_CLOSED_PER_CP(

Line 2859: INV_CG_UPGRADE.LAUNCH_UPGRADE(2);

2855: PROCEDURE CG_UPGR_FOR_CLOSED_PER_CP(
2856: x_errorbuf OUT NOCOPY VARCHAR2
2857: , x_retcode OUT NOCOPY VARCHAR2) AS
2858: BEGIN
2859: INV_CG_UPGRADE.LAUNCH_UPGRADE(2);
2860:
2861: END CG_UPGR_FOR_CLOSED_PER_CP;
2862:
2863:

Line 2864: END inv_cg_upgrade;

2860:
2861: END CG_UPGR_FOR_CLOSED_PER_CP;
2862:
2863:
2864: END inv_cg_upgrade;