PositionOnRow is not working in Siebel 8.1.1.14
Hi,
We are using Siebel 8.1.1.14(IP 2014 Patch Set3).
In our code we have to drill down from one record to other through button.On button click we have landing page.
Landing Page has script On Applet Load event as below.Below code is working fine in HI .But not in Open UI.
function Applet_Load ()
{
try
{
var sRowId = TheApplication().GetProfileAttr("AssetRowId");
var sGotoObjectAssetId = TheApplication().GetProfileAttr("GotoObjectAssetId");
if (sGotoObjectAssetId != ""){
sRowId = sGotoObjectAssetId;
}
if (sRowId != "")
{
TheApplication().SetProfileAttr("AssetRowId", "");
TheApplication().SetProfileAttr("GotoObjectAssetId", "");
TheApplication().SetProfileAttr("CallInboundLastIVRMenu","");
var InProp = TheApplication().NewPropertySet();
InProp.SetProperty("SWERowId", sRowId);
InProp.SetProperty("SWEReqRowId", true);
alert("Inside Row ID is not null");