GeekInterview.com
Series: Subject: Topic:

SAP Reports Interview Questions

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

How many windows can be made in one report

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

Answered by: Ram on: Apr 2nd, 2013

Windows will not come under reports

windows will come under smartforms

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: srinivasulu on: Mar 10th, 2013

"MOVE" if both are identical structures means use MOVE statement ,it ll blindly move from source to destination.... if unidentical structure means use MOVE CORRESPONDING...SAP will not encourage to us...

Answered by: Gokul on: Sep 4th, 2011

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

There are 14 columns in a report, in reports developer all 14 columns are printed, but in Apps only 10 columns are displayed

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

How can you slove this?

Answered by: Sarath Banda on: Jan 29th, 2013

By Using Protect ..... End Protect statement, we can display all 14 columns in one page

Which is the first event that is triggered in a report?

Asked By: prabhu | Asked On: Dec 16th, 2006

Answered by: Mahi on: Oct 11th, 2012

Initialization

Answered by: seema on: Oct 3rd, 2012

LOAD-OF PROGRAM

What is diffrence between on change of & at new field??Select single * from & select upto 1 rows

Asked By: Ganesh | Asked On: Apr 23rd, 2006

Answered by: Ankit on: Oct 11th, 2012

Select single * we use when we are not using all primary keys in where clause
select up to 1 Rows we use when we are using all primary keys in where clause

Answered by: tabrez on: Aug 11th, 2012

on change is obsolete now we used at new it prevent adjacent duplicate when the valve change it will trigger

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: Anoop Satheesan on: Jun 7th, 2012

When we use START_OF_SELECTION, the system understand that the user started accessing the database. And when we use END_OF_SELECTION system comes to know that the user stops accessing the database. Ev...

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

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

First | Prev | | Next | Last Page

 

 

Ads

Connect

twitter fb Linkedin GPlus RSS

Ads

Interview Question

 Ask Interview Question?

 

Latest Questions

Ads

Interview & Career Tips

Get invaluable Interview and Career Tips delivered directly to your inbox. Get your news alert set up today, Once you confirm your Email subscription, you will be able to download Job Inteview Questions Ebook . Please contact me if you there is any issue with the download.