2006 Dec 05 7:26 AM
Hi experts,
Need help for this, answers with comments would be very helpful. Many thanks!
1. Program specs call for screen 100 to appear in a modal dialog box.
PAI
-
module do_something.
If field1 = 'X'.
Call screen '0100'.
Endif.
Endmodule.
Why does the above code fail to produce a modal box?
a) The addition 'starting at X' is left out.
b) The screen should be numbered 900.
c) The code must occur in the PBO.
d) The screen is of the wrong type.
e) Screens are not called within modules.
2. Which one of the following is an example of an asynchronous update?
a) modify ztable from wa.
b) update ztable set field1 = '123'.
c) update ztable from ztable.
d) insert wa into ztable.
e) call function 'update_table' in update task
3. Which one of the following statements would occur in the PBO of a dialog program using table control?
a) loop at itab.
b) loop at itab with control itab_tc.
c) module exit at exit-command.
d) module user_command.
e) set screen '0100'
4. Which one of the following is true about a function module?
a) Function modules are locally accessible objects.
b) Function modules have inbound and outbound parameters.
c) Function modules have no built-in exception handling.
d) Function modules CANNOT be created by a programmer.
e) Function modules use a shared memory area.
Hi experts,
Need help for this, answers with comments would be very helpful. Many thanks!
1. Program specs call for screen 100 to appear in a modal dialog box.
PAI
-
module do_something.
If field1 = 'X'.
Call screen '0100'.
Endif.
Endmodule.
Why does the above code fail to produce a modal box?
a) The addition 'starting at X' is left out.
b) The screen should be numbered 900.
c) The code must occur in the PBO.
d) The screen is of the wrong type.
e) Screens are not called within modules.
2. Which one of the following is an example of an asynchronous update?
a) modify ztable from wa.
b) update ztable set field1 = '123'.
c) update ztable from ztable.
d) insert wa into ztable.
e) call function 'update_table' in update task
3. Which one of the following statements would occur in the PBO of a dialog program using table control?
a) loop at itab.
b) loop at itab with control itab_tc.
c) module exit at exit-command.
d) module user_command.
e) set screen '0100'
4. Which one of the following is true about a function module?
a) Function modules are locally accessible objects.
b) Function modules have inbound and outbound parameters.
c) Function modules have no built-in exception handling.
d) Function modules CANNOT be created by a programmer.
e) Function modules use a shared memory area.
2006 Dec 05 7:31 AM
1 . Why does the above code fail to produce a modal box?
Ans : e , Screen should be of type Modal dialog Box
3. Which one of the following statements would occur in the PBO of a dialog program using table control?
b) loop at itab with control itab_tc.
2006 Dec 05 7:32 AM
Hello Marc
You have to add:
CALL SCREEN '100' STARTING AT ... ...
ENDING AT ... ...Regards
Uwe
2006 Dec 05 7:47 AM
Hello Marc,
Here are the answers -
1.
2. E.
Reason - The addition "IN UPDATE TASK" will always cause an asynchronous update. The updates are all fired when the next COMMIT WORK statement in executed.
3. B.
Reason - See this <a href="http://help.sap.com/saphelp_nw04/helpdata/en/9f/dbac5135c111d1829f0000e829fbfe/frameset.htm">link</a>
4. This does not make much sense to me. There can be more than one answer.
For Example -
--> Function modules <i><b>can</b></i> use a shared memeory area if the top include has some data.
--> Function Modules <b><i>can</i></b> have inbound and outbound parameters. but this is not always necessary.
=========================
Hope this helps.
Regards,
Anand Mandalika.
2006 Dec 05 7:56 AM
hi
good
go through thiese links,i hope these ll give you better idea about the modal box.
http://help.sap.com/saphelp_nw2004s/helpdata/en/9f/dba83d35c111d1829f0000e829fbfe/content.htm
http://help.sap.com/saphelp_nw04s/helpdata/en/fd/7c4a41edf0db2be10000000a1550b0/content.htm
thanks
mrutyun^
| User | Count |
|---|---|
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |