1 :: Why sap script client depended and smart forms are client independent
By design, SAP script is a word processing tool whichdisplays 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.
|
2 :: How to define the total and sub total in smartform
using the events
|
3 :: How will you display top 5 records form an internal table ?
write a simple syntax:loop at it_tab1 INTO wa_tab from 1 to 5.
ENDLOOP.
|
4 :: How will you copy a Sapscript from one client to another client & from login language to org language
if form is available in $TMP:execute se71 in required client
menu bar--> utilities---> copy from client
provide form name,source client target form. and click on
execute
IF FORM IS AVAILABLE IN YOUR OWN PACKAGE:
execute scc1--> provide source client--> transport request
and select the check box INCLUDING REQUEST SUB TASK-->CLICK
ON start immediately in application tool bar --> click on yes
|
5 :: When we should use ABAP Memory and SAP Memory
ABAP Memory- The contents of the ABAP/4 memory are retainedonly during the lifetime of an external session. You can
retain or pass data across internal sessions. The EXPORT to
memory and IMPPORT from MEMORY statement allow you to write
data to or read data from the ABAP memory.
EX: EXPORT it_tab TO MEMORY ID 'ZADI1'.
IMPORT it_TAB FROM MEMORY ID 'ZADI1'.
SAP MEMORY - Otherwise known as global memory is available
to a user during the entire duartion of a terminal session.
It's contents are retained across transaction boundaries as
well as external and internal sessions. SET PARAMETER & GET
PARAMETER statements allows you to WRITE TO/ READ from the
SAP memory.
|




Webmaster Said:
Thank you.