-
Hi, I have grid with some fields and ReferenceGroup which comes from a field that is the foreign key of another table, so it creates a lookup that displays first and last name of the employee, these are separated fields, what I want to accomplish is, when you select a record from the lookup, display...
-
Hi All, I wrote this display with joinchild method for make my display method faster: Display ItemName DispItemName(B_RepairJournal RepairJournal) { InventTable InventTbl; ; InventTbl.data(RepairJournal.joinChild()); return InventTbl.itemName; } I add an inner join at InventTable with B_RepairJournal...
-
I need the code to link the following: WMSOrderTrans.OrderId links via InvenTransId to CustPackingSlipTrans.InventTransId links via PackingSlipId to CustPackingSlipJour so I can display a new field (CustPackingSlipJour .NewDocRef) Thanks for any help.
-
I'm trying to display a field from the CustTransOpen table on the CustTrans form. I have tried adding CustTransOpen table as a data source but this does not display correctly (the corresponding entries do not appear against the correct records) I have also tried to add this code to the CustTrans...
-
Hi, I have a problem with displaying a specific field in the report (body section). Let's assume that I have the following records in the table: String1 String2 String3 I would like to display instead of "String1" just 1. Could you give me an advice how should I do it? Thank you.
-
Hi, I have a display method on a table. I have a form with 2 grid. On number 2 grid i have a field with display method. When i open form, display method calculate value correctly, but when i am select next record on number 1 grid, on number 2 grid display method shows value for first record and don't...
-
I want to display the allocated Develoment Officer from the smmResponsibilitiesEmplTable on the SalesQuotationTable form SalesQuotationTable.OpportunityId == smmOpportunityTable.OpportunityId smmOpportunityTable.RecId == smmResponsibilitiesEmplTable.RefRecId smmResponsibilitiesEmplTable.ResponsibilityId...
-
The base tables for the above are smmOpportunities and SalesQuotations From the Opportunities form I would like to be able to display the employee name on the Responsibilities tab where the responsibility meets theright citeria e.g. Sales manager on the Quotation form Can you please help me to filter...
-
Hi, I am just wondering if someone could help me please. I am designing a report in Axapta 3.0 and facing a issue. I have got a display method in InventTable which is returning the ON-Hand stock quantity. I am using this in a report to show the quantity of item has not been sold. Now i want to add this...
-
hi, i have 2 tables as follows and there is no relation between these two tables. now my requirement is in the form as follows empno ename sal grade 7499 allen 1600 3 7566 jones 2975 4 ........ i am writing the display method as following way but i will show the grade i s 1 for all rows.please tell me...