top of page

Check Box Value Set Methods in IEE

Writer's picture: Rumesh Aponso (RMAX)Rumesh Aponso (RMAX)

Way 1 - CheckBox field in frm


this.cbCSelectIndicator.EditDataItemValueSet(0, cbCSelectIndicator.i_sUncheckedValue.ToHandle());
this.cbCSelectIndicator.EditDataItemSetEdited();

Source IFS:

this.cmbRiskAnalysisId.EditDataItemValueSet(1, SalString.Null.ToHandle());

If nValue is a SalString it should be converted to a SalNumber using the ToHandle() method as in the above example. If nValue is a SalNumber it is not required to call the ToHandle() method as shown in the below example.


Source IFS:

this.colnDefaultCharTemp.EditDataItemValueSet(0, SalNumber.Null);

Source IFS:

public SalNumber TestMethod()
{
	#region Local Variables
	SalString sName = "";
	#endregion
	
	#region Actions
	using (new SalContext(this))
	{
		sName = SalString.FromHandle(dfTrnCustomerName.EditDataItemValueGet());
	}
	return 0;
	#endregion
}

Way 2 - CheckBox column in tbw/tbl

this.colCSelectIndicator.Text = "FALSE";

0 views0 comments

Related Posts

See All

Fnd Dynamic Tab Page in IEE Client

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

LISTAGG in PLSQL

Example 1: SELECT DISTINCT LISTAGG(t.commission_receiver, ';') WITHIN GROUP (ORDER BY t.commission_receiver) FROM...

Get Foundation Error from ORA Error

FUNCTION Strip_Ora_Error ( sqlerrm_        IN VARCHAR2,    sqlcode_        IN NUMBER DEFAULT NULL,    strip_ora_only_ IN BOOLEAN DEFAULT...

Comments


Copyright © 2025 RMAXOneNote

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