Sign in with Microsoft
Sign in or create an account.
Hello,
Select a different account.
You have multiple accounts
Choose the account you want to sign in with.

Rapidly Published articles provide information directly from within the Microsoft support organization. The information that is contained herein is created in response to emerging or unique topics, or is intended to supplement other Knowledge Base information.

Symptoms

When you right-click in the Route card journal dialog box in Microsoft Dynamics AX 2009 and then click Setup to add the Configuration column to the Overview tab, the configuration of a bill of materials (BOM) is not displayed correctly in the Route card journal dialog box.

Cause

This problem occurs because Microsoft Dynamics AX does not support that you add a delayed linked data source to a grid control.

Resolution

Hotfix Information

A supported hotfix is now available from Microsoft. However, it is only intended to correct the problem that is described in this article. Apply it only to systems that are experiencing this specific problem. This hotfix may receive additional testing. Therefore, if you are not severely affected by this problem, we recommend that you wait for the next Microsoft Dynamics AX 2009 service pack or the next version that contains this hotfix.

Note In special cases, charges that are ordinarily incurred for support calls may be canceled if a Technical Support Professional for Microsoft Dynamics and related products determines that a specific update will resolve your problem. The usual support costs will apply to additional support questions and issues that do not qualify for the specific update in question.

This hotfix is scheduled to be included with Service Pack 2 for Microsoft Dynamics AX 2009.

Installation information

Before you install this hotfix, verify that the Microsoft Dynamics AX client users are logged off the system. You should be the only client user who is logged on when you implement this hotfix.


To implement this hotfix, you must have a developer license.


Note We recommend that the user account in the Windows Logins window or in the Database Logins window be a member of the Administrators User group in Microsoft Dynamics AX.

Code changes

Microsoft provides programming examples for illustration only, without warranty either expressed or implied. This includes, but is not limited to, the implied warranties of merchantability or fitness for a particular purpose. This article assumes that you are familiar with the programming language that is being demonstrated and with the tools that are used to create and to debug procedures. Microsoft support engineers can help explain the functionality of a particular procedure. However, they will not modify these examples to provide added functionality or construct procedures to meet your specific requirements. Always test code fixes in a controlled environment before you apply the fixes to your production computers.

To apply this hotfix, follow these steps:

  1. Change the code in the datasourceWritePre method in the ProdJournalFormTransRoute class as follows:
    Existing code

    void datasourceWritePre()
    {
    ;

    if (prodJournalRoute.ProdPickList && prodJournalRoute.OprPriority && !prodJournalRoute.ProdPickListJournalId)
    prodJournalRoute.ProdPickList = NoYes::No;

    if (prodJournalRoute.ProdReportFinished)
    prodJournalRoute.ProdInventDimId = InventDim::findOrCreate(inventDim).InventDimId;
    else

    // Modify the following line.
    prodJournalRoute.ProdInventDimId = '';

    prodJournalRoute.ProdInventDimId = '';

    super();
    }

    Replacement code

    void datasourceWritePre()
    {
    ;

    if (prodJournalRoute.ProdPickList && prodJournalRoute.OprPriority && !prodJournalRoute.ProdPickListJournalId)
    prodJournalRoute.ProdPickList = NoYes::No;

    if (prodJournalRoute.ProdReportFinished)
    prodJournalRoute.ProdInventDimId = InventDim::findOrCreate(inventDim).InventDimId;
    else

    // The following line is modified.
    prodJournalRoute.ProdInventDimId = InventDim::inventDimIdBlank();

    prodJournalRoute.ProdInventDimId = '';

    super();
    }
  2. Change the code in the fieldModifiedProdReportFinishedPost method in the ProdJournalFormTransRoute class as follows:
    Existing code

    void fieldModifiedProdReportFinishedPost()
    {
    InventDim emptyInventDim;
    ;
    if (prodJournalRoute.ProdReportFinished)
    {
    if (! prodJournalRoute.ProdInventDimId)
    inventDim_ds.create();

    inventDim.data(InventDim::find(ProdTable::find(prodJournalRoute.ProdId).InventDimId));
    }
    else
    inventDim.data(emptyInventDim);

    inventDim_ds.setCurrent();
    }

    Replacement code

    void fieldModifiedProdReportFinishedPost()
    {

    // Add the following line.
    InventDim emptyInventDim = InventDim::find(InventDim::inventDimIdBlank());

    InventDim emptyInventDim;
    ;
    if (prodJournalRoute.ProdReportFinished)
    {
    if (! prodJournalRoute.ProdInventDimId)
    inventDim_ds.create();

    inventDim.data(InventDim::find(ProdTable::find(prodJournalRoute.ProdId).InventDimId));
    }
    else
    inventDim.data(emptyInventDim);

    inventDim_ds.setCurrent();
    }
  3. Change the code in the enableFieldsActive method in the ProdJournalTransRoute form as follows:
    Existing code

    void enableFieldsActive()
    {
    prodJournalRoute_ds.object(fieldnum(ProdJournalRoute,EmplId)).mandatory(prodJournalRoute.isProjMethodConsumed());
    prodJournalRoute_ds.object(fieldnum(ProdJournalRoute,CategoryHoursId)).mandatory(prodJournalRoute.isProjMethodConsumed());
    prodJournalRoute_ds.object(fieldnum(ProdJournalRoute,CategoryQtyId)).mandatory(prodJournalRoute.isProjMethodConsumed());

    projectHour.visible(prodJournalRoute.isProjMethodConsumed());
    prodJournalRouteProjHour_ds.object(fieldnum(ProdJournalRouteProj,ProjId)).mandatory(prodJournalRoute.isProjMethodConsumed());
    prodJournalRouteProjHour_ds.object(fieldnum(ProdJournalRouteProj,ProjLinePropertyId)).mandatory(prodJournalRoute.isProjMethodConsumed());
    prodJournalRouteProjHour_ds.object(fieldnum(ProdJournalRouteProj,ProjSalesCurrencyId)).mandatory(prodJournalRoute.isProjMethodConsumed());

    projectQuantity.visible(prodJournalRoute.isProjMethodConsumed());
    prodJournalRouteProjQuantity_ds.object(fieldnum(ProdJournalRouteProj,ProjId)).mandatory(prodJournalRoute.isProjMethodConsumed());
    prodJournalRouteProjQuantity_ds.object(fieldnum(ProdJournalRouteProj,ProjLinePropertyId)).mandatory(prodJournalRoute.isProjMethodConsumed());
    prodJournalRouteProjQuantity_ds.object(fieldnum(ProdJournalRouteProj,ProjSalesCurrencyId)).mandatory(prodJournalRoute.isProjMethodConsumed());
    }

    Replacement code

    void enableFieldsActive()
    {

    // Add the following lines.
    int i;
    container enabledDimFields = InventDim::dimEnabledFieldList();
    container dimFields = InventDim::dimFieldList();
    ;

    prodJournalRoute_ds.object(fieldnum(ProdJournalRoute,EmplId)).mandatory(prodJournalRoute.isProjMethodConsumed());
    prodJournalRoute_ds.object(fieldnum(ProdJournalRoute,CategoryHoursId)).mandatory(prodJournalRoute.isProjMethodConsumed());
    prodJournalRoute_ds.object(fieldnum(ProdJournalRoute,CategoryQtyId)).mandatory(prodJournalRoute.isProjMethodConsumed());

    projectHour.visible(prodJournalRoute.isProjMethodConsumed());
    prodJournalRouteProjHour_ds.object(fieldnum(ProdJournalRouteProj,ProjId)).mandatory(prodJournalRoute.isProjMethodConsumed());
    prodJournalRouteProjHour_ds.object(fieldnum(ProdJournalRouteProj,ProjLinePropertyId)).mandatory(prodJournalRoute.isProjMethodConsumed());
    prodJournalRouteProjHour_ds.object(fieldnum(ProdJournalRouteProj,ProjSalesCurrencyId)).mandatory(prodJournalRoute.isProjMethodConsumed());

    projectQuantity.visible(prodJournalRoute.isProjMethodConsumed());
    prodJournalRouteProjQuantity_ds.object(fieldnum(ProdJournalRouteProj,ProjId)).mandatory(prodJournalRoute.isProjMethodConsumed());
    prodJournalRouteProjQuantity_ds.object(fieldnum(ProdJournalRouteProj,ProjLinePropertyId)).mandatory(prodJournalRoute.isProjMethodConsumed());
    prodJournalRouteProjQuantity_ds.object(fieldnum(ProdJournalRouteProj,ProjSalesCurrencyId)).mandatory(prodJournalRoute.isProjMethodConsumed());


    // Add the following lines.
    for(i = 0; i < conlen(dimFields) ; i++)
    {
    if (inventDim_DS.object(conpeek(dimFields, i)))
    {
    if (prodJournalRoute.ProdInventDimId == InventDim::inventDimIdBlank())
    {
    inventDim_DS.object(conpeek(dimFields,i)).enabled(false);
    }
    else
    {
    inventDim_DS.object(conpeek(dimFields,i)).enabled(confind(enabledDimeFields,i) != 0);
    }
    }
    }

    }
  4. Change the value of properties of the InventDim Data Source object in the ProdJournalTransRoute form as follows:

    • Change the value of the LinkType property to InnerJoin.

    • Change the value of the DelayActive property to No.

  5. Add the following code in the "\Forms\ProdJournalTransRoute\DataSources\InventDim\Methods\ validateWrite" object.

    public boolean validateWrite()
    {
    boolean ret;
    ;
    if (inventDim.inventDimId == InventDim::inventDimIdBlank())
    return true;
    ret = super();

    return ret;
    }
  6. Change the code in the "\Forms\ProdJournalTransRoute\DataSources\InventDim\Methods\ write" object as follows:
    Existing code

    void write()
    {
    ;
    prodJournalRoute_ds.write();
    }

    Replacement code

    void write()
    {
    ;
    prodJournalRoute_ds.write();

    // Add the following line.
    element.enableFieldsActive();

    }
  7. Change the code in the "\Forms\ProdJournalTransRoute\DataSources\ProdJournalRoute\Methods\active" as follows:
    Existing code

    int active()
    {
    int ret;

    ret = super();

    journalFormTrans.datasourceActivePost();
    if (prodJournalRoute.isProjMethodConsumed())
    {
    skipWrite = true;
    prodJournalRouteProjHour_ds.executeQuery();
    prodJournalRouteProjQuantity_ds.executeQuery();
    skipWrite = false;
    }
    element.enableFieldsActive();
    return ret;
    }

    Replacement code

    int active()
    {
    int ret;

    // Add the following lines.
    ;
    journalFormTrans.updateDesign(InventDimFormDesignUpdate::Init);

    ret = super();

    journalFormTrans.datasourceActivePost();
    if (prodJournalRoute.isProjMethodConsumed())
    {
    skipWrite = true;
    prodJournalRouteProjHour_ds.executeQuery();
    prodJournalRouteProjQuantity_ds.executeQuery();
    skipWrite = false;
    }
    element.enableFieldsActive();
    return ret;
    }
  8. Change the code in the enableFieldsActive method in the ProdJournalTransJob form as follows:
    Existing code

    void enableFieldsActive()
    {
    prodJournalRoute_ds.object(fieldnum(ProdJournalRoute,EmplId)).mandatory(prodJournalRoute.isProjMethodConsumed());
    prodJournalRoute_ds.object(fieldnum(ProdJournalRoute,CategoryHoursId)).mandatory(prodJournalRoute.isProjMethodConsumed());
    prodJournalRoute_ds.object(fieldnum(ProdJournalRoute,CategoryQtyId)).mandatory(prodJournalRoute.isProjMethodConsumed());

    projectHour.visible(prodJournalRoute.isProjMethodConsumed());
    prodJournalRouteProjHour_ds.object(fieldnum(ProdJournalRouteProj,ProjId)).mandatory(prodJournalRoute.isProjMethodConsumed());
    prodJournalRouteProjHour_ds.object(fieldnum(ProdJournalRouteProj,ProjLinePropertyId)).mandatory(prodJournalRoute.isProjMethodConsumed());
    prodJournalRouteProjHour_ds.object(fieldnum(ProdJournalRouteProj,ProjSalesCurrencyId)).mandatory(prodJournalRoute.isProjMethodConsumed());

    projectQuantity.visible(prodJournalRoute.isProjMethodConsumed());
    prodJournalRouteProjQuantity_ds.object(fieldnum(ProdJournalRouteProj,ProjId)).mandatory(prodJournalRoute.isProjMethodConsumed());
    prodJournalRouteProjQuantity_ds.object(fieldnum(ProdJournalRouteProj,ProjLinePropertyId)).mandatory(prodJournalRoute.isProjMethodConsumed());
    prodJournalRouteProjQuantity_ds.object(fieldnum(ProdJournalRouteProj,ProjSalesCurrencyId)).mandatory(prodJournalRoute.isProjMethodConsumed());
    }

    Replacement code

    void enableFieldsActive()
    {
    // Add the following lines.
    int i;
    container enabledDimFields = InventDim::dimEnabledFieldList();
    container dimFields = InventDim::dimFieldList();
    ;

    prodJournalRoute_ds.object(fieldnum(ProdJournalRoute,EmplId)).mandatory(prodJournalRoute.isProjMethodConsumed());
    prodJournalRoute_ds.object(fieldnum(ProdJournalRoute,CategoryHoursId)).mandatory(prodJournalRoute.isProjMethodConsumed());
    prodJournalRoute_ds.object(fieldnum(ProdJournalRoute,CategoryQtyId)).mandatory(prodJournalRoute.isProjMethodConsumed());

    projectHour.visible(prodJournalRoute.isProjMethodConsumed());
    prodJournalRouteProjHour_ds.object(fieldnum(ProdJournalRouteProj,ProjId)).mandatory(prodJournalRoute.isProjMethodConsumed());
    prodJournalRouteProjHour_ds.object(fieldnum(ProdJournalRouteProj,ProjLinePropertyId)).mandatory(prodJournalRoute.isProjMethodConsumed());
    prodJournalRouteProjHour_ds.object(fieldnum(ProdJournalRouteProj,ProjSalesCurrencyId)).mandatory(prodJournalRoute.isProjMethodConsumed());

    projectQuantity.visible(prodJournalRoute.isProjMethodConsumed());
    prodJournalRouteProjQuantity_ds.object(fieldnum(ProdJournalRouteProj,ProjId)).mandatory(prodJournalRoute.isProjMethodConsumed());
    prodJournalRouteProjQuantity_ds.object(fieldnum(ProdJournalRouteProj,ProjLinePropertyId)).mandatory(prodJournalRoute.isProjMethodConsumed());
    prodJournalRouteProjQuantity_ds.object(fieldnum(ProdJournalRouteProj,ProjSalesCurrencyId)).mandatory(prodJournalRoute.isProjMethodConsumed());

    // Add the following lines.
    for(i = 0; i < conlen(dimFields) ; i++)
    {
    if (inventDim_DS.object(conpeek(dimFields, i)))
    {
    if (prodJournalRoute.ProdInventDimId == InventDim::inventDimIdBlank())
    {
    inventDim_DS.object(conpeek(dimFields,i)).enabled(false);
    }
    else
    {
    inventDim_DS.object(conpeek(dimFields,i)).enabled(confind(enabledDimeFields,i) != 0);
    }
    }
    }

    }
  9. Change the value of properties of the InventDim Data Source object in the ProdJournalTransJob form as follows:

    • Change the value of the LinkType property to InnerJoin.

    • Change the value of the DelayActive property to No.

  10. Add the following code in the " \Forms\ProdJournalTransJob\DataSources\InventDim\Methods\ validateWrite" object.

    public boolean validateWrite()
    {
    boolean ret;
    ;
    if (inventDim.inventDimId == InventDim::inventDimIdBlank())
    return true;
    ret = super();

    return ret;
    }
  11. Change the code in the "\Forms\ProdJournalTransJob\DataSources\InventDim\Methods\ write" object as follows:
    Existing code

    void write()
    {
    ;
    prodJournalRoute_ds.write();
    }

    Replacement code

    void write()
    {
    ;
    prodJournalRoute_ds.write();

    // Add the following line.
    element.enableFieldsActive();

    }
  12. Change the code in the "\Forms\ProdJournalTransJob\DataSources\ProdJournalRoute\Methods\active" as follows:
    Existing code

    int active()
    {
    int ret;

    ret = super();

    journalFormTrans.datasourceActivePost();
    if (prodJournalRoute.isProjMethodConsumed())
    {
    skipWrite = true;
    prodJournalRouteProjHour_ds.executeQuery();
    prodJournalRouteProjQuantity_ds.executeQuery();
    skipWrite = false;
    }
    element.enableFieldsActive();
    return ret;
    }

    Replacement code

    int active()
    {
    int ret;

    // Add the following lines.
    ;
    journalFormTrans.updateDesign(InventDimFormDesignUpdate::Init);

    ret = super();

    journalFormTrans.datasourceActivePost();
    if (prodJournalRoute.isProjMethodConsumed())
    {
    skipWrite = true;
    prodJournalRouteProjHour_ds.executeQuery();
    prodJournalRouteProjQuantity_ds.executeQuery();
    skipWrite = false;
    }
    element.enableFieldsActive();
    return ret;
    }
  13. Change the code in the insert method in the ProdJournalRoute table as follows:
    Existing code

    void insert()
    {
    ttsbegin;

    if (! this.LineNum)
    this.LineNum = ProdJournalRoute::lastLineNum(this.JournalId) + 1;

    if (this.OprFinished)
    this.JobFinished = NoYes::Yes;

    this.updateRouteConstantRelease();

    super();

    ttscommit;
    }

    Replacement code

    void insert()
    {
    ttsbegin;

    if (! this.LineNum)
    this.LineNum = ProdJournalRoute::lastLineNum(this.JournalId) + 1;

    if (this.OprFinished)
    this.JobFinished = NoYes::Yes;


    // Add the following lines.
    if(!this.ProdInventDimId)
    this.ProdInventDimId = InventDim::inventDimIdBlank();


    this.updateRouteConstantRelease();

    super();

    ttscommit;
    }
  14. Change the code in the initValue method in the ProdJournalRoute table as follows:
    Existing code

    void initValue()
    {
    super();

    this.TransDate= systemdateget();

    }

    Replacement code

    void initValue()
    {
    super();

    this.TransDate= systemdateget();

    // Add the following line.
    this.ProdInventDimId = InventDim::inventDimIdBlank();

    }

Prerequisites

No prerequisites are required to apply this hotfix.

Restart requirement

You do not have to restart the computer after you apply this hotfix.

Status

Microsoft has confirmed that this is a problem in the Microsoft products that are listed in the "Applies to" section.

MICROSOFT AND/OR ITS SUPPLIERS MAKE NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY, THE RELIABILITY OR THE ACCURACY OF THE INFORMATION THAT IS CONTAINED IN THE DOCUMENTS AND THE RELATED GRAPHICS PUBLISHED ON THIS WEB SITE (THE “MATERIALS”) FOR ANY PURPOSE.

THE MATERIALS MAY INCLUDE TECHNICAL INACCURACIES OR TYPOGRAPHICAL ERRORS AND MAY BE REVISED AT ANY TIME WITHOUT NOTICE. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, MICROSOFT AND/OR ITS SUPPLIERS DISCLAIM AND EXCLUDE ALL REPRESENTATIONS, WARRANTIES, AND CONDITIONS WHETHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING BUT NOT LIMITED TO REPRESENTATIONS, WARRANTIES, OR CONDITIONS OF TITLE, NON-INFRINGEMENT, SATISFACTORY CONDITION OR QUALITY, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, WITH RESPECT TO THE MATERIALS.

Need more help?

Want more options?

Explore subscription benefits, browse training courses, learn how to secure your device, and more.

Communities help you ask and answer questions, give feedback, and hear from experts with rich knowledge.

Was this information helpful?

What affected your experience?
By pressing submit, your feedback will be used to improve Microsoft products and services. Your IT admin will be able to collect this data. Privacy Statement.

Thank you for your feedback!

×