SAP HRCA_COMPANYCODE_GETDETAIL Function Module for









HRCA_COMPANYCODE_GETDETAIL is a standard hrca 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 to perform a specific ABAP function and below is the pattern details, 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 hrca companycode getdetail FM, simply by entering the name HRCA_COMPANYCODE_GETDETAIL into the relevant SAP transaction such as SE37 or SE38.

Function Group: RHCM
Program Name: SAPLRHCM
Main Program:
Appliation area: H
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function HRCA_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 'HRCA_COMPANYCODE_GETDETAIL'"
EXPORTING
COMPANYCODE = "
* LANGUAGE = SY-LANGU "

IMPORTING
COMP_NAME = "
RATE_DEVIATION = "
ADDRESS = "
VAT_REG_NO = "
CITY = "
COUNTRY = "
CURRENCY = "
LANGU = "
CHRT_ACCTS = "
FY_VARIANT = "
FI_MANAGEMENTAREA = "
JURISDICTION = "

TABLES
* APPENDIX = "

EXCEPTIONS
NOT_FOUND = 1
.



IMPORTING Parameters details for HRCA_COMPANYCODE_GETDETAIL

COMPANYCODE -

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

LANGUAGE -

Data type: SYLANGU
Default: SY-LANGU
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for HRCA_COMPANYCODE_GETDETAIL

COMP_NAME -

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

RATE_DEVIATION -

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

ADDRESS -

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

VAT_REG_NO -

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

CITY -

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

COUNTRY -

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

CURRENCY -

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

LANGU -

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

CHRT_ACCTS -

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

FY_VARIANT -

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

FI_MANAGEMENTAREA -

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

JURISDICTION -

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

TABLES Parameters details for HRCA_COMPANYCODE_GETDETAIL

APPENDIX -

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

EXCEPTIONS details

NOT_FOUND -

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

Copy and paste ABAP code example for HRCA_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:
lt_appendix  TYPE STANDARD TABLE OF T001Z_BF, "   
lv_comp_name  TYPE BUTXT, "   
lv_not_found  TYPE BUTXT, "   
lv_companycode  TYPE BUKRS, "   
lv_rate_deviation  TYPE WAABW_001, "   
lv_address  TYPE ADRNR, "   
lv_vat_reg_no  TYPE STCEG, "   
lv_city  TYPE ORT01, "   
lv_language  TYPE SYLANGU, "   SY-LANGU
lv_country  TYPE LAND1, "   
lv_currency  TYPE WAERS, "   
lv_langu  TYPE SPRAS, "   
lv_chrt_accts  TYPE KTOPL, "   
lv_fy_variant  TYPE PERIV, "   
lv_fi_managementarea  TYPE FIKRS, "   
lv_jurisdiction  TYPE TXJCD_NSTX. "   

  CALL FUNCTION 'HRCA_COMPANYCODE_GETDETAIL'  "
    EXPORTING
         COMPANYCODE = lv_companycode
         LANGUAGE = lv_language
    IMPORTING
         COMP_NAME = lv_comp_name
         RATE_DEVIATION = lv_rate_deviation
         ADDRESS = lv_address
         VAT_REG_NO = lv_vat_reg_no
         CITY = lv_city
         COUNTRY = lv_country
         CURRENCY = lv_currency
         LANGU = lv_langu
         CHRT_ACCTS = lv_chrt_accts
         FY_VARIANT = lv_fy_variant
         FI_MANAGEMENTAREA = lv_fi_managementarea
         JURISDICTION = lv_jurisdiction
    TABLES
         APPENDIX = lt_appendix
    EXCEPTIONS
        NOT_FOUND = 1
. " HRCA_COMPANYCODE_GETDETAIL




ABAP code using 7.40 inline data declarations to call FM HRCA_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.

 
 
 
 
 
 
 
 
DATA(ld_language) = SY-LANGU.
 
 
 
 
 
 
 
 


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!