Search Results oe_line_security
Overview
OE_LINE_SECURITY is a PL/SQL package body in the APPS schema that implements Oracle Order Management's line-level security model. Its core business purpose is to evaluate whether the current user is authorized to view, modify, or transact against a specific order line, based on attributes of that line and on the security rules configured for the operating unit and responsibility. In Oracle EBS 12.1.1 and 12.2.2, this package is invoked widely across Order Management, since access control must be enforced consistently whenever order lines are queried or updated. It is classified in the ETRM documentation as an "OTHER" API rather than a public or private user API, confirming that it is an internal utility consumed by Oracle's own forms, concurrent programs, and business logic rather than a supported integration point. The package is heavily depended upon: the documentation records that it is referenced by 234 other database objects, establishing it as a foundational component of order-line processing. It is not itself referenced by any reverse-dependent object, so it sits near the base of the Order Management dependency hierarchy.
Key Procedures and Functions
The documented interface exposes 133 procedures and functions. Because the ETRM metadata records names only, the descriptions below reflect their evident role within line security without asserting parameter signatures.
- Attribute accessors (ATTRIBUTE1 through ATTRIBUTE20): These functions retrieve the value of the corresponding descriptive flexfield or attribute column on the secured order line, allowing security rules to key on customer, region, product, or other configurable criteria.
- Line attribute functions: ACCOUNTING_RULE and ACCOUNTING_RULE_DURATION expose the accounting rule and its duration for the line; COMMITMENT_ID exposes the commitment reference; AGREEMENT exposes the agreement reference; CALCULATE_PRICE_FLAG indicates whether pricing should be recalculated; and AUTHORIZED_TO_SHIP indicates shipping authorization. These allow security predicates to be expressed in terms of order-line business attributes rather than only user identity.
Collectively these accessors supply the attribute values that security rules compare against, isolating the rule engine from the physical layout of OE_ORDER_LINES.
Tables Accessed
- OE_ORDER_LINES: The primary source of line-level data. The package reads order line attributes, flags, and context values to evaluate security conditions.
- OE_PC_CONSTRAINTS: Stores the processing constraint definitions used to derive security-relevant rules, including the constraints that govern which lines a user may act upon.
- PLITBLM: The standard Oracle Forms PL/SQL table, used to carry in-memory result sets or identifier lists within the package's forms-driven invocation paths.
These tables are reached through APPS synonyms, consistent with the package's placement in the APPS schema. Dependencies also reference OE_ORDER_PUB, OE_LINE_UTIL_EXT, OE_SALES_CAN_UTIL, and OE_GLOBALS, indicating that line security is evaluated cooperatively with the public order API and Order Management's global state.
Usage Notes
OE_LINE_SECURITY is invoked automatically rather than called directly by end users. The Order Management order-entry forms call it whenever lines are queried or manipulated, ensuring that unauthorized lines are filtered from the user's view and blocked from update. Concurrent programs that process orders—picking, shipping, invoicing, and acknowledgment generation—rely on the same security evaluation so that batch processing honors the same restrictions as interactive use. Oracle's internal packages (OE_ORDER_PUB, OE_ACKNOWLEDGMENT_PUB, and others listed in the dependency metadata) call it to enforce line visibility during API operations. Because the package is not documented as a public API, customizations should not invoke it directly; instead, custom code should respect Order Management's supported APIs and the security configuration established through setup. Developers troubleshooting unexpected line visibility should examine the security rules stored in OE_PC_CONSTRAINTS and the profile options read via FND_PROFILE, as those drive the evaluations performed here.
-
PACKAGE BODY: APPS.OE_LINE_SECURITY
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OE_LINE_SECURITY, status:VALID,
-
PACKAGE BODY: APPS.OE_LINE_SECURITY
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OE_LINE_SECURITY, status:VALID,
-
PACKAGE: APPS.OE_PC_GLOBALS
12.2.2
owner:APPS, object_type:PACKAGE, object_name:OE_PC_GLOBALS, status:VALID,
-
PACKAGE: APPS.OE_PC_GLOBALS
12.1.1
owner:APPS, object_type:PACKAGE, object_name:OE_PC_GLOBALS, status:VALID,
-
PACKAGE BODY: APPS.OE_2PC2_SHIPSET_REGLINE
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OE_2PC2_SHIPSET_REGLINE, status:VALID,
-
PACKAGE BODY: APPS.OE_2PC2_SHIPSET_EXTLINE
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OE_2PC2_SHIPSET_EXTLINE, status:VALID,
-
PACKAGE BODY: APPS.OE_2PC2_ORDLINS_CANLINE
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OE_2PC2_ORDLINS_CANLINE, status:VALID,
-
PACKAGE BODY: APPS.OE_2PC1018_BLKTHDR_BLPENAP
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OE_2PC1018_BLKTHDR_BLPENAP, status:VALID,
-
PACKAGE BODY: APPS.OE_2PC2_ATOCON_STANDAR
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OE_2PC2_ATOCON_STANDAR, status:VALID,
-
PACKAGE BODY: APPS.OE_2PC2_ORDLINS_ATOCOMP
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OE_2PC2_ORDLINS_ATOCOMP, status:VALID,
-
PACKAGE BODY: APPS.OE_2PC2_LINE_AHLLINE
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OE_2PC2_LINE_AHLLINE, status:VALID,
-
PACKAGE BODY: APPS.OE_2PC2_LINE_ATOCOMP
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OE_2PC2_LINE_ATOCOMP, status:VALID,
-
PACKAGE BODY: APPS.OE_2PC2_SHIPSET_CANLINE
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OE_2PC2_SHIPSET_CANLINE, status:VALID,
-
PACKAGE BODY: APPS.OE_2PC2_ATOCON_ATOCOMP
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OE_2PC2_ATOCON_ATOCOMP, status:VALID,
-
PACKAGE BODY: APPS.OE_2PC1_ORDER_CUSTREJ
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OE_2PC1_ORDER_CUSTREJ, status:VALID,
-
PACKAGE BODY: APPS.OE_2PC2_SHIPSET_FULFILL
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OE_2PC2_SHIPSET_FULFILL, status:VALID,
-
PACKAGE BODY: APPS.OE_2PC1_ORDER_AHLORD
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OE_2PC1_ORDER_AHLORD, status:VALID,
-
PACKAGE BODY: APPS.OE_2PC2_LINE_SHPCNF
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OE_2PC2_LINE_SHPCNF, status:VALID,
-
PACKAGE BODY: APPS.OE_2PC2_ATOCON_CANLINE
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OE_2PC2_ATOCON_CANLINE, status:VALID,
-
PACKAGE BODY: APPS.OE_2PC2_LINE_STANDAR
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OE_2PC2_LINE_STANDAR, status:VALID,
-
PACKAGE BODY: APPS.OE_2PC1_ORDER_CUSTSIG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OE_2PC1_ORDER_CUSTSIG, status:VALID,
-
PACKAGE BODY: APPS.OE_2PC2_CONFIG_RETROLN
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OE_2PC2_CONFIG_RETROLN, status:VALID,
-
PACKAGE BODY: APPS.OE_2PC2_CONFIG_CANLINE
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OE_2PC2_CONFIG_CANLINE, status:VALID,
-
PACKAGE BODY: APPS.OE_2PC2_ORDLINS_RCVED
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OE_2PC2_ORDLINS_RCVED, status:VALID,
-
PACKAGE BODY: APPS.OE_2PC2_CONFIG_NAINV
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OE_2PC2_CONFIG_NAINV, status:VALID,
-
PACKAGE BODY: APPS.OE_2PC2_SHIPSET_SCHEXST
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OE_2PC2_SHIPSET_SCHEXST, status:VALID,
-
PACKAGE BODY: APPS.OE_2PC2_SHIPSET_SERVICE
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OE_2PC2_SHIPSET_SERVICE, status:VALID,
-
PACKAGE BODY: APPS.OE_2PC2_ORDLINS_EXTLINE
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OE_2PC2_ORDLINS_EXTLINE, status:VALID,
-
PACKAGE BODY: APPS.OE_2PC2_ATOCON_EXTLINE
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OE_2PC2_ATOCON_EXTLINE, status:VALID,
-
PACKAGE BODY: APPS.OE_2PC2_SHIPSET_INVOICE
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OE_2PC2_SHIPSET_INVOICE, status:VALID,
-
PACKAGE BODY: APPS.OE_2PC2_LINE_SERVICE
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OE_2PC2_LINE_SERVICE, status:VALID,
-
PACKAGE BODY: APPS.OE_2PC1_ORDER_PENAPPR
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OE_2PC1_ORDER_PENAPPR, status:VALID,
-
PACKAGE BODY: APPS.OE_2PC2_CONFIG_EXTLINE
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OE_2PC2_CONFIG_EXTLINE, status:VALID,
-
PACKAGE BODY: APPS.OE_2PC2_SHIPSET_CLOSED
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OE_2PC2_SHIPSET_CLOSED, status:VALID,
-
PACKAGE BODY: APPS.OE_2PC2_CONFIG_RLMLIN
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OE_2PC2_CONFIG_RLMLIN, status:VALID,
-
PACKAGE BODY: APPS.OE_2PC2_ORDLINS_BKDRET
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OE_2PC2_ORDLINS_BKDRET, status:VALID,
-
PACKAGE BODY: APPS.OE_2PC2_SHIPSET_PRCONF
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OE_2PC2_SHIPSET_PRCONF, status:VALID,
-
PACKAGE BODY: APPS.OE_2PC2_CONFIG_RETLIN
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OE_2PC2_CONFIG_RETLIN, status:VALID,
-
PACKAGE BODY: APPS.OE_2PC2_ATOCON_RETROLN
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OE_2PC2_ATOCON_RETROLN, status:VALID,
-
PACKAGE BODY: APPS.OE_2PC2_SHIPSET_AHLLINE
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OE_2PC2_SHIPSET_AHLLINE, status:VALID,
-
PACKAGE BODY: APPS.OE_2PC1_ORDER_ENTER
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OE_2PC1_ORDER_ENTER, status:VALID,
-
PACKAGE BODY: APPS.OE_2PC2_LINE_PRCONF
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OE_2PC2_LINE_PRCONF, status:VALID,
-
PACKAGE BODY: APPS.OE_2PC1_ORDER_DRAFSUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OE_2PC1_ORDER_DRAFSUB, status:VALID,
-
PACKAGE BODY: APPS.OE_2PC2_ORDLINS_RETLIN
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OE_2PC2_ORDLINS_RETLIN, status:VALID,
-
PACKAGE BODY: APPS.OE_2PC2_CONFIG_ENTER
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OE_2PC2_CONFIG_ENTER, status:VALID,
-
PACKAGE BODY: APPS.OE_2PC2_SHIPSET_INCITEM
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OE_2PC2_SHIPSET_INCITEM, status:VALID,
-
PACKAGE BODY: APPS.OE_2PC2_LINE_INVOICE
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OE_2PC2_LINE_INVOICE, status:VALID,
-
PACKAGE BODY: APPS.OE_2PC2_SHIPSET_STANDAR
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OE_2PC2_SHIPSET_STANDAR, status:VALID,
-
PACKAGE BODY: APPS.OE_2PC2_LINE_RETLIN
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OE_2PC2_LINE_RETLIN, status:VALID,
-
PACKAGE BODY: APPS.OE_2PC1_ORDER_RETORD
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OE_2PC1_ORDER_RETORD, status:VALID,