You are on page 1of 5

what is the client on which u have worked? In real time ?

Answer
# 1 Generally it will be 110,120,130 etc. You should not tell
800 or 810. these clients are only in IDES system.
Can I Get the field name's of mara table.
Answer
# 1 Hi ,
You can go to transaction SE11, and view the mara table in
display mode you will get to see all the fields, you can
use the same transaction for all tables and views.
-----real time report in material management and sales and distribution with codes
Answer
# 3 go to tcode spro.
path--environment-general report selection-then
expand respective module node for getting reports
-------what is Foreign key, check table and value table ....? what is the difference
between CHECK AND VALUE TABLE ..? PLEASE GIVE THE APPROPRIATE
ANSWERS......
Answer
# 1 A foreign key links two tables T1 and T2 by assigning
fields of table T1 to the primary key fields of table T2.
Table T1 is called the foreign key table (dependent table)
and table T2 the check table (referenced table). The pair
of fields for the two tables must have the same data type
and length. One field of the foreign key table therefore
corresponds to each key field of the check table. This
field is called the foreign key field.
A foreign key permits you to assign data records in the
foreign key table and check table. One record of the
foreign key table uniquely identifies one record of the
check table using the entries in the foreign key fields.
When an entry is made in the check field, there is a check
whether the check table contains a record with the key
defined by the values in the foreign key fields. If this is
so, the entry is valid. Otherwise the system rejects the
entry.
----------

what is the difference between DATA ELEMENT and DOMAIN? please give the
fully detailed
Answer
# 2 Data element contains the semantic charecterstics for the
field, such as field labels, business context & online
documentation.
Domain deals with the technical charecterstics of the field
such as field length and field type
-------hat is difference between MOVE and MOVE-CORRESPONDING?
Answer
# 3 Move is used to data transfer between the same structure
but move-corresponding data transfer between two structure
if both have some common fields
------how do we call multiple transactions in session method? (plzz with code)
Answer
# 1 by using bdc-insetr group we can call multiple tran
--------ell me that any enhancement object comes under which category? either
implementation or in support project
Answer
# 1 Any enhancement object comes under support project
only.Implementation Project is developed according to
business blue prints. After completion of implementation,
enhancements are comes under support only.
-----plz can any one list out the set of questions on support project. I am waiting for
ur reply
Answer
# 1 what issues u have faced in ur support project. what are
tickets. how many objects u have enhanced.which object is
critical object. purpose of object. suppose for reports,
what field u have add. Like these questions are asked for
support project
--------Could u please tell me the answers for following questions, Why we need
IDocs...? What is the purpose of IDocs...? Thanks in Advance, Sanjeev.K
Answer
# 3 Hi to all,
I appreciate all the answer which is given above,

But I would like to add some very important concept of


IDOC:IDOC : Intermediate Document
Purpose : It will send the record from one sap system to
another sap system and aweless It will fetch the data from
remote SAP R/3 to current SAP R/3 system.
Sending of record or data from one SAP R/3 to another is
is also possible by RFC but fetching of data from remote
R/3 is not possible, so only in that case IDOC'S Comes
under existence.
IDOC :
It is a collection of segments (child segments and master
segments)
It is a 16 digit no. which is generated automatically after
execution.
It is one of the technique for transferring and receiving
record.
It is a collection of 3 things data records, control
records and status record.
IDOC can be created by existing segment or userdefine
segment. Creating logical system, creating model view and
creating partner profile are some of the steps which are
used in creating outbond and inbond processes.
status record - 50,53,62,64 gives success status
56 gives wrong status
TCODE : SLDB,WE20,BD64,WE30, WE80,WE81 are some of tcode
which are used in IDOC generation.
-----What is reject statement? please reply me breifly?
Answer
# 1 1. REJECT.
2. REJECT dbtab.
Variant 1
REJECT.
Effect
Stops processing the current database table line and resumes
with the next line of the table on the same hierarchy level.
Unlike the CHECK statement, you can also use REJECT within a
subroutine or loop for table selection.
Variant 2
REJECT dbtab.
Effect
Similar to variation 1. In this case, however, dbtab is a
table from the database hierarchy on a level no deeper than
the current database table. Processing continues by reading

the next record of the table dbtab .


Example
Logical database F1S
Hierarchy: SPFLI -> SFLIGHT -> SBOOK
TABLES: SFLIGHT,
SBOOK.
GET SFLIGHT.
...
GET SBOOK.
...
REJECT 'SFLIGHT'.
...
REJECT cancels processing of the event 'GET SBOOK' and
resumes with the processing of the event 'GET SFLIGHT' .
Note
The name of the subroutine containing the "PUT dbtab"
statement must begin with PUT_dbtab .
------what is difference between commit and rollback.?
Answer
# 1 suppose u have one table which is in database. The table
contains some records. U want to modify one record of table.
after modification, u don't want that new values for
the record. just u use rollback command. previous values are
placed in database.
Example:
Case 1: Roll
sno name
1
abc
2
xyz

Back
palce
hyderabad
bangalore.

This is the table and it contains some records.


Suppose if u want change the 2nd record, means palce
is changed to chennai.
After
sno
1
2

modification:
name palce
abc hyderabad
xyz Chennai.

Suppose if u want old values, means u don't want new


values. At that time u use roll back command

After useing rollback:


sno name palce
1
abc hyderabad
2
xyz bangalore.
after using roll back, the records are comes like
above(original records)
Case
sno
1
2

2: Commit
name palce
abc hyderabad
xyz bangalore.

This is the table and it contains some records.


Suppose if u want change the 2nd record, means palce
is changed to chennai.
After
sno
1
2

modification:
name palce
abc hyderabad
xyz Chennai.

After useing commit:


sno name palce
1
abc hyderabad
2
xyz Chennai.
after using commit, the table is finilased.u can't get
old values by uisng roll back.
Once if u use commit,u can't get old values for using of
rollback. Before commit, u can get old values for rollback.
--------

You might also like