GeekInterview.com
Series: Subject: Topic:

SAP Reports Interview Questions

Showing Questions 1 - 20 of 175 Questions
First | Prev | | Next | Last Page
Sort by: 
 | 

While printing, 10 columns are printing in first page and the next 4 cols in next page, how do u resolve this to accommodate all the 14 columns in a single page?

Asked By: jagadeesh9 | Asked On: Jul 14th, 2008

Answered by: Praveen on: May 25th, 2012

Not line size .. increase line-count
line-size means width of line
line-count means no.of lines per page

Answered by: Naveen on: Sep 21st, 2011

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.

Mandatory report events

Asked By: sankaran.ramaiah | Asked On: Dec 8th, 2009

What events are mandatory in reports?

Answered by: paul on: May 7th, 2012

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.

Answered by: Rahul Shrivastava on: Apr 26th, 2012

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.

Webi

Asked By: batthula haritha | Asked On: Apr 27th, 2012

Why cant webi connect to any datasource?

Have you used ws upload? Difference between ws upload and upload.

Asked By: Interview Candidate | Asked On: Aug 28th, 2004

Answered by: sharmistha on: Mar 3rd, 2012

UPLOAD: upload a file to the presentation server.
WS_UPLOAD: LOAD FIELS FROM THE PRESENTATION SEVER TO INTERNAL TABLE.

Answered by: sankaran.ramaiah on: May 25th, 2011

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?

Asked By: Interview Candidate | Asked On: Aug 28th, 2004

Answered by: sudmitra on: Nov 22nd, 2011

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.

Answered by: pavan on: Sep 21st, 2005

SE31-Used for maintaining Tables/Views.

How can validate input values in selection screen and which event was fired?

Asked By: Interview Candidate | Asked On: Aug 28th, 2004

Answered by: lakshmi on: Sep 26th, 2011

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.

Answered by: meenagksaroj on: Aug 9th, 2008

Using events like

at selection-screen on field.
at selection-screen on radio button.

What are user exits?What are customer exits?

Asked By: jiten | Asked On: May 27th, 2006

Answered by: NARAYANA SWAMY on: Sep 14th, 2011

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)

Answered by: sankaran.ramaiah on: May 4th, 2010

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 ...

Binary search

Asked By: Interview Candidate | Asked On: Aug 28th, 2004

What is a binary search?

Answered by: sreenivasan on: Sep 7th, 2011

binary search is used to get the more data from internal table instead of linear search ,and binary search is the faster and efficient .

Answered by: m_manic on: Apr 3rd, 2009

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.

Asked By: Interview Candidate | Asked On: Aug 28th, 2004

Answered by: Gokul on: Sep 4th, 2011

Append is the keyword which is used to transfer the data from workarea to internal table.

Answered by: sathgun on: Jul 21st, 2011

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 TO

What is a catch command

Asked By: Interview Candidate | Asked On: Aug 28th, 2004

Answered by: sankaran.ramaiah on: Jun 8th, 2011

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.

Asked By: Interview Candidate | Asked On: Aug 28th, 2004

Answered by: sankaran.ramaiah on: May 25th, 2011

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

Answered by: sri on: Sep 8th, 2006

Internal table with header line doesnt need an explicit work area. Without header line, table needs an explicit work area.

Smart scripting

Asked By: kirankishore | Asked On: Oct 11th, 2010

What is meant by smat scripting and what are the differences betweeen smart, browser and server scripting?

Debugging update

Asked By: sankaran.ramaiah | Asked On: Jul 20th, 2010

What is debugging update in debugging mode? What is the use of this?

How do you identify a line from the basic list.

Asked By: Interview Candidate | Asked On: Aug 28th, 2004

Answered by: manikandansit on: Jun 13th, 2010

sy-listi

Answered by: rohit nagare on: Dec 5th, 2006

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?

Asked By: Interview Candidate | Asked On: Aug 28th, 2004

Answered by: Anamika2g on: May 6th, 2010

You can also use the transaction SE41 for Menu Painter.
Give the Prog name and PF-STATUS name and click on create.

Answered by: suman on: Jul 25th, 2007

By using set pf-status'zmenu' and double clicking on zmenu

Significance of an end-of-selection event

Asked By: nagaraj.abap | Asked On: Feb 18th, 2008

What is the significance of an end-of-selection event in report?What will happen if we do not use the above said event.

Answered by: sankaran.ramaiah on: Dec 10th, 2009

End of selction- It is mainly used to  pass the data into the selction screen in the report.



Regards,
Sankaran Ramaiah

Answered by: infoviewmohan on: Mar 10th, 2008

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?

Asked By: Interview Candidate | Asked On: Aug 28th, 2004

Answered by: sankaran.ramaiah on: Dec 6th, 2009

Collect: It is mainly used to add the numberc fields only.
sum: its is used to add(total) the particular fileds.

Regards,
Sankaran Ramaiah

Answered by: SUN on: Sep 13th, 2005

                                 &n...

Explain call transaction?

Asked By: Interview Candidate | Asked On: Aug 28th, 2004

Answered by: sankaran.ramaiah on: Dec 3rd, 2009

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...

Answered by: sajith khanna on: Mar 13th, 2006

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?

Asked By: Interview Candidate | Asked On: Aug 28th, 2004

Answered by: sankaran.ramaiah on: Dec 3rd, 2009

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...

Answered by: bhargavi_k_b on: Oct 6th, 2006

At line-selection

At user-command

Top-of-page During line-selection for secondary Page header info

Tell about user exists?

Asked By: Interview Candidate | Asked On: Aug 28th, 2004

Answered by: sankaran.ramaiah on: Dec 3rd, 2009

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.

Answered by: iter.manas on: May 20th, 2008

User exits are the space given by SAP in standard programs or transaction where we can add customer specific code to enhance the functionality.

First | Prev | | Next | Last Page

 

 

Connect

twitter fb Linkedin GPlus RSS

Ads

Interview Question

 Ask Interview Question?

 

Career Counselling

 Have Career Question?

 Ask Chandra

 Ask Only Career questions.

Follow us:
 

Latest Questions

Ads

Interview & Career Tips

Get invaluable Interview and Career Tips delivered directly to your inbox. Get your news alert set up today, click "Subscribe".