2008 Apr 08 7:39 AM
Hi Experts,
I have a recording for FB05 transaction and I using call transaction to run it ..problem is its running fine in Foreground and not in background ...I am getting an error in screen..
NO BATCH INPUT DATA FOR SCREEN SAPMF05A 0710
Actually I know the reason that is that screen has Additional selections in which I have to select the radio-button for Document number as by default always None would be selected. How to achieve this ?? Its urgent please...
Full points will be rewarded for helpfull answer's..
Raghav
2008 Apr 08 7:58 AM
Hi,
Waht ever you want to do do it manually.
EX;
Say you are unalbe to record radion button click.
In your program read recording code carefully and get confirm where to add your code. Now on your tcode(FB05) click on F1 help and get the screen field name .Ex: T041T-AUGLT pass thsi to below perform
This is to put cursor on radio button
PERFORM bdc_field USING 'BDC_CURSOR'
'T041T-AUGLT'.
This to check
PERFORM bdc_field USING 'ITOB-INVNR'
'X'.
In above code you can write conditions ,like based on some conditons particular radio button has to check.
Pls. reward if useful....
Hi Experts,
I have a recording for FB05 transaction and I using call transaction to run it ..problem is its running fine in Foreground and not in background ...I am getting an error in screen..
NO BATCH INPUT DATA FOR SCREEN SAPMF05A 0710
Actually I know the reason that is that screen has Additional selections in which I have to select the radio-button for Document number as by default always None would be selected. How to achieve this ?? Its urgent please...
Full points will be rewarded for helpfull answer's..
Raghav
2008 Apr 08 7:43 AM
please record those things and add the neccessary recording at respective place.
2008 Apr 08 7:47 AM
I already have the recording for that but its not working for that partiucular bit where it has to select the Radio-button for Document numbers...
2008 Apr 08 7:58 AM
Hi,
Waht ever you want to do do it manually.
EX;
Say you are unalbe to record radion button click.
In your program read recording code carefully and get confirm where to add your code. Now on your tcode(FB05) click on F1 help and get the screen field name .Ex: T041T-AUGLT pass thsi to below perform
This is to put cursor on radio button
PERFORM bdc_field USING 'BDC_CURSOR'
'T041T-AUGLT'.
This to check
PERFORM bdc_field USING 'ITOB-INVNR'
'X'.
In above code you can write conditions ,like based on some conditons particular radio button has to check.
Pls. reward if useful....
2008 Apr 08 8:30 AM