Hi all, I am looking for some documentation on a specific implementation stage. Need to take in the client's opening balances into Axapta.
The opening balances that should be imported into Axapta are - Opening balances of Ledger Accounts Ledger Account-wise, dimension-wise opening balances Opening balances of inventory Inventory dimension-wise quantity and rates Opening balances of Customers Customer-wise, invoice-wise invoice amounts Customer-wise, invoice-wise receipt amounts Customer-wise advance receipts Opening balances of Vendors Vendor-wise, invoice-wise invoice amounts Vendor-wise, invoice-wise payment amounts Customer-wise advance payments Open Sales Orders Open Sales Orders of different status Open Sales Orders after posting packing slip Open Purchase Orders Open Purchase Orders of different status Open Purchase Orders after receipts list Open Purchase Orders after posting packing slip Open Quarantine Orders Open Quarantine Orders of different status Open Work Orders Regards, Naveen. -----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, September 23, 2004 1:07 PM To: [EMAIL PROTECTED] Subject: [Axapta-Knowledge-Village] Digest Number 108 There are 14 messages in this issue. Topics in this digest: 1. Structs Arrays From: Alfonso Collados Arroyo <[EMAIL PROTECTED]> 2. Re: Structs Arrays From: Varden Morris <[EMAIL PROTECTED]> 3. Re: Axapta-Knowledge-Village: Order Lines not Invoiced report From: Varden Morris <[EMAIL PROTECTED]> 4. Re: Axapta-Knowledge-Village: Truncated Deposit Number OK on Display From: Varden Morris <[EMAIL PROTECTED]> 5. Receive Items From: "madtrs" <[EMAIL PROTECTED]> 6. RE: Receive Items From: "Karina Normann Jakobsen \(MICROSOFT BUSINESS SOLUTIONS\)" <[EMAIL PROTECTED]> 7. Bill of Materials Reference From: "madtrs" <[EMAIL PROTECTED]> 8. Re: aac microdesk any users? From: "roelvermeersch" <[EMAIL PROTECTED]> 9. Vendor Validated Fields From: "Roberto Pineda" <[EMAIL PROTECTED]> 10. www.axaptaLink.com From: "Preston A. Larimer" <[EMAIL PROTECTED]> 11. RE: www.axaptaLink.com From: "Johan Slabber" <[EMAIL PROTECTED]> 12. Master Planning - Filtering on Warehouse From: "yifath1" <[EMAIL PROTECTED]> 13. RE: www.axaptaLink.com From: "Yifat Halili" <[EMAIL PROTECTED]> 14. Re: Master Planning - Filtering on Warehouse From: Jim Jo <[EMAIL PROTECTED]> ________________________________________________________________________ ________________________________________________________________________ Message: 1 Date: Wed, 22 Sep 2004 10:27:25 +0200 From: Alfonso Collados Arroyo <[EMAIL PROTECTED]> Subject: Structs Arrays Hi Everybody: I have a problem with structs, How Can I make this without errors? str CadenaAuxiliar="CostAmountPosted Cost1;CostAmountPosted Cost2;CostAmountPosted Cost3"; struct SAuxiliar = new struct(CadenaAuxiliar); SAuxiliar Dimensiones[]; ; Code To Do Regards ________________________________________________________________________ ________________________________________________________________________ Message: 2 Date: Wed, 22 Sep 2004 05:08:13 -0700 (PDT) From: Varden Morris <[EMAIL PROTECTED]> Subject: Re: Structs Arrays Hi Alfonso, The error as you such know occurs on the following line: SAuxiliar Dimensiones[]; SAuxiliar is not a valid type in Axapta. The only user defined type I know of in Axapta is Extended Data Types that are defined in the AOT. I also do not know of the possibility of declaring an Extended Data Type as a structure. The step I would take to accomplish this task is to simulate a two dimensional array (since Axapta does not allow you to create multi-dimensional arrays directly). If you search the developer's guide on arrays you will see the work around for multi-dimensional arrays. Alfonso Collados Arroyo <[EMAIL PROTECTED]> wrote: Hi Everybody: I have a problem with structs, How Can I make this without errors? str CadenaAuxiliar="CostAmountPosted Cost1;CostAmountPosted Cost2;CostAmountPosted Cost3"; struct SAuxiliar = new struct(CadenaAuxiliar); SAuxiliar Dimensiones[]; ; Code To Do Regards Sharing the knowledge on Axapta. Yahoo! Groups SponsorADVERTISEMENT --------------------------------- 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 Yahoo! Groups is subject to the Yahoo! Terms of Service. --------------------------------- Do you Yahoo!? vote.yahoo.com - Register online to vote today! [This message contained attachments] ________________________________________________________________________ ________________________________________________________________________ Message: 3 Date: Wed, 22 Sep 2004 05:49:38 -0700 (PDT) From: Varden Morris <[EMAIL PROTECTED]> Subject: Re: Axapta-Knowledge-Village: Order Lines not Invoiced report Hi Bob, To trace a report from a menu item you first go to the "menus" node in the AOT. Under that node the "MainMenu" menu represents the main menu in Axapta. Expand that menu and you will see a list of all the menus in Axapta's main menu. Hold the mouse stationary over the menu of interest and you will see a popup that says "reference to menuname" where menuname is the name of the menu concerned. This name is the name of the menu under the "Menus" object of AOT. Locate the menu and expand it and you will see a listing identical to that on the main menu in Axapta. If the report you are looking for is under the reports menu go to that menu or locate the report the same way you would do if you were going through the Axapta main menu as a user. Right-click the report and look at the "MenuItemType" and "MenuItemName" properties. The "MenuItemType" has three possible values that are either display, output or action. Expand the "Menu Item" object under the AOT and locate the corresponding object to the "MenuItemType" (display, output or action). Expand the object (diplay, output or action) and look for the "MenuItemName" property value from above and right-click it and select properties. Note the "Class" and "Object" properties. The "Class" property represent the object under the AOT where you need to continue looking for the report. This is usually class or report. If it is report you have found the report otherwise it should be class so you need to locate the class under the class object in the AOT. Expand the class and look for a method name "lastValueElementName". It should look like this: public identifiername lastValueElementName() { return reportStr(REPORTNAME); } On the line with the return statement the REPORTNAME in brackets is the name of the report you want to find. Locate the report under the reports node of the AOT. N.B. You may not find some of the more complicated reports this way in the class. Sometimes you do not see the method "lastValueElementName" in the class but there may be a series of polymorphism that requires you to understand polymorphism and tracing through many classes to find the required report. [EMAIL PROTECTED] wrote: Hi Everyone, I need help again. I have spent a lot of time looking but have not been able to find the name of the Axapta report in the AOT that prints the report called "Order lines not Invoiced". I found a report with a similiar name but not the right one. Any help will be greatly appreciated or if anyone can tell me a way to search for the report names in the AOT when it is not the name used on the report. Thanks and best regards, Bob Bob Brinker Oakdene Group, Inc. 2625 Butterfield Rd. (Suite 212E) Oak Brook, IL 60523-1261 (630)368-1046 x/230 (630)368-1050 (Fax) [EMAIL PROTECTED] Sharing the knowledge on Axapta. Yahoo! Groups SponsorADVERTISEMENT --------------------------------- 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 Yahoo! Groups is subject to the Yahoo! Terms of Service. --------------------------------- Do you Yahoo!? Yahoo! Mail - 50x more storage than other providers! [This message contained attachments] ________________________________________________________________________ ________________________________________________________________________ Message: 4 Date: Wed, 22 Sep 2004 06:22:52 -0700 (PDT) From: Varden Morris <[EMAIL PROTECTED]> Subject: Re: Axapta-Knowledge-Village: Truncated Deposit Number OK on Display Hi Bob, You may be able to see the Deposit Slip number by adjusting some properties for the printer. If the report is being printed through a class you should see three button on the initial form which are "Select", "Default" and "Option". if you use the "Option" button, depending on the printer you are using, you should be taken to a screen that has a property button. Select this button and then select the effect tab. You can change the percentage size to something less than 100 to "Print Document on" and select Scale to fit. Otherwise, you may have to modify the report by sizing the object which can be a pain. Also different printers may print the report differently. I hope Microsoft will fix this soon. For the second problem I am not sure if it is a programmable section the is printing the value concerned. If it is that second could possibly be called twice in code. [EMAIL PROTECTED] wrote: Hi All, The BankDepositSlip document truncates the Deposit Slip number when printed. When displayed back to the screen the Deposit Slip Number displays OK; however, if printed it is truncated. For Example: Report to Screen: Deposit slip: DEP_00000012 <== Okay Report to Printer: Deposit slip: DE_000000( <==Truncated Does anybody have an idea how to correct this problem? I also have a second problem. The Deposit Slip number displays twice on the document: Once in the top RT hand corner and once at the end of the document. In both places it is truncated when printed. The AutoDesignSpes layout does not show the field printed at the bottom so I am not sure what causes it to print. Any help will be greatly appreciated. Thanks, Bob Bob Brinker Oakdene Group, Inc. 2625 Butterfield Rd. (Suite 212E) Oak Brook, IL 60523-1261 (630)368-1046 x/230 (630)368-1050 (Fax) [EMAIL PROTECTED] Sharing the knowledge on Axapta. Yahoo! Groups SponsorADVERTISEMENT --------------------------------- 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 Yahoo! Groups is subject to the Yahoo! Terms of Service. --------------------------------- Do you Yahoo!? vote.yahoo.com - Register online to vote today! [This message contained attachments] ________________________________________________________________________ ________________________________________________________________________ Message: 5 Date: Wed, 22 Sep 2004 14:25:56 -0000 From: "madtrs" <[EMAIL PROTECTED]> Subject: Receive Items Hi, How do you mark PO items as received and accepted? Is this done in AR? Can you indicate that items were also delivered to appropriate department or people? Thanks so much... ________________________________________________________________________ ________________________________________________________________________ Message: 6 Date: Wed, 22 Sep 2004 15:32:49 +0100 From: "Karina Normann Jakobsen \(MICROSOFT BUSINESS SOLUTIONS\)" <[EMAIL PROTECTED]> Subject: RE: Receive Items Hi, You need to use the quarantine system if you wan't to add a control procedure to the receipt of items. Med venlig hilsen/Best regards/Mit freundlichen Grüßen Karina Normann Jakobsen Program Manager, Supply Chain Management ________________________________ From: madtrs [mailto:[EMAIL PROTECTED] Sent: 22. september 2004 16:26 To: [EMAIL PROTECTED] Subject: [Axapta-Knowledge-Village] Receive Items Hi, How do you mark PO items as received and accepted? Is this done in AR? Can you indicate that items were also delivered to appropriate department or people? Thanks so much... Sharing the knowledge on Axapta. Yahoo! Groups Sponsor ADVERTISEMENT click here <http://us.ard.yahoo.com/SIG=129etlcoa/M=295196.4901138.6071305.3001176/D=gr oups/S=1705001380:HM/EXP=1095949596/A=2128215/R=0/SIG=10se96mf6/*http://comp anion.yahoo.com> <http://us.adserver.yahoo.com/l?M=295196.4901138.6071305.3001176/D=groups/S= :HM/A=2128215/rand=978756238> ________________________________ 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] <mailto:[EMAIL PROTECTED] ribe> * Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service <http://docs.yahoo.com/info/terms/> . [This message contained attachments] ________________________________________________________________________ ________________________________________________________________________ Message: 7 Date: Wed, 22 Sep 2004 18:59:17 -0000 From: "madtrs" <[EMAIL PROTECTED]> Subject: Bill of Materials Reference Hi All, Another question. Can anyone recommend sources for Bill of Material setup. I need to understand how to set up BOM and I am having trouble finding direction Thanks... ________________________________________________________________________ ________________________________________________________________________ Message: 8 Date: Wed, 22 Sep 2004 20:13:06 -0000 From: "roelvermeersch" <[EMAIL PROTECTED]> Subject: Re: aac microdesk any users? We use it in 2 installations. Roel Vermeersch Product Mgr --- In [EMAIL PROTECTED], "Andrew Vranjes" <[EMAIL PROTECTED]> wrote: > Hello, > > Any other companies running Axapta v3, aacmicrodesk service management > module? I would like to chat to you about the module, writing reports for > the service contracts etc. looking forward to a chat! > > Thanks > > > Andrew Vranjes > IT Support Officer > Metric Australia Pty Ltd ________________________________________________________________________ ________________________________________________________________________ Message: 9 Date: Wed, 22 Sep 2004 20:52:26 -0000 From: "Roberto Pineda" <[EMAIL PROTECTED]> Subject: Vendor Validated Fields Hello, I need to register a vendor invoice, but axapta validates that the vendor address and phone number are not defined. I want to set this off, how can I do it? Thanks. ________________________________________________________________________ ________________________________________________________________________ Message: 10 Date: Wed, 22 Sep 2004 17:46:57 -0500 From: "Preston A. Larimer" <[EMAIL PROTECTED]> Subject: www.axaptaLink.com Hey all, I've started a new community web site for those of us blessed with Axapta in our lives. I'm hoping this will just grow as a resource for us all; every one that registers has the ability to author articles. Use it as a venue to share your knowledge with the community and gain recognition for the skills you've built in learning Axapta. At this point I'm in the progress of moving my personal notes to the site but I'm looking forward to the content growing with more involvement from the whole community. Please let me know if you have any suggestions. http://www.axaptaLink.com <http://www.axaptalink.com/> -Preston [This message contained attachments] ________________________________________________________________________ ________________________________________________________________________ Message: 11 Date: Thu, 23 Sep 2004 08:09:48 +0200 From: "Johan Slabber" <[EMAIL PROTECTED]> Subject: RE: www.axaptaLink.com Hi - Thanks for your initiative Johan iSoft Technologies (Pty) Ltd Contact : Johan Slabber Cell : +27 72 4566 345 Tel : +27 (12) - 345 4720 Fax : +27 (12) - 345 4252 Additional info and downloads available at : HYPERLINK "http://www.isoft-tech.co.za/"http://www.isoft-tech.co.za _____ From: Preston A. Larimer [mailto:[EMAIL PROTECTED] Sent: 23 September 2004 12:47 AM To: [EMAIL PROTECTED] Subject: [Axapta-Knowledge-Village] www.axaptaLink.com Hey all, I've started a new community web site for those of us blessed with Axapta in our lives. I'm hoping this will just grow as a resource for us all; every one that registers has the ability to author articles. Use it as a venue to share your knowledge with the community and gain recognition for the skills you've built in learning Axapta. At this point I'm in the progress of moving my personal notes to the site but I'm looking forward to the content growing with more involvement from the whole community. Please let me know if you have any suggestions. HYPERLINK "http://www.axaptalink.com/"http://www.axaptaLink.com -Preston Sharing the knowledge on Axapta. Yahoo! Groups Sponsor ADVERTISEMENT HYPERLINK "http://us.ard.yahoo.com/SIG=129r7lci6/M=295196.4901138.6071305.3001176/D=gr oups/S=1705001380:HM/EXP=1095979623/A=2128215/R=0/SIG=10se96mf6/*http:/compa nion.yahoo.com"click here HYPERLINK "http://us.adserver.yahoo.com/l?M=295196.4901138.6071305.3001176/D=groups/S= :HM/A=2128215/rand=849524076" _____ Yahoo! Groups Links * To visit your group on the web, go to: HYPERLINK "http://groups.yahoo.com/group/Axapta-Knowledge-Village/"http://groups.yahoo .com/group/Axapta-Knowledge-Village/ * To unsubscribe from this group, send an email to: HYPERLINK "mailto:[EMAIL PROTECTED] ribe"[EMAIL PROTECTED] * Your use of Yahoo! Groups is subject to the HYPERLINK "http://docs.yahoo.com/info/terms/"Yahoo! Terms of Service. --- Incoming mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.767 / Virus Database: 514 - Release Date: 2004/09/21 --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.767 / Virus Database: 514 - Release Date: 2004/09/21 [This message contained attachments] ________________________________________________________________________ ________________________________________________________________________ Message: 12 Date: Thu, 23 Sep 2004 07:06:55 -0000 From: "yifath1" <[EMAIL PROTECTED]> Subject: Master Planning - Filtering on Warehouse Hi all, I would like to run master planning for a specific warehouse. When i add this to the select criteria Axapta seems to ignor it. Has anyone managed to do this? (if so...how?) Any help would be much appreciated. Thanks Yifat ________________________________________________________________________ ________________________________________________________________________ Message: 13 Date: Thu, 23 Sep 2004 09:10:25 +0200 From: "Yifat Halili" <[EMAIL PROTECTED]> Subject: RE: www.axaptaLink.com Thanks so much for your efforts. ______________________________________ Yifat Halili Financial Systems Consultant Exordia - a division of PricewaterhouseCoopers SA Mobile: +27 (82) 355-4011 Tel: +27 (11) 797-4768 Fax: +27 (11) 209-4768 Website: www.exordia.co.za <http://www.exordia.co.za/> ________________________________ From: Johan Slabber [mailto:[EMAIL PROTECTED] Sent: Thursday, September 23, 2004 8:10 AM To: [EMAIL PROTECTED] Subject: RE: [Axapta-Knowledge-Village] www.axaptaLink.com Hi - Thanks for your initiative Johan iSoft Technologies (Pty) Ltd Contact : Johan Slabber Cell : +27 72 4566 345 Tel : +27 (12) - 345 4720 Fax : +27 (12) - 345 4252 Additional info and downloads available at : http://www.isoft-tech.co.za <http://www.isoft-tech.co.za/> ________________________________ From: Preston A. Larimer [mailto:[EMAIL PROTECTED] Sent: 23 September 2004 12:47 AM To: [EMAIL PROTECTED] Subject: [Axapta-Knowledge-Village] www.axaptaLink.com Hey all, I've started a new community web site for those of us blessed with Axapta in our lives. I'm hoping this will just grow as a resource for us all; every one that registers has the ability to author articles. Use it as a venue to share your knowledge with the community and gain recognition for the skills you've built in learning Axapta. At this point I'm in the progress of moving my personal notes to the site but I'm looking forward to the content growing with more involvement from the whole community. Please let me know if you have any suggestions. http://www.axaptaLink.com <http://www.axaptalink.com/> -Preston Sharing the knowledge on Axapta. Sharing the knowledge on Axapta. Yahoo! Groups Sponsor ADVERTISEMENT click here <http://us.ard.yahoo.com/SIG=129ufabpn/M=295196.4901138.6071305.3001176/ D=groups/S=1705001380:HM/EXP=1096006209/A=2128215/R=0/SIG=10se96mf6/*htt p:/companion.yahoo.com> <http://us.adserver.yahoo.com/l?M=295196.4901138.6071305.3001176/D=group s/S=:HM/A=2128215/rand=513162841> ________________________________ 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] <mailto:[EMAIL PROTECTED] ubscribe> * Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service <http://docs.yahoo.com/info/terms/> . --- Incoming mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.767 / Virus Database: 514 - Release Date: 2004/09/21 --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.767 / Virus Database: 514 - Release Date: 2004/09/21 [This message contained attachments] ________________________________________________________________________ ________________________________________________________________________ Message: 14 Date: Thu, 23 Sep 2004 00:34:21 -0700 (PDT) From: Jim Jo <[EMAIL PROTECTED]> Subject: Re: Master Planning - Filtering on Warehouse You cannot do it on AXAPTA ! If someone has done MPS filtering warehouse please correct me. AS far as i know Axapta Mas Sche cannot be run for single warehouse. I belive this would be done in version 4.0. If wrong please correct me! Regs Jim yifath1 <[EMAIL PROTECTED]> wrote: Hi all, I would like to run master planning for a specific warehouse. When i add this to the select criteria Axapta seems to ignor it. Has anyone managed to do this? (if so...how?) Any help would be much appreciated. Thanks Yifat Sharing the knowledge on Axapta. Yahoo! Groups SponsorADVERTISEMENT --------------------------------- 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 Yahoo! Groups is subject to the Yahoo! Terms of Service. --------------------------------- Do you Yahoo!? Yahoo! Mail is new and improved - Check it out! [This message contained attachments] ________________________________________________________________________ ________________________________________________________________________ Sharing the knowledge on Axapta. ------------------------------------------------------------------------ Yahoo! Groups Links ------------------------------------------------------------------------ ********************************************************************* Disclaimer: The information in this e-mail and any attachments is confidential / privileged. It is intended solely for the addressee or addressees. If you are not the addressee indicated in this message, you may not copy or deliver this message to anyone. In such case, you should destroy this message and kindly notify the sender by reply email. Please advise immediately if you or your employer does not consent to Internet email for messages of this kind. ********************************************************************* ------------------------ Yahoo! Groups Sponsor --------------------~--> Make a clean sweep of pop-up ads. Yahoo! Companion Toolbar. Now with Pop-Up Blocker. Get it for free! http://us.click.yahoo.com/L5YrjA/eSIIAA/yQLSAA/kGEolB/TM --------------------------------------------------------------------~-> 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 Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/