|
Navigation to another client on hotspot |
|
|
|
|
Written by Pavan
|
|
Saturday, 03 February 2007 |
If you want to execute a transaction in another system..... In this example I display the Event Handler details in an SCM system from an ECC system....
- Create the logical system SCD as Logical system with standard BAPI activation. This can be done in transaction BD97.
The rest is simple as follows: data : lv_handle type swo_objhnd, lt_container type table of swcont. call function 'SWO_CREATE' exporting objtype = 'ZEH_DISP' objkey = '0350008335000010' logical_system = 'SCD035' importing object = lv_handle * RETURN = exceptions no_remote_objects = 1 others = 2 . if sy-subrc <> 0. * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO * WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4. endif. call function 'SWO_INVOKE' exporting object = lv_handle tables container = lt_container. I created a new object ZEH_DISP in SCD for displaying an event handler.
Related Items:
|
|
Last Updated ( Wednesday, 14 February 2007 )
|