BBP_UPD_TIMEZONES_FAV 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 BBP_UPD_TIMEZONES_FAV into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
BBP_HELP
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'BBP_UPD_TIMEZONES_FAV' "Favoriten-Änderungen zu Zeitzonen, internes Memory
EXPORTING
* iv_language = SY-LANGU " spras Sprachenschlüssel
* iv_user = SY-UNAME " syuname R/3-System, Anmeldename des Benutzers
is_timezone_keys = " bbp_timezone_keys Selektierte Zeitzone
TABLES
et_favourites = " bbpt_timezone_keys Favoriten zu Zeitzonen
EXCEPTIONS
INVALID_DATA = 1 " Favoriten ungültig
. " BBP_UPD_TIMEZONES_FAV
The ABAP code below is a full code listing to execute function module BBP_UPD_TIMEZONES_FAV 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_et_favourites | TYPE STANDARD TABLE OF BBPT_TIMEZONE_KEYS,"TABLES PARAM |
| wa_et_favourites | LIKE LINE OF it_et_favourites . |
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_iv_language | TYPE SPRAS , |
| it_et_favourites | TYPE STANDARD TABLE OF BBPT_TIMEZONE_KEYS , |
| wa_et_favourites | LIKE LINE OF it_et_favourites, |
| ld_iv_user | TYPE SYUNAME , |
| ld_is_timezone_keys | TYPE BBP_TIMEZONE_KEYS . |
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 BBP_UPD_TIMEZONES_FAV or its description.
BBP_UPD_TIMEZONES_FAV - Favoriten-Änderungen zu Zeitzonen, internes Memory BBP_UPD_TAXTYPES_FAV - Favoriten-Änderungen zu Steuerarten pro Land, internes Memory BBP_UPD_TAXNUMTS_FAV - Favoriten-Änderungen zu Steuernummerarten, internes Memory BBP_UPD_TAXGROUPS_FAV - Favoriten-Änderungen: Steuergruppen zu Steuerarten, internes Memory BBP_UPD_TAXCODES_FAV - Favoriten-Änderungen zu Steuerkennzeichen, internes Memory BBP_UPD_STORAGES_FAV -