RE: [development-axapta] Re: Starting X++

2005-08-15 Thread Girish Bhatkal
I would suggest that you try to find some very good suggestions from the earlier messages in this group. Earlier too many people had asked and have received suggestions. In some of the mails there are also links for some sites from which you can download the documents. One of the sites is

RE: [development-axapta] Error: The voucher series 'Acco_41' is not attached to a posting journal

2005-07-21 Thread Girish Bhatkal
Hi Devinder, Go to General ledger / setup/ journals/ journal name. here you create a line and attach the voucher series 'Acco_41'. Now click the create journal button and the problem will be solved. Good luck, Cheers, Girish -Original Message- From:

RE: [development-axapta] AOS : user remain online

2005-06-03 Thread Girish Bhatkal
I have also observed this at one of our clients end. I think when the system is connected using thin client and when the system is not used for some time and the monitor turns off, during this stage the client also closes down but you will see that the client is still shown online. You need to

RE: [development-axapta] A question about aos and thin client

2005-05-17 Thread Girish Bhatkal
In case of 3 tier clients the AOS setting is to be done first and then the set configuration has to be selected from configuration utility/client/connect settings/settings/ -Original Message- From: development-axapta@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Cenk Ince

RE: YNT: [development-axapta] SalesFormLetter_invoice from salespackingslipfor.

2005-03-24 Thread Girish Bhatkal
Hi Cenk, I am not sure if the below is the complete solution which you are looking for. I had sometime back had the same requirement (but for purchase invoicing) for a client and here is what is suggested and created. Their requirement was that they wanted to invoice by delivery note

RE: [development-axapta] Select where with a filter

2005-03-14 Thread Girish Bhatkal
If you write withing anything within ' ' then it will assume it to be an and you cannot get to choose wildcard entry. So you need to check for the substring. If you are using the while select then with that statement you cannot use to check substring. You could write a while statement and

RE: [development-axapta] Changecompany

2005-03-07 Thread Girish Bhatkal
Matt, You might have missed to assign the table as null (after the company change). Else this should work. Girish -Original Message- From: Leberbauer, Herbert - News [mailto:[EMAIL PROTECTED] Sent: 07 March 2005 09:57 To: development-axapta@yahoogroups.com Subject: AW:

RE: [development-axapta] Changecompany

2005-03-07 Thread Girish Bhatkal
Hi Matt, Just before ttsbegin; include the line to assign the table to null. changeCompany('RDS') { debitNoteReasonCodes = null; ttsbegin; .. } cheers, Girish -Original Message- From: Matt Benic [mailto:[EMAIL PROTECTED] Sent: 07 March 2005 12:39 To:

RE: [development-axapta] restore the deleted Objects from the AOT

2005-02-23 Thread Girish Bhatkal
If you have not logged off after deleting the objects then you can restore the deleted objects from the recycle bin available in the tool bar. But if you exit Axapta after deleting the objected then you cannot get back the deleted objects. Cheers, Girish -Original Message- From:

RE: [development-axapta] Has any one ever built a function in axapta for Working days?

2005-02-17 Thread Girish Bhatkal
I am not sure if you are looking for this function as Axapta does have a working days calendar which can be set in Basic/Calendar. This calendar is used in work centre group settings. If you want to use the working date/time set in the above calendar then you could copy and use some of the

RE: [development-axapta] Text on Report

2005-02-03 Thread Girish Bhatkal
(U.P.) Phone :- +91-120-2520414 - Original Message - From: Girish Bhatkal To: development-axapta@yahoogroups.com Sent: Monday, January 31, 2005 6:26 PM Subject: RE: [development-axapta] Text on Report I am not sure if you want to display some texts or you want to display

RE: [development-axapta] infolog link to an object

2005-02-03 Thread Girish Bhatkal
Are you sure you have data in the trade agreement? -Original Message- From: Shruti [mailto:[EMAIL PROTECTED] Sent: 01 February 2005 09:46 To: development-axapta@yahoogroups.com Subject: Re: [development-axapta] infolog link to an object Hi I tried out this code for several items

RE: [development-axapta] Text on Report

2005-01-31 Thread Girish Bhatkal
I am not sure if you want to display some texts or you want to display the records from the table ? If you are trying to display the records from the table with multiple lines then this way of arranging the fields will not help. Its like you want to display the records in the grid vertically.

RE: [development-axapta] Active Vs Link Active, table_ds.refresh(), table_ds.executequery()

2004-12-23 Thread Girish Bhatkal
i have put my comments below. Cheers, Girish -Original Message- From: Padmaja Iyingar [mailto:[EMAIL PROTECTED] Sent: 23 December 2004 04:34 To: development-axapta@yahoogroups.com Cc: Axapta-Knowledge-Village@yahoogroups.com Subject: [development-axapta] Active Vs Link Active,

RE: [development-axapta] How to save Query ranges in autoreport

2004-12-16 Thread Girish Bhatkal
I don't completely understand the problem. If you save the query ranges then later stage if you want to re-use any of the saved query range then you can see that these are listed when you select the list (select query). Remember that the settings are set against the user. So every individual

RE: [development-axapta] is there some differences between delete()and dodelete().Thank you.

2004-12-16 Thread Girish Bhatkal
DoDelete is used when you don't want to use the delete method written on the Table. If you use Delete then first the delete method on the Datasource is run then the delete method on the table is run and finally the record is deleted. In short DoDelete forcefully deletes the record.

RE: [development-axapta] Re: Is there a system table in SQL SERVER which stores the current date?

2004-12-16 Thread Girish Bhatkal
Use systemDateGet(); to get the server (on which the application is installed) date. _ From: maipian_chen [mailto:[EMAIL PROTECTED] Sent: 16 December 2004 02:20 To: [EMAIL PROTECTED] Subject: [development-axapta] Re: Is there a system table in SQL SERVER which stores the current

RE: [development-axapta] Installing Axapta

2004-12-16 Thread Girish Bhatkal
You can follows the steps for installation which are provided on Axapta CD itself. Its very straight forward. Also read the help which is available on the CD. _ From: Goutam Mondal [mailto:[EMAIL PROTECTED] Sent: 16 December 2004 11:03 To: [EMAIL PROTECTED] Subject:

RE: [development-axapta] Default field from InventTable to Purchase Line

2004-12-16 Thread Girish Bhatkal
When you select the Item the it first calls the InitFromInventTable method on the PurchLine table. This in turn calls the purchLineType.initFromInventTable method. Because of the performance issue this method is written on the table. In case if we want to use the same method of

FW: Undeliverable: RE: [development-axapta] Re: Is there a system table in SQL SERVER which stores the current date?

2004-12-16 Thread Girish Bhatkal
To: Girish Bhatkal Subject: Undeliverable: RE: [development-axapta] Re: Is there a system table in SQL SERVER which stores the current date? Your message To: [EMAIL PROTECTED] Subject: RE: [development-axapta] Re: Is there a system table in SQL SERVER which stores the current date? Sent: Thu

RE: [development-axapta] Default field from InventTable to Purchase Line

2004-12-16 Thread Girish Bhatkal
_ From: Danny Gaethofs [mailto:[EMAIL PROTECTED] Sent: 16 December 2004 14:55 To: [EMAIL PROTECTED] Subject: RE: [development-axapta] Default field from InventTable to Purchase Line Dear Girish, What exactly do you mean to say with your last sentence? regards, Danny --- Girish Bhatkal [EMAIL

RE: [development-axapta] system date

2004-12-10 Thread Girish Bhatkal
You need to select the function depending on which date you want. systemDateGet() // get the date from the server where the application is installed today() // this will get the local system date cheers, Girish _ From: Steeve Gilbert [mailto:[EMAIL PROTECTED] Sent:

RE: [development-axapta] Invent Dimension ID

2004-12-09 Thread Girish Bhatkal
HI Andre, This InventDimId comes from InventDim table. This id is the reference to a particular combination of inventory dimensions. If you check any of the forms which uses the Inventory dimension we have the InventDim table which is then linked to the main table through the

RE: [development-axapta] Beginner help

2004-12-09 Thread Girish Bhatkal
Hi Pete, Now the Technet does not have the library where it maintained the Documents. I see that we have been asked to refer the Microsoft site (link provided on Technet). Earlier I did downloaded a few documents which might be of some help to you , I am forwarding the same to you on

RE: [development-axapta] A call to South African Axapta technical users

2004-12-07 Thread Girish Bhatkal
Hi Matt, I am working in UK. Earlier I used to check technet and then partnerguide . but things there keeps on changing . Then we also have MBS online but with the busy schedule of ours its very difficult to check the things happening in all these sites and usergroups. Since

RE: [development-axapta] string manipulation

2004-12-07 Thread Girish Bhatkal
Check AOT/ System documentation/Functions. Here you have the list of all the functions available in axapta. Ex : mytext --- left(string,2) -- my solution : substr(mytext,1,2); Also nice examples are provided (double click the function to get the help). Cheers, Girish _

RE: [development-axapta] packing slip error

2004-12-03 Thread Girish Bhatkal
I am not sure which line you missed during the creation of the purchase line. Along with the purchase qty a few other qty fields also needs to be updated. You could use the standard methods to update these fields. Like : purchline.PurchQty = Qty; // qty is the purchase qty

RE: [development-axapta] When inventory is updated for salesorder

2004-12-01 Thread Girish Bhatkal
If you post the packing slip the inventory transactions postings are done. If you post the invoice the financial transaction postings are done. If you post the invoice without posting the packing slip then first the inventory posting takes place and then the financial posting. Hope this

RE: [development-axapta] Advanced Finance V3.0 Exam

2004-12-01 Thread Girish Bhatkal
Most of the questions were about setups. Ex: What is the purpose of the search name specified on ledger account - Ans : to enable the system to fill in the account number in a journal when the search name is entered. Dimensions are mostly used for ? Ans : generating financial

RE: [development-axapta] When inventory is updated for salesorder

2004-12-01 Thread Girish Bhatkal
? Cenk NCE ERP Teknik Danman (Microsoft Axapta) ERP Technical Consultant (Microsoft Axapta) Data Sistem Genel Otomasyon Sanayi ve Ticaret A.S www.datasistem.com.tr Tel : 0232 463 16 63 (Dah: 128) -Original Message- From: Girish Bhatkal [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 01

RE: [development-axapta] SalesParmLine and SalesParmTable

2004-11-24 Thread Girish Bhatkal
Matt, Whenever u try to do a Sales order posting (it might be delivery note, invoice etc) the system will pick up the records from the sales lines ,depending on the criteria used for posting and stores in these 2 tables (used on form saleseditlines), which you have mentioned. I am not

[development-axapta] disable fields depending upon the inventory Dimension

2004-11-19 Thread Girish Bhatkal
Hi All, I am trying to create a new journal posting (similar to the Inventory journal posting (profit/loss)). In the journals lines we see that when and ItemId is selected, depending upon the dimension group settings for this Item, the warehouse dimensions are activated and

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] ordered status not changed

2004-11-16 Thread Girish Bhatkal
Hi All, Today I saw a very peculiar thing. When I looked for the OnHand for a particular Item I found that it has 250 Qty with receipt status Ordered. But when I checked this PO it had this status as delivered. Also when I checked for the transactions for this Item and for the selected

RE: [development-axapta] FW: User configuration utility settings changes

2004-11-15 Thread Girish Bhatkal
=XXX If you use this set-up - then the users only need to setup username and company-id on the short-cut. Regards, Karsten Wollesen Clausen Thy Data Center Development A/S From: Girish Bhatkal [mailto:[EMAIL PROTECTED] Sent: 15. november 2004 13:38 To: Axapta

RE: [development-axapta] FW: User configuration utility settings changes

2004-11-15 Thread Girish Bhatkal
? Regards, Matt Benic Axapta Developer UTi Sun Couriers Division The universal aptitude for ineptitude makes any human accomplishment an incredible miracle. - Col. John P. Stapp -Original Message- From: Girish Bhatkal [mailto:[EMAIL PROTECTED] Sent: 15 November 2004 03:12 PM To: [EMAIL

RE: [development-axapta] FW: User configuration utility settings changes

2004-11-15 Thread Girish Bhatkal
- From: Girish Bhatkal [mailto:[EMAIL PROTECTED] Sent: 15 November 2004 03:42 PM To: [EMAIL PROTECTED] Subject: RE: [development-axapta] FW: User configuration utility settings changes Hi Matt, Each user connects to the terminal server from their own machines. The users are using Macintosh

[development-axapta] User configuration utility settings changes

2004-11-11 Thread Girish Bhatkal
Hi All, At our client site , all the users connect to Axapta using the Terminal server. The users after log on in the Terminal server using their domain userid and password,. Had set on the Axapta configuration utility their UserId and Company. When ever they enter the terminal

RE: [development-axapta] Lookup method, how can I do a different lookup using another table

2004-11-11 Thread Girish Bhatkal
First you select the form field which needs the lookup and set in the properties AutoDeclaration = Yes. Now let us say the field name on the form is TBSCustMerchandise_MerchandisedId. Now you go to the datasource and on the field Merchandised Id you write the lookup public void

RE: [development-axapta] Best Practice in Axapta to ensure quality AXAPTA based ERP Solutions

2004-11-10 Thread Girish Bhatkal
Hi Anil, The best way is to check in the developer's guide (see for programming standards). Also you can check for some good documents on the technet. If you want to see how the relations are set in the datasource and all then the best place to see are the tutorials. Rest of the

RE: [development-axapta] User Tables

2004-11-09 Thread Girish Bhatkal
This table cannot be modified, as this is an system table. If you still want to see the records using the browser then you can do the same from the AOT/System documentation /tables / -Original Message- From: hilda cabrejos [mailto:[EMAIL PROTECTED] Sent: 09 November 2004 19:12 To:

RE: [development-axapta] Duplicate voucher Numbers

2004-11-04 Thread Girish Bhatkal
], Girish Bhatkal [EMAIL PROTECTED] wrote: Hi , We have Axapta version 3 SP2 and a fix is provided for SP3 HF30SP3_008. Corrections made for: With this HotFix installed a user can't draw a journal number without either saving or delete it. This correction prevents the system from assigning 2

RE: AW: [development-axapta] Duplicate voucher Numbers

2004-10-30 Thread Girish Bhatkal
, I have given up any hope that the problem will ever be fixed. to answer your question..no surprises here..the bug is still there regards harsh -Original Message- From: Girish Bhatkal [mailto:[EMAIL PROTECTED] Sent: Fri 29/10/2004 3:28 a.m. To: Axapta developers Cc: Subject

RE: [development-axapta] SQL Statement

2004-10-29 Thread Girish Bhatkal
SELECT * FROM Table where Table.Field1 = 971336 AND DATAAREAID = ' + company + ' + UPDATE Table set Field2 = 'EXPORTED' where Field1 = 971336; In this case the system will select the Table named Table where the field Field is equal to 971336 and then update the Field named Field2 with

RE: [development-axapta] Duplicate voucher Numbers

2004-10-29 Thread Girish Bhatkal
] Duplicate voucher Numbers hi Girish The number sequence bug is in existance since Version 2.0, I have given up any hope that the problem will ever be fixed. to answer your question..no surprises here..the bug is still there regards harsh -Original Message- From: Girish Bhatkal

RE: [development-axapta] Is it possible to change records posted?

2004-10-28 Thread Girish Bhatkal

RE: [development-axapta] Posting Errors !

2004-10-27 Thread Girish Bhatkal
Hi Jack, When the General journal lines are created through axapta it also inserts/updates some other tables. So its not easy to directly import the lines and then post. When I had got our client's GL data migration I had got the journal created manually and the lines using a data

RE: [development-axapta] New Sales Order from Customers

2004-10-26 Thread Girish Bhatkal
Hi Rick, You will have to write the function in order to create the sales order and call the function from the menu button. In this case only the order header will be created as ItemId is required to create the sales lines. The below code will create the sales order NumberSeq

RE: [development-axapta] New Sales Order from Customers

2004-10-26 Thread Girish Bhatkal
Sorry in the below code a small change, ttsbegin; should be written before newSalesId2 = numberSeq.num(); _ From: Girish Bhatkal [mailto:[EMAIL PROTECTED] Sent: 26 October 2004 08:44 To: [EMAIL PROTECTED] Subject: RE: [development-axapta] New Sales Order from Customers

RE: [development-axapta] Available Physical (Sales Order)

2004-10-14 Thread Girish Bhatkal
Hi Rick, you can write a display method return InventSum::find(saesLine.itemid,salesline.inventDimId); if you write this method on the salesline table then you need to write return InventSum::find(this.itemid,this.inventDimId); hope this will help. cheers, girish -Original

RE: [development-axapta] Available Physical (Sales Order)

2004-10-14 Thread Girish Bhatkal
sorry, i missed to return the field you should write return InventSum::find(salesLine.itemid,salesline.inventDimId).availphysical; -Original Message- From: Girish Bhatkal [mailto:[EMAIL PROTECTED] Sent: 14 October 2004 15:05 To: [EMAIL PROTECTED] Subject: RE: [development

RE: [development-axapta] Switching security profiles

2004-10-12 Thread Girish Bhatkal
Hi Matt, apart from exporting and then importing the permissions on the usergroups (as u have mentioned) i dont think there are any other ways of switching because on one usergroup , for the domain, you can set only one set of permissions. cheers, Girish -Original Message- From:

RE: [development-axapta] Import from excel for invoicing

2004-10-11 Thread Girish Bhatkal
Hi Nitesh, Import function like the one you are doing should be done when we need to import data in the tables which usually dont need any other functions to run (Like BOM tables). When you want to create the Sales order from the excel data then it is better if you just import some of the

RE: [development-axapta] How to get the current logon user information ?

2004-09-10 Thread Girish Bhatkal
an point to be added. It depens on what date you require you should use the function. if you want the system date then use systemdateget() and if you want the computer (client) date then use today(). [Girish Bhatkal] -Original Message- From: Mikael Dalgård (GPV Group) [mailto:[EMAIL

RE: [development-axapta] How to set range on particular dimension

2004-09-08 Thread Girish Bhatkal
you can use Table.Dimension[2] == value or Table.Dimension[1] == value select the array value depending on which dimension u want to use. hope this is what u r looking for. -Original Message- From: Arief Darmawan [mailto:[EMAIL PROTECTED] Sent: 08 September 2004 04:27 To: [EMAIL

RE: [development-axapta] Counting bug in 3.00 SP3

2004-09-01 Thread Girish Bhatkal
i too had earlier found this problem. eventhough all the counting journals were posted i got a message when posting the item from other journals that the posting cannot be done since the item is locked in the counting journal. i found that sometimes even after posting of the counting journal

RE: [development-axapta] Very urgent : Printing reports to a local printer

2004-08-31 Thread Girish Bhatkal
in the dialog form where you select which financial report you want to generate there is an options button. upon selecting this button you will get the option to select the printer. you select the printer and its path here. This function of selecting the printer is available for all the

RE: [development-axapta] Virtual Company - Chart of Accounts

2004-08-31 Thread Girish Bhatkal
in the earlier post you had requested to explain how to setup a virtual company, did you set it up. This needs to be setup before the data is entered in any of the table which you want to consider to share. But there could be some other ways too to copy 1. create the COA in one company and

RE: [development-axapta] Refresh Form

2004-08-26 Thread Girish Bhatkal
suppose the you are on purchTable form and the changes are done in purchTable then you should write purchTable_ds.reread(); purchTable_ds.refresh(); -Original Message- From: Alfonso Collados Arroyo [mailto:[EMAIL PROTECTED] Sent: 26 August 2004 09:59 To: 'Development-Axapta

RE: [development-axapta] Long text field

2004-08-17 Thread Girish Bhatkal
MEMO (in the length) , for this the field length is unlimited. but you cannot use this field in select statements and you cannot do free text search. This also affects the performance during fetching of the data. -Original Message- From: geerties [mailto:[EMAIL PROTECTED] Sent: 17

RE: [development-axapta] Number of AOS on One Server

2004-08-12 Thread Girish Bhatkal
the question on the subject is No of AOS on One server but your description asks for no of instances. On On server you can have One AOS. On One AOS you can have multiple instances. -Original Message- From: axap2004 [mailto:[EMAIL PROTECTED] Sent: 12 August 2004 16:29 To: [EMAIL

RE: [development-axapta] Beginner's Queries on Axapta Development

2004-08-09 Thread Girish Bhatkal
Hi Maruf, there are seperate developments layers the licence of which has to be bought. if you select sys and login then you will be in user (usr) layer as you will not be having the licence code for sys layer. you can make modifications in the usr layer if you have not bought the

RE: [development-axapta] AOS Exam

2004-08-05 Thread Girish Bhatkal
Hi harry, some documents in the technet like Active Directory integration navision axapta web deployment client documents on confgurations etc.. these documents could be of only some help. you will also need good knowledge of system administration (firewalls etc..) along with aos knowledge.

RE: [development-axapta] Validation on insert and update

2004-07-30 Thread Girish Bhatkal
why don't you use the validatewrite method on the table. or field level use the validatefield method on the table. -Original Message- From: Matt Benic [mailto:[EMAIL PROTECTED] Sent: 30 July 2004 09:33 To: Axapta Dev Subject: [development-axapta] Validation on insert and update

[development-axapta] insert records SQL table outside axapta

2004-07-26 Thread Girish Bhatkal
Hi everyone, whenever axapta needed to extract data from an SQL (on which axapta is not running) then we can get the data using the process of 1. initialise the connection to the external database (connect using ODBC) 2. run the SQL statement and get the executed query data in the resultset

RE: [development-axapta] Re: insert records SQL table outside axapta

2004-07-26 Thread Girish Bhatkal
); --- In [EMAIL PROTECTED], Girish Bhatkal [EMAIL PROTECTED] wrote: Hi everyone, whenever axapta needed to extract data from an SQL (on which axapta is not running) then we can get the data using the process of 1. initialise the connection to the external database (connect using ODBC

RE: [development-axapta] Re: insert records SQL table outside axapta

2004-07-26 Thread Girish Bhatkal
create a loop but this is nonsense and will take forever and generate too much net / db traffic. //Lars -Original Message- From: Girish Bhatkal [mailto:[EMAIL PROTECTED] Sent: 26. juli 2004 12:58 To: [EMAIL PROTECTED] Subject: RE: [development-axapta] Re: insert records SQL table

RE: [development-axapta] identify Inventory model group

2004-07-23 Thread Girish Bhatkal
by InventMovement classes (mostly) Regards harry _ From: Girish Bhatkal [mailto:[EMAIL PROTECTED] Sent: Friday, 23 July 2004 2:47 a.m. To: Axapta developers Subject: [development-axapta] identify Inventory model group Hi Everybody, We have a peculiar situation. we dont want to do

[development-axapta] identify Inventory model group

2004-07-22 Thread Girish Bhatkal
Hi Everybody, We have a peculiar situation. we dont want to do the financial postings when receiving the Items from the PO, for certain vendors. These vendors are actually Customers who send Computers for repair at the site but since its not the clients property we want to stop the financial

RE: [development-axapta] Comments-Insert Header

2004-07-21 Thread Girish Bhatkal
you can download documents from the technet -Original Message- From: kbi kbi [mailto:[EMAIL PROTECTED] Sent: 21 July 2004 07:34 To: [EMAIL PROTECTED] Subject: Re: [development-axapta] Comments-Insert Header Hello every body, I am a new member of Axapta Dev. Does anybody

RE: [development-axapta] Display temporary inventTable in form InventTable

2004-07-16 Thread Girish Bhatkal
for displaying in the InventTable form along with InventTable you should also insert record in the tables InventTableModule (3 records one for Sales, purch and Invent) and InventItemLocation (here you can create a line for the Item and have the InventdimId as Axapta ) . -Original

RE: [development-axapta] How to protect our source code

2004-07-06 Thread Girish Bhatkal
The only way to hide the modules is using licence. But in your case you want to hide the changes made in the usr layer, which i think is not possible. in which layer would the other contractors be making the changes? if the changes made by your is not going to impact any changes done by them

RE: [development-axapta] Non-interactive web-deployment

2004-07-05 Thread Girish Bhatkal
Hi Kim, now the emails delivered through the yahoo groups are sent after removing the attachments. so if there is some points in the attachment then you may have to copy it in the mail itself . -Original Message- From: Kim Truelsen (MICROSOFT BUSINESS SOLUTIONS) [mailto:[EMAIL

RE: [development-axapta] Initial values in SalesLine.

2004-07-02 Thread Girish Bhatkal
Hi Jens, All the methods in axapta are given an appropriate name and are available in the appropriate place. In all the tables if you need to insert a list of field records from another table then go to the table (in your case salesline) and then check for initfrom... here you have init

RE: [development-axapta] Finding User Group of a user

2004-06-30 Thread Girish Bhatkal
you can find it is UserGroupList . here you have the userId and groupid field using which you can find the users in the usergroup. -Original Message- From: ÿddbrahim Kÿfdlÿfdÿe7arslan [mailto:[EMAIL PROTECTED] Sent: 29 June 2004 17:12 To: [EMAIL PROTECTED] Subject:

RE: [development-axapta] Goto the Main Table

2004-06-28 Thread Girish Bhatkal
the salesId refers to the field in salesTable and on the table the formRef is SalesTable form. Now if you want your customised form to be viewed then you need to change the FormRef to your new form. cheers, Girish -Original Message- From: Özgür Genç [mailto:[EMAIL PROTECTED] Sent:

[development-axapta] number sequence setting

2004-06-28 Thread Girish Bhatkal
Hi, i want to understand how should we decide the setup of an number sequence (number sequence form/ general tab/ setup. i find that even when the continous is selected , sometimes a previously used number is repeated. in which case should we set the cleanup what should be an ideal

[development-axapta] change decimals for price in live envt

2004-06-22 Thread Girish Bhatkal
Hi guys, our client wants to allow upto 3 decimals when entering the purchase price. i know that i can do the same by making the change on the extended data type(EDT). should i make the No of decimals to 3 on EDT PurchPrice or i also need to change it on PriceCur or amountCur or Amount. our

RE: [development-axapta] Axapta web application

2004-06-11 Thread Girish Bhatkal
Nachricht- Von: Girish Bhatkal [mailto:[EMAIL PROTECTED] Gesendet: Donnerstag, 10. Juni 2004 10:18 An: [EMAIL PROTECTED] Betreff: RE: [development-axapta] Axapta web application Hi James, i know about RLS and domains. and here the company i mean by Axapta companies. When we are running

RE: [development-axapta] RE: Exporting to Excel from Axapta

2004-06-11 Thread Girish Bhatkal
have done it, but i only get all the record of the table. Can i get the column description too? Thanks Date: Thu, 10 Jun 2004 11:07:10 +0100 From: Girish Bhatkal [EMAIL PROTECTED] Subject: RE: Exporting to Excel from Axapta Hi Joy, you can definitely do it directly from axapta

RE: [development-axapta] Exporting to Excel from Axapta

2004-06-10 Thread Girish Bhatkal
Hi Joy, you can definitely do it directly from axapta. there are 2 ways a. you can write a function to directly get the records in an excel. 2. use the stand export function : when you export select the file type as Comma. then open an excel sheet and then open the file which you had saved.

[development-axapta] Axapta web application

2004-06-09 Thread Girish Bhatkal
Hi Guys, we were planning to build a new repair module (for repair business) on axapta web. here we will not need any of the standard axapta roles. How can we control the records by company. Like if we have web users and some of the users will be working in multiple companies and some only

RE: [development-axapta] Accessing Excel from code

2004-05-28 Thread Girish Bhatkal
Hi Anil, the easiest thing you can do is after importing the inventtable records is, write a job and write the following to update the other related records. while select InventTable { select InventTableModule where InventTableModule.ModuleType == ModuleInventPurchsales::Sales

RE: [development-axapta] Report run for all companies

2004-05-26 Thread Girish Bhatkal
--- Girish Bhatkal [EMAIL PROTECTED] wrote: you can send data though the following ways: 1. On the menuButton in the clicked method (Before super()) on the source form write { container contains; contains = ConIns(contains,1,QuotationId); // quotation id is the record you want

RE: [development-axapta] Regarding Data access in another form

2004-05-26 Thread Girish Bhatkal
] Regarding Data access in another form Thanks girish. By the way i didnt find any attachments u mentioned... Regards Akash --- Girish Bhatkal [EMAIL PROTECTED] wrote: you can send data though the following ways: 1. On the menuButton in the clicked method (Before super

RE: [development-axapta] Regarding Data access in another form

2004-05-25 Thread Girish Bhatkal
Hi Akash, there are a few ways you can achieve this a. if like in case of Item master when you open the customer item description form you get to see only the details entered for the Item, this is acheived by relations. b. you can pass an args from the source form and get the same in the

RE: [development-axapta] Regarding Data access in another form

2004-05-25 Thread Girish Bhatkal
. Regards Akash --- Girish Bhatkal [EMAIL PROTECTED] wrote: Hi Akash, there are a few ways you can achieve this a. if like in case of Item master when you open the customer item description form you get to see only the details entered for the Item, this is acheived by relations. b

RE: [development-axapta] Ageing report

2004-04-30 Thread Girish Bhatkal
report is processing -Original Message-From: Girish Bhatkal [mailto:[EMAIL PROTECTED]Sent: Friday, April 30, 2004 5:15 PMTo: [EMAIL PROTECTED]Subject: RE: [development-axapta] Ageing report Thanks, everyone, for the response. James, I had properly tak

[development-axapta] Ageing report

2004-04-29 Thread Girish Bhatkal
Hi, i was running the Customer ageing report (say for before 29/02/2004, with criteria transaction date) and found that the report does not display some of the transactions which were settled in march and april. Hence we are finding a difference in the total balance when compared to the

[development-axapta] what is OCR Line ?

2004-04-28 Thread Girish Bhatkal
Hi Guys, Can anyone tell me what's an OCRLine. During the posting of the purchase invoice, we find this field in the Setup tab of the form. I tried to find about it and understood that it is do something with bank reference. On the technet i found it to be Vendor PBS nr, but i don't know

RE: [development-axapta] what is OCR Line ?

2004-04-28 Thread Girish Bhatkal
vision; though academic research in the field continues, the focus on OCR has shifted to implementation of proven techniques. Best regards Mai-Britt From: Girish Bhatkal [mailto:[EMAIL PROTECTED] Sent: 28. april 2004 11:14To: Axapta developersSubject: [development

[development-axapta] Ageing report / customer transactions report

2004-04-28 Thread Girish Bhatkal
Hi, i was looking at the ageing report and found that this report does not include all the records specified in the selected period. I compared this report with the Customer transaction report (running for a specific transaction period) and found a few records missing. The total of the ageing

RE: [development-axapta] Re: SalesAutoCreate

2004-04-26 Thread Girish Bhatkal
Hi Sinn, What is the specific requirement, from where do you want to create the Sales order? if it is a new function then i would prefer to write a new class to create the SO and lines. cheers, Girish -Original Message-From: Deshpande, Harry [mailto:[EMAIL PROTECTED]Sent:

RE: [development-axapta] display method

2004-04-22 Thread Girish Bhatkal
Hi Steeve, i feel that the use of display is mainly to reduce the unnecessary adding of fields in the table (and hence increase the database size) , say for example if one table is used in many forms/reports and we need one particular field (which could be got from any other table with

RE: [development-axapta] More than 3 dimensions

2004-04-21 Thread Girish Bhatkal
Title: Message this is an extra modification which you have to made and you are not activiting anything , for which licence is required. So you may not need extra licence. cheers, Girish -Original Message-From: Aksnes Eva [mailto:[EMAIL PROTECTED]Sent: 20 April 2004 15:30To:

RE: [development-axapta] want to understand how to create a record in the table (SQL) by writti

2004-03-03 Thread Girish Bhatkal
Hi Jesper, thanks for the reply. the problem in this solution is that axapta is event driven and we have to run a job to import the data from the new table (created by external software). But the requirement is that as soon as the request is entered by Filemaker axapta has to pick the

[development-axapta] Printing the report directly on the assinged printer

2004-02-19 Thread Girish Bhatkal
Hi Guys, suppose we populate a field in the table with an IP address. Now if we print a particular report is it possible to directly have this report printed on this assigned printer (IP address specified). i would appreciate if anyone who knows about this could send me the code to write

RE: RE : [development-axapta] Printing the report directly on the assinged printer

2004-02-19 Thread Girish Bhatkal
Take care! Steeve -Message d'origine-De: Girish Bhatkal [mailto:[EMAIL PROTECTED] Envoyé: 19 février 2004 09:16À: [EMAIL PROTECTED]Objet: [development-axapta] Printing the report directly on the assinged printer Hi Guys, suppose we populate a field i

RE: [development-axapta] Terminal server

2004-02-17 Thread Girish Bhatkal
Hi harsh, in case of terminal servers there are 3 process. first the request is sent to the terminal server and then the terminal server is talking to the AOS and then AOS with the Database. there are a few ways you can increase the performance one is connect the people who are

RE: [development-axapta] Inventory transfer - Question

2004-01-28 Thread Girish Bhatkal
Hi aigie, during tranfer if the item is serial number controlled then you have to enter seperate lines. this functionality i believe is fine as if you don't enter the serial nos then how do the system know which serial nos has it transfered? If there is always a possiblity that you

  1   2   >