Skip to main content

Multiple Grid Selections 2

1. Yeni bir form yapın. (Ör : ATOL_CustTableSelection)
2. Formunuzun dataSource düğümüne formda göstermek istediğiniz tabloyu sürükleyip bırakın. (Ör CustTable)
3. Formunuzun metodlarını alttaki gibi düzenleyin.

1//classDeclaration metodunu değiştirin
2
3public class FormRun extends ObjectRun
4{
5Map markedLines;
6}


1//init metodunu değiştirin
2
3public void init()
4{
5super();
6
7this.initMarkedLines();
8}

1//yeni bir metod ekleyin
2void initMarkedLines()
3{
4;
5markedLines = new Map(Types::Int64, Types::String);
6}

01//yeni bir metod ekleyin
02void showSelected()
03
04{
05MapEnumerator mapEnumerator;
06RecID recId;
07int lineNum = 1;
08CustTable custTableLocal;
09;
10mapEnumerator = markedLines.getEnumerator();
11
12while (mapEnumerator.moveNext())
13{
14recId = mapEnumerator.currentKey();
15custTableLocal = CustTable::findRecId(recId, true);
16
17if(custTableLocal)
18{
19info(strFmt("%1 : %2 - %3",
20lineNum,
21custTableLocal.AccountNum,
22custTableLocal.Name));
23
24lineNum++;
25}
26}
27
28if(lineNum == 1)
29warning("@SYS34359");
30}

01//yeni bir metod ekleyin
02void markAll()
03{
04Query q = CustTable_ds.queryRun().query();
05QueryRun qr = new QueryRun(q);
06CustTable custTableLocal;
07;
08while(qr.next())
09{
10custTableLocal = qr.get(tableNum(CustTable));
11CustTable_ds.editMark(true, custTableLocal, true);
12}
13
14CustTable_ds.research(true);
15}

1//yeni bir metod ekleyin
2void clearSelections()
3{
4this.initMarkedLines();
5
6CustTable_ds.research(true);
7}

4. Formunuzun CustTable datasource’una alttaki gibi bir edit metodu ekleyin.

01edit boolean editMark( boolean _set,
02CustTable _custTable,
03boolean _mark)
04{;
05if (_set)
06{
07if (!_mark)
08{
09if (markedLines.exists(_custTable.RecId))
10{
11markedLines.remove(_custTable.RecId);
12}
13}
14else
15{
16markedLines.insert(
17_custTable.RecId,
18_custTable.AccountNum);
19}
20}
21return markedLines.exists(_custTable.RecId);
22}

5. Formunuzun Design düğümüne bir Grid ekleyin.
6. Formda göstermek istediğiniz tüm alanları ve edit metodunuzu formdaki giride sürükleyip bırakın.
7. Formunuza görüntüdeki gibi butonlar ekleyin. Ve formunuzun genel görünümünün görüntüdeki gibi olduğundan emin olun.

8. Butonların clicked metodlarından ilgili metodları çağırın. Örneğin ButtonMarkAll.clicked metodu alttaki gibi görünmeli :

1void clicked()
2{
3super();
4element.markAll();
5}

9. Formunuzu açıp test edin.

Dikkat : Bu yazıda daha önce değinmedimiz pek çok yapıyı zorunlu olarak kullandık.
Anlamadığınız konuları özellikle sorarsanız ayırca makale yazarak açıklayabilirim.
Bu kodları tam olarak anlamadan canlı ortamda kullanmayın.
Emre TÜFEKÇİ

Popular posts from this blog

What does this mean: "The form datasource query object does not support changing its AllowCrossCompany property after the form has executed the query."?

I have made a form with datasources vendtable and vendtrans. Inside vendtable_ds.executequery() looks like this: QueryBuildDataSource queryBuildDatasource ,queryBDS_VendTrans_Invoice; ; queryBuildDatasource = this.query().dataSourceTable(tablenum(vendtable)); queryBDS_VendTrans_Invoice = this.query().dataSourceTable(tablenum(vendtrans)); if (curext() == "MASTERCOMP") { this.query().allowCrossCompany(true); } else { this.query().allowCrossCompany(false); } //FilterVendorName = stringedit control on form if (FilterVendorName.text()) { queryBuildDatasource.addRange(fieldNum(VendTable,Name)).value(strfmt("*%1*", FilterVendorName.text())); } else { queryBuildDatasource.clearRange(fieldNum(VendTable,Name)); } //FilterInvoiceNumber = stringedit control on form if (FilterInvoiceNumber.valueStr() == "") { queryBDS_VendTrans_Invoice.enabled(false); } else { queryBDS_VendTrans_Invoice.enabled(true); queryBDS_VendTrans_In...

Credit Note [Dynamics AX] using X++

This post will help to create credit note for a sales order based on the invent lot id. All the invoices raised for a particular sales line – Lot Id will be raised back as a credit note. Information on Credit Note: A credit note or credit memorandum (memo) is a commercial document issued by a seller to a buyer. The seller usually issues a Credit Memo for the same or lower amount than the invoice, and then repays the money to the buyer or sets it off against a balance due from other transactions Below Code will help to create credit note for all the invoices raised against the sales line -lot id. Please note: This code can be customized as per your requirements. This is just a template to help creating credit note using X++ code. Please test the code before use. static void SR_CreateCreditNote_Sales(Args _args) { // Coded by Sreenath Reddy CustInvoiceTrans custInvoiceTrans; Dialog dialog = new Dialog(“Create credit note – for sales.”); DialogField dfInv...