How to Call stored procedure in SAIL form

Hi,
Iam calling the procedure as below in sail form but not able to fetch the result and my procedure is returning cursor.
=with(
local!spResult: fn!executestoredprocedure(
"java:/jdbc/TIS_DB",
"SP_GET_DETAILS",
{
{name: "id", value: "%1%"}
}
),
if(local!spResult.success,
local!spResult.result,
local!spResult.error
)
)
Is it right way to call procedure in sail form

OriginalPostID-253437

  Discussion posts and replies are publicly visible

Parents Reply Children
No Data