Показать сообщение отдельно
Старый 16.03.2010, 15:05   #1  
Blog bot is offline
Blog bot
Участник
 
25,643 / 848 (80) +++++++
Регистрация: 28.10.2006
axaptapedia: Job Template (for running database maintenance script etc)
Источник: http://www.axaptapedia.com/Job_Templ..._script_etc%29
==============

Summary: Use it if you want...

Handy script with some failsafe stuff built into it.

'''I woulnd'nt give users access to it, you still need to know what you are doing.'''


X++:
static void _TestJobTemplate(Args _args)
{
    Dialog      dialog          = new Dialog("Heading of the dialog.");
    Dialog      dlgAreYouSure   = new Dialog("Are you sure?");
    DialogField                 dfAreYouSure;
    DialogField                 dfDryRun;
    str                         sDryRun     = "Dry Run(not modf. data)?";
    str                         sAreYouSure = "Are you sure?";
    str                         sUserAbort  = "User aborted operation.";

    // Setting vars
    boolean                     UseTTS = NoYes::No; // Use tts on (live operation)

    ;
    dfDryRun = dialog.addField(typeId(NoYes),sDryRun);

    if (dialog.run())
    {
        // Fetch values from optional dialog fields
        /*
        // Check that those values has been submitted
        if(!VAR)
        throw error("You need to supply XY");
        */
        if(dfDryRun.value())
        {
            // Dry Run logic goes here.


        } else {

            dfAreYouSure = dlgAreYouSure.addField(typeId(NoYes),sAreYouSure);

        if(dlgAreYouSure.run())
        {
            if(dfAreYouSure.value())
            {
                if(UseTTS)
                    ttsbegin;
                // Live run logic goes here

                if(UseTTS)
                    ttscommit;
                }  else
                    throw error(sUserAbort);
            } else
                throw error(sUserAbort);
        }
    }
}



Источник: http://www.axaptapedia.com/Job_Templ..._script_etc%29
__________________
Расскажите о новых и интересных блогах по Microsoft Dynamics, напишите личное сообщение администратору.