Search Results credit_analyst_id
Overview
AR_CMGT_REASSIGN_CONC is an Oracle Receivables credit management utility package that performs the bulk reassignment of credit analyst ownership between resources. In Release 12, credit management introduced a formal credit analyst role, exposed on records such as credit case folders, credit requests, and customer profiles through the credit_analyst_id column. When a credit analyst leaves the organization, changes territory, or when workloads must be rebalanced, the affected open items retain the original analyst reference and must be transitioned to a successor. This package provides the programmatic engine that performs that transition in a controlled, set-based manner, optionally constrained by assignment status and a date window. Its sole documented entry point is designed for concurrent program execution, accepting the inbound and outbound analyst identifiers as concurrent parameters and converting them from canonical (character) form into internal NUMBER and DATE values before processing.
Key Procedures and Functions
- reassign_credit_analyst — The single documented procedure in the package body, and the unit of work invoked by the concurrent program. It receives the source credit analyst, the target credit analyst, an assignment status filter, and a start and end date that scope which records are eligible for reassignment. Its signature follows the standard concurrent program convention, returning status through the
errbufandretcodeOUT NOCOPY parameters. Internally it converts the canonical inbound parameters usingFND_NUMBER.CANONICAL_TO_NUMBERandFND_DATE.CANONICAL_TO_DATE, then initializes three independent return status variables (l_cf_return_status,l_req_return_status,l_prof_return_status) toFND_API.G_RET_STS_SUCCESS, indicating that case folders, credit requests, and customer profiles are each updated through their own API call with separately tracked outcomes. Diagnostic output is gated by theAFLOG_ENABLEDprofile option and written throughARP_UTIL.DEBUG.
Tables Accessed
- AR_CMGT_CASE_FOLDERS — Credit case folders that carry the analyst assignment; the source records whose owning analyst is changed from the "from" value to the "to" value.
- AR_CMGT_CREDIT_REQUESTS — Credit requests raised against customers, reassigned on the same basis so that pending reviews follow the new analyst.
- HZ_CUSTOMER_PROFILES — The Trading Community Architecture profile records holding the default credit analyst for a customer account, updated so that future credit activity routes to the successor analyst.
All three are accessed through APPS synonyms. The three distinct return status variables confirm that each of these entities is updated by a separate API invocation rather than by direct DML, preserving the validation, defaulting, and business logic that the underlying credit management APIs enforce.
Usage Notes
The procedure's concurrent-program parameter signature indicates that it is normally registered as an Oracle Receivables concurrent program and submitted from the Credit Management responsibility, where the user selects the departing analyst, the receiving analyst, and optional status and date criteria. The canonical parameter conversion confirms that values arrive as concurrent program character parameters rather than as native datatypes. Because the package body carries an old header revision and is classified as OTHER rather than as a public API, it should not be called directly from custom code where a supported credit management API exists. The ETRM metadata records no packages referencing it, so its call surface is limited to the concurrent manager and any site-specific wrappers. Production use should be preceded by a scoped trial run against a narrow date range, since reassignment affects open cases, pending credit requests, and customer profile defaults simultaneously and all three update paths must report success for the run to be considered complete.
-
APPS.AR_CMGT_REASSIGN_CONC SQL Statements
12.2.2
-
APPS.AR_CMGT_REASSIGN_CONC SQL Statements
12.1.1
-
PACKAGE BODY: APPS.AR_CMGT_REASSIGN_CONC
12.2.2
-
VIEW: AR.AR_CMGT_CASE_FOLDERS#
12.2.2
-
PACKAGE BODY: APPS.AR_CMGT_REASSIGN_CONC
12.1.1
-
VIEW: AR.AR_CMGT_CREDIT_REQUESTS#
12.2.2
-
View: XNC_CUST_PROFILE_CREDIT_V
12.2.2
product: XNC - Sales for Communications (Obsolete) , description: XNC_CUST_PROFILE_CREDIT_V retrieves credit profiles for customer accounts. , implementation_dba_data: Not implemented in this database ,
-
View: XNC_CUST_PROFILE_CREDIT_V
12.1.1
product: XNC - Sales for Communications (Obsolete) , description: XNC_CUST_PROFILE_CREDIT_V retrieves credit profiles for customer accounts. , implementation_dba_data: Not implemented in this database ,
-
VIEW: AR.HZ_CUST_PROFILE_CLASSES#
12.2.2
-
VIEW: AR.HZ_CUSTOMER_PROFILES_M#
12.2.2
-
View: CSC_CUST_PROFILE_CREDIT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSC.CSC_CUST_PROFILE_CREDIT_V, object_name:CSC_CUST_PROFILE_CREDIT_V, status:VALID, product: CSC - Customer Care , implementation_dba_data: APPS.CSC_CUST_PROFILE_CREDIT_V ,
-
VIEW: AR.AR_CMGT_CASE_FOLDERS#
12.2.2
owner:AR, object_type:VIEW, object_name:AR_CMGT_CASE_FOLDERS#, status:VALID,
-
VIEW: AR.HZ_CUSTOMER_PROFILES#
12.2.2
-
View: CSC_CUST_PROFILE_CREDIT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSC.CSC_CUST_PROFILE_CREDIT_V, object_name:CSC_CUST_PROFILE_CREDIT_V, status:VALID, product: CSC - Customer Care , implementation_dba_data: APPS.CSC_CUST_PROFILE_CREDIT_V ,
-
View: AST_CUST_PROFILE_CREDIT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_CUST_PROFILE_CREDIT_V, object_name:AST_CUST_PROFILE_CREDIT_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_CUST_PROFILE_CREDIT_V ,
-
View: AST_CUST_PROFILE_CREDIT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_CUST_PROFILE_CREDIT_V, object_name:AST_CUST_PROFILE_CREDIT_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_CUST_PROFILE_CREDIT_V ,
-
VIEW: APPS.JTF_CUSTOMER_PROFILES_V
12.1.1
-
View: JTF_CUSTOMER_PROFILES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_CUSTOMER_PROFILES_V, object_name:JTF_CUSTOMER_PROFILES_V, status:VALID, product: JTF - CRM Foundation , description: JTF_CUSTOMER_PROFILES_V retrieves credit information for your customer accounts and customer account sites. , implementation_dba_data: APPS.JTF_CUSTOMER_PROFILES_V ,
-
View: JTF_CUSTOMER_PROFILES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_CUSTOMER_PROFILES_V, object_name:JTF_CUSTOMER_PROFILES_V, status:VALID, product: JTF - CRM Foundation , description: JTF_CUSTOMER_PROFILES_V retrieves credit information for your customer accounts and customer account sites. , implementation_dba_data: APPS.JTF_CUSTOMER_PROFILES_V ,
-
VIEW: APPS.JTF_CUSTOMER_PROFILES_V
12.2.2
-
VIEW: APPS.CSC_CUST_PROFILE_CREDIT_V
12.1.1
-
TABLE: AR.AR_CMGT_CASE_FOLDERS
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_CMGT_CASE_FOLDERS, object_name:AR_CMGT_CASE_FOLDERS, status:VALID,
-
TABLE: AR.AR_CMGT_CASE_FOLDERS
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_CMGT_CASE_FOLDERS, object_name:AR_CMGT_CASE_FOLDERS, status:VALID,
-
VIEW: APPS.CSC_CUST_PROFILE_CREDIT_V
12.2.2
-
VIEW: APPS.CSC_CUST_PROFILE_CREDIT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSC.CSC_CUST_PROFILE_CREDIT_V, object_name:CSC_CUST_PROFILE_CREDIT_V, status:VALID,
-
VIEW: APPS.AST_CUST_PROFILE_CREDIT_V
12.1.1
-
VIEW: APPS.CSC_CUST_PROFILE_CREDIT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSC.CSC_CUST_PROFILE_CREDIT_V, object_name:CSC_CUST_PROFILE_CREDIT_V, status:VALID,
-
VIEW: AR.AR_CMGT_CREDIT_REQUESTS#
12.2.2
owner:AR, object_type:VIEW, object_name:AR_CMGT_CREDIT_REQUESTS#, status:VALID,
-
VIEW: APPS.AST_CUST_PROFILE_CREDIT_V
12.2.2
-
VIEW: APPS.AST_CUST_PROFILE_CREDIT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_CUST_PROFILE_CREDIT_V, object_name:AST_CUST_PROFILE_CREDIT_V, status:VALID,
-
View: AR_CUSTOMER_PROFILES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_CUSTOMER_PROFILES_V, object_name:AR_CUSTOMER_PROFILES_V, status:VALID, product: AR - Receivables , description: (Release 11.5 Only) , implementation_dba_data: APPS.AR_CUSTOMER_PROFILES_V ,
-
VIEW: APPS.AST_CUST_PROFILE_CREDIT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_CUST_PROFILE_CREDIT_V, object_name:AST_CUST_PROFILE_CREDIT_V, status:VALID,
-
View: AR_CUSTOMER_PROFILES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_CUSTOMER_PROFILES_V, object_name:AR_CUSTOMER_PROFILES_V, status:VALID, product: AR - Receivables , description: (Release 11.5 Only) , implementation_dba_data: APPS.AR_CUSTOMER_PROFILES_V ,
-
VIEW: AR.HZ_CUST_PROFILE_CLASSES#
12.2.2
owner:AR, object_type:VIEW, object_name:HZ_CUST_PROFILE_CLASSES#, status:VALID,
-
APPS.AR_CMGT_WF_ENGINE SQL Statements
12.1.1
-
VIEW: AR.HZ_CUSTOMER_PROFILES_M#
12.2.2
owner:AR, object_type:VIEW, object_name:HZ_CUSTOMER_PROFILES_M#, status:VALID,
-
APPS.AR_CMGT_WF_ENGINE SQL Statements
12.2.2
-
VIEW: APPS.AR_CUSTOMER_PROFILES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_CUSTOMER_PROFILES_V, object_name:AR_CUSTOMER_PROFILES_V, status:VALID,
-
VIEW: APPS.AR_CUSTOMER_PROFILES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_CUSTOMER_PROFILES_V, object_name:AR_CUSTOMER_PROFILES_V, status:VALID,
-
VIEW: AR.HZ_CUSTOMER_PROFILES#
12.2.2
owner:AR, object_type:VIEW, object_name:HZ_CUSTOMER_PROFILES#, status:VALID,
-
TABLE: AR.AR_CMGT_CREDIT_REQUESTS
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_CMGT_CREDIT_REQUESTS, object_name:AR_CMGT_CREDIT_REQUESTS, status:VALID,
-
TABLE: AR.AR_CMGT_CREDIT_REQUESTS
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_CMGT_CREDIT_REQUESTS, object_name:AR_CMGT_CREDIT_REQUESTS, status:VALID,
-
VIEW: APPS.AR_CUSTOMER_PROFILE_CLASSES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_CUSTOMER_PROFILE_CLASSES_V, object_name:AR_CUSTOMER_PROFILE_CLASSES_V, status:VALID,
-
VIEW: APPS.AR_CUSTOMER_PROFILE_CLASSES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_CUSTOMER_PROFILE_CLASSES_V, object_name:AR_CUSTOMER_PROFILE_CLASSES_V, status:VALID,
-
VIEW: APPS.AR_CUSTOMER_PROFILES_V
12.2.2
-
VIEW: APPS.AR_CUSTOMER_PROFILES_V
12.1.1
-
View: AR_CUSTOMER_PROFILE_CLASSES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_CUSTOMER_PROFILE_CLASSES_V, object_name:AR_CUSTOMER_PROFILE_CLASSES_V, status:VALID, product: AR - Receivables , description: (Release 12.0 Only) , implementation_dba_data: APPS.AR_CUSTOMER_PROFILE_CLASSES_V ,
-
View: AR_CUSTOMER_PROFILE_CLASSES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_CUSTOMER_PROFILE_CLASSES_V, object_name:AR_CUSTOMER_PROFILE_CLASSES_V, status:VALID, product: AR - Receivables , description: (Release 12.0 Only) , implementation_dba_data: APPS.AR_CUSTOMER_PROFILE_CLASSES_V ,
-
PACKAGE: APPS.OCM_CREDIT_REQUEST_UPDATE_PUB
12.2.2
-
PACKAGE: APPS.OCM_CREDIT_REQUEST_UPDATE_PUB
12.1.1