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

User Exit For Extract Structure

Former Member
0 Likes
572

Hi,

I need help for select statement to retreive only selected data from R/3 to BW. Like I have IHPA table and field called PARVW and I need only particular values they are ZO,ZV,PA,PP.

Please give me select statement to get only this values.

Thanks

Dave.

2 REPLIES 2
Read only

Former Member
0 Likes
519

hi,

select * from IHPA where ( parvw = 'ZO' or parvw = 'ZV' or parvw = 'PA' or

parvw = 'PP' ).

xxxxxxxxxxxxxx

endselect.

i think this will help u.

regards,

bharat.

Read only

0 Likes
519

Hi Bharat,

Sorry for late reply, here I have to check the condition with OBJNR(object number) between the tables. Please give me how to include this condtion in select statement.

Thanks

Dave.