ISU_PARTNER_OUTAGE_TECHNOBJ 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 ISU_PARTNER_OUTAGE_TECHNOBJ into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
PARTNER_TECHNOBJ
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'ISU_PARTNER_OUTAGE_TECHNOBJ' "Determines Technical Reference Object in Event of Outage
EXPORTING
x_partner = " but000-partner Business Partner
* x_connobj = " ehau-haus Connection Object
* x_devloc = " egpld-devloc Device Location
* x_device = " equi-equnr Device
* x_tech_inst = " equi-equnr Technical installation
* x_progress = " efkkstr-kennzx Indicator: Progress Display
IMPORTING
y_device = " equi-equnr Device
y_tpl = " rfc_viqmel-tplnr Functional Location
y_objid = " eewm_notif_objid Reference object type for creation of notifications
y_regiogroup = " regiogroup Regional Structure Grouping
EXCEPTIONS
SYSTEM_ERROR = 1 " System Error
PARTNER_NOT_FOUND = 2 "
CONNOBJ_NOT_FOUND = 3 " Connection Object Does Not Exist
DEVLOC_NOT_FOUND = 4 "
DEVICE_NOT_FOUND = 5 "
DEVICE_NOT_AT_CONNOBJ = 6 "
DEVICE_NOT_AT_DEVLOC = 7 "
DEVLOC_NOT_IN_CONNOBJ = 8 "
COMBINATION_NOT_QUALIFIED = 9 "
CANCELLED_BY_USER = 10 " Canceled by user
. " ISU_PARTNER_OUTAGE_TECHNOBJ
The ABAP code below is a full code listing to execute function module ISU_PARTNER_OUTAGE_TECHNOBJ 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_y_device | TYPE EQUI-EQUNR , |
| ld_y_tpl | TYPE RFC_VIQMEL-TPLNR , |
| ld_y_objid | TYPE EEWM_NOTIF_OBJID , |
| ld_y_regiogroup | TYPE REGIOGROUP . |
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_y_device | TYPE EQUI-EQUNR , |
| ld_x_partner | TYPE BUT000-PARTNER , |
| ld_y_tpl | TYPE RFC_VIQMEL-TPLNR , |
| ld_x_connobj | TYPE EHAU-HAUS , |
| ld_y_objid | TYPE EEWM_NOTIF_OBJID , |
| ld_x_devloc | TYPE EGPLD-DEVLOC , |
| ld_y_regiogroup | TYPE REGIOGROUP , |
| ld_x_device | TYPE EQUI-EQUNR , |
| ld_x_tech_inst | TYPE EQUI-EQUNR , |
| ld_x_progress | TYPE EFKKSTR-KENNZX . |
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 ISU_PARTNER_OUTAGE_TECHNOBJ or its description.
ISU_PARTNER_OUTAGE_TECHNOBJ - Determines Technical Reference Object in Event of Outage ISU_PARTNER_MOVE_CDATA2EXT - INTERNAL: Actions of Subscreens ISU_PARTNER_MEMORY_GET - Reads Data for Business Partner from Local Memories ISU_PARTNER_MAP_VERS2ADDR - Mapping of Address Version to Address ISU_PARTNER_MAP_ADDR2VERS - Mapping of Address Version to Address ISU_PARTNER_ID_FROM_COMM -