Skip to main content

Notifications

Announcements

No record found.

Microsoft Dynamics AX forum
Unanswered

Submit button called in PSAProjInvoiceProposalSubmitToWF

Posted on by 6
 
class PSAProjInvoiceProposalSubmitToWF
{
    protected void new()
    {
        return;
    }
    public static void main(Args _args)
    {
        RecID                   recID               = _args.record().RecId;
        TableId                 tableId             = _args.record().TableId;
        ProjProposalJour        projProposalJour    = _args.record();
        WorkflowWorkItemTable   workItem            = _args.caller().getActiveWorkflowWorkItem();
        WorkflowSubmitDialog    workflowSubmitDialog;
        WorkflowComment         wfComment;
        workflowTypeName        workflowTemplateName = workFlowTypeStr('PSAProjInvoiceProposal');
        // The method has not been called correctly.
        if (tableId != tablenum(ProjProposalJour) ||
            recId == 0)
        {
            throw error(strfmt("@SYS19306", funcname()));
        }
        if (projProposalJour.RecId != 0)
        {
            // The journal does support workflow approvals.
            workflowSubmitDialog = WorkflowSubmitDialog::construct(_args.caller().getActiveWorkflowConfiguration());
            workflowSubmitDialog.run();
            if (WorkflowSubmitDialog.parmIsClosedOK())
            {
                wfComment=WorkflowSubmitDialog.parmWorkflowComment();
                if (ProjProposalJour::findRecid(recID).LineProperty == ProjLinePropertyCode::Open)
                {
                    // Validates and disallow workflow submission when project is in closed stage for invoice proposal.
                    PSAProjInvoiceProposalSubmitToWF::disallowSubmitIfProjStageIsClosed(projProposalJour.ProposalId);
                    // Create a new workflow from the workflow template used on the workflow configuration associated to the journal's journal name.
                    Workflow::activateFromWorkflowType(workflowTemplateName, _args.record().RecId, wfComment, NoYes::No);
                    // Set the workflow status to Submitted.
                    PSAProjInvoiceProposalStateChangeManager::updateProjInvoiceProposalStatus(_args.record().RecId,ProjLinePropertyCode::PSASubmitted);
                }
            }
        }
        // Make the form refresh its common workflow UI controls.
        PSAProjInvoiceProposalSubmitToWF::refreshCaller(_args);
    }
    public static void refreshCaller(Args _args)
    {
        FormRun         callerForm;
        FormDataSource  projProposalJourDS;
        if (_args.caller())
        {
            if (SysDictClass::isEqualOrSuperclass(classidget(_args.caller()), classnum(FormRun)))
            {
                callerForm = _args.caller();
                projProposalJourDS = FormDataUtil::getFormDataSource(_args.record());
                if (projProposalJourDS)
                {
                    projProposalJourDS.reread(); 
                    projProposalJourDS.refresh();
                    projProposalJourDS.active();
                    callerForm.updateWorkflowControls();
                }
            }
        }
    }
    /// <summary>
    /// Validates project stage to allow creation of invoice proposal before submit to workflow. An error will be thrown if project stage is not allowed for invoice proposal creation.
    /// </summary>
    /// <param name="_proposalId">
    /// Reference to invoice proposal ID.
    /// </param>
    protected static void disallowSubmitIfProjStageIsClosed(ProjProposalId _proposalId)
    {
        ProjProposalTransUnion projProposalTransUnion;
        ProjTable projTable;
        while select ProjId, Status, Type, ProjInvoiceProjId
              from projTable
                 exists join projProposalTransUnion
                     where projProposalTransUnion.ProjId == projTable.ProjId
                         && projProposalTransUnion.ProposalId == _proposalId
        {
            if (projTable && !ProjStatusTypeRule::exist(projTable.Status, projTable.Type, ProjStatusRule::CreateInvoiceProposal))
            {
                throw error(strFmt("@Proj:ProjClosedStageSubmitToWorkflowError", projTable.ProjId, projTable.Stage()));
            }
        }
    }
}
 guide me on which instruction where the submit button action triggered.
Thanks in advance.
 
  • André Arnaud de Calavon Profile Picture
    André Arnaud de Cal... 283,860 Super User on at
    Submit button called in PSAProjInvoiceProposalSubmitToWF
    Hi,

    Can you explain your question, please? What is it exactly where and how you need help with?
  • Martin Dráb Profile Picture
    Martin Dráb 225,155 Super User on at
    Submit button called in PSAProjInvoiceProposalSubmitToWF
    I'm not sure what you're looking for, but probably for this:
    // Create a new workflow from the workflow template used on the workflow configuration associated to the journal's journal name.
    Workflow::activateFromWorkflowType(workflowTemplateName, _args.record().RecId, wfComment, NoYes::No);

Helpful resources

Quick Links

Community Spotlight of the Month

Kudos to Mohamed Amine Mahmoudi!

Blog subscriptions now enabled!

Follow your favorite blogs

TechTalk: How Dataverse and Microsoft Fabric powers ...

Explore the latest advancements in data export and integration within ...

Leaderboard

#1
André Arnaud de Calavon Profile Picture

André Arnaud de Cal... 283,860 Super User

#2
Martin Dráb Profile Picture

Martin Dráb 225,155 Super User

#3
nmaenpaa Profile Picture

nmaenpaa 101,146

Leaderboard

Featured topics

Product updates

Dynamics 365 release plans