DBA Data[Home] [Help]

APPS.INV_AUTODETAIL dependencies on STANDARD

Line 422: -- cost group for the subinventory if in a standard costing org.

418: END IF;
419:
420: -- Now get the cost group. If the to_cost_group is specified
421: -- on the move order, then use that. If not, query the default
422: -- cost group for the subinventory if in a standard costing org.
423: -- If not defined there, or if avg. costing org
424: -- try to get the default cost group from the organization
425: IF p_to_cost_group_id IS NULL THEN
426: IF INV_CACHE.set_org_rec(l_organization_id) THEN

Line 1915: -- p_api_version_number standard input parameter

1911: -- in the locator. If p_suggest_serial is passed as fnd_api.g_false
1912: -- (default), the engine will not give serial numbers in the output.
1913: --
1914: -- Input Parameters
1915: -- p_api_version_number standard input parameter
1916: -- p_init_msg_lst standard input parameter
1917: -- p_commit standard input parameter
1918: -- p_validation_level standard input parameter
1919: -- p_transaction_temp_id equals to the move order line id

Line 1916: -- p_init_msg_lst standard input parameter

1912: -- (default), the engine will not give serial numbers in the output.
1913: --
1914: -- Input Parameters
1915: -- p_api_version_number standard input parameter
1916: -- p_init_msg_lst standard input parameter
1917: -- p_commit standard input parameter
1918: -- p_validation_level standard input parameter
1919: -- p_transaction_temp_id equals to the move order line id
1920: -- for the detailing request

Line 1917: -- p_commit standard input parameter

1913: --
1914: -- Input Parameters
1915: -- p_api_version_number standard input parameter
1916: -- p_init_msg_lst standard input parameter
1917: -- p_commit standard input parameter
1918: -- p_validation_level standard input parameter
1919: -- p_transaction_temp_id equals to the move order line id
1920: -- for the detailing request
1921: -- p_reservations reservations for the demand source

Line 1918: -- p_validation_level standard input parameter

1914: -- Input Parameters
1915: -- p_api_version_number standard input parameter
1916: -- p_init_msg_lst standard input parameter
1917: -- p_commit standard input parameter
1918: -- p_validation_level standard input parameter
1919: -- p_transaction_temp_id equals to the move order line id
1920: -- for the detailing request
1921: -- p_reservations reservations for the demand source
1922: -- as the transaction source

Line 1928: -- x_return_status standard output parameters

1924: -- p_suggest_serial whether or not the engine should suggest
1925: -- serial numbers in the detailing
1926: --
1927: -- Output Parameters
1928: -- x_return_status standard output parameters
1929: -- x_msg_count standard output parameters
1930: -- x_msg_data standard output parameters
1931: --
1932: PROCEDURE create_suggestions

Line 1929: -- x_msg_count standard output parameters

1925: -- serial numbers in the detailing
1926: --
1927: -- Output Parameters
1928: -- x_return_status standard output parameters
1929: -- x_msg_count standard output parameters
1930: -- x_msg_data standard output parameters
1931: --
1932: PROCEDURE create_suggestions
1933: (p_api_version IN NUMBER,

Line 1930: -- x_msg_data standard output parameters

1926: --
1927: -- Output Parameters
1928: -- x_return_status standard output parameters
1929: -- x_msg_count standard output parameters
1930: -- x_msg_data standard output parameters
1931: --
1932: PROCEDURE create_suggestions
1933: (p_api_version IN NUMBER,
1934: p_init_msg_list IN VARCHAR2 DEFAULT fnd_api.g_false,

Line 1952: -- Standard start of API savepoint

1948: l_return_status VARCHAR2(1) := fnd_api.g_ret_sts_success ;
1949: l_request_context inv_detail_util_pvt.g_request_context_rec_type;
1950: l_request_line_rec inv_detail_util_pvt.g_request_line_rec_type;
1951: BEGIN
1952: -- Standard start of API savepoint
1953: SAVEPOINT create_suggestions_sa;
1954: --
1955: --Standard compatibility check
1956: IF NOT fnd_api.compatible_api_call(

Line 1955: --Standard compatibility check

1951: BEGIN
1952: -- Standard start of API savepoint
1953: SAVEPOINT create_suggestions_sa;
1954: --
1955: --Standard compatibility check
1956: IF NOT fnd_api.compatible_api_call(
1957: c_api_version_number
1958: , p_api_version
1959: , l_api_name

Line 2005: -- Standard check of p_commit

2001: ELSIF ( l_return_status = fnd_api.g_ret_sts_error ) THEN
2002: RAISE fnd_api.g_exc_error ;
2003: END IF;
2004: --
2005: -- Standard check of p_commit
2006: IF fnd_api.to_boolean(p_commit) THEN
2007: COMMIT;
2008: END IF;
2009: --