RTP_US_DB_BP_PLAN_READ_MULT 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_DB_BP_PLAN_READ_MULT into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
RTP_US_DB_READ
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'RTP_US_DB_BP_PLAN_READ_MULT' "Reads the db table rtp_us_bp_plan
* EXPORTING
* i_bkkrs = " rtp_us_bp_plan-bkkrs Bank Area
* i_plan_number = " rtp_us_bp_plan-plan_number Plan number of a retirement plan
* i_partner = " rtp_us_bp_plan-partner Business Partner Number
* i_rltyp = " rtp_us_bp_plan-rltyp BDT: Object part
* TABLES
* t_bp_plan = " rtp_us_bp_plan Business partners associated with a retirement plan
EXCEPTIONS
NOT_FOUND = 1 "
. " RTP_US_DB_BP_PLAN_READ_MULT
The ABAP code below is a full code listing to execute function module RTP_US_DB_BP_PLAN_READ_MULT 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).
| it_t_bp_plan | TYPE STANDARD TABLE OF RTP_US_BP_PLAN,"TABLES PARAM |
| wa_t_bp_plan | LIKE LINE OF it_t_bp_plan . |
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_i_bkkrs | TYPE RTP_US_BP_PLAN-BKKRS , |
| it_t_bp_plan | TYPE STANDARD TABLE OF RTP_US_BP_PLAN , |
| wa_t_bp_plan | LIKE LINE OF it_t_bp_plan, |
| ld_i_plan_number | TYPE RTP_US_BP_PLAN-PLAN_NUMBER , |
| ld_i_partner | TYPE RTP_US_BP_PLAN-PARTNER , |
| ld_i_rltyp | TYPE RTP_US_BP_PLAN-RLTYP . |
This function module is intended to return a list of plan numbers that
are associated with a specified business partner. The list can be
...See here for full SAP fm documentation
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_DB_BP_PLAN_READ_MULT or its description.
RTP_US_DB_BP_PLAN_READ_MULT - Reads the db table rtp_us_bp_plan RTP_US_DB_BP_PLAN_READ - Reads the db table rtp_us_bp_plan RTP_US_DB_BP_PLAN_INSERT - Mass insert into DB-table rtp_us_bp_plan RTP_US_DB_BP_PLAN_DELETE - Mass delete from DB-table rtp_us_bp_plan RTP_US_DB_BP_ED_READ - Reads the business partner roles for an education IRA RTP_US_DB_BEN_UPDATE - Mass update into DB-table rtp_us_ben