Hi,
When i am trying to enter a value for operating parameter ( other than named set type ) then it is opening user form ( frmPBLNamesetEntry) for named selection instead of frmPBLAlphaNumEntry.
I tried to trace out the reason and i found the issue at the following path -
Somehow "IngError" is always reading zero value & opening user form ( frmPBLNamesetEntry) for named selection.
********************************************************************************************************
Code summary -
strTemp = strTemp & "A_OPSEL" .................. ( strTemp would be DVSYS.MODULENAME/OP001_VALUE.A_OPSEL )
frsreadvalue strTemp, lngError, , False
If lngError = 0 Then Open frmPBLNamesetEntry
else
Open frmPBLAlphaNumEntry
Could anyone guide me on the reason why "IngError" is always reading zero value for the parameters other than named set.
Best Regards,
Viresh
In reply to Matt Stoner:
Hi Matt, Thanks for your response. Value of strTag that is being passed to this subroutine is : "DVSYS.MODULENAME/OP001_VALUE.A_CV[_NOT_CONFIG_OK_]" And OP001 is a floating type parameter. I wondering why it is successfully reading a path "DVSYS.MODULENAME/OP001_VALUE.A_OPSEL" & setting lngError = 0 for floating type parameter. Best Regards, Viresh
In reply to Viresh Bhinge:
Below the configuration on the project I work, there is no "IngError = 0"
In reply to Nabil BOU:
Hi Nabil, Thanks for your response. I do have the same configuration & this is standard PCSD code. But issue i am facing is not the code issue as it is standard PCSD code, it is something different.