RTP_US_API_GET_DESCRIPTIONS 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 RTP_US_API_GET_DESCRIPTIONS into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
RTP_US_API_ALV
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'RTP_US_API_GET_DESCRIPTIONS' "Obtains the descriptions of the plan type, bank area etc
EXPORTING
i_str_accountholder = " but000 BP: General data I
i_type_code = " rtp_us_plan-type_code Type code for a retirement plan
i_bkkrs = " rtp_us_plan-bkkrs Bank Area
IMPORTING
e_name = " irtp_us_plan_report-name Full name of business partner
e_type_description = " trtp_us_plantypt-description Description of the retirement plan type
e_bkkrs = " tbkk01t-t_bkkrs Description bank area
. " RTP_US_API_GET_DESCRIPTIONS
The ABAP code below is a full code listing to execute function module RTP_US_API_GET_DESCRIPTIONS 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).
| ld_e_name | TYPE IRTP_US_PLAN_REPORT-NAME , |
| ld_e_type_description | TYPE TRTP_US_PLANTYPT-DESCRIPTION , |
| ld_e_bkkrs | TYPE TBKK01T-T_BKKRS . |
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_e_name | TYPE IRTP_US_PLAN_REPORT-NAME , |
| ld_i_str_accountholder | TYPE BUT000 , |
| ld_e_type_description | TYPE TRTP_US_PLANTYPT-DESCRIPTION , |
| ld_i_type_code | TYPE RTP_US_PLAN-TYPE_CODE , |
| ld_e_bkkrs | TYPE TBKK01T-T_BKKRS , |
| ld_i_bkkrs | TYPE RTP_US_PLAN-BKKRS . |
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 RTP_US_API_GET_DESCRIPTIONS or its description.
RTP_US_API_GET_DESCRIPTIONS - Obtains the descriptions of the plan type, bank area etc RTP_US_API_FILL_FIELD_CATALOG - Fill the field catalog table for the ALV RTP_US_API_FETCH_TEMP_NUMBER - Fetches a temporary plan number RTP_US_API_F4_ROLES - Supports the F4 help for roles Other business partners RTP_US_API_EXTEND_BP_DATA - Reads the full name and address of a BP RTP_US_API_ERROR_INFO_SET - Exports additional info in case an error occurred