Search Results customer_group_code




Overview

The APPS.AS_IMP_SL_V view resides in the Sales Foundation (AS) product family of Oracle E-Business Suite and is classified in the ETRM repository as Obsolete. It is a database view owned by the APPS schema with a VALID status in both 12.1.1 and 12.2.2 environments where the object has not been removed by patching. The name follows the AS_IMP_* convention used for Sales Foundation import interface constructs, where "IMP" denotes import and "SL" refers to the sales lead domain. The view therefore exposes a flattened, query-friendly projection of columns relevant to the import and update of sales lead, customer, contact, and address information staged through the AS_IMPORT_INTERFACE table.

Because the description is documented simply as Obsolete, the view should be treated as a legacy artifact. It is retained for backward compatibility and is not recommended as a foundation for new development in 12.1.1 or 12.2.2. Understanding its column inventory remains useful for maintenance, impact analysis during upgrades, and for diagnosing customizations that still reference it.

Underlying Base Objects

ETRM documents a single referenced base object for AS_IMP_SL_V: the synonym AS_IMPORT_INTERFACE, which resolves to the APPS.AS_IMPORT_INTERFACE table. The view text is a straight column projection over that interface table, with ROWID included as the leading expression and no joins, unions, or aggregations visible in the documented excerpt. This structure indicates the view acts as a column-filtered window onto the import interface rather than a denormalized reporting construct. All DML that flows into the interface table through the import process is immediately visible through the view, and inserts performed directly against the view propagate to the base table.

Key Columns

The column list is extensive and spans several functional groupings:

Common Use Cases and Queries

Typical usage centers on inspecting staged import rows and validating the new-location decision prior to submission of the import concurrent program.

  • Identifying records flagged as new locations: SELECT import_interface_id, batch_id, new_loc_flag, address_id, address1 FROM apps.as_imp_sl_v WHERE new_loc_flag = 'Y';
  • Reviewing failed or pending rows: SELECT batch_id, load_status, load_error_message FROM apps.as_imp_sl_v WHERE load_status <> 'COMPLETE';
  • Auditing party and customer resolution: SELECT customer_number, party_id, party_site_id, new_party_flag FROM apps.as_imp_sl_v WHERE batch_id = :batch_id;

Because the object is documented as Obsolete, any new integration should reference the AS_IMPORT_INTERFACE table directly or use supported TCA and Sales Foundation APIs instead.