SAP TRCA_COMPANYCODE_GETDETAIL Function Module for TR Interface: Read Company Code









TRCA_COMPANYCODE_GETDETAIL is a standard trca companycode getdetail SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for TR Interface: Read Company Code processing and below is the pattern details for this FM, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.


See here to view full function module documentation and code listing for trca companycode getdetail FM, simply by entering the name TRCA_COMPANYCODE_GETDETAIL into the relevant SAP transaction such as SE37 or SE38.

Function Group: TRCA001
Program Name: SAPLTRCA001
Main Program: SAPLTRCA001
Appliation area: F
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function TRCA_COMPANYCODE_GETDETAIL pattern details

In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.
CALL FUNCTION 'TRCA_COMPANYCODE_GETDETAIL'"TR Interface: Read Company Code
EXPORTING
COMPANYCODE = "Schlüssel des Buchungskreises

IMPORTING
COMPANYNAME = "Company code name
PE_TZBZ = "Buchungskreiszusatzdaten
CURRENCY = "Währung des Buchungkreises
RATE_DEVIATION = "
CHART_ACCOUNTS = "
FY_VARIANT = "
COUNTRY = "
LANGU = "
ADDRESS = "
FMAREA = "Financial Management Area

EXCEPTIONS
NOT_FOUND = 1
.



IMPORTING Parameters details for TRCA_COMPANYCODE_GETDETAIL

COMPANYCODE - Schlüssel des Buchungskreises

Data type: TRCA_COMPANY-COMPANYCODE
Optional: No
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for TRCA_COMPANYCODE_GETDETAIL

COMPANYNAME - Company code name

Data type: TRCA_COMPANY-COMPANYNAME
Optional: No
Call by Reference: No ( called with pass by value option)

PE_TZBZ - Buchungskreiszusatzdaten

Data type: TZBZ
Optional: No
Call by Reference: No ( called with pass by value option)

CURRENCY - Währung des Buchungkreises

Data type: TRCA_COMPANY-CURRENCY
Optional: No
Call by Reference: No ( called with pass by value option)

RATE_DEVIATION -

Data type: TRCA_COMPANY-RATE_DEVIAT
Optional: No
Call by Reference: No ( called with pass by value option)

CHART_ACCOUNTS -

Data type: TRCA_COMPANY-CHRT_ACCTS
Optional: No
Call by Reference: No ( called with pass by value option)

FY_VARIANT -

Data type: TRCA_COMPANY-FY_VARIANT
Optional: No
Call by Reference: No ( called with pass by value option)

COUNTRY -

Data type: TRCA_COMPANY-COUNTRY
Optional: No
Call by Reference: No ( called with pass by value option)

LANGU -

Data type: TRCA_COMPANY-LANGU
Optional: No
Call by Reference: No ( called with pass by value option)

ADDRESS -

Data type: TRCA_COMPANY-ADDRESS
Optional: No
Call by Reference: No ( called with pass by value option)

FMAREA - Financial Management Area

Data type: TRCA_COMPANY-FMAREA
Optional: No
Call by Reference: No ( called with pass by value option)

EXCEPTIONS details

NOT_FOUND - Company code does not exist

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

Copy and paste ABAP code example for TRCA_COMPANYCODE_GETDETAIL Function Module

The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the newer method of declaring data variables on the fly. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8), which i why i have stuck to the origianl for this example.

DATA:
lv_not_found  TYPE STRING, "   
lv_companycode  TYPE TRCA_COMPANY-COMPANYCODE, "   
lv_companyname  TYPE TRCA_COMPANY-COMPANYNAME, "   
lv_pe_tzbz  TYPE TZBZ, "   
lv_currency  TYPE TRCA_COMPANY-CURRENCY, "   
lv_rate_deviation  TYPE TRCA_COMPANY-RATE_DEVIAT, "   
lv_chart_accounts  TYPE TRCA_COMPANY-CHRT_ACCTS, "   
lv_fy_variant  TYPE TRCA_COMPANY-FY_VARIANT, "   
lv_country  TYPE TRCA_COMPANY-COUNTRY, "   
lv_langu  TYPE TRCA_COMPANY-LANGU, "   
lv_address  TYPE TRCA_COMPANY-ADDRESS, "   
lv_fmarea  TYPE TRCA_COMPANY-FMAREA. "   

  CALL FUNCTION 'TRCA_COMPANYCODE_GETDETAIL'  "TR Interface: Read Company Code
    EXPORTING
         COMPANYCODE = lv_companycode
    IMPORTING
         COMPANYNAME = lv_companyname
         PE_TZBZ = lv_pe_tzbz
         CURRENCY = lv_currency
         RATE_DEVIATION = lv_rate_deviation
         CHART_ACCOUNTS = lv_chart_accounts
         FY_VARIANT = lv_fy_variant
         COUNTRY = lv_country
         LANGU = lv_langu
         ADDRESS = lv_address
         FMAREA = lv_fmarea
    EXCEPTIONS
        NOT_FOUND = 1
. " TRCA_COMPANYCODE_GETDETAIL




ABAP code using 7.40 inline data declarations to call FM TRCA_COMPANYCODE_GETDETAIL

The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.

 
"SELECT single COMPANYCODE FROM TRCA_COMPANY INTO @DATA(ld_companycode).
 
"SELECT single COMPANYNAME FROM TRCA_COMPANY INTO @DATA(ld_companyname).
 
 
"SELECT single CURRENCY FROM TRCA_COMPANY INTO @DATA(ld_currency).
 
"SELECT single RATE_DEVIAT FROM TRCA_COMPANY INTO @DATA(ld_rate_deviation).
 
"SELECT single CHRT_ACCTS FROM TRCA_COMPANY INTO @DATA(ld_chart_accounts).
 
"SELECT single FY_VARIANT FROM TRCA_COMPANY INTO @DATA(ld_fy_variant).
 
"SELECT single COUNTRY FROM TRCA_COMPANY INTO @DATA(ld_country).
 
"SELECT single LANGU FROM TRCA_COMPANY INTO @DATA(ld_langu).
 
"SELECT single ADDRESS FROM TRCA_COMPANY INTO @DATA(ld_address).
 
"SELECT single FMAREA FROM TRCA_COMPANY INTO @DATA(ld_fmarea).
 


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!