top of page

Unpack Values from LOV in IFS

  • Writer: Rumesh Aponso (RMAX)
    Rumesh Aponso (RMAX)
  • Nov 27, 2024
  • 1 min read
// 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
}

Related Posts

See All
BLOB to CLOB in PLSQL

How to get file content in a BLOB file into a CLOB in PL/SQL. The below function can be used if the BLOB file contains text format data...

 
 
 
Fnd Dynamic Tab Page in IEE Client

[FndWindowRegistration("YVVDA_COMPANY_ADDR", "YvvdaCompanyAddr", FndWindowRegistrationFlags.HomePage)] [FndDynamicTabPage("frmCompanyAddr...

 
 
 

Comments


Copyright © 2025 RMAXOneNote

  • Online CV
  • LinkedIn
  • Youtube
  • GitHub
  • Blogger
bottom of page