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

internal table in v_v2

Former Member
0 Likes
1,526

Hi all,

In transaction V_V2 i am not able to find at which point the internal table OUTPUT is getting values.Please help me.

7 REPLIES 7
Read only

naveen_inuganti2
Active Contributor
0 Likes
1,290

Hi,

Check here,

SDV03V02-> PERFORM XTAB_LIST. at line 239.

Thanks,

Naveen Inuganti.

Read only

0 Likes
1,290

NO

Read only

Former Member
0 Likes
1,290

Hi Raj,

Sorry to say I have not find any internal table called OUTPUT in the program

for the transaction V_V2.

In the program SDV03V02 means transaction V_V2 the xtab table is used for output.

It is getting populated by the function module 'SD_BACKORDER_LIST' .

In the form xtab_list the table xtab is gettin populated.

This table is used for output.

form xtab_list.
  data: da_vkorg like vbak-vkorg,
        da_vtweg like vbak-vtweg.

  call function 'SD_BACKORDER_LIST'
       exporting
            vkorg          = da_vkorg
            vtweg          = da_vtweg
            report         = 'SDV03V02'
*           READ_INDX      = P_RINDX
       tables
            input          = xtab
       exceptions
            indx_not_found = 01
            output_empty   = 02.
  case sy-subrc.
    when 1.
      message s060 with 'SDV03V02'.
    when 2.
      message s061.
  endcase.

endform.

Read only

0 Likes
1,290

Hi Pinaki,

ok, from XTAB how the values are geting into OUTPUT table?

In XTAB_LIST , you will see describe table OUTPUT.

Read only

0 Likes
1,290

pls help

Read only

Former Member
0 Likes
1,290

thanks

Read only

0 Likes
1,290

Hi Raj,

Try to look into the subroutine XTAB_SELECT_SALES of program SDV03V02, within this subroutine the program is collecting XTAB data with or without inner join mainly from table VAPMA & VBUK.

Cheers,

fnr