Once the recording is done in BDC and LSMW...if we are asked
to add an additional field later...then how do we add the
field to the existing one...?
Answer Posted / naveen
First get the screen field name of the additional field. You can get it by doing F1 on the field.
Then check this field is coming after which field for which the recording is done and in the BDC prgoram,
add line PERFORM bdc_field USING 'New field' it-newfield after the previous field.
Suppose the additional field which is required is in a new screen i.e. for none of the fields of this screen
recording is done,then you you need to add
PERFORM bdc_dynpro USING 'PROGRAM NAME' 'SCRENN NO'.
PERFORM bdc_field USING 'BDC_CURSOR' 'New field'
PERFORM bdc_field USING 'BDC_OKCODE' '/00'.
PERFORM bdc_field USING 'New field'.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the difference between leave transaction and call transaction?
Do we have to migrate all sapscript forms to smart forms?
How we format the data before before write statement in report ?
What are the different types of mode (run code) in call transaction method?
What functions does a data dictionary perform? : abap data dictionary
I need some information regarding Vcentric Test pattern ? with questions.
Explain about the tables exists in a data dictionary and what are they? : abap data dictionary
What does the ‘suppress dialog’ do?
Why do we declare a method of a class final? What can be the purpose? Give a scenario.
What are two methods of modifying sap standard tables?
In BDC, data transfer is done success in foreground mode but if we done the same in background mode it shows errors. What is the reason?
What are conversion & interface programs in sap?
What is a type group?
How do you set up background jobs in sap? What are the steps? What are the event driven batch jobs?
what is mean be On Change of in Control Break statement