Dear all,
I have e business package installed (Assets 50.3) and one of the Iviews is raising an event that I wound like to suscribe in a Web Dynpro for ABAP - can I do that?
Link:
EPCM.storeClientData('urn:com.sap.bor:BUS0010','objid','3000-PUR-PC-02');EPCM.storeClientData('urn:com.sap.bor:BUS0010','AllKeys','objid');
<b>EPCM.raiseEvent 'urn:com.sap.bor:BUS0010','select'</b>,'','/irj/servlet/prt/portal/prttarget/pcd!253aportal_content
It looks like Javascript - so can I subscribe to the event "select" in web Dynpro for ABAP - and how?
Please help
Lars
I can't remember if you can add some javascript coding in Webdynpro ABAP but you should add something like this on your pages in order to listen events:
<script language=javascript> function handleEvent( ) { // do tricks here } EPCM.subscribeEvent( 'urn:com.sap.bor:BUS0010', 'select', handleEvent ); </script>
Then you should read clientdata for retrieving objid etc...
Add a comment