TB_LIMIT_ADD_RELTEXT_TO_FC is a standard SAP function module available within R/3 SAP systems depending on your version and release level. Below is the pattern details for this FM showing its interface including any import and export parameters, exceptions etc as well as any documentation contributions (Comments) specific to the object.
See here to view full function module documentation and code listing, simply by entering the name TB_LIMIT_ADD_RELTEXT_TO_FC into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
TBL6
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'TB_LIMIT_ADD_RELTEXT_TO_FC' "Texts for Release Status for Field Catalog for ALV
EXPORTING
i_tabname = " slis_tabname Name of Internal Table
* i_calledby = " sy-cprog Calling Program
CHANGING
ct_fieldcat = " slis_t_fieldcat_alv Field Catalog for ALV
. " TB_LIMIT_ADD_RELTEXT_TO_FC
The ABAP code below is a full code listing to execute function module TB_LIMIT_ADD_RELTEXT_TO_FC including all data declarations. The code uses 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 original method of declaring data variables up front. 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).
DATA(ld_ct_fieldcat) = 'Check type of data required'.
DATA(ld_i_tabname) = 'Check type of data required'.
DATA(ld_i_calledby) = 'some text here'. . CALL FUNCTION 'TB_LIMIT_ADD_RELTEXT_TO_FC' EXPORTING i_tabname = ld_i_tabname * i_calledby = ld_i_calledby CHANGING ct_fieldcat = ld_ct_fieldcat . " TB_LIMIT_ADD_RELTEXT_TO_FC
IF SY-SUBRC EQ 0. "All OK ENDIF.
The below ABAP code uses the older none in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. It may also be useful if you are using an older version of SAP as some of the newer syntax above, such as the @DATA is not available until 4.70 EHP 8.
DATA:
| ld_ct_fieldcat | TYPE SLIS_T_FIELDCAT_ALV , |
| ld_i_tabname | TYPE SLIS_TABNAME , |
| ld_i_calledby | TYPE SY-CPROG . |
Please help keep this info upto date and use the comments section below to add useful hints, tips and information specific to this SAP function. This will then be available for you and other users to easily find by simply searching on the object name TB_LIMIT_ADD_RELTEXT_TO_FC or its description.
TB_LIMIT_ADD_RELTEXT_TO_FC - Texts for Release Status for Field Catalog for ALV TB_LIMIT_ADD_RELTEXT - Transfer Texts for Release Status to Table TB_LIMIT_ADD_PARTNER_TO_FC - Include Partner Name in Field Catalog for ALV TB_LIMIT_ADD_NOTEFLAG_TO_FC - Note Flag for Field Catalog for ALV TB_LIMIT_ADD_LTEXT_TO_FC - Long Text for Field Catalog for ALV TB_LIMIT_ADD_LOCKFLAG_TO_FC - Note Flag for Field Catalog for ALV