can any one tell me the following question's answer
1. How can we create PUSH Botton in presentation layer.
2.How can we print the record.
3.If database has nor records & if we write 'for all
entries' in select statement then what will be happen.
Answer Posted / bandivenkateswarlu
1.create the pushbutton in Presentation server by using the
syntax is given below.
for creating the pushbutton:
selection-screen pushbutton 10(06) 'name of pushbutton'
user-command cli1.
This is initilized into the Initialization event in the
classical report.
2.print the record by using the statement Loop at
Loop at Itab
write: itab-field.
Endloop.
3.if database has no records it will work as like this.
first up all it will check the base table if this table is
empty then it will retrive the data from the destination
table based on the condition.
Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
How to read files and process BDC's automatically ?
Can you create a table with fields not referring to data elements? : abap data dictionary
How to handle error in session method? : abap bdc
What is locking? : abap data dictionary
How to add a column to a table control while using alphanumerical layout editor ?
How did you test the form you developed? How did you taken print?
What are the list of screen elements?
How can we use / display table in a screen?
What is a data element?
How to transfer data into line items using batch input session method? : abap bdc
Difference between sap script and report?
What are the objects of the abap dictionary or what types of objects can be created in the abap dictionary? : abap data dictionary
GUYS any one please can u post questions in sap a bap webdynpro questions.. please i need to know some technical questions regarding webdynpro and ADOBE forms ?
What is a view? : abap data dictionary
The loop-endloop on extract datasets can be used without any kind of errors. State true or false. : abap modularization