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

help

Former Member
0 Likes
310

Interview questions.

1)Scenario: get matnr field in selection screen using parameters.

select matnr from mara ,maktx from makt database tables and get the

output as matnr and maktx.How to do this? Can anyone tell me how we can do this using INner join and For all entries. plz give both scenarios.

2)Scenario: U have created a Ztable in Se11. how user can enter data

into the database table ,user donot have access to se11.

3)Interviewer: i have a report in development system and i have

completed the report, Now i want to transfer this report into some

other system. How to do this?Who will transfer the report from one

system to other system.

4)What is the use of At selection-screen output event?Can we use it for

validating a field on selection-screen,If Yes How?

5) can anybody give some sample coding of

At selection-screen on field

At selection-screen endof seltab,What is this seltab?

At selection-screen value request

At selection-screen help request

At selection-screen radio button radii

At selection-screen on block

At selection-screen output.

What are there uses and sample coding.

1 REPLY 1
Read only

Former Member
0 Likes
278

Scenario: get matnr field in selection screen using parameters.

select matnr from mara ,maktx from makt database tables and get the

output as matnr and maktx.How to do this? Can anyone tell me how we can do this using INner join and For all entries. plz give both scenarios.

You can use inner join as well for all entries ,may be you can write normal query

simple code(Joins) :

tables : mara

data : begin of itab occurs 0,

matnr like mara-matnr,

maktx like makt-maktx,

end of itab.

data flag type c.

parameters p_matnr like mara-matnr.

start-of-selection.

select amatnr bmaktx into table itab

from mara as a inner join makt as b on amatnr = bmatnr

where a~matnr = p_matnr.

if sy-subrc ne 0.

flag = 'X'.

stop.

endif.

loop at itab.

write:/ itab-matnr,itab-maktx.

endloop.

end-of-selection

if flag = 'X'.

write:/ 'No data found'.

endif.

2)Scenario: U have created a Ztable in Se11. how user can enter data

into the database table ,user donot have access to se11.

you have to use Table maintaince and will create transaction code for table maintaince,so end user will use that transaction code.

if you need more help then search in forum about table maintaince.

3)Interviewer: i have a report in development system and i have

completed the report, Now i want to transfer this report into some

other system. How to do this?Who will transfer the report from one

system to other system.

You can use SE10 Transaction to transport any development one system to other system

4)What is the use of At selection-screen output event?Can we use it for

validating a field on selection-screen,If Yes How?

This is for validation screen fields like suppose you have two parameters in selection-screen,if you want to keep run time validation then we need to use this event.

Please search one by one SDN,you get everything.

Thanks

Seshu

Thanks

Seshu