Skip to main content

Add Financial dimension Lookup at Enterprise portal in Axapta

To Add Financial dimension Lookup at Enterprise portal in Axapta you can to help with below code.

 protected void BusinessSector_LookUp(object sender, AxLookupEventArgs e)  
     {  
       //Getcurrent user to filter record based on current user   
       String usr = WindowsIdentity.GetCurrent().Name;  
       int pos = usr.IndexOf('\\');  
       usr = pos != -1 ? usr.Substring(pos + 1) : usr;  
       AxLookup lookup = (AxLookup)sender;  
       // Create the lookup data set. The respective table will be used.  
       Proxy.SysDataSetBuilder sysDataSetBuilder;  
       sysDataSetBuilder = Proxy.SysDataSetBuilder.constructLookupDataSet(AxSession.AxaptaAdapter, TableMetadata.TableNum(AxSession, "DimensionFinancialTag"));  
       // Set the generated data set as the lookup data set.  
       lookup.LookupDataSet = new DataSet(AxSession, sysDataSetBuilder.toDataSet());  
       using (Proxy.Query query = lookup.LookupDataSet.DataSetViews[0].MasterDataSource.query())  
       {  
         query.dataSourceNo(1).addRange(TableArrayFieldMetadata.FieldNum(this.AxSession, "DimensionFinancialTag", "FinancialTagCategory")).value = "5637146078";  
       }  
       // Specify the fields for the lookup.  
       lookup.Fields.Add(AxBoundFieldFactory.Create(AxSession, lookup.LookupDataSetViewMetadata.ViewFields["Description"]));  
       lookup.Fields.Add(AxBoundFieldFactory.Create(AxSession, lookup.LookupDataSetViewMetadata.ViewFields["Value"]));  
       lookup.SelectField = "Value";  
 }  

Popular posts from this blog

How to set up parent project in project accounting in ax 2012

create simple project and then go to the project hierarchy fast tab and there you must define sub-project ID format "-#" and then your sub-project will be enabled. For resource assigning in Project first you need to configure the HR module, in that you need to maintain the calendar for those employees and then you need to define the cost of that particular employee (for expense) and for Revenue you need to define the sales price of that particular employee. In the project accounting module you need to mention the calendar in scheduling fast tab and then you need to define WBS, in WBS activity you can be able to assign resources.

ERD Account Payable and Account Receivable in ax 2012