Search Results line_order_category_code
Overview
CSF_DEBRIEF_TRANS_TYPES_V is an Oracle E-Business Suite 12.1.1 and 12.2.2 reporting view owned by the APPS schema and delivered as part of the CSF (Field Service) product family. Its documented purpose is to list debrief transaction types — the transaction descriptors that field service technicians may select when performing a debrief, i.e., when recording the outcome of a field service visit such as labour, material usage, return of parts, or order-related activity. The view is defined as a join-and-filter construct rather than a stored table, materialising the subset of transaction types that are valid for debrief use on the current date.
Because it presents a flattened, business-friendly list — transaction type identifier, name, associated business process, and line order category — the view is commonly consumed by debrief-related forms, concurrent programs, and custom integrations. It shields downstream consumers from the multi-table join logic and the effective-dating rules that govern transaction type eligibility.
Underlying Base Objects
The view is defined over the following referenced base objects:
- CS_TRANSACTION_TYPES_VL — the multi-language transaction type definition, supplying NAME and LINE_ORDER_CATEGORY_CODE.
- CS_TXN_BILLING_TYPES — links transaction types to billing types and carries START_DATE_ACTIVE / END_DATE_ACTIVE.
- CS_BUS_PROCESS_TXNS — the business process to transaction type mapping, also effective-dated.
- CS_BUSINESS_PROCESSES — supplies BUSINESS_PROCESS_ID and the FIELD_SERVICE_FLAG filter.
- CS_BILLING_TYPE_CATEGORIES — used to restrict results to BILLING_CATEGORY = 'M'.
- CSI_TXN_SUB_TYPES and CSI_TXN_TYPES — instance transaction sub-type and type definitions, with CTT.SOURCE_APPLICATION_ID = 513.
- CSI_INSTANCE_STATUSES — outer-joined to supply source status effective dating and termination flags.
Note that in 12.2.2 several of these are documented as synonyms or views rather than base tables, reflecting the layered ETRM data model.
Key Columns
- TRANSACTION_TYPE_ID — primary identifier of the debrief transaction type; the join key to related CSF/CSI entities.
- NAME — the user-visible transaction type name, and the view's ORDER BY column, so results are returned alphabetically.
- BUSINESS_PROCESS_ID — identifies the owning field service business process.
- LINE_ORDER_CATEGORY_CODE — the column referenced in the user's search; it distinguishes whether the transaction type pertains to an ORDER or a RETURN line. This value is central to the view's filtering logic, driving whether owner-change and reference requirements apply.
Common Use Cases and Queries
Typical scenarios include populating debrief transaction type lists of values, validating allowed line order categories, and reporting on active debrief types by business process.
Sample SQL:
SELECT transaction_type_id, name, business_process_id, line_order_category_code FROM csf_debrief_trans_types_v WHERE line_order_category_code = 'RETURN';SELECT name, line_order_category_code FROM csf_debrief_trans_types_v WHERE business_process_id = :p_business_process_id ORDER BY name;
Because the view embeds TRUNC(SYSDATE) effective-dating predicates, no additional date filters are required for point-in-time validity checks.
-
View: CSF_DEBRIEF_TRANS_TYPES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSF.CSF_DEBRIEF_TRANS_TYPES_V, object_name:CSF_DEBRIEF_TRANS_TYPES_V, status:VALID, product: CSF - Field Service , description: Lists debrief transaction types , implementation_dba_data: APPS.CSF_DEBRIEF_TRANS_TYPES_V ,
-
View: CSF_DEBRIEF_MAT_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSF.CSF_DEBRIEF_MAT_LINES_V, object_name:CSF_DEBRIEF_MAT_LINES_V, status:VALID, product: CSF - Field Service , description: Field service Report Material Lines information , implementation_dba_data: APPS.CSF_DEBRIEF_MAT_LINES_V ,
-
View: CSF_DEBRIEF_TRANS_TYPES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSF.CSF_DEBRIEF_TRANS_TYPES_V, object_name:CSF_DEBRIEF_TRANS_TYPES_V, status:VALID, product: CSF - Field Service , description: Lists debrief transaction types , implementation_dba_data: APPS.CSF_DEBRIEF_TRANS_TYPES_V ,
-
View: CSF_DEBRIEF_MAT_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSF.CSF_DEBRIEF_MAT_LINES_V, object_name:CSF_DEBRIEF_MAT_LINES_V, status:VALID, product: CSF - Field Service , description: Field service Report Material Lines information , implementation_dba_data: APPS.CSF_DEBRIEF_MAT_LINES_V ,