cancel
Showing results for 
Search instead for 
Did you mean: 

POWL

Former Member
0 Kudos

Hi ,

How to call a pop up on lead selection of a powl ...

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

Hi ,

I am not able to understand your question completely .

If u want to open a WD component as a pop-up on lead selection of a row in powl table , this can be archive by using OBN (object based navigation).

If this is your case , Please back to me . so we can discuss further .

Regads,

Dinesh

Former Member
0 Kudos

Yes this is my requirement please let me know how to achieve this OBN .

Thanks for the reply,

Vasavi

Former Member
0 Kudos

Hi ,

These below points may help you .

1 . Fist create you WD application . pass the application parameter if required .

2 .If there is some standard action is calling by selecting the row , first you have to stop that .

3 .By using method GET_ACTIONS of feeder class , delete this standard action form action table

READ TABLE c_action_defs WITH TABLE KEY actionid = 'PRICE'

TRANSPORTING NO FIELDS.

IF sy-subrc = 0.

DELETE c_action_defs INDEX sy-tabix.

ENDIF.

You can refer the above code for that .

4. make a Z table to store your WD application path or PCD location on portal .

5.now in method HANDLE_ACTION :

For a particular action id which u want to open your WD application

Case : action id

SELECT SINGLE path FROM your ztable INTO l_pcd_path

WHERE systid = sy-sysid

AND clnt = sy-mandt.

IF sy-subrc = 0.

l_portal_actions-PORTAL_PATH = l_pcd_path.

ENDIF.

l_portal_actions-PORTAL_NAV_MODE = IF_WD_PORTAL_INTEGRATION=>CO_SHOW_EXTERNAL.

l_portal_actions-bo_name = if_o2c_powl_constants=>c_obn_customer.

l_portal_actions-bo_op_name = if_o2c_powl_constants=>c_obn_op_display.

Endcase

for that you can refer above piece of code .

Regards,

Dinesh Kumawat

Former Member
0 Kudos

Hi dinesh,

I have same requirement like : In powl ALV column have Imatege icon button. If i click on Icon i need to display column related message in popup window. Can you tell me how can i achive this one.

Please do the need full...this is urgent requirment.

Thanks,

Sri

Former Member
0 Kudos

Hi Vasavi,

also check this..

http://wiki.sdn.sap.com/wiki/display/WDABAP/DocumentationInformationabout+POWL

Cheers,

Kris.

Lukas_Weigelt
Active Contributor
0 Kudos