cancel
Showing results for 
Search instead for 
Did you mean: 

enahancing standard FPM configuration

raavi_gopichand
Explorer
0 Kudos

Hi,

Please help me on below issue.

I got an requirement like, a standard fpm configuration which is implemented with list feeder class showing certain columns.

Now the requirement is , they are displaying buttons in one column of table,same table contains column as status.

I have to disable/enable the button based on the 'status'.

Please find , file attached for your reference.

I am unable to trigger break-point when it got executed in PORTAL.

Regards,

Gopichand.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hello Gopi,

Are you trying to access the portal application from the same user name(SAP login id)?,.

If not,In settings->debugging,Try to give the user name of portal through which you're accessing the portal.

Thanks

KH

raavi_gopichand
Explorer
0 Kudos

Hi Katrice,

Thanks for your valuble reply, I solved the problem by logging with same ID

Answers (2)

Answers (2)

guillaume-hrc
Active Contributor
0 Kudos

Hi,

About triggerring debug from the Portal, do you set up an external break-point?

Where did you set up it?

Are you using User Mapping in the Portal?

If everything else fails, try running a trace (ST01 transaction).

Best regards,

Guillaume

guillaume-hrc
Active Contributor
0 Kudos

Hi,

You should add 1 technical column to the feeder : DELETE_ENABLED for instance.

In the GET_DATA method of the feeder, fill this column to space / 'X' according to the value of the status column.

Then, use the ENABLED_REF attibute of the definition of the DELETE column to specify the new technical column.

READ TABLE et_field_description assigning <ls_field_description> WITH KEY name = <name_of_delete_column>.

<ls_field_description>-enabled_ref   = 'DELETE_ENABLED'.

Best regards,

Guillaume

raavi_gopichand
Explorer
0 Kudos

Hi Garcia,

Thanks for your reply,I did almost as you said, and get succeeded.

Thanks & Regards ,

Gopichand Ravi.