[development-axapta] Label File Updating

2005-01-04 Thread pkpeterson652
I have a client that is operating in a two-tier and three-tier environment with multiple languages. We have a custom label file that contains customer defined labels for reports. We seem to have a problem coordinating changes made to the custom label file between two-tier and three tier

RE: RE : [development-axapta] Display bug in Axapta Calendar ?

2005-01-04 Thread Palle Mølgaard
Hi all, the problem can be fixed in global::WeekOfYear(). For some reason the cases for 1 and 2 has been switched, and this is causing the problem. MBS has been "working" on a solution since the middle of november This is one way to fix the problem : switch(firstWeekOfYear())   

Re: RE : [development-axapta] Display bug in Axapta Calendar ?

2005-01-04 Thread RHODPR
Same here : 51 52 54 2 3 4 ... strange thing... never noticed it before... --- In development-axapta@yahoogroups.com, "Steeve Gilbert" <[EMAIL PROTECTED]> wrote: > > Hi Jens, > >   Similar results here on our dev and live system Ax3.0 SP3. :- )  Weird.  No week 1 or 53.  But I've go

Re: [development-axapta] Display bug in Axapta Calendar ?

2005-01-04 Thread Pawel Gabryelczyk
Hi Jens, I had the same problem. I have heard it will be corrected in v. 4.0. You can do the following correction: \Classes\Global\weekOfYear static int weekOfYear(date _curDate) { int weekJan1st; int dayJan1st; int week; weekJan1st = wkofyr(dateStartYr(_curDate)); dayJan1st = dayofwk(date

RE : [development-axapta] Display bug in Axapta Calendar ?

2005-01-04 Thread Steeve Gilbert
Hi Jens,   Similar results here on our dev and live system Ax3.0 SP3. :-)  Weird.  No week 1 or 53.  But I've got week 54.  Looks like this: 51 52 54 2 3 Regards, Steeve... -Message d'origine- De : Jens Strandberg [mailto:[EMAIL PROTECTED] Envoyé : 4 janvier 2005 08:52 À 

[development-axapta] Display bug in Axapta Calendar ?

2005-01-04 Thread Jens Strandberg
Hello there, I stumbled across some strange behavior in Axapta, and I was wondering if there is a solution. If you click on any date field, you are presented with a calendar displaying current month. I have noticed that there is a week 53, but no week 1. Instead, current week is displayed as

AW: [development-axapta] Processes supported in Axapta

2005-01-04 Thread Andrae, Tobias
Hi Krishna this is not something you can explain in an email, as a lot of people are studying for some years at universities to find out. You need knowledge about business  processes as well as about the company for which the product will be implemented. So maybe try to find one or more books

RE: [development-axapta] UtilElements

2005-01-04 Thread Lars Holm
Here's one way:     new SysTableBrowser().run(tablenum(UtilElements)); Br, Lars -Original Message- From: Ibrahim Kilicarslan [mailto:[EMAIL PROTECTED] Sent: 4. januar 2005 11:11 To: development-axapta@yahoogroups.com Subject: [development-axapta] UtilElements Hi, How can i re

[development-axapta] UtilElements

2005-01-04 Thread Ibrahim Kilicarslan
Hi, How can i reach the records of UtilElements table in AOT. Thanks in advance. Ýbrahim Yahoo! Groups Links To visit your group on the web, go to:http://groups.yahoo.com/group/development-axapta/  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]  Your us

RE: [development-axapta] How to get a table Map fro a table?.

2005-01-04 Thread Lennart Conrad
Hi Andreas 1.  You simply pass the table as argument. You can see an example of this in the method initFromCustInvoiceTable on the CustTable. 2.  If you want to check if a table is part of a map, you can use the method isTableMapped on SysDictTable

[development-axapta] Re: EXECUTE A STRING VARIABLE CONTENT - EJECUTAR CONTENIDO DE VARIABLE STRING

2005-01-04 Thread Agus Riyadi
Hi, Use runbuf method, but you need to wrap your code as a function. See details of runbuf method in the AOT > System Documentation > Function > Runbuf. You may also need XppCompiler class to verify whether your string in the execode variabel is valid. Regards, Agus [EMAIL PROTECTED]

[development-axapta] Processes supported in Axapta

2005-01-04 Thread Krishna Kumar
Hi, I am trying to identify the important process that an ERP should have for a Dstribution/Wholesale scenario. I am trying to fit in an ERP package for this purpose and hence am trying to evaluate the different packages. This forum is mostly being used for implementation and customization

Re: RE : [development-axapta] Navision Axapta Debugger

2005-01-04 Thread vaibhav pednekar
hi steeve , its 2.5 version not 3.0. regards vaibhav --- Steeve Gilbert <[EMAIL PROTECTED]> wrote: > > Sorry to hi-jack your thread but... Is SP4 out for > 3.0??? > > Steeve... > > > -Message d'origine- > De : AudriusP [mailto:[EMAIL PROTECTED] > Envoyé : 29 décembre 2004 04:25

SV: [development-axapta] EXECUTE A STRING VARIABLE CONTENT - EJECUTAR CONTENIDO DE VARIABLE STRING

2005-01-04 Thread Erik Hansen
Hi, You can write a method in a string and then execute it using runBuf. Something like this: str s; InventTable inventTable; ; s = "InventTable runProg(InventTable  inventTable, ItemId  itemId){inventTable.itemId = itemId;return inventTable;}"; inventTable = runBuf(s, inventT