[development-axapta] Document Handling

2004-11-17 Thread Jesmond Giordimaina
Hi all, i'm using Axapta 3 sp3, can anyone lead me of how i'l use document handling? I'm trying to find a way to attach a document to each vendor, how can this be done? reg giordi - Do you Yahoo!? The all-new My Yahoo! – Get yours

[development-axapta] Database size vs Size of company accounts

2004-11-17 Thread Matt Benic
Hi all, I recently ran the Size of company accounts report (Admin-Reports-Size of company Accounts), and received the following: CompanyDatabase | size (bytes) Company 12,534,872,129 Company 28,697,761,157 Company 3553,224 Company 4366,211,524 Company

[development-axapta] RE: Database size vs Size of company accounts

2004-11-17 Thread Matt Benic
My mistake. The indexes are HUGE. One index on CustTrans (on Dataareaid, accountnum, transdate) is about 10Gb. The table is under 4Gb! That would kind of explain where all that space is disappearing to.. Regards, Matt Benic Axapta Developer UTi Sun Couriers Division The universal aptitude

RE: [development-axapta] Database size vs Size of company accounts

2004-11-17 Thread Girish Bhatkal
What about the transaction log , which is been created? _ From: Matt Benic [mailto:[EMAIL PROTECTED] Sent: 17 November 2004 10:42 To: Axapta Dev Cc: Hennie Potgieter; Annette Colbran Subject: [development-axapta] Database size vs Size of company accounts Hi all, I recently

[development-axapta] Send an auto-email with HTML body of more than 32K size

2004-11-17 Thread kashif
Hello All I want to send an auto-email with HTML body. But it has a limit of 32K (32768 characters). So whenever I hit that limit the class `SysMailer' fails. Is there any way to send bigger HTML body in the email than 32K through Axapta? Its not some thing in the outlook because if

[development-axapta] For those who speak french ...

2004-11-17 Thread andre029
And only for them... Visit to http://www.axaptassist.com. The french KM database for Axapta. This site is a private initiative. André Yahoo! Groups Sponsor ADVERTISEMENT Yahoo! Groups Links To visit your group on the web, go

RE : RE : [development-axapta] PageFooter only in the last page

2004-11-17 Thread Steeve Gilbert
Depending on how your report is built, maybe you can base you check up on the main dataSource. For example, in report Cust, the main (and only) dataSource is CustTable. Add a pageFooter to this report and in the executeSection add this : If (!CustTable) { Super(); } This will show the

[development-axapta] Syncronization error

2004-11-17 Thread Vilmaqs
Hi all, I am trying to copy Axapta to a new server for tests. I made a copy of the Standard file and replaced the one from the new installation. Made a back up of the SQL database and restored it in the new server. When I try to syncronize within Axapta, I get the error message: Cannot

[development-axapta] Display Inventory dimensions when a record has been created in a grid.

2004-11-17 Thread Myrl Stadnick
I have a form that will display the inventory dimensions of a purchase order or sales order. When I create a new record and bring in all the data from the Purch or sales line the inventory dimensions will not show up until I close the form and re-open the form. Or I call the init method of

[development-axapta] treeNodeExport

2004-11-17 Thread morx999
I would like export a Project by code (see example 1). But it doesn't work well. The export creates a xpo-file, but inside are only the headers (see example 2), I miss the objects. Can anyone help me? ** Example 1:

[development-axapta] Joining two customers into one

2004-11-17 Thread Jens Strandberg
As you probably know standard Axapta does not allow you to join two customer (or supplier) records; i.e. if you have added customer A and later on by mistake added the same information as customer P, you cannot combine these two - moving all related records from customer P to customer A.

[development-axapta] Document SalesInvoice

2004-11-17 Thread Danny Gaethofs
Dear all, ==+ I am trying to add an additional line that should print in the body of the invoice just below the order line data, item, qty, line amount. Where is the best place to add it? I have tried adding a section group, plus body in the body:BodyCustInvoiceTrans and in the

AW: [development-axapta] axapta-documentation

2004-11-17 Thread Andrae, Tobias
It is still on technet - just goto technet.navision.com and find Ressources/ Documentation library; you dont need a login here. The part mentioned by Anil is only available for partners but not for end customers. Training material can be ordered via Microsoft. Best regards, Tobias

[development-axapta] Compare Records

2004-11-17 Thread smeagul2303
Hi all, I'm looking for a method for comparing two records. Is there a method like record1.compare(record2) == 0 - both records are identical. record1.compare(record2) != 0 - records are not identical. Regards Manfred Yahoo! Groups Sponsor ADVERTISEMENT

RE : [development-axapta] Compare Records

2004-11-17 Thread Steeve Gilbert
You're almost there : Record1.equal(record2) returns a bool. Steeve... -Message d'origine- De : smeagul2303 [mailto:[EMAIL PROTECTED] Envoyé : 17 novembre 2004 11:19 À : [EMAIL PROTECTED] Objet : [development-axapta] Compare Records Hi all, I'm looking for a method for

RE : [development-axapta] Document SalesInvoice

2004-11-17 Thread Steeve Gilbert
The line is not printed because there's no element.send() that would trigger your SalesLine section. SectionGroup needs to be related to a table to know what record will trigger the section. It's not related to a dataSource of the report but to a table. So if your section group is related to

RE: [development-axapta] RE: Database size vs Size of company accounts

2004-11-17 Thread Holger K. Pedersen
The total is wrong. Try to sum up the size in bytes , and the result is more than 54 Gb. The report is in err. That's my opinion. From: Matt Benic [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: Axapta Dev [EMAIL PROTECTED] Subject: [development-axapta] RE: Database size vs Size of

RE: [development-axapta] Joining two customers into one

2004-11-17 Thread James Flavell
How about using the same concept that is in the 'Rename' because I believe this uses the EDT to find every table and record in the database, just in your code delete the customer table record, the rest should be pretty much the same I would think. Never tried it but its an idea for you

RE: [development-axapta] Compare Records

2004-11-17 Thread Holger K. Pedersen
Normally, you must compare field by field for all fields in the records. Since records differs for each table, there is no easy way to do it. Unless, all your tables has a CRC which could be used for comparison, this would be a daunting task to accomodate for Standard Axapta tables. The

RE: [development-axapta] Compare Records

2004-11-17 Thread Preston A. Larimer
Boolean bufCMP(rec1, rec2) Or rec1.equal(rec2) ciao -Preston _ From: smeagul2303 [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 17, 2004 11:19 AM To: [EMAIL PROTECTED] Subject: [development-axapta] Compare Records Hi all, I'm looking for a method

SV: [development-axapta] treeNodeExport

2004-11-17 Thread Carsten F. Frandsen
Hi! I believe that you have to have the project window opened before exporting. /Carsten Fra: morx999 [mailto:[EMAIL PROTECTED] Sendt: on 17-11-2004 16:40 Til: [EMAIL PROTECTED] Emne: [development-axapta] treeNodeExport I would like export a