cancel
Showing results for 
Search instead for 
Did you mean: 

Delivery Note smartform using program RLE_DELNOTE

Former Member
0 Kudos

Dear Team,

I have deloped an deliverynote smartform using print program RLE_DELNOTE.

My smartform printing all data except Item data.

I have debuged the RLE_DELNOTE program and checked it is not bringing item data to internal table IT_GEN.

same internal table i am using to display item details of delivery order.

Thanks & Regards,

A Reddy.

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

We had a similar problem with the reference data for positions.

The problem was, that we didn't use this structure in the global definition - init-routine input-data, and so the smartform didn't get the data.

As we changed that and activated the smartforms, something in the background updates such a "data-receival"-table for the smartform:

We wanted to use GS_IT_REFPURORD-PURCH_NO_C (like LEDLV_IT_REFPURORD) - and this wos only filled and available if we added this structure.

Maybe this helps.

Edited by: Denise Nepraunig on Aug 12, 2011 5:23 PM

ray_mannion
Participant
0 Kudos

You need to explicitly declare this data to come back from the form GET_DATA:


  PERFORM set_print_data_to_read USING    lf_formname
                                 CHANGING ls_print_data_to_read
                                 cf_retcode.

*---- retrieve additional data -----------*
  ls_print_data_to_read-it_org = 'X'.
  ls_print_data_to_read-it_gen = 'X'.
  ls_print_data_to_read-hd_gen_descript = 'X'.
  ls_print_data_to_read-hd_fin = 'X'.
  ls_print_data_to_read-it_ref = 'X'.
  ls_print_data_to_read-it_fin = 'X'.

Do this in between the calls to SET_PRINT_DATA_TO_READ and GET_DATA.

Former Member
0 Kudos

Hi,

Debug the program check the conditions and check the data is available or not ...

Let me know if any concerns ......