cancel
Showing results for 
Search instead for 
Did you mean: 

Calling Bsp1 to Bsp2

Former Member
0 Kudos
80

I am fairly new to Bsp's.

I am developing BSP Objects in CRM through WEB requests. I have a scenario in which i have to Branch from one BSP1 to Another BSP2 and then After Completion of BSP2 the Control goes back to BSP1.

I am able to Naviagte Between BSP's Statelessly without any hassle but once i make the BSP1 page Stateful from where I am branching i get an error

"Object requested is currently locked by user ANONYMOUS ".

I even Want to Save the Data that has been already been entered by the APPLICANT on the BSP1 when i am comin Back from Second BSP2.

Any relevant Feedback would be helpful.

Accepted Solutions (0)

Answers (2)

Answers (2)

raja_thangamani
Active Contributor
0 Kudos

Why do you want to make the application as stateful..You can store all the data in server side cookies.

Due to stateful mode, you are facing the locking issue..Either unlock the data in stateful mode once your process is done or use server side cookies with stateless mode...

Raja T

Former Member
0 Kudos

Hi Raja,

I have alreday made use of SERVER SDE COOKIES. but then i have to navigate lot of parameters onto the next page like session-id, guid, Application name space, Unique identifier for the Cookie to retrieve the data back from the cookie.

Is there any other workaround.

Thanx

raja_thangamani
Active Contributor
0 Kudos

Instead of storing each & every variable separately, create the structure with all the fields like session id etc then put the structure in server side cookie...

Raja T

guillaume-hrc
Active Contributor
0 Kudos

Hi,

Apparently, you are locking objects in BSP1 and require access to the same object(s) in BSP2. You have either to release it in BSP1 or find a way not to lock the object in BSP2 (is it necessary ?).

You can see objects involved in transaction SM12.

Best regards,

Guillaume