radhika kalidhindi


{ City } hyderabad
< Country > india
* Profession *
User No # 6314
Total Questions Posted # 0
Total Answers Posted # 5

Total Answers Posted for My Questions # 0
Total Views for My Questions # 0

Users Marked my Answers as Correct # 234
Users Marked my Answers as Wrong # 16
Questions / { radhika kalidhindi }
Questions Answers Category Views Company eMail




Answers / { radhika kalidhindi }

Question { Tech Mahindra, 59902 }

what is the difference between user-exit & customer-exit?


Answer

1.
USER EXITS are FORMS and are called by SAP standard programs
using PERFORM.

CUSTOMER EXITS are FUNCTIONS so they are called using CALL
FUNCTION (or more exactly CALL CUSTOMER FUNCTION).

2.
Inside the form (user exit) you can read and change almost
any global data from host program.
Inside a function (customer exit) you can only acces your
import/export/changing/tables parameters.

3.

User exits are more flexible because you have more
information to use in your code but on the other hand , it
is very easy to manipulate erroneously global data and lead
the standard program to a dump or even to make database
inconsistent.
Customer exits are more restrictive but you are sure any
change you can make to any parameters will never lead to
inconsistency

4.

User-exit doesn’t have any classification.
In customer-exit we have function-module exit , screen exit
, menu exit.

5.
User exits are Basically designed For SD module.
Costomer exits Are available for MM,SD,FI,HR…..Basically
designed for all modules.

Is This Answer Correct ?    174 Yes 8 No

Question { CSC, 8822 }

What are control commands in Scripts?


Answer

The purpose of these is to allow control of the output
formatting. These commands are not interpreted by the
SAPscript editor, but are passed through to the SAPscript
Composer for processing. The Composer is the program that
converts text from the form displayed in the editor to the
form used for printing. This includes, for example, line and
page formatting, the replacement of symbols with their
current values and the formatting of text according to the
paragraph and character formats specified.

Is This Answer Correct ?    0 Yes 1 No


Question { CSC, 8822 }

What are control commands in Scripts?


Answer

These are the sapscript control commands

Explicit Page Break: NEW-PAGE

Preventing Page Breaks: PROTECT

Next Main Window: NEW-WINDOW

Assigning a Value to a Text Symbol: DEFINE

Formatting Date Fields: SET DATE MASK

Formatting Time Fields: SET TIME MASK

Country-Dependent Formatting: SET COUNTRY

Position of the Leading Sign: SET SIGN

Initializing Numbered Paragraphs: RESET

Including Other Texts: INCLUDE

Changing the Style: STYLE

Formatting Addresses: ADDRESS

Setting a Header Text in the Main Window: TOP

Setting a Footer Text in the Main Window: BOTTOM

Conditional Text: IF

Finding a Match: CASE

Calling ABAP Subroutines: PERFORM

Inserting Print Controls: PRINT-CONTROL

Boxes, Lines, Shading: BOX, POSITION, SIZE

Hexadecimal Data: HEX, ENDHEX

Summing a Program Symbol: SUMMING

Is This Answer Correct ?    2 Yes 0 No

Question { CSC, 25828 }

What is table maintenance generator?


Answer

Table Maintenance Generator is used to create table
maintenance program to add, modify or delete records in the
database table. This can be accessed using transaction SE54
or in SE11 using the menu Utilities->Table Maintenance
Generator.

Is This Answer Correct ?    37 Yes 3 No

Question { CTS, 14596 }

what is two domain level concept in abap


Answer

Table fields are defined in SAP R/3 by data elements and
domains. This is a key difference between SAP R/3 and many
other systems.
In other systems, a field is defined only by its type
(i.e., character, numeric) and length. These characteristics
are assigned directly to each field.

In SAP R/3, a field is defined by being assigned to a data
element, which is in turn assigned to a domain. These
assignments determine the field’s type and length in
addition to other characteristics.

SAP R/3 refers to this method of field definition as the
Two-Level Domain Concept

Is This Answer Correct ?    21 Yes 4 No