Skip to main content

How to send Emails to users in batch processing by using X++ code in Ax2009



Create the class with below methods
public class OnhandQty extends RunBaseBatch
{
     SysMailer   mailer;
     boolean check;
     SysEmailParameters parameters;
    #define.CurrentVersion(1)
    #localmacro.CurrentList
    //onhandQty
   // methodVariable2
    #endmacro
}

public static void main(Args args)
{
    OnhandQty onhandQty;
    ;
    onhandQty = new OnhandQty();
    onhandQty.run();
}

void run()
{
    this.WriteCSV();
    if(check == true)
    {
        this.EmailCheck();
    }
}
// This method is used to bring the data and Save it into CSV file

void WriteCSV()
{
    Commaio file;
    container line,line1;
    FileIOPermission   permission;
    InventTable inventTable;
    MinimumQty  minimumQty;
   // #define.filename("C:\\Report\\On-Hand.csv")
    #File

    ;
    check = false;
    permission = new FileIOPermission(#filename,#io_write);
    permission.assert();
    file = new Commaio(#filename , #io_write);
    file = new Commaio(#filename , 'W');
if( !file || file.status() != IO_Status::Ok)
{
throw error("File Cannot be opened");
}
line1 = ["Item Id","Description","On Hand","Min-ReOrder Qty"];
file.writeExp(line1);
while select minimumQty
{
if(minimumQty.MinQty  > minimumQty.Onhand && minimumQty.MinQty !=0)
{

line = [minimumQty.ItemID,InventTable::find(minimumQty.ItemID).ItemName
,minimumQty.Onhand,minimumQty.MinQty];
file.writeExp(line);
check = true;
}

}

}
// By using this method we can send this CSV file to users in the List..

void EmailCheck()
{
//Set                     permissionSet2 = new Set(Types::Class);
InteropPermission permission = new InteropPermission(InteropKind::ComInterop);

;

CodeAccessPermission::revertAssert();
// permissionSet2.add(new InteropPermission(InteropKind::ClrInterop));
// permission = new InteropPermission(InteropKind::ComInterop);
// permissionSet2.add(new FileIOPermission(_attachmentFilename, 'r'));

permission.assert();
mailer = new SysMailer();
parameters = SysEmailParameters::find();

if (parameters.SMTPRelayServerName)
{
mailer.SMTPRelayServer(parameters.SMTPRelayServerName,
parameters.SMTPPortNumber,
parameters.SMTPUserName,
SysEmailParameters::password(),
parameters.NTLM);
}
else
{
mailer.SMTPRelayServer(parameters.SMTPServerIPAddress,
parameters.SMTPPortNumber,
parameters.SMTPUserName,
SysEmailParameters::password(),
parameters.NTLM);
}

mailer.fromAddress('ABC@XYZ.com,');
mailer.tos().appendAddress('xyx@abc.com’);
mailer.tos().appendAddress('abc@abc.com);

mailer.htmlBody('Find the attachment and update the on hand quantiy. <Br>\n NOTE:This is a System                            Generated Email. Please do not Reply.');
mailer.subject('Inventory On Hand Status');
//mailer.attachments().add("C:\\Report\\On-Hand.csv");
CodeAccessPermission::revertAssert();
}

// Save the values

public container pack()
{
    return [#CurrentVersion];
}

// Retrieve those values

public boolean unpack(container packedClass)
{
Version version = RunBase::getVersion(packedClass);
switch (version)
{
case #CurrentVersion:
[version] = packedClass;
break;
default:
return false;
}
return true;
}

You Know friends here one more issue is there, in this process we need to assign the email ids for the users manually, but that is not the correct process for technical peoples.

Avoid those process, create one form like parameter form there users can add /remove the email id. System will automatically take the ids from that form and emails every day.


After completing above process we need to configure the batch in Batch server.

Go to ->Administration Module->set Up->Batch Group
Here we need to select the batch  server

Over view tab


Batch Server Tab




















Administration -> set Up -> Server configuration->
Here we need to select the server for sending mails to users..





















Next Basic Module-> Common Forms-> Batch Job List
























Create the new job with description and go to View Task->















Select the class what we wrote for sending Emails to users , choose the class and save it .
Go to Functions ->change status->  change the status to waiting






















Final Step is Go to Recurrences -> Here we can give the timings based on the time give below.

Thanks
DAX..


Comments

Post a Comment

Popular posts from this blog

Using File path on a form getting Error in Axapta

Hi Folks, After a long time am coming  back to posting few new things here for AX Developer... When we want to select the file path in form level. Normally what we will do create one EDT and extends with filepath (EDT), but that time when you are trying to select the path we will get error like stack-trace/Error message .Don’t worry there is no problem with your ax application. Simple we need to provide the method to the form like filepathLookUpTitle (). Below method we need to add it into form level methods, i.e. str filePathLookupTitle() {     return "Select document folder"; } Thanks Happy Daxing....

Convert word Documents into PDF report [using X++ in Dynamics AX 2009]

Hi Friends, This is the way we can convert word format report into PDF in ax2009 static void dsiple_PDS(Args _args) {     Args args;     ReportRun rr;     str reportName = "ReportName";     PurchRFQLine rfqLineTable;     str myPath;     str pdfFileName;     int i;     COM wordApplication;     COM wordDocuments;     COM wordDocument;     COM wordRange;     str a[];     str path;     str pdfPath;     str finalPath;     int length;     int minus;     ;     i = 1;     myPath = winApi::getTempPath();     info(myPath);     args = new Args(reportName);     args.caller(rr);     //rr =...

AIF (Endpoint) Error : The user is not authorized to perform this action.

"The user is not authorized to perform this action."  We started getting this error message in our AX 2009 System, when ever we try to consume an XML file using an  Endpoint   thru a  File System  Channel to create a  Sales Order. We did not made any code changes / setup changes, but all of the sudden started getting this error. Solutions : 1. Validate the "SourceEndpointUser". in inbound XML  The User ID should be a valid user Id in DAX, in GNS Active Directory and the "\" should be back slash in the XML file or where you use this combination in entire process or setup. ex : Domain \ User Id. In our case when we had the above error, the SourceEndPointUser user id was deleted from the Active Directory in GNS, so we added it back to Active Directory then it solved the problem. NOTE : If nothing wrong with the User ID, try to add the user id in "Users" tab in Endpoints form for that End Point used by the process. 2. Verify th...