// Unpacks additional values from LOV
public virtual SalBoolean UnpackAttribute(SalString sLovValues, SalString sAttributeName, ref SalString sAttributeValue)
{
#region Local Variables
SalString sTmpValue = "";
#endregion
#region Actions
using (new SalContext(this))
{
// Unpack attribute
sTmpValue = Ifs.Fnd.ApplicationForms.Int.PalAttrGet(sAttributeName, sLovValues);
if (sTmpValue.Mid(sTmpValue.Length - 1, 1) == ((SalNumber)Ifs.Fnd.ApplicationForms.Const.CHAR_US).ToCharacter())
{
sTmpValue = sTmpValue.Left(sTmpValue.Length - 1);
}
sAttributeValue = sTmpValue;
return true;
}
#endregion
}
top of page
Related Posts
See All[FndWindowRegistration("YVVDA_COMPANY_ADDR", "YvvdaCompanyAddr", FndWindowRegistrationFlags.HomePage)] [FndDynamicTabPage("frmCompanyAddr...
40
Example 1: SELECT DISTINCT LISTAGG(t.commission_receiver, ';') WITHIN GROUP (ORDER BY t.commission_receiver) FROM...
20
FUNCTION Strip_Ora_Error ( sqlerrm_ IN VARCHAR2, sqlcode_ IN NUMBER DEFAULT NULL, strip_ora_only_ IN BOOLEAN DEFAULT...
10
bottom of page
Comments