Page 1 of 1
pass value via intent
Posted: March 11th, 2024, 12:29 pm
by amari
I am passing Start Mode param via intent and I need to start app in Modify mode
when I pass caseId along StartMode as "intent.putExtra("StartMode","Modify;"+caseId);"
but this is not recognizing when I try to specify caseId using "Key" cspro app is loading but "case Could not found" error appears
can someone guide me with correct code segment to achieve my goal.
Re: pass value via intent
Posted: March 13th, 2024, 11:22 am
by amari
Hi..
If someone kindly could guide me to resolve this issue, Its a great help as I stuck at this point
I am opening a specific case in modify mode via android app (using intent)
Re: pass value via intent
Posted: April 16th, 2024, 11:28 am
by Gregory Martin
Are you still stuck on this? If so, are you saying that this doesn't work?
Code: Select all
intent.putExtra("Key", "your case key");
We added the ability to run CSEntry from other applications years ago and don't use it ourselves, so it doesn't get much testing. If this is still a problem, I can try to see what might be causing it.
Re: pass value via intent
Posted: July 28th, 2025, 5:10 am
by jjminnaar
Good day
Also stuck on a similar situation when attempting to modify existing case.
Tried both StartMode=Modfy;+caseid and intent.putExtra("Key", "your case key");
It seems the key is only passed as input(entry).
"Case could not be found"
Please advise
Re: pass value via intent
Posted: August 25th, 2025, 6:32 pm
by savy
The behavior was modified a while back to use the case position. You need to add these two to modify the case that is in position #1
Code: Select all
intent.putExtra("StartMode", "Modify")
intent.putExtra("StartCasePosition", 1)