2009 Feb 24 9:13 AM
Hi All,
I am creating assets (by refernece option) thru BDC(as01) in this tcode there is an user exit code which auto populates a
custom field .
If I run manually as01 custom field gets populated correctly , if i run in bdc with 'N' mode custom field doesn't get populated.
Any one had similar situation?
Any help is appreciated.
Rhea.
2009 Feb 25 10:42 AM
Try to debugg the back ground job.
Process to debug:
Put the below code in program. before your actual code
data H_x.
DO.
If H_x = 'X'.
Exit.
Endif.
ENDDO.
schedule the program in back ground and to SM50 and click on the your process and goto to program menu and then to debugging and make the value of the field H_X to X and then debug and see.
Thanks...
2009 Feb 24 9:15 AM
2009 Feb 24 9:17 AM
In 'A' mode it works fine.
In 'E' there are no error messages.
It will be a Background job so it should work in 'N' mode.
Rhea.
2009 Feb 24 10:37 AM
check your user exit , is there any condition like not work for back ground...
2009 Feb 24 10:54 AM
2009 Feb 24 12:01 PM
2009 Feb 24 12:58 PM
2009 Feb 25 10:42 AM
Try to debugg the back ground job.
Process to debug:
Put the below code in program. before your actual code
data H_x.
DO.
If H_x = 'X'.
Exit.
Endif.
ENDDO.
schedule the program in back ground and to SM50 and click on the your process and goto to program menu and then to debugging and make the value of the field H_X to X and then debug and see.
Thanks...