Re: RE : [Axapta-Knowledge-Village] How to call multiple report designs?

2006-05-27 Thread sherin francis
Hi Steeve, Thanks for the reply... Where would be the best place i can place this code in the report... Steeve Gilbert [EMAIL PROTECTED] wrote: After you have decided which design to use, set it that way : element.design(YourDesign); regards, Steeve... -Message d'origine- De

RE: [Axapta-Knowledge-Village] Reread and refresh problem

2006-05-27 Thread James Flavell
Thanks a lot Steve, That info helped me find the problem and now have solved it :)) Basically there was a form with several datasoources. In the top datasoruce in the reread method their was a call to research() for the sub datasources. Now in some code the system modified the top table and

[Axapta-Knowledge-Village] Localisation merging process

2006-05-27 Thread axapta axapta
Hi All, I am a Axapta technical consultant and keen for ur kind support. I need to merge several countries localisations in a single application and a single database such that only respective users would see only their localisation part. Apart from this some countries users need to

Re: [Axapta-Knowledge-Village] Date validation

2006-05-27 Thread truptiranjan nayak
Hi Hany, Just write the following code in the modified method of date in the form. public void modified() { date d1; int n; ; super(); if(months.getText(MonthsOfYear::March)) { d1=da1.dateValue(); n=mthofYr(d1); if(n==3) throw error(the date of month march can not be selected); }

RE: [Axapta-Knowledge-Village] Re: How to enable permanent viewing of the inventory dimension fields in the Sales Order line / Journal line?

2006-05-27 Thread truptiranjan nayak
Thankx Hary, It works fine. Regds Trupti Harry Deshpande [EMAIL PROTECTED] wrote: Hi Form ProdTable method update design Paste this code at the end of this method element.design().controlName(InventoryDimensions_inventSerialId).allowEdit(true); regards harry This posting is

[Axapta-Knowledge-Village] Application unlocking/keys

2006-05-27 Thread washed_by_him
Does the AX install include all applications and in order to use a specfic application the license key activates the licensed application, or if you buy an additional application in the future do you have to go through the install process for the new app? Sharing the knowledge

Re: [Axapta-Knowledge-Village] posting through X++ code

2006-05-27 Thread truptiranjan nayak
Hi Gopal, please run the following code, The below code is for packing slip. for invocie you have to change the docuemnet status as invoice you have to give the invoiceid inplace of packingslipid. For Qty, you have to pass the total no of qty(as per ur example its 50) in

RE: [Axapta-Knowledge-Village] Re: How to enable permanent viewing of the inventory dimension fields in the Sales Order line / Journal line?

2006-05-27 Thread truptiranjan nayak
Hi raj, I had tried it, but it didn't work. i had checked the orderline pickinglistline checkbox in the AR parameter form. Then i created a new salesorder, in the dimension tab of salesline, except warehouse all other fields of inventory dimension were disabled. I think only the fields

[Axapta-Knowledge-Village] Production Costing-reg.

2006-05-27 Thread DIL G
Hello, In production costing, I face a problem. Kindly tell me the best practice. BOM - FG Item - Item A - 1 No./FG Item B - 1 No./FG Inventory Model - Weighted Average Method for both BOM and Item Production Order: Picking List - Item A - 1 No. - CP-Rs.20/- Item B - 1 No. -

[Axapta-Knowledge-Village] Finacial account statement

2006-05-27 Thread truptiranjan nayak
hi, can anybody tell me how to get all the transaction details for a finacial account statement. Normally we can see the total details of the COA . Ex: in finacila account statement i had attached a COA i.e. 110005. In report i can see the total for the COA 110005 in reports. But i want to

RE: [Axapta-Knowledge-Village] Application unlocking/keys

2006-05-27 Thread Christoph Malherbe
All functionality distributed by MS is installed initially. Licence codes(entered during installation) and configuration keys (set during and after installation determine available functionality. _ From: Axapta-Knowledge-Village@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

RE: [Axapta-Knowledge-Village] Finacial account statement

2006-05-27 Thread Asrar Shaik
Financial statement will give you only either COA level or combination of dimension and COA balance. If you want transaction details, you have to use Trial balance. Regards, Asrar -Original Message- From: Axapta-Knowledge-Village@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

[Axapta-Knowledge-Village] how to convert Real value as a string?

2006-05-27 Thread vijay karthik
hi, i need for help regarding a real value as converted into string. for example: real value : 1200.00 rs, this value is converted in to 'One Thousand Two hundred'. Is there any inbuilt function in Axapta. help me... Thanks in advance.. regards, vijaykarthik.k Send instant messages

Re: [Axapta-Knowledge-Village] Query For Back to back report Printing through codes

2006-05-27 Thread sunil padhy
Hi Nihar, Here is the solution.There is two methods which is used in report run class. SetEscapeSequence Pass through In this method pass the printer control character which you can get from the vendor. Thanks Sunil Padhy --- Nihar Ranjan Samal - Software Engineer (Enterprise

Re: [Axapta-Knowledge-Village] how to convert Real value as a string?

2006-05-27 Thread sunil padhy
Hi Vijay, You can use the Global Class - numerialstotxt() method for converting the real value : 1200.00 rs, to 'One Thousand Two hundred'. Thanks, Sunil Padhy --- vijay karthik [EMAIL PROTECTED] wrote: hi, i need for help regarding a real value as converted into string. for example: