ALLInterview.com :: Home Page KalAajKal.com
 Advertise your Business Here     
Browse  |   Placement Papers  |   Company  |   Code Snippets  |   Certifications  |   Visa Questions
Post Question  |   Post Answer  |   My Panel  |   Search  |   Articles  |   Topics  |   ERRORS new
   Refer this Site  Refer This Site to Your Friends  Site Map  Bookmark this Site  Set it as your HomePage  Contact Us     Login  |  Sign Up                      
tip   SiteMap shows list of All Categories in this site.
Google
 


 

Company >> Deloitte >> Interview Questions >> ABAP Interview Questions
 
  Everything Else AllOther Interview Questions (1)   Call Centre AllOther Interview Questions (1)   Accounting AllOther Interview Questions (4)
  Audit Interview Questions (1)   Human Resources Interview Questions (5)   Finance Interview Questions (2)
  Oracle Apps Technical Interview Questions (2)   FI CO Interview Questions (2)   SD Interview Questions (16)
  ABAP Interview Questions (22)   Data Warehouse General Interview Questions (1)   Informatica Interview Questions (6)
  Business Objects Interview Questions (1)   Manual Testing Interview Questions (3)   QTP Interview Questions (1)
  Unix Commands Interview Questions (1)   Dot Net General Interview Questions (10)   ASP.NET Interview Questions (2)
 
Back to Questions Page
Question   What is the main difference between Smartforms and SAP scripts? Rank Answer Posted By  
 Interview Question Submitted By :: Sara George
I also faced this Question!!   © ALL Interview .com
Answer
Smartforms are client independant.
SAP scripts are client independent
 
4 Sara George
 
 
Answer
To output documents using the programming interface, R/3
application programs makes use of scripts or smart forms. 

By design sap script is a word processing tool which
displays data on the form with the help of text elements
where the logic of those is written in the print program and
Forms were designed to be driven from print program, hence
are often termed as client dependent. Smart forms are client
independent. Bcoz it doesn’t use any text elements. it will
be executed through a function module. When a print program
calls a Smart Form, the form itself takes over to produce
output, without any further direction from print program.  

Steps for creation 

Creation of Script 

Print program will determine the output document, the areas
values, and the frequency of the output. The database access
will be made in the print program which will insert them in
the corresponding fields of the form. Script needs direction
from the print program to print output. 

Scripts uses layout set that describes the layout of the
individual print pages and uses text elements to supply
definable output blocks, which a print program can call.  

Creation of smart form 

Ø       Design the form

Ø       Form Activation which returns Function module

Ø       Application program for data retrieval & calling
Smart form. 

Application program calls the function module, the Smart
Form uses the modules interface (which corresponds to the
form interface) to transfer any table data previously
selected and to print the form according to the form
description. In addition form can have additional data
selections. 

driver program is generated automatically by activating the
smartform

we need to write the driver program .no program is generated
 by activating the script

 
2 Shobha
 
 
Answer
1}scripts are cliend dendent , smartforms are client 
independent

2}scripts we can maintain 99 main windoes & it can not work 
with out mainwindow

smartforms we can maintain only on mein window & in this v 
can creat with out main window ,

3} v can write coding in scripts

  in smartforms v can write codding
 
0 Reddy
 
 
 
Answer
1) Script is Client Dependent.
   Smartforms are Client InDependent.

2) Multiple Page formats are possible in Smartforms.
   Multiple Page formats are notpossible in Scripts.
 
3) We can maintain Background Graphics in Smartforms.

4) Scripts doesnot generate any Functionmodules.
   Smartforms generate  Functionmodules.

5) We can add colours in scripts.
   We cannot add colours in Smartforms.

6) Scripts maintains 99 mainwindows .
   Smartforms maintains only one Main window.
 
0 Raj.neel1
 
 
Question   I have 2 fields like customer and name having 20 records on basic list. When I select 5 records randomly, I want to get the address of particular customer selected in secondary list? Rank Answer Posted By  
 Interview Question Submitted By :: Guest
I also faced this Question!!   © ALL Interview .com
Answer
In the above mentioned scenrio, u need to assign the 
checkbox at runtime. You need to assign a variable intially 
and later in the write statement, declare the variable as 
checkbox.

Then using At User Command, u can randomly select the 
records and display in the secondary list
 
0 Kiran Kumar V
 
 
Question   What are reference fields in data dictionary ? how do u assign them to a table field? Rank Answer Posted By  
 Interview Question Submitted By :: Guest
I also faced this Question!!   © ALL Interview .com
Answer
If you are using a field having a properties of std field, 
then you can refer to the existing field. Ex. U are the 
defining a field having the properties of Currancy then you 
can refer to the std field curr.


 
0 Kiran Kumar V
 
 
Question   What is an index ? Types of index and there uses ? Rank Answer Posted By  
 Interview Question Submitted By :: Guest
I also faced this Question!!   © ALL Interview .com
Answer
2 types of indexes
1. Basic index - default it will exist for tables.
2. Secondary index - we need to create on requirement.
 
0 Suman
 
 
Answer
grouping of fields
 
index contain idexfields and pointer to data record in that 
table

 
unique index
nonunique index

speed up the data retrieval due index fields r sorted
 
0 Yarru Sreenivasa Rao
 
 
Question   What is the difference between view and table ? Rank Answer Posted By  
 Interview Question Submitted By :: Guest
I also faced this Question!!   © ALL Interview .com
Answer
Table comprises of rows and columns, columns representing 
fields and rows containing the data or records. 

View is a imaginay table which contains data at run time.
 
0 Kiran Kumar V
 
 
Question   In two structures S1 and S2 having same structure of five fields each how can You transfer data from S1 to S2 ? Rank Answer Posted By  
 Interview Question Submitted By :: Guest
I also faced this Question!!   © ALL Interview .com
Answer
s2 = s1
 
0 Sumathi
 
 
Answer
MOVE S1 TO S2.
 
0 Nagamani
 
 
Question   How you will doing the bypass by using select statment Rank Answer Posted By  
 Interview Question Submitted By :: Guest
I also faced this Question!!   © ALL Interview .com
Answer
select....... bypassing buffer
 
0 Manoj Dash
 
 
Question   In the scripts,Which is mandatory function module means with out Open_form and can we write the print prg Rank Answer Posted By  
 Interview Question Submitted By :: Guest
I also faced this Question!!   © ALL Interview .com
Answer
The OPEN_FORM and CLOSE FORM r mandatory. If CLOSE_FORM is 
missing nothing will be print
 
0 Arjun
 
 
Question   In the User exits how you can use sub screen and please tell me the steps Rank Answer Posted By  
 Interview Question Submitted By :: Guest
I also faced this Question!!   © ALL Interview .com
Answer
Create screen exit
 
0 Sunil
 
 
Question   Explain about No intervals, no extension in select options. Rank Answer Posted By  
 Interview Question Submitted By :: Guest
I also faced this Question!!   © ALL Interview .com
Answer
In the select options it show the ranging values.

If we define no interval, no extension it will act as a 
parameter.

Please check this code.

TABLES: vbak.

SELECT-OPTIONS : s_vbeln FOR vbak-vbeln NO-EXTENSION NO 
INTERVALS.
 
0 Herambarao
 
 
 
Back to Questions Page
 
 
 
 
 
   
Copyright Policy  |  Terms of Service  |  Help  |  Site Map 1  |  Articles  |  Site Map  |   Site Map  |  Contact Us interview questions urls   External Links 
   
Copyright © 2007  ALLInterview.com.  All Rights Reserved.

ALLInterview.com   ::  Forum9.com   ::  KalAajKal.com