TPM_TRPR_PJ_SELECT 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 TPM_TRPR_PJ_SELECT into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
TPM_TRPR_PAYMENT_PROTOCOL
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'TPM_TRPR_PJ_SELECT' "Select Payment Journal Data
EXPORTING
im_diff_ranges = " tracs_sel_diff_values Ranges: Differentiation Values for DB Selection
im_diff_excludes = " tracs_diff_excludes Exclude Structure for Data Selection by Product Group
im_user_data = " tracs_sel_user_data Accounting Items
* im_payment_data_cfm = " trprs_sel_payment_data_cfm Ranges for Payment Data CFM
im_payment_data_fi = " trprs_sel_payment_data_fi Ranges for Payment Data FI
* im_include_paid = 'X' " char01 Character Field of Length 1
* im_include_reversed = " char01 Character Field of Length 1
IMPORTING
ex_tab_payment = " trpry_payment_prot Informations about payments
. " TPM_TRPR_PJ_SELECT
The ABAP code below is a full code listing to execute function module TPM_TRPR_PJ_SELECT 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_ex_tab_payment | TYPE TRPRY_PAYMENT_PROT . |
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_ex_tab_payment | TYPE TRPRY_PAYMENT_PROT , |
| ld_im_diff_ranges | TYPE TRACS_SEL_DIFF_VALUES , |
| ld_im_diff_excludes | TYPE TRACS_DIFF_EXCLUDES , |
| ld_im_user_data | TYPE TRACS_SEL_USER_DATA , |
| ld_im_payment_data_cfm | TYPE TRPRS_SEL_PAYMENT_DATA_CFM , |
| ld_im_payment_data_fi | TYPE TRPRS_SEL_PAYMENT_DATA_FI , |
| ld_im_include_paid | TYPE CHAR01 , |
| ld_im_include_reversed | TYPE CHAR01 . |
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 TPM_TRPR_PJ_SELECT or its description.
TPM_TRPR_PJ_SELECT - Select Payment Journal Data TPM_TRPR_PAYMENT_DISPLAY - Display a Payment TPM_TRPR_GET_PAYMENT_STATE - Gets the Status of a Payment TPM_TRPR_GET_BY_BT_ID - Gets payment requests by Business Transaction ID TPM_TRPR_GET_BY_AWKEY - Gets payment requests by AWKEY TPM_TRPR_DB_UPDATE - Database Update of Payment Partner Table