‎2007 Aug 11 12:31 PM
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.
‎2007 Aug 11 1:28 PM
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