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
What is a match code? : abap data dictionary
Explain the properties of selection screen?
What are the different types of luws. What are they?
What does an EXEC SQL stmt do in ABAP? What is the disadvantage of using it?
Do we have to migrate all sapscript forms to smart forms?
what are the two methods of modifying sap standard tables? : abap data dictionary
How to know if the value entered contains records or not?
BDC program to migrate data to SAP R/3 database. The data will be uploaded using transaction ME11. (Session Method) plz mention the detail coding Tahnks, Rahul
In SAP Script,How to display a single field(like matnr)at the right end of the form.
Explain what are interactive reports?
Explain pai and pbo.
What are the different types of views and their definition?
What are the Various Types of internal tables?
Double click function on the lists, identifying the line selected by the user on the list?
write a program for creation of customer quotation using BAPI 'BAPI_QUOTATION_CREATEFROMDATA'.