zoukankan      html  css  js  c++  java
  • Using X++ Code Create Meeting Request in Outlook

    The following code snippet creates a Meeting Request in OutLook Automatically.

    Place the codes in a Job and Execute it.It will automatically create a meeting Request in MS OutLook.......

    All you have to do is just give the invitees name in the Meeting Request window.

    static void Jimmy_OutlookAppointment(Args _args)
    {
    //OutLook 约会
        COM        sysOutlookCollection;
        COM        collection;
        COMVariant comStartDate = new COMVariant();
        COMVariant comEndDate   = new COMVariant();
        COM        c;
        #SysOutLookCOMDEF
        #define.mapi("MAPI")
        #define.outlook("Outlook.Application")
        COM        sysOutlook;
        COM        sysOutlookNameSpace;
        COM        sysOutlookMAPIFolder;
        ; 
    
        sysOutlook                  = new COM(#outlook);
        sysOutlookNameSpace         = sysOutlook.getNamespace(#mapi);
        sysOutlookNameSpace.logon();
        sysOutlookMAPIFolder        = sysOutlookNameSpace.getDefaultFolder(#OlDefaultFolders_olFolderCalendar);
        collection                  = sysOutlookMAPIFolder.items();
        c = collection.add();
        comStartDate.date(today());
        comStartDate.time(str2Time( "12:00:00"));
        comEndDate.date(today());
        comEndDate.time(str2Time( "12:45:00")); 
    
        c.location('Dongguan city,guangdong Province,China');
        c.subject('Meeting regd Microsoft Dynamics AX 2009');
        c.body('Lets discuss on whats new in Dynamics AX 2009');
        c.start(comStartDate);
        c.end(comEndDate);
        c.save();
        if (c)
        {
            c.display();
            info("The action is created in Microsoft Outlook");
        }
        else
            throw error("@SYS31969");
        sysOutlookNameSpace.logoff();
    } 
    
    
  • 相关阅读:
    python3 TypeError: a bytes-like object is required, not 'str'
    Centos 安装Python Scrapy PhantomJS
    Linux alias
    Vim vimrc配置
    Windows下 Python Selenium PhantomJS 抓取网页并截图
    Linux sort
    Linux RSync 搭建
    SSH隧道 访问内网机
    笔记《鸟哥的Linux私房菜》7 Linux档案与目录管理
    Tornado 错误 "Global name 'memoryview' is not defined"
  • 原文地址:https://www.cnblogs.com/Fandyx/p/1978049.html
Copyright © 2011-2022 走看看