PM_AttachmentLuNameGet

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.

Ifs.Fnd.ApplicationForms.Const.PM_AttachmentLuNameGet

The Application Forms framework sends PM_AttachmentLuNameGet to a data source to get the LuName for which the attachments should be loaded.

Parameters

Name Description
nWhat = wParam Unused
lParam Unused

Returns

Lu name for which the attachments should be loaded .

Example

switch (message.Code)
{
    case Ifs.Fnd.ApplicationForms.Const.PM_AttachmentLuNameGet:
        message.Handled = true;
        if (Sal.IsNull(colPartNo))
            message.Return = Sal.HStringToNumber( "PurchaseOrderLineNopart" );
        else
            message.Return = Sal.HStringToNumber( "PurchaseOrderLinePart" );
        break;
}