cancel
Showing results for 
Search instead for 
Did you mean: 

POWL- Create object for feeder class not found

Former Member
0 Kudos

Hi,

I have developed a Webdynpro application and tried to integrate to POWL, but the application dumps saying cretae object of feeder class is not found.

I am new to POWL, can anybody help me in this regard.

Thanks,

Shailaja Ainala.

Accepted Solutions (0)

Answers (4)

Answers (4)

Former Member
0 Kudos

Please see all details about POWL

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

BEst regards,

Rohit

Former Member
0 Kudos

Can you test or run the examples of POWL based ones. POWL_EASY_DEMO or please check for the examples and run them. If you are facing the same issue in running POWL.

prathamesh_gandhi
Participant
0 Kudos

u need to created the z fedder class and implement the IF_POWL_FEEDER method.

Former Member
0 Kudos
Former Member
0 Kudos

- in se80 you need this kind of code

AUTHORITY-CHECK OBJECT 'Z:CPRO_RAP'

ID 'ZZ_MARKDIV_test' FIELD record-string+0(3)

ID 'ACTVT' FIELD '02'. "change access

IF sy-subrc <> 0.

AUTHORITY-CHECK OBJECT 'Z:CPRO_RAP'

ID 'ZZ_MARKDIV_test' FIELD record-string+0(3)

ID 'ACTVT' FIELD '03'. "read only access

IF sy-subrc = 0.

is_allowed = abap_true.

ENDIF.

ELSE.

is_allowed = abap_true.

ENDIF.

-


security team should setup the POWL

http://help.sap.com/saphelp_erp60_sp/helpdata/en/44/36ca0563df660ee10000000a1553f6/content.htm

http://help.sap.com/saphelp_erp60_sp/helpdata/en/42/d6652b755c1630e10000000a1553f7/content.htm

so if you see the code above there is a ID and filed associated with each object.