InitFromTransferredData

Note: This page includes content based on the F1 documentation for Centura development. It may be partially converted to support APF development, but should be regarded to be of uncertain actuality. It is provided as is. Eventually, it should be replaced by documentation available from within Visual Studio.

SalBoolean InitFromTransferredData(  )

Applications call the InitFromTransferredData method to initialize (populate) the data source based on information in data transfer.

Returns

Returns True if data transfer is successful, False otherwise

Comments

Note: That this method is replacing the obsolete method InitFromTransferedData. All types of datasources will automatically be populated.

Example

public new SalBoolean FrameStartupUser()
{
#region Local Variables
#endregion
			
#region Actions
  using (new SalContext(this))
  {
	if (Ifs.Fnd.ApplicationForms.Var.DataTransfer.RecCountGet() > 0) 
	{
		Sal.WaitCursor(true);
		InitFromTransferedData(); 
........