Field value is not printed from SAP Adobe form

3k Views Asked by At

I have a table lt_recipe_data which has rcp_head_data as another table having many fields from which copied_from is one field among them.

I am printing all the data from table into adobe report. The report has a table of same structure and having copied from field inside it. I did bind it properly to the correct field from the interface using binding property.

But still when I am generating the report value is not printing only for that field and is printing for other fields.

I have checked the bindings, that seems perfect. Also I checked the driver program debugging values are passed correctly.

rcp_data data passed is perfect as debugged but still not showing data for the field copied_from.

Find snippet of code of driver program:

CALL FUNCTION lv_funcname "'/1BCDWB/SM00000061'
      EXPORTING
        /1bcdwb/docparams  = fp_docparams
        lt_table           = lt_table
        lt_spec_data       = spec_data
        lt_recipe_data     = rcp_data
      IMPORTING
        ...
0

There are 0 best solutions below