Search Results ship_to_loc_id
Overview
GMF_MTL_GET_ORG_ID is a Process Manufacturing (OPM) utility package owned by the APPS schema in Oracle E-Business Suite 12.1.1 and 12.2.2. Its business function is narrow and infrastructure-oriented: it resolves the organization code of an inventory organization under a set of filter criteria that include a date range, a lookup code, and a location identifier. The package therefore acts as a lookup service rather than as a transactional API, and it is classified in the ETRM repository as API classification OTHER. The header comment embedded in the source, $Header: gmforgib.pls 115.1 2002/10/29, indicates that the body has remained stable since the 11.5 code line, and the 115.x version numbering is consistent with the fact that the package was carried forward largely unchanged into the 12.x releases.
Key Procedures and Functions
Exactly one procedure is documented in the metadata for this package.
- PROC_INV_GET_ORG_ID — The single public entry point. It opens (or reuses) the package cursor, fetches a single organization code, and returns it through an OUT parameter. Its parameter set is deliberately generic and carries the same shape as the cursor: a start date, an end date, a lookup code, a ship-to location identifier, the returned organization identifier, a row-to-fetch counter, and an error status. The procedure follows the classical OPM utility idiom in which caller-supplied parameters are declared
IN OUT NOCOPYand theERROR_STATUSOUT parameter is populated with an Oracle error number rather than raised as an exception. A value of 100 inERROR_STATUSsignals that the cursor returned no rows; otherwise the exception handler populatesERROR_STATUSwithSQLCODE. The procedure closes the cursor when no row is found or whenROW_TO_FETCHequals 1, which allows a caller to page through multiple organization codes using the same open cursor.
Tables Accessed
The package references a single documented table through an APPS synonym:
- ORG_ORGANIZATION_DEFINITIONS — The inventory organization definition table. The cursor selects
ORGANIZATION_CODEfrom this table. In the documented source the predicate is the minimalWHERE ORGANIZATION_ID > 0, meaning the date range, lookup code, and ship-to location parameters supplied to the procedure are accepted and propagated to the cursor but do not restrict the result set in the code as shipped. This is significant for developers: the parameters are effectively placeholders, and the procedure returns the first qualifying organization code encountered.
No other tables, views, or package-level state are documented for this object, and the ETRM repository records zero packages that reference it.
Usage Notes
Because the package is not referenced by any other documented package and exposes a single low-level procedure, it is best understood as a private helper that has been exposed as a public database object rather than as a supported integration API. Typical invocation patterns are:
- PL/SQL from OPM concurrent programs or custom code — A caller declares the IN OUT variables, invokes
APPS.GMF_MTL_GET_ORG_ID.PROC_INV_GET_ORG_ID, then inspectsERROR_STATUSfor 100 (no data) or a SQL error code, and consumes the returned organization code fromINV_ORG_ID. - Cursor paging — Callers that need successive organization codes invoke the procedure repeatedly with
ROW_TO_FETCHset to values other than 1 so the cursor remains open between calls, and finally setROW_TO_FETCHto 1 to force the close. - Forms or reports — No documented Oracle Forms block or concurrent program is bound to this package in the ETRM metadata, so direct form-level invocation should be treated as unsupported.
The search term ship_to_loc_id matches the fourth formal parameter of PROC_INV_GET_ORG_ID. Developers tracing that column should note that the value is passed through to the cursor but is not used in the documented query predicate, so it has no filtering effect in this version of the body. Customizations that require true ship-to location filtering must be implemented by wrapping or replacing this procedure rather than by relying on its parameters.
-
PACKAGE BODY: APPS.GMF_MTL_GET_ORG_ID
12.2.2
-
PACKAGE BODY: APPS.GMF_MTL_GET_ORG_ID
12.1.1
-
View: ITG_PO_LINE_LOC_ARCH_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ITG.ITG_PO_LINE_LOC_ARCH_V, object_name:ITG_PO_LINE_LOC_ARCH_V, status:VALID, product: ITG - Internet Procurement Enterprise Connector , description: Used for XML mapping in the line locations level , implementation_dba_data: APPS.ITG_PO_LINE_LOC_ARCH_V ,
-
View: ITG_PO_LINE_LOC_ARCH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ITG.ITG_PO_LINE_LOC_ARCH_V, object_name:ITG_PO_LINE_LOC_ARCH_V, status:VALID, product: ITG - Internet Procurement Enterprise Connector , description: Used for XML mapping in the line locations level , implementation_dba_data: APPS.ITG_PO_LINE_LOC_ARCH_V ,
-
VIEW: APPS.PO_ECX_LINE_LOC_ARCH_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_ECX_LINE_LOC_ARCH_V, object_name:PO_ECX_LINE_LOC_ARCH_V, status:VALID,
-
VIEW: APPS.PO_ECX_LINE_LOC_ARCH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_ECX_LINE_LOC_ARCH_V, object_name:PO_ECX_LINE_LOC_ARCH_V, status:VALID,
-
VIEW: APPS.CLN_PO_ECX_LINE_LOC_ARCH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CLN.CLN_PO_ECX_LINE_LOC_ARCH_V, object_name:CLN_PO_ECX_LINE_LOC_ARCH_V, status:VALID,
-
VIEW: APPS.CLN_PO_ECX_LINE_LOC_ARCH_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CLN.CLN_PO_ECX_LINE_LOC_ARCH_V, object_name:CLN_PO_ECX_LINE_LOC_ARCH_V, status:VALID,
-
VIEW: APPS.ITG_PO_LINE_LOC_ARCH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ITG.ITG_PO_LINE_LOC_ARCH_V, object_name:ITG_PO_LINE_LOC_ARCH_V, status:VALID,
-
VIEW: APPS.PO_CXML_LINE_LOC_ARCH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_CXML_LINE_LOC_ARCH_V, object_name:PO_CXML_LINE_LOC_ARCH_V, status:VALID,
-
VIEW: APPS.ITG_PO_LINE_LOC_ARCH_V
12.1.1
-
VIEW: APPS.ITG_PO_LINE_LOC_ARCH_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ITG.ITG_PO_LINE_LOC_ARCH_V, object_name:ITG_PO_LINE_LOC_ARCH_V, status:VALID,
-
VIEW: APPS.PO_CXML_LINE_LOC_ARCH_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_CXML_LINE_LOC_ARCH_V, object_name:PO_CXML_LINE_LOC_ARCH_V, status:VALID,
-
PACKAGE: APPS.GMF_MTL_GET_ORG_ID
12.1.1
-
VIEW: APPS.ITG_PO_LINE_LOC_ARCH_V
12.2.2
-
PACKAGE: APPS.GMF_MTL_GET_ORG_ID
12.2.2
-
VIEW: CSI.CSI_WEBADI_STAGING#
12.2.2
-
View: CLN_PO_ECX_LINE_LOC_ARCH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CLN.CLN_PO_ECX_LINE_LOC_ARCH_V, object_name:CLN_PO_ECX_LINE_LOC_ARCH_V, status:VALID, product: CLN - Supply Chain Trading Connector for RosettaNet , description: This view is used for mapping purposes in PIP-3A8Response , implementation_dba_data: APPS.CLN_PO_ECX_LINE_LOC_ARCH_V ,
-
View: PO_ECX_LINE_LOC_ARCH_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_ECX_LINE_LOC_ARCH_V, object_name:PO_ECX_LINE_LOC_ARCH_V, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.PO_ECX_LINE_LOC_ARCH_V ,
-
View: CLN_PO_ECX_LINE_LOC_ARCH_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CLN.CLN_PO_ECX_LINE_LOC_ARCH_V, object_name:CLN_PO_ECX_LINE_LOC_ARCH_V, status:VALID, product: CLN - Supply Chain Trading Connector for RosettaNet , description: This view is used for mapping purposes in PIP-3A8Response , implementation_dba_data: APPS.CLN_PO_ECX_LINE_LOC_ARCH_V ,
-
View: PO_ECX_LINE_LOC_ARCH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_ECX_LINE_LOC_ARCH_V, object_name:PO_ECX_LINE_LOC_ARCH_V, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.PO_ECX_LINE_LOC_ARCH_V ,
-
View: PO_CXML_LINE_LOC_ARCH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_CXML_LINE_LOC_ARCH_V, object_name:PO_CXML_LINE_LOC_ARCH_V, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.PO_CXML_LINE_LOC_ARCH_V ,
-
View: PO_CXML_LINE_LOC_ARCH_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_CXML_LINE_LOC_ARCH_V, object_name:PO_CXML_LINE_LOC_ARCH_V, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.PO_CXML_LINE_LOC_ARCH_V ,
-
APPS.RCV_CORE_S SQL Statements
12.1.1
-
APPS.RCV_CORE_S SQL Statements
12.2.2
-
VIEW: CSI.CSI_WEBADI_STAGING#
12.2.2
owner:CSI, object_type:VIEW, object_name:CSI_WEBADI_STAGING#, status:VALID,
-
VIEW: APPS.ZX_P2P_CALC_TXN_INPUT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ZX.ZX_P2P_CALC_TXN_INPUT_V, object_name:ZX_P2P_CALC_TXN_INPUT_V, status:VALID,
-
VIEW: APPS.ZX_P2P_CALC_TXN_INPUT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ZX.ZX_P2P_CALC_TXN_INPUT_V, object_name:ZX_P2P_CALC_TXN_INPUT_V, status:VALID,
-
VIEW: APPS.ZX_O2C_CALC_TXN_INPUT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.ZX_O2C_CALC_TXN_INPUT_V, object_name:ZX_O2C_CALC_TXN_INPUT_V, status:VALID,
-
VIEW: APPS.ZX_O2C_CALC_TXN_INPUT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.ZX_O2C_CALC_TXN_INPUT_V, object_name:ZX_O2C_CALC_TXN_INPUT_V, status:VALID,
-
VIEW: APPS.ZX_O2C_CALC_TXN_INPUT_V
12.2.2
-
View: ZX_O2C_CALC_TXN_INPUT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.ZX_O2C_CALC_TXN_INPUT_V, object_name:ZX_O2C_CALC_TXN_INPUT_V, status:VALID, product: FND - Application Object Library , implementation_dba_data: APPS.ZX_O2C_CALC_TXN_INPUT_V ,
-
PACKAGE BODY: APPS.GMI_PR_PICK_SLIP_NUMBER
12.1.1
-
PACKAGE BODY: APPS.GMI_PR_PICK_SLIP_NUMBER
12.2.2
-
PACKAGE: APPS.WSH_BATCH_PROCESS
12.1.1
-
PACKAGE: APPS.WSH_BATCH_PROCESS
12.2.2
-
TABLE: CSI.CSI_WEBADI_STAGING
12.2.2
owner:CSI, object_type:TABLE, object_name:CSI_WEBADI_STAGING, status:VALID,
-
PACKAGE BODY: APPS.RCV_CORE_S
12.1.1
-
PACKAGE BODY: APPS.RCV_CORE_S
12.2.2
-
PACKAGE: APPS.INV_PR_PICK_SLIP_NUMBER
12.1.1
-
PACKAGE: APPS.INV_PR_PICK_SLIP_NUMBER
12.2.2
-
APPS.ZX_TAXWARE_TAX_SERVICE_PKG SQL Statements
12.1.1
-
APPS.AHL_OSP_PO_REQ_PVT SQL Statements
12.1.1
-
APPS.AHL_OSP_PO_REQ_PVT SQL Statements
12.2.2
-
APPS.ZX_TAXWARE_TAX_SERVICE_PKG SQL Statements
12.2.2
-
APPS.ZX_VERTEX_TAX_SERVICE_PKG SQL Statements
12.1.1
-
APPS.ZX_VERTEX_TAX_SERVICE_PKG SQL Statements
12.2.2
-
PACKAGE BODY: APPS.POR_UDA_PKG
12.2.2
-
APPS.CSI_MASS_EDIT_PUB SQL Statements
12.2.2
-
PACKAGE BODY: APPS.AHL_OSP_PO_PVT
12.1.1