ISM_PD_STREET_LOOKUP 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 ISM_PD_STREET_LOOKUP into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
ISM_PD_MERGE_SERVICE
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'ISM_PD_STREET_LOOKUP' "Find Cons. Street in SAP Street Table JSTSTRPRO
EXPORTING
lookup_jst_str_cons = " jst_str_cons IS-M: Table for Street Consolidation
lookup_valid_from = SY-DATUM " gueltigvon Valid From Date
lookup_valid_to = '99991231' " gueltigbis Valid to Date
* x_regard_manstr = " xfeld
IMPORTING
found_jststrpro = " jststrpro IS-M/SD: Street File (Post)
lt_str_sap = " jststrprotab
lt_messages = " rjmsg_tab IS-M/SD: Table - Transfer of Error Messages
. " ISM_PD_STREET_LOOKUP
The ABAP code below is a full code listing to execute function module ISM_PD_STREET_LOOKUP 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_found_jststrpro | TYPE JSTSTRPRO , |
| ld_lt_str_sap | TYPE JSTSTRPROTAB , |
| ld_lt_messages | TYPE RJMSG_TAB . |
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_found_jststrpro | TYPE JSTSTRPRO , |
| ld_lookup_jst_str_cons | TYPE JST_STR_CONS , |
| ld_lt_str_sap | TYPE JSTSTRPROTAB , |
| ld_lookup_valid_from | TYPE GUELTIGVON , |
| ld_lt_messages | TYPE RJMSG_TAB , |
| ld_lookup_valid_to | TYPE GUELTIGBIS , |
| ld_x_regard_manstr | TYPE XFELD . |
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 ISM_PD_STREET_LOOKUP or its description.
ISM_PD_STREET_LOOKUP - Find Cons. Street in SAP Street Table JSTSTRPRO ISM_PD_SHOW_UPDA - Display Postal Data Change Records ISM_PD_READ_STATE_LOG - Read Status of Postal Data ISM_PD_READ_CUSTOMIZING - Read Customizing for Postal Data ISM_PD_RAW_VALIDATE_UNDO - Undo Function: Validation of Raw Postal Data ISM_PD_RAW_VALIDATE_STR_DE - Validate Street Data