SAP RH_INFTY_SUBTY_TEXTS Function Module for









RH_INFTY_SUBTY_TEXTS is a standard rh infty subty texts 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 rh infty subty texts FM, simply by entering the name RH_INFTY_SUBTY_TEXTS into the relevant SAP transaction such as SE37 or SE38.

Function Group: RHA0
Program Name: SAPLRHA0
Main Program: SAPLRHA0
Appliation area: H
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:



Function RH_INFTY_SUBTY_TEXTS 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 'RH_INFTY_SUBTY_TEXTS'"
EXPORTING
* LANGUAGE = SY-LANGU "Language
* SELECT_PA_INFOTYPES = 'X' "
* SELECT_PD_INFOTYPES = 'X' "
* READ_INFTY_TEXTS = 'X' "
* READ_SUBTY_TEXTS = 'X' "

TABLES
* INFOTYPES = "
* INFOTYPES_TEXT = "
* INFOTYPES_SUBTYPES_TEXT = "
.




Customer Function user exits

Below is a list of CUSTOMER FUNCTION exit user exits that are available within this program and maybe relevant for this FM.
EXIT_SAPLRHA0_001 HR-CA: ALE Outbound Processing With Receiver Determination Enhancement
EXIT_SAPLRHA0_002 HR-CA: Export Parameters of ALE Inbound Processing IDOC_INPUT_HRMD
EXIT_SAPLRHA0_003 HR-CA: Import Parameters of ALE Inbound Processing IDOC_INPUT_HRMD
EXIT_SAPLRHA0_004 HR-CA: ALE Outbound Processing: Control Record
EXIT_SAPLRHA0_005 HR-CA: ALE Inbound Processing: Check Object
EXIT_SAPLRHA0_006 HR-CA: ALE Outbound Processing: Check Object

IMPORTING Parameters details for RH_INFTY_SUBTY_TEXTS

LANGUAGE - Language

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

SELECT_PA_INFOTYPES -

Data type: FLAG
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

SELECT_PD_INFOTYPES -

Data type: FLAG
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

READ_INFTY_TEXTS -

Data type: FLAG
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

READ_SUBTY_TEXTS -

Data type: FLAG
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

TABLES Parameters details for RH_INFTY_SUBTY_TEXTS

INFOTYPES -

Data type: T788T
Optional: Yes
Call by Reference: Yes

INFOTYPES_TEXT -

Data type: T777T
Optional: Yes
Call by Reference: Yes

INFOTYPES_SUBTYPES_TEXT -

Data type: T777U
Optional: Yes
Call by Reference: Yes

Copy and paste ABAP code example for RH_INFTY_SUBTY_TEXTS 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_language  TYPE SY-LANGU, "   SY-LANGU
lt_infotypes  TYPE STANDARD TABLE OF T788T, "   
lt_infotypes_text  TYPE STANDARD TABLE OF T777T, "   
lv_select_pa_infotypes  TYPE FLAG, "   'X'
lv_select_pd_infotypes  TYPE FLAG, "   'X'
lt_infotypes_subtypes_text  TYPE STANDARD TABLE OF T777U, "   
lv_read_infty_texts  TYPE FLAG, "   'X'
lv_read_subty_texts  TYPE FLAG. "   'X'

  CALL FUNCTION 'RH_INFTY_SUBTY_TEXTS'  "
    EXPORTING
         LANGUAGE = lv_language
         SELECT_PA_INFOTYPES = lv_select_pa_infotypes
         SELECT_PD_INFOTYPES = lv_select_pd_infotypes
         READ_INFTY_TEXTS = lv_read_infty_texts
         READ_SUBTY_TEXTS = lv_read_subty_texts
    TABLES
         INFOTYPES = lt_infotypes
         INFOTYPES_TEXT = lt_infotypes_text
         INFOTYPES_SUBTYPES_TEXT = lt_infotypes_subtypes_text
. " RH_INFTY_SUBTY_TEXTS




ABAP code using 7.40 inline data declarations to call FM RH_INFTY_SUBTY_TEXTS

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 LANGU FROM SY INTO @DATA(ld_language).
DATA(ld_language) = SY-LANGU.
 
 
 
DATA(ld_select_pa_infotypes) = 'X'.
 
DATA(ld_select_pd_infotypes) = 'X'.
 
 
DATA(ld_read_infty_texts) = 'X'.
 
DATA(ld_read_subty_texts) = 'X'.
 


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!