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

FB05 CALL TRANSACTION BACKGROUND MODE ERROR

former_member182354
Contributor
0 Likes
1,623

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,156

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

4 REPLIES 4
Read only

Former Member
0 Likes
1,156

please record those things and add the neccessary recording at respective place.

Read only

0 Likes
1,156

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...

Read only

Former Member
0 Likes
1,157

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....

Read only

0 Likes
1,156

Any suggestions please...