[Axapta-Knowledge-Village] In use records (again)

2005-01-03 Thread Hennie Potgieter
Title: Message Hi, One of my users marked a number of records for settlement on a specific customer in open transaction editing in Accounts Receivable. (about 700 records). After marking the records (but before settling) his session got terminated by the AOS. All marked records now sit

[Axapta-Knowledge-Village] simple report question

2005-01-03 Thread Danny Gaethofs
Dear all, I want to realize that a control field in a programmable section repeats 5 times on the first line of my report. To test this I created a simple programmable section containing the field ItemId. I send the item record from the fetch() method. Using a while loop in my fetch method

Re: [Axapta-Knowledge-Village] Batch processing

2005-01-03 Thread Girish B
after setting the batch process did you start the process ? i.e did you run Basic/Periodic / Batch / Processing ? you need to run this and select the Batch group. --- birzanto [EMAIL PROTECTED] wrote: - Dear all, Is there anyone of you know how to use

Re: [Axapta-Knowledge-Village] Select empty date field

2005-01-03 Thread Sonny Wibawa Adi
Hi Nitesh, Use nullValue function or dateNull function. For example: select * from salesTable where salesTable.DeadLine == nullValue(salesTable.Deadline); select * from salesTable where salesTable.DeadLine == dateNull();or objRange.value(queryValue(dateNull())); Regards, Sonny Wibawa

Re: [Axapta-Knowledge-Village] simple report question

2005-01-03 Thread Raul Llorente Peña/OPENSOLUTIONS
Take a look about methods of element.design(): GotoY100mm, gotoX100mm (this one doesnt work as expected, be aware!!), etc. And about left100mm of the controls!! Tutorial Report_positioning (or something similar) will be useful to you.The logic is:- Save the initial Y100mm.repeat X times -

Re: [Axapta-Knowledge-Village] Select empty date field

2005-01-03 Thread Subrahmanyam Mamidi
Hi Niteshh, dateNull() will be usefull to find empty dates. You may want to use s" elect Table where table.datefiled == dateNull() . Nitesh [EMAIL PROTECTED] wrote: Hi all, i want to select records froma table whose date is empty.i used null, ' ' and " " in the criteria but it is

[Axapta-Knowledge-Village] Object ID

2005-01-03 Thread Joy
Dear all, I'm facing a problem right now, and deeply need help. This is the story : We have 2 application and 2 Database on single server, 1 as UAT (A) and the other as Go Live preparation (B). There is a mistake that using A appl and B Database. What is the effect of it? and how to

Re: RE : [Axapta-Knowledge-Village] Slow Performance of Report

2005-01-03 Thread Ashi Singh
Well Steve i thanks a lot for your advice well the problem is that View Only supports a downward hierarchy with each only at one level. just like - I level ---II level -III level --- IV level And so i have todraw some relations on to database which is likebelow

[Axapta-Knowledge-Village] Re: simple report question

2005-01-03 Thread Danny Gaethofs
Dear Raul, Before I asked this question I already investigated the tutorial_positioning. This one is not solving my problem. I already tried several ways to get it done but unsuccessfull. I have been trying it with the topMargin and leftMargin, but that is not working. I have tried it your

RE : [Axapta-Knowledge-Village] simple report question

2005-01-03 Thread Steeve Gilbert
I guess this refer to your previous section. You can't do what you explain here. A programmable section will always print under the last one printed. What you need to do is create 5 fields in the your prog section so that they can be on the same line. If you want to create your control

Re: [Axapta-Knowledge-Village] Re: simple report question

2005-01-03 Thread Raul Llorente Peña/OPENSOLUTIONS
At first glow, your code appears to be OK...Note that, when you use gotoY100mm, in the preview screen only will appear the last section printed on same zone of paper. This is, if you have printed 5 sections on same paper section(controls displacing to right), in preview screen you will see

[Axapta-Knowledge-Village] Axapta COM Connector configuration parameters Oracle 9.2 Against Axapta 2.5

2005-01-03 Thread Raul Llorente Peña/OPENSOLUTIONS
Two questions:Can anyone tell me where can I find documentation about configuration parameters of the Axapta COM+ Connector?? In a customer we have, it goes pretty, but in a random time elapse (from minutes to days), it gives several types of errors. This component is being used all the time.

RE : [Axapta-Knowledge-Village] Users screen

2005-01-03 Thread Steeve Gilbert
I think theses settings are saved in SysLastValue.  You could duplicate the record from your first company to the new one, that should do the job.  Try it in a test DB first as I'm not 100% sure, I've never tried it. Steeve... -Message d'origine- De: Deniz

[Axapta-Knowledge-Village] Re: i need intercompany setup document

2005-01-03 Thread jasondykeson
Maybe on www.axapta-links.com Regards. --- In Axapta-Knowledge-Village@yahoogroups.com, Cenk Ince [EMAIL PROTECTED] wrote: Hi all; I need intercompany setup doc. Thanks. Sharing the knowledge on Axapta. Yahoo! Groups Links * To visit your group on the web, go to:

[Axapta-Knowledge-Village] SQL server installation Tuning

2005-01-03 Thread tj_jayson
Hi All, Where I can get documents regarding the Tuning of SQL server for a Axapta Ver 3 sp3 3 tier Thin client configuration. Thanks for the Help Tjj Sharing the knowledge on Axapta. Yahoo! Groups Links * To visit your group on the web, go to:

[Axapta-Knowledge-Village] SQL server installation Tuning

2005-01-03 Thread tj_jayson
Hi All, Where I can get documents regarding the Tuning of SQL server for a Axapta Ver 3 sp3 3 tier Thin client configuration. Thanks for the Help Tjj Sharing the knowledge on Axapta. Yahoo! Groups Links * To visit your group on the web, go to:

[Axapta-Knowledge-Village] Layer Question

2005-01-03 Thread tj_jayson
Hi All, I have a development instance having modifications in CUS Layer which I need to move to VAR layer . My Question is How I can move the Extended Data types, Table , Classes to VAR layer with new VAR layer feild Id's. The Tables are having values and also doc Handling on. Please

Re: [Axapta-Knowledge-Village] Select empty date field

2005-01-03 Thread akash malohatra
Hi, try 01/01/1900 . Axapta stores this date for null dates in the database. Regards Akash --- Nitesh [EMAIL PROTECTED] wrote: Hi all, i want to select records from a table whose date is empty.i used null, ' ' and in the criteria but it is not working .please help.

RE: [Axapta-Knowledge-Village] Slow connection for remote clients

2005-01-03 Thread Preston A. Larimer
You should check your latency from the client to the server for the remote clients, even though you have a 64Kps line your latency can be high causing the client to be nearly unusable especially for forms with lots of sorting or large lookups. If your latency is high, and you have a

Re: RE : [Axapta-Knowledge-Village] Positioning Programmable section

2005-01-03 Thread Raul Llorente Peña/OPENSOLUTIONS
Haw!! Do you really think you can't print two sections on same paper section??A section is always printed one under the previous one... unless you modify the "pen position" with GotoY100mm!!Try it, you will receive a nice surprise.But, as you say, to create the controls dinamically with

[Axapta-Knowledge-Village] i need intercompany setup document

2005-01-03 Thread Cenk Ince
Hi all; I need intercompany setup doc. Thanks. Sharing the knowledge on Axapta. Yahoo! Groups Links * To visit your group on the web, go to: http://groups.yahoo.com/group/Axapta-Knowledge-Village/ * To unsubscribe from this group, send an email to: [EMAIL PROTECTED] * Your use of

Re: [Axapta-Knowledge-Village] Object ID

2005-01-03 Thread Joy
Many thanks for your tips, Raul. Know i know the process of synchronizing. Regards Joy - Original Message - From: Raul Llorente Peña/OPENSOLUTIONS To: Axapta-Knowledge-Village@yahoogroups.com Sent: Tuesday, January 04, 2005 12:19 AM Subject: Re:

[Axapta-Knowledge-Village] Pack / Unpack

2005-01-03 Thread anton_tjiptadi
Hi, can someone tell me what is the purpose of Pack and Unpack in Class method ? thanks, Sharing the knowledge on Axapta. Yahoo! Groups Links * To visit your group on the web, go to: http://groups.yahoo.com/group/Axapta-Knowledge-Village/ * To unsubscribe from this group, send an

[Axapta-Knowledge-Village] Financial Statement in Axapta 3.0

2005-01-03 Thread Asrar Ahamed
I would like to skip zero balance rows in financials statements (BS, PL, etc.) and TB. Could anybody help me? Thanks ALL-NEW Yahoo! Messenger - all new features - even more fun! Sharing the knowledge on Axapta. Yahoo! Groups Links To visit your group on the web, go

[Axapta-Knowledge-Village] SQL server installation Tuning

2005-01-03 Thread tj_jayson
Hi All, Where I can get documents regarding the Tuning of SQL server for a Axapta Ver 3 sp3 3 tier Thin client configuration. Thanks for the Help Tjj Sharing the knowledge on Axapta. Yahoo! Groups Links * To visit your group on the web, go to: