Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

error in session

Former Member
0 Likes
450

after running a bdc program in backgruond nexty day morning whe n u see the reults few records r not updated (error records) what will u do then ?how will u handle the error records

2

what is the differencew b/w report andscripts

an sscripts and smart forms

3 REPLIES 3
Read only

Former Member
0 Likes
430

hi,

see the error log of that session and alalyse the errors.

report is nothing but the output of a simple program.in scripts we can design the layout.

smart forms are available in new versions of sap.by using these length of code will be reduced.by executing the smart forms they will generate a function module name.calling that function module is enough.in scripts we have to open the form,start the form,write form,end the form,close the form steps are neccessary.

rgds,

bharat..

Read only

Former Member
0 Likes
430

1) u can shedule that bdc program for the error records by correcting the error in the flat file.

2) report is just siple executable program in sap and sapscript is used to design layout like for billing doc each company wil have its layout with its comp logo n other stuff using sapscript u can design it

smartforms are adcance of sapscript and is also used for designing layout its much easier to work on an smartform coding is less n with less time we can design an layout u can also migrate the layout designed in sapscript into smartform

major diff b/w smartforms n sapscript it that

sapscript is cleint dependent n smartform is client independent

sapscript we dont have color fonts n in smartforms we have color fonts

if this inform is usefull pls reward

ravi

Read only

kiran_k8
Active Contributor
0 Likes
430

Kumar,

1.after running a bdc program in backgruond nexty day morning whe n u see the reults few records r not updated (error records) what will u do then ?how will u handle the error records

If we are running a Session Method then we need to chek the error log in SM35 and accordingly go to that session to rectify the errors.

If it is a call transaction method all the errors will be captured in an internal table of structure BDCMSGCOLL which you would have declared in the program and displaying it using a FM format_message.

K.Kiran