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

BDC

Former Member
0 Likes
747

Hi all,

its very urgent

I have one doubt that is i am creating one functional module with BDC, i am working on one transaction, in that transaction there were 10 check boxes but while i am doing the recording i have selected only two checkboxes, i coped that recorded coding in to function module but i want to consider all 10 check boxes for this what should i do? can i write another 7 perform statements in my function module or should i record onceagain with 10 check boxes please give the suggetion for this?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
727

Hi Srinivasa,

Please do a proper recording of the transaction which ur using. Check all the 10 checkboxes so that you would be able to capture the scenario properly.

Regards,

Chetan.

PS: Reward points if this helps.

9 REPLIES 9
Read only

Former Member
0 Likes
727

Create a new recording by checking all the 10 check boxes, as the screen sequence may vary based on the checkbox checked.

Read only

Former Member
0 Likes
728

Hi Srinivasa,

Please do a proper recording of the transaction which ur using. Check all the 10 checkboxes so that you would be able to capture the scenario properly.

Regards,

Chetan.

PS: Reward points if this helps.

Read only

Former Member
0 Likes
727

hi,

Create a new recording with all check boxes checked.

Regards,

Richa

Read only

0 Likes
727

hi Richa,

if i select all check boxes transaction is not working. instead of doing recording once again can i include another 8 perform statements after those two check boxes perform statements.

Read only

Former Member
0 Likes
727

Hi,

create another recording by checking all the 10 chk boxes ,copy the code what ever u get for the chk boxes and place it in the place of 2 perform statements for chk boxes.

regards,

keerthi

Read only

0 Likes
727

hi Keerthi,

if i select all check boxes transaction is not working. instead of doing recording once again can i include another 8 perform statements after those two check boxes perform statements.

Read only

Former Member
0 Likes
727

If the transaction is not working when u chek all boxes while recording, then it might be the same even if u include other 8 performs also..right?

so pl investigate ur transaction properly.

what is the msg u get when u chek all boxes?

what tcode are u trying to do?

what data are you passing into that transaction?

pl share ur info properly so that we can look into it..

regds

kiran

Read only

Former Member
0 Likes
727

Hi srinivas this is srikanth from hydrabad. where r u now. what r u doing. i am calling to u r number srinu. but u r number is not working. where r u now. i asked to jana also. he is telling that u r in mumbai only. when u r going to chennai? dois u r object status srinivas. do u got u r salary or not?

Please do a proper recording of the transaction which ur using. Check all the 10 checkboxes so that you would be able to capture the scenario properly.

just now i saw u r questin srinivas. i got 56 points also srinivas.

with regards.

m.srikanth.

plz review the points if it is usefull

m.srikanth.

Read only

Former Member
0 Likes
727

Hi Srinivas,

You can't consider that how many lines will be there for that transaction at each time the user uses it. Say suppose one user wants 6 checknboxes to be checked while he processes that transaction and while another may have just only 1 check box to be checked. So in order to this check the field value which is going to be from legacy whether it is checked or initial, if it is checked then process in the loop, for example.

DO.

IF LEGACY-CHECK = 'X'.

PERFORM CHECK_BDC.

ELSE.

EXIT.

ENDIF.

ENDDO.

Assume that the LEGACY-CHECK will have the value entered by user through legacy data file and perform CHECK_BDC will be the bdc recording which u've done. I think this will solve ur issue.