top of page

"All truths are easy to understand once they are discovered; the point is to discover them."
Galileo Galilei
RMAXOneNote covers a wide range of programming languages and technologies (Oracle PL/SQL, C#, Java, etc.), code examples, and solutions related to IFS ERP. The purpose of this blog is to share knowledge among developers about the problems they encounter daily.
How to use DataSourcePopulate in a Child Form in IFS IEE
In child form Override vrtDataSourcePopulateIt #region Methods public new SalBoolean DataSourcePopulateIt(SalNumber nParam) { #region...

Rumesh Aponso (RMAX)
Dec 10, 20241 min read
Â
Â
Â
Access Private Controls/Variables from Child From to Parent From
We could encapsulate the control variables / define and use the Get Set methods. #region Methods public SalNumber GetExecutionTmplSq() {...

Rumesh Aponso (RMAX)
Dec 10, 20241 min read
Â
Â
Â
DBPLSQL Bind Variable in IFS10
Example 1: private void TestFunction() { #region Local Variables SalString sFullName = ":i_hWndFrame." + Ifs.Fnd.ApplicationForms.Int.Q...

Rumesh Aponso (RMAX)
Nov 27, 20241 min read
Â
Â
Â
Unpack Values from LOV in IFS
// Unpacks additional values from LOV public virtual SalBoolean UnpackAttribute(SalString sLovValues, SalString sAttributeName, ref...

Rumesh Aponso (RMAX)
Nov 27, 20241 min read
Â
Â
Â
PM Data Item LOV Done in IFS10 [PM_DataItemLovDone]
#region Methods public SalString GetFieldValueFromLovStr(SalString lsLOV, SalString sSearchField) { #region Local Variables...

Rumesh Aponso (RMAX)
Nov 27, 20241 min read
Â
Â
Â
PM Data Item Lov User Where in IFS10 [PM_DataItemLovUserWhere]
Example 1: private void tableWindow_colsBucketId_WindowActions(object sender, WindowActionsEventArgs e) { #region Actions switch...

Rumesh Aponso (RMAX)
Nov 27, 20241 min read
Â
Â
Â
PM Data Item Zoom in IFS10 [PM_DataItemZoom]
Example 1: private void dfsCWarehouse_WindowActions(object sender, WindowActionsEventArgs e) { #region Actions switch (e.ActionType) {...

Rumesh Aponso (RMAX)
Nov 26, 20241 min read
Â
Â
Â
Select multiple values in LOV in IFS [PM_LovQueryMultipleSelection]
Select multiple values in LOV via PM_LovQueryMultipleSelection private void tableWindow_colsPayTermId_WindowActions(object sender,...

Rumesh Aponso (RMAX)
Nov 26, 20241 min read
Â
Â
Â
Ways to Open another Form in IEE Client in IFS [SessionNavigate,
Via SessionNavigate Setup data transfer object [Optional Step] Call ‘SessionNavigate’ method and pass form/window name...

Rumesh Aponso (RMAX)
Nov 22, 20241 min read
Â
Â
Â
PalAttrAdd, Add value to Attr in Client in IFS (DataRecordFetchEditedUserEvent)
private void tblTestPackage_DataRecordFetchEditedUserEvent(object sender, cDataSource.DataRecordFetchEditedUserEventArgs e) { #region...

Rumesh Aponso (RMAX)
Nov 22, 20241 min read
Â
Â
Â
Check Box Value Set Methods in IEE
Way 1 - CheckBox field in frm cCheckBox this.cbCSelectIndicator.EditDataItemValueSet(0, cbCSelectIndicator.i_sUncheckedValue.ToHandle());...

Rumesh Aponso (RMAX)
Nov 22, 20241 min read
Â
Â
Â
How to check multiple rows are selected in IFS C#
Example 1: public virtual SalNumber NumberOfRows() { #region Local Variables SalNumber nRows = 0; SalNumber nCurrentRow = 0; #endregion ...

Rumesh Aponso (RMAX)
Nov 13, 20241 min read
Â
Â
Â
Adding new item to default attr in client in IFS Applications
Override vrtDataRecordFetchEditedUser public override SalNumber vrtDataRecordFetchEditedUser(ref SalString lsAttr) { return...

Rumesh Aponso (RMAX)
Nov 5, 20241 min read
Â
Â
Â
bottom of page
