abhinandan b. alandkar


{ City } bangalore
< Country > india
* Profession * sap technical consultant
User No # 6378
Total Questions Posted # 0
Total Answers Posted # 9

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

Users Marked my Answers as Correct # 71
Users Marked my Answers as Wrong # 7
Questions / { abhinandan b. alandkar }
Questions Answers Category Views Company eMail




Answers / { abhinandan b. alandkar }

Question { Wipro, 31364 }

Can you create a field without data element domain?


Answer

Yes we can create. While defining data element below domain
there is a field called BUILT IN TYPE. Use this option.

Is This Answer Correct ?    15 Yes 1 No

Question { TCS, 11517 }

What is BDC Recording?


Answer

BDC recording is the process of going through a transaction
code , field by field & screen by screen by entering some
dummy value in the fields of the transaction & recording
the sequence of flow. By using this we can prepare
validation structure for BDC...

Is This Answer Correct ?    18 Yes 0 No


Question { Keane India Ltd, 7403 }

what will you do in Recording method?


Answer

BDC recording is the process of going through a transaction
code , field by field & screen by screen by entering some
dummy value in the fields of the transaction & recording
the sequence of flow. By using this we can prepare
validation structure for BDC...

Is This Answer Correct ?    0 Yes 0 No

Question { Satyam, 8769 }

What is the Difference Between basic list and interactive
list?


Answer

Instead of creating an extensive & detailed list we create
a BASIC LIST with condensed information. From which user
can switch to detailed information.
The detailed information will be in SECONDARY LIST.
To navigate to this list user double clicks on a record on
the BASIC LIST to go to the SECONDARY LIST.
This means the BASIC LIST reacts to the interactions of
the user at run time & hence the name.

Is This Answer Correct ?    2 Yes 0 No

Question { 25971 }

How to do back ground processing in BDC Session method ?


Answer

SAP standard program RSBDCSUB helps u do the job.
Create a variant for RSBDCSUB with BDC session name..

Is This Answer Correct ?    9 Yes 3 No

Question { 6233 }

wat is a field symbol?


Answer

Field symbol is a pointer dynamically assigned to a field.
After assignment we can use the same field-symbol in our
program in place of actual field name.
Use FIELD-SYMBOL statement to define a field symbol &
use ASSIGN to assign a field to it.
The FIELD SYMBOL name must begin & end with angular
brackets.

Ex:- FIELD-SYMBOLS .
ASSIGN f1 TO .
Where F1 is a field defined in the program.

Is This Answer Correct ?    12 Yes 0 No

Question { CSC, 8140 }

1) What is read with binary search?
2) I have initialization write ?a?
Top-of-page write ?b? what is the output
for this/
3) If I don?t have start of selection event in report
will it execute?it is mandatory or not?
4) What is table maintenance generator?
5) Is it advisable to have secondary index/
6) How we will imlement BAPI?
7) What is process code in idoc?
8) Where the information msg will display?
9) Where warning msg will display?
10) Where we use watch point?what exactly watch point
means?
11) What is a spool?
12) What is program name that contains all print
program names and form names other than TNAPR?
13) How we will capture errors in bapi?
14) How to transfer std text from production to quality?


Answer

The output of the second question is :-
a
b

Is This Answer Correct ?    1 Yes 2 No

Question { Bristle Cone, 6172 }

If we will display the data by writing write statement on
start of selection then what is the need of end-of-
selection in classical report


Answer

This event is useful if ur report is using a Logical
Database. The event End-of-selection is triggered once
Logical database has finished reading all the data.
And one more thing if u have coded a STOP statement in
ur report, if some condition inside the loop fails STOP
statement is executed & control will be transfered to the
End-of-selection......

Is This Answer Correct ?    8 Yes 1 No

Question { 5867 }

what is difference between occurs1 and occurs2?


Answer

Let me correct u Siddharth,
Its not correct that when u use occurs 1 or occurs 2 u
cannot append more values than that, if u use that memory
up, system automatically allocates enough memory so that
the internal table can hold more records.
And as far as occurs 0 is concerned when u use
occurs 0, system allocates 8kb memory from the paging area
unnecessarily, if u intend to retrieve less rows then its
better to write some value on occurs clause.
There is only one case where occurs clause limits the
number of rows that can be added to an internal table, i.e,
when we use APPEND SORTED BY.

Is This Answer Correct ?    6 Yes 0 No