What events are mandatory in reports?
Report dont need any event to execute the output.if we we put start-of-selection there is no compulsory to use end-of-selection. End-of-selection is used when we want to execute some output even when some exception occurs to skip start-of-selection.
There is no mandatory event in the report program.
however, if we don't explicitly write any event, system implicitly starts with start of selection event.In case of database selection, it is a good practice of use end-of-selection event.
Why cant webi connect to any datasource?
Have you used ws upload? Difference between ws upload and upload.
UPLOAD: upload a file to the presentation server.
WS_UPLOAD: LOAD FIELS FROM THE PRESENTATION SEVER TO INTERNAL TABLE.
ws_upload: is an Obsolete function module using that function module we can upload the file from desktop into SAP system.
GUI_UPLOAD: Using gui_upload we can upload the file into the SAP system
What is the transaction code sm 31?
SM31 is a new version of the t-code SM30.
SM30 - Call view maintenance & views for SAP tables.
SM31 - used for maintenance for SAP tables.
SE31-Used for maintaining Tables/Views.
How can validate input values in selection screen and which event was fired?
We can Validate Selection Screen With the Help of the Following Events, the Event Follows the Same hierachy.
AT SELECTION-SCREEN ON
AT SELECTION-SCREEN ON BLOCK
AT SELECTION-SCREEN OUTPUT
AT SELECTION-SCREEN.
Using events like
at selection-screen on field.
at selection-screen on radio button.
What are user exits?What are customer exits?
user exit : to write code in the form of SUBROUTINES.(FORM ........ END FORM)
:WE NEED ACCESS KEY.
CUSTOMER EXIT: to write code in the form of function modules ( ZINCLUDE PROGRAMS)
hiUser Exit and Customer exit both are one typ of Enahancement.Using Enahncement we can add some new functionality to the standard transaction without modifying the standard code.User exit can b ...
What is a binary search?
binary search is used to get the more data from internal table instead of linear search ,and binary search is the faster and efficient .
It is one of the search methods which is much faster that leaner search. Binary search keep on dividing the entire set records into two and search still it will reach the record.
What is the command to be used to transfer the data from one internal table to another internal.
Append is the keyword which is used to transfer the data from workarea to internal table.
Let ITAB1 AND ITAB2 be two Internal tables. If i want transfer data from ITAB1 to ITAB2....
........
ITAB2 = ITAB1.
(OR)
APPEND LINES OF ITAB1 TO ITAB2
HI,The syntax is Try. code Catch.It is used to avoid the unwanted dumb in the program.example: in the some calculation a = 100/1 means program going to dump.Regards,Sankaran R
What is the difference between internal table with header line and with out header line.
Internal table with headerline: no need to create work area .System automatically create the work area.
internal table without headerline: we need to create work area.
thanks
Sankaran R
Internal table with header line doesnt need an explicit work area. Without header line, table needs an explicit work area.
What is meant by smat scripting and what are the differences betweeen smart, browser and server scripting?
What is debugging update in debugging mode? What is the use of this?
How do you identify a line from the basic list.
sy-listi
Hi ,
I think sy-lsind gives the current list level , According to me sy-lilli can be used to identify a line from a list, sy-lilli contains the line at which a event is triggered you can use it in a case statement.
How do u use menu painter in report program?
You can also use the transaction SE41 for Menu Painter.
Give the Prog name and PF-STATUS name and click on create.
By using set pf-status'zmenu' and double clicking on zmenu
Significance of an end-of-selection event
What is the significance of an end-of-selection event in report?What will happen if we do not use the above said event.
End of selction- It is mainly used to pass the data into the selction screen in the report.
Regards,
Sankaran Ramaiah
This is the last of the events called by the runtime environment to occur. It is triggered after all of the data has been read from the logical database, and before the list processor is started. You ...
What is the difference between collect and sum?
Collect: It is mainly used to add the numberc fields only.
sum: its is used to add(total) the particular fileds.
Regards,
Sankaran Ramaiah
&n...
Call transacton is comes under the BDC. While uploding data into SAP system we are used it.1) Call transaction is an Synchronze process.2) Update mode is both synchronze and Asynchronze mod...
it is one of the method used to migrate data from non sap systems to sap systemswith this we can work with small amount of datawe can work with foreground processit does not have logfile explicitlyto ...
What are events in interactive report & explain?
Interactive Events:1. At line-selection.2. Top of page During line selection.3 At user command.4. At pf1. At line-selection- Using this event we can navigate the primary list into the seco...
At line-selection
At user-command
Top-of-page During line-selection for secondary Page header info
User Exit: User Exit is one of the Enhancement type .Using user exit we can modify the standard Transaction and add the new functionality based on the client requirements.
User exits are the space given by SAP in standard programs or transaction where we can add customer specific code to enhance the functionality.
Not line size .. increase line-count
line-size means width of line
line-count means no.of lines per page
Hi all,
We can use sapscript and by implementing control command "protect.........End protect",u can print all statements in single page
If no page is having enough of place then the system breaks the text and print in different pages.