zulfiqar beg


{ City } bangalore
< Country > india
* Profession * sap abap consultant
User No # 92174
Total Questions Posted # 0
Total Answers Posted # 4

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

Users Marked my Answers as Correct # 24
Users Marked my Answers as Wrong # 1
Questions / { zulfiqar beg }
Questions Answers Category Views Company eMail




Answers / { zulfiqar beg }

Question { Satyam, 15569 }

If suppose There are 10 records in flat file then how many
times BDC_open_group, BDC_INSERT, BDC_CLOSE_group executed?


Answer

BDC_OPEN_GROUP and BDC_CLOSE_GROUP only once

whereas BDC_INSERT 10 times

Is This Answer Correct ?    2 Yes 0 No

Question { TCS, 6702 }

what is the table name of stock of material


Answer

MARD

Is This Answer Correct ?    1 Yes 0 No


Question { Siemens, 5939 }

Suppose i have table with 2 columns say 1st with Numerics and
2nd with words like 1 for one and 2 for two......so.if i want
to change the 9 numeric word as some twenty...how?


Answer

Modify itself is a loop.So its better to use field symbols.


Read TABLE I_tab assigning with key
numeric = '9'.
-words = 'Twenty'.

Is This Answer Correct ?    0 Yes 0 No

Question { 10161 }

what is the use of field symbol?


Answer

Field symbols is like pointer in 'C'.
By the use of field symbol u can modify the internal table,
work area, user command etc without using modify keyword.
U can also modify internal table of standard program by
field symbols.
field-symbol type any.

Is This Answer Correct ?    21 Yes 1 No