cancel
Showing results for 
Search instead for 
Did you mean: 

POWL field catalog Link to Action LA blanks out the field

Former Member
0 Kudos

Hi guys

what am I doing wrong

In my Feeder class  I'm coding something like this

REFRESH

c_fieldcat.
*     ls_fieldcat-filter_ref = 'CARRID'.

 
"ls_fieldcat-display_type = 'DK'.

  ls_fieldcat
-colpos = '1'.

  ls_fieldcat
-col_visible = abap_true.

*  ls_fieldcat-enabled = abap_true.

  ls_fieldcat
-allow_sort = abap_true.

  ls_fieldcat
-allow_filter = abap_true.

  ls_fieldcat
-display_type = 'LA'.

The ouput POWL now just blanks out the field    what I want  are the values underlined and the Link to Action to work

Doesn't matter what I do -- even a silly 2 column table  -- same thing happens -- yet I KNOW it must work since the standard SAP CL_RMAN_PRSP_NOTIFICATIONS works giving a Link to action on Notification number.  I can't really Clone that as it refrences a Zikllion "super classes etc".

Any ideas

Thanks

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi James,

I am facing same problem with LTA as the values are not getting underlined and also checked providing TEXT_REF too. still not working. Could you please let me know how did u solve this.

Thanks

Former Member
0 Kudos

set the TEXT_REF field to point to where the data is ex. 

ls_fieldcat-text_ref = 'CARRID'.

This will display the data correctly along with the link to action.