Posts

Showing posts from September, 2018

Karodeal Means Business

Karodeal Means Business : Free classifieds ads for Individual and Businesses in Pakistan, classified advertisement in Pakistan (Local Sale in Pakistan, Toyota for Sale in Pakistan, Real Estate in Pakistan, Community in Pakistan, online local classified Ads Online shopping from the biggest selection of books, magazines, music, DVDs, videos, electronics, computers, software, apparel & accessories, shoes

Internal Store Requisition Module in Dynamics AX 2009

void clicked() {     InventJournalTable _InventJournalTable;     InventJournalTrans InventJournalTrans;     EmplName _EmplName ;    super();     if(InventJournalTable.EmplId != '')     {     error("Requisition Already Submitted");     }     else     {     if (InventJournalTable.NumOfLines != 0)     {     ttsbegin;     _EmplName = DirPartyTable::find(EmplTable::find(syscompanyuserinfo::current().EmplId).PartyId).Name;     info(_EmplName);     update_recordset _InventJournalTable setting IRStatus = 1,EmplId = syscompanyuserinfo::current().EmplId,CreatedDate = Today(),     CreatedName = _EmplName where _InventJournalTable.JournalId == InventJournalTable.JournalId     && _InventJournalTable.IRStatus == 0 && InventJournalTable.ReqId != '' ;     _InventJournalTable.rer...

Custom Number Sequence

void clicked() {     NumberSeq   numberSeq;     InventTable inventTable;       ; //--Code Add by Arif because Custom Sequence Number is needed for Internal Requisition......     super();     if(InventJournalTable.ReqId != '')     {     error("Requisition Number Already Generated");     }     else         {     //******************* if(InventJournalTable.JournalNameId == 'RQM')     {     ttsbegin;           numberSeq = numberSeq::newGetNumFromCode("REQ_02");           InventJournalTable.ReqId   = numberSeq.num();           InventJournalTable.CreatedDate = TODAY();           element.dataSource().research();    ttscommit;    }       } }