if ( NOT StructKeyExists(request.params, "action") ) request.params.action = "form";
#Server.CommonSpot.UDF.tag.input(type="hidden",name="CSRF_Token",id="CSRF_Token",value=TRIM(application.ADF.csSecurity.getCSRF_Token()))#

Select the Custom Element to Import:

Number of Records to Import:

Continuous Processing:

Minutes to Pause:

Restart Processing:

Restart at Postion:

if ( !StructKeyExists(request.params,"CSRF_Token") OR !application.ADF.csSecurity.validateCSRF_Token(requestToken=Request.Params.CSRF_Token) ) { WriteOutput("Error: User session could not be validated! Process could not be started."); WriteOutput('
Return to the Form'); exit; } // Check the count if ( NOT StructKeyExists(request.params, "count") ) request.params.count = 1; // Check the pause count if ( NOT StructKeyExists(request.params, "pause") ) request.params.pause = 5; // Check if continuous scheduled process if ( NOT StructKeyExists(request.params, "cont") ) request.params.cont = false; // Check if continuous scheduled process if ( NOT StructKeyExists(request.params, "restart") ) request.params.restart = false; // Check if restart position if ( NOT StructKeyExists(request.params, "start") OR ( request.params.start LTE 0 ) ) request.params.start = 0; // Check if restart is checked if ( NOT request.params.restart ) request.params.start = 0; // Start the processing application.ADF.importCE.controller(ceName=request.params.importCE, restart=request.params.restart, passCount=request.params.count, scheduleProcess=request.params.cont, delayMinutes=request.params.pause, startAt=request.params.start);
Process Completed

Return to the Form

An error with your request.

Please try again