Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Fetching data from conf_out displaying 1 value

Former Member
0 Likes
647

Dear gurus

i have made a smart form for sales order invoice im having a problem with the following code.

my sales order invoice contains to line items with different reelsize one is 600 and other is 700 mm

the conf_out table is getting only the value of 600 its not getting the other value can you guide me.

DATA: i_config LIKE conf_out OCCURS 10 WITH HEADER LINE.

  READ TABLE i_config WITH KEY atnam = 'REELSIZE'.
    IF sy-subrc = 0.

      wa_item_itab-siz =  i_config-atwrt.
    ENDIF.

Regards

Saad Nisar

Dear gurus

i have made a smart form for sales order invoice im having a problem with the following code.

my sales order invoice contains to line items with different reelsize one is 600 and other is 700 mm

the conf_out table is getting only the value of 600 its not getting the other value can you guide me.

DATA: i_config LIKE conf_out OCCURS 10 WITH HEADER LINE.

  READ TABLE i_config WITH KEY atnam = 'REELSIZE'.
    IF sy-subrc = 0.

      wa_item_itab-siz =  i_config-atwrt.
    ENDIF.

Regards

Saad Nisar

3 REPLIES 3
Read only

Former Member
0 Likes
612

you have to loop at i_config

Read only

0 Likes
612

did that but no result

the problem is that the conf_out structure is not saving the other value 700.

is there any other table where the values of reelsize which is displayed in T-code vf03 is stored if so please tell me..

Read only

Former Member
0 Likes
612

please help