BKK_PRENOTE_TOL_DB_GET 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 BKK_PRENOTE_TOL_DB_GET into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
BKK_PRENOTE_DB
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'BKK_PRENOTE_TOL_DB_GET' "DB fetch to read the tolerance limits for prenote type
EXPORTING
i_prnte_type_id = " bkk_dte_prenote_typ_id Prenote Type ID
i_prenote_curr = " bkk_dte_prenote_curr Prenote Currency
IMPORTING
e_prnte_tolr = " tbkk_prnte_tolr Prenote Tolerance Range
EXCEPTIONS
NO_ENTRY = 1 " Entry does not exists
. " BKK_PRENOTE_TOL_DB_GET
The ABAP code below is a full code listing to execute function module BKK_PRENOTE_TOL_DB_GET 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_prnte_tolr | TYPE TBKK_PRNTE_TOLR . |
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_prnte_tolr | TYPE TBKK_PRNTE_TOLR , |
| ld_i_prnte_type_id | TYPE BKK_DTE_PRENOTE_TYP_ID , |
| ld_i_prenote_curr | TYPE BKK_DTE_PRENOTE_CURR . |
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 BKK_PRENOTE_TOL_DB_GET or its description.
BKK_PRENOTE_TOL_DB_GET - DB fetch to read the tolerance limits for prenote type BKK_PRENOTE_STATUS_TEXT_GET - Get the status text for prenote BKK_PRENOTE_SND_FOR_RELEASE - Send Prenote Object to release process BKK_PRENOTE_SET_OLD_DATA - Set the prenote data to the old buffer for edited entries BKK_PRENOTE_REFRESH - Refresh the prenote buffer BKK_PRENOTE_PREPARE_ERROR - prepare the error return table