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

Select-option

Former Member
0 Likes
573

Hi Guy's,

At selection-Secreen i added pa0001-gsber field. i want to retrieve the output based on this gsber field. but in development this field is not used any select statements. How to validate this field and also how to display the output based on this field. Please help me friends,

Thanks,

Sai.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
529

Hai Sai .,

To validate Business Area (GSBER) check with table TFIN020 (Assignment of Business Areas to Company Codes ) .

select gsber from TFIN020 where gsber in s_gsber .

thanks

Sreenivas Reddy

3 REPLIES 3
Read only

Former Member
0 Likes
529

write select on infotype PA0001 as ..

select * from PA0001 into table it_PA0001

where gsber in s_gsber. <-- U can add some more

conditions .. on pernr, begda , endda ....

Read only

Former Member
0 Likes
530

Hai Sai .,

To validate Business Area (GSBER) check with table TFIN020 (Assignment of Business Areas to Company Codes ) .

select gsber from TFIN020 where gsber in s_gsber .

thanks

Sreenivas Reddy

Read only

former_member125931
Active Participant
0 Likes
529

I understood from your question You have created a selection screen with the field pa0001-gsber,the same field not in your select query,if I am right.

First seach is this field exist any one of table you have used for your select query if it so you can easily validate,other wise take the table pa0001 and join with any one of your table with key fields,if you send your code we can provide you the solution.