top of page

Paste in IEE Client in IFS [PM_DataRecordPaste]

  • Writer: Rumesh Aponso (RMAX)
    Rumesh Aponso (RMAX)
  • Nov 25, 2024
  • 1 min read

PM_DataRecordPaste


private void tbwOrderLine_Cust_WindowActions(object sender, WindowActionsEventArgs e)
{
	switch (e.ActionType)
	{
		case Ifs.Fnd.ApplicationForms.Const.PM_DataRecordPaste:
			tbwOrderLine_Cust_On_PM_DataRecordPaste(sender, e);
			break;
	}
}

private void tbwOrderLine_Cust_On_PM_DataRecordPaste(object sender, WindowActionsEventArgs e)
{
	e.Handled = true;
	e.Return = Sal.SendClassMessage(Ifs.Fnd.ApplicationForms.Const.PM_DataRecordPaste, Sys.wParam, Sys.lParam);

	if (Sys.wParam == Ifs.Fnd.ApplicationForms.Const.METHOD_Execute)
	{
		// TODO Logic
	}
}

Related Links:

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