Import vendor and address and contact information into Ax 2012

This code introduces how to use a helper class to create vendor master, address book and contact information with the related vendor.

private void CreateVendor ()
{

    ACT_VendorMasterStaging         vendorMaster;
    VendTable                       curVendTable;
    DirPartyTable                   curDirPartyTable;
    LogisticsLocation               curLogisticsLocation;
    LogisticsPostalAddress          curLogisticsPostalAddress;

    Query                           q;
    Queryrun                        qr;
    QueryBuildDataSource            qbds;
    QueryBuildRange                 qbr;

    DirParty                        dirParty;
    DirPartyPostalAddressView       dirPartyPostalAddressView;
    DirPartyContactInfoView         dirPartyContactInfo;
    DirOrganization                 dirOrganization;

    ;

    q = new query();
    qbds  = q.addDataSource(tableNum(ACT_VendorMasterStaging));
    qbr   = qbds.addRange(fieldNum(ACT_VendorMasterStaging, import_status));
    qbr.value(enum2str(ACT_StagingImportStatus::Pending));
    qr = new QueryRun(q);

    while(qr.next())
    {
    try
    {
        ttsBegin;
        vendorMaster = qr.get(tableNum(ACT_VendorMasterStaging));

        dirOrganization.clear();
        dirOrganization.initValue();
        dirOrganization.Name = vendorMaster.VENDOR_NAME;
        dirOrganization.insert();

        if (dirOrganization)
        {
            curVendTable.clear();
            curVendTable.initValue();
            curVendTable.AccountNum = vendorMaster.VENDOR_CODE;
            curVendTable.VendGroup = "External";
            curvendTable.Party = dirOrganization.RecId;
            if (curvendTable.validateWrite())
            {
                curvendTable.insert();
            }

        /* Creates a new instance of the DirParty class from an address book entity
            that is represented by the prospect parameter. */

            dirParty = DirParty::constructFromCommon(curVendTable);
            dirParty.parmName(vendorMaster.VENDOR_NAME);
            dirParty.parmNameAlias(vendorMaster.VENDOR_NAME);
            dirPartyPostalAddressView.clear();
            dirPartyPostalAddressView.LocationName      = vendorMaster.VENDOR_NAME;
            dirPartyPostalAddressView.City              = vendorMaster.ADDRESS4;
            dirPartyPostalAddressView.Street            = vendorMaster.ADDRESS1 + "---" + vendorMaster.ADDRESS2 + "---" + vendorMaster.ADDRESS3;
            dirPartyPostalAddressView.CountryRegionId   = vendorMaster.Import_Remarks;
            dirPartyPostalAddressView.ZipCode           = vendorMaster.POSTAL_CODE;
            dirPartyPostalAddressView.IsPrimary         = NoYes::Yes;

            dirParty.createOrUpdatePostalAddress(dirPartyPostalAddressView);

            // Fill Contacts
            dirPartyContactInfo.clear();
            if(vendorMaster.TEL1)
            {
                dirPartyContactInfo.LocationName    = "TEL1";
                dirPartyContactInfo.Locator         = vendorMaster.TEL1_COUNTRY +"-" + vendorMaster.TEL1_AREA + "-" + vendorMaster.TEL1;
                dirPartyContactInfo.Type            = LogisticsElectronicAddressMethodType::Phone;
                dirPartyContactInfo.IsPrimary       = NoYes::Yes;

                dirParty.createOrUpdateContactInfo(dirPartyContactInfo);
            }

            // Fill Contacts
            if(vendorMaster.TEL2)
            {
                dirPartyContactInfo.LocationName    = "TEL2";
                dirPartyContactInfo.Locator         = vendorMaster.TEL2_COUNTRY +"-" + vendorMaster.TEL2_AREA + "-" + vendorMaster.TEL2;
                dirPartyContactInfo.Type            = LogisticsElectronicAddressMethodType::Phone;
                dirPartyContactInfo.IsPrimary       = NoYes::No;
                dirParty.createOrUpdateContactInfo(dirPartyContactInfo);
            }

            // Fill Contacts
            if(vendorMaster.FAX1)
            {
                dirPartyContactInfo.LocationName    = "FAX1";
                dirPartyContactInfo.Locator         = vendorMaster.FAX1_COUNTRY +"-" + vendorMaster.FAX1_AREA + "-" + vendorMaster.FAX1;
                dirPartyContactInfo.Type            = LogisticsElectronicAddressMethodType::Fax;
                dirPartyContactInfo.IsPrimary       = NoYes::No;
                // Fill Contacts
                dirParty.createOrUpdateContactInfo(dirPartyContactInfo);
            }

            if(vendorMaster.FAX2)
            {
                dirPartyContactInfo.LocationName    = "FAX2";
                dirPartyContactInfo.Locator         = vendorMaster.FAX2_COUNTRY +"-" + vendorMaster.FAX2_AREA + "-" + vendorMaster.FAX2;
                dirPartyContactInfo.Type            = LogisticsElectronicAddressMethodType::Fax;
                dirPartyContactInfo.IsPrimary       = NoYes::No;

                // Fill Contacts
                dirParty.createOrUpdateContactInfo(dirPartyContactInfo);
            }

            if(vendorMaster.Email1)
            {
                dirPartyContactInfo.LocationName    = "Email1";
                dirPartyContactInfo.Locator         = vendorMaster.Email1;
                dirPartyContactInfo.Type            = LogisticsElectronicAddressMethodType::Email;
                dirPartyContactInfo.IsPrimary       = NoYes::No;

                // Fill Contacts
                dirParty.createOrUpdateContactInfo(dirPartyContactInfo);
            }

            if(vendorMaster.Email2)
            {
                dirPartyContactInfo.LocationName    = "Email2";
                dirPartyContactInfo.Locator         = vendorMaster.Email2;
                dirPartyContactInfo.Type            = LogisticsElectronicAddressMethodType::Email;
                dirPartyContactInfo.IsPrimary       = NoYes::No;

                // Fill Contacts
                dirParty.createOrUpdateContactInfo(dirPartyContactInfo);
            }

            if(vendorMaster.CONTACT)
            {
                dirPartyContactInfo.LocationName    = "Contact Person";
                dirPartyContactInfo.Locator         = vendorMaster.CONTACT_TITLE + "http://" + vendorMaster.CONTACT;
                dirPartyContactInfo.Type            = LogisticsElectronicAddressMethodType::Telex;
                dirPartyContactInfo.IsPrimary       = NoYes::No;

                // Fill Contacts
                dirParty.createOrUpdateContactInfo(dirPartyContactInfo);
            }


            vendorMaster.Import_Status = ACT_StagingImportStatus::Pending;
            vendorMaster.selectForUpdate(true);
            vendorMaster.update();
        }
        // Marks the end of transaction.
        ttsCommit;

    }
    catch(Exception::Error)
    {
       ttsBegin;
       vendorMaster.Import_Status = ACT_StagingImportStatus::Error;
       vendorMaster.selectForUpdate(true);
       vendorMaster.update();
       ttsCommit;

       ttsAbort;
    }

    }

    info("Done");
 }
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市肖爵,隨后出現(xiàn)的幾起案子缅糟,更是在濱河造成了極大的恐慌导盅,老刑警劉巖说搅,帶你破解...
    沈念sama閱讀 217,185評(píng)論 6 503
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件扶认,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡款咖,警方通過(guò)查閱死者的電腦和手機(jī)钮科,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 92,652評(píng)論 3 393
  • 文/潘曉璐 我一進(jìn)店門唤衫,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái),“玉大人绵脯,你說(shuō)我怎么就攤上這事佳励。” “怎么了桨嫁?”我有些...
    開(kāi)封第一講書(shū)人閱讀 163,524評(píng)論 0 353
  • 文/不壞的土叔 我叫張陵植兰,是天一觀的道長(zhǎng)份帐。 經(jīng)常有香客問(wèn)我璃吧,道長(zhǎng),這世上最難降的妖魔是什么废境? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 58,339評(píng)論 1 293
  • 正文 為了忘掉前任畜挨,我火速辦了婚禮,結(jié)果婚禮上噩凹,老公的妹妹穿的比我還像新娘巴元。我一直安慰自己,他們只是感情好驮宴,可當(dāng)我...
    茶點(diǎn)故事閱讀 67,387評(píng)論 6 391
  • 文/花漫 我一把揭開(kāi)白布逮刨。 她就那樣靜靜地躺著,像睡著了一般堵泽。 火紅的嫁衣襯著肌膚如雪修己。 梳的紋絲不亂的頭發(fā)上,一...
    開(kāi)封第一講書(shū)人閱讀 51,287評(píng)論 1 301
  • 那天迎罗,我揣著相機(jī)與錄音睬愤,去河邊找鬼。 笑死纹安,一個(gè)胖子當(dāng)著我的面吹牛尤辱,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播厢岂,決...
    沈念sama閱讀 40,130評(píng)論 3 418
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼光督,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來(lái)了塔粒?” 一聲冷哼從身側(cè)響起结借,我...
    開(kāi)封第一講書(shū)人閱讀 38,985評(píng)論 0 275
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎窗怒,沒(méi)想到半個(gè)月后映跟,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體蓄拣,經(jīng)...
    沈念sama閱讀 45,420評(píng)論 1 313
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 37,617評(píng)論 3 334
  • 正文 我和宋清朗相戀三年努隙,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了球恤。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 39,779評(píng)論 1 348
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡荸镊,死狀恐怖咽斧,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情躬存,我是刑警寧澤张惹,帶...
    沈念sama閱讀 35,477評(píng)論 5 345
  • 正文 年R本政府宣布,位于F島的核電站岭洲,受9級(jí)特大地震影響宛逗,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜盾剩,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 41,088評(píng)論 3 328
  • 文/蒙蒙 一雷激、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧告私,春花似錦屎暇、人聲如沸。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 31,716評(píng)論 0 22
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)。三九已至蜀撑,卻和暖如春挤巡,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背屯掖。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 32,857評(píng)論 1 269
  • 我被黑心中介騙來(lái)泰國(guó)打工玄柏, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人贴铜。 一個(gè)月前我還...
    沈念sama閱讀 47,876評(píng)論 2 370
  • 正文 我出身青樓粪摘,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國(guó)和親绍坝。 傳聞我的和親對(duì)象是個(gè)殘疾皇子徘意,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 44,700評(píng)論 2 354

推薦閱讀更多精彩內(nèi)容