‎2008 Jan 15 8:52 AM
hai anybody tell me how can we handle error records in session method ..we have a logfile ok...how can we update those error records in online..
Edited by: sudheer b on Jan 15, 2008 9:54 AM
‎2008 Jan 23 10:15 AM
Hi,
s1 : Upload the flat file to itab
s2: create session -
> 'bdc_open_group
s3:loop at itab.
-
perform statments----
call transaction statement
endloop.
for messages
s4: if msgid = 'm3' and msgnr = 800.
call FM--->Format_messsage(sucessful records)
else.
call FM--->Format_messsage(failurel records)
insert those failure records into the session , which we created earlier in step 2.
s5 : Open the session in SM35 FOR THE CORRECTION FROM THE USER.
Reward if useful,
umakanth
‎2008 Jan 23 10:28 AM