Kranthi

26 years old
Hyderabad - India
Tech Lead - Ax
Male
  • 2,006 Posts
  • 44,020 Points
  • Joined: 2007-11-12
  • Last Online: 2012-5-2 9:12

Shared Feeds

Kranthi has not entered any shared feeds.

My Bio

Kranthi has not entered a biography.

Announcements

My Comments

Mohamed wrote ssrs text alignment
on 2012-2-22 10:18

hi,

Is it possible to align a text in text box. I have to design a report in letter format (some 10 lines or say paragraph). Is it possibe align .

Example :

Certify that (value will come from field in dataset) is eligilble for promotion and so on.

Thanks.

udhay wrote A small help in AIF AX 2012
on 2011-11-22 12:18

Hi Kranthi,

Appreciate your sharing attitude towards the AX developers team.

I would like to get a help in AX 2012. I need to insert BOM data in to the tables BOMTable,BOMVersion and BOM thru AIF. Just i shared a bunch of code which i developed. Seeking your help to complete the code.

 BillsofMaterialsServiceClient proxy = new BillsofMaterialsServiceClient();
            AxdEntity_BOMTable BOMTable = new AxdEntity_BOMTable();
            AxdEntity_BOMVersion BOMVersion = new AxdEntity_BOMVersion();
            AxdEntity_BOM BOM = new AxdEntity_BOM();
            AxdEntity_InventDim inventDim = new AxdEntity_InventDim();
            AxdEntity_InventDimBOM inventDimBOM = new AxdEntity_InventDimBOM();
            CallContext context = new CallContext();
            BOMTable.BOMId = "TEST";
            BOMTable.Name = "TESTBOM";
            AxdBillsOfMaterials axdbom = new AxdBillsOfMaterials()
            {
                                   
            };

                      
            try
            {
                proxy.create(context,axdbom);
            }

 

Kireet kumar wrote How to fix the length of the body in report?
on 2011-11-21 13:34

Hi Kranthi,

Can you help me in this.

void executeSection()
{
    if(counter >= 12)
    {
        element.newPage(); // again 12 lines printed, make the page break now!
        counter = 0; // and reset the counter to count the next 12 items
    }

    //super();
    counter++;
    info(num2str(counter,0,0,1,2));

}
code for printing 12 line in one page then move to second page and so on... When i am putting this code in body of Report, then it doesn't print anything and moves to the second page leave the page blank. when i remove this code, it's printing the 17 lines into the same Page.

RamiReddy wrote Disable or not editing the field when check in the other table field
on 2011-11-7 11:47

Hi,

when check in the field in a table the other table field will be disabled or not editable.

how to write a method for this.there is a common field for the tables.

Alexander wrote RLS
on 2011-10-21 16:02

Hi,

how are you, :-) could you give me an advice how to create roles in AX 4.0, i am planning to do this with RLS and the normal AX Domain user groups. I am able to filter the planned purchase order departments but i am not able to create a second admin role in AX 4.0:

Admin1:

can see and act as a admin in Domain1/Comany1

can see and act as a admin in Domain2/Comany2

can see and act as a admin in Domain1/Comany2

this is the "All company accounts" admin

Admin2:

can only see and act as a admin in Domain1/Comany1

 

Thanks men !

Al