Friday, January 24, 2014

To modified a particular field in table for update and refresh by Automatically if thr any change occur in X++

TO modified particular in table through X++ by Automatically if thr any change occur

Form -> Grid->Field -> method overwritee ( modified)

and below code to update

public boolean modified()
{
    boolean ret;

    ret = super();

    QualityInspectionTable_DS.research();
    QualityInspectionTable_DS.refresh();

    QualityInspectionLine_DS.research();
    QualityInspectionLine_DS.refresh();

    return ret;
}

No comments:

Post a Comment

Copy Markup charges while posting purchase invoice using X++

 Copy Markup charges while posting purchase invoice using X++ Class: Important: Code logic is just for Reference.  New class => Duplicate...