Re: [Axapta-Knowledge-Village] Dynamics Login Problem from Client Machine.

2009-07-22 Thread kristanto surjadi
Have you point your Ax Server and Ax Client configuration to the correct Application and database?   --- On Wed, 7/22/09, ddin_soft wrote: From: ddin_soft Subject: [Axapta-Knowledge-Village] Dynamics Login Problem from Client Machine. To: Axapta-Knowledge-Village@yahoogroups.com Date: Wednes

Re: [Axapta-Knowledge-Village] AX concurrent users

2009-06-06 Thread kristanto surjadi
I believe it is 5 concurrent user per 1 application instance, therefore 5 concurrent user for both companies.   --- On Thu, 6/4/09, Ax Consultant wrote: From: Ax Consultant Subject: [Axapta-Knowledge-Village] AX concurrent users To: Axapta-Knowledge-Village@yahoogroups.com Date: Thursday, Ju

Re: [Axapta-Knowledge-Village] Need Urgent Help!

2009-05-27 Thread kristanto surjadi
Datasource "TimeSheet" has the following properties: Table: DailyTimeSheet JoinSource: EmploymentInformati on LinkType: OuterJoin   --> since the linkType is OuterJoin, Records in EmplTable that have no related records in TimeSheet table will still be diplayed. If you want to limit the EmplTable

Re: [Axapta-Knowledge-Village] DataAreaId / Company ID

2009-05-21 Thread kristanto surjadi
I dont think that would be a problem. Increase the size from the extended data type.   Regards,   Kris --- On Thu, 5/21/09, yifath1 wrote: From: yifath1 Subject: [Axapta-Knowledge-Village] DataAreaId / Company ID To: Axapta-Knowledge-Village@yahoogroups.com Date: Thursday, May 21, 2009, 8:16

Re: [Axapta-Knowledge-Village] An astonishingly basic, newbie question

2009-05-04 Thread kristanto surjadi
Have you set the address format for the country of your client? You need to define address formating for each of your client country. --- On Mon, 5/4/09, gor29cos wrote: From: gor29cos Subject: [Axapta-Knowledge-Village] An astonishingly basic, newbie question To: Axapta-Knowledge-Village@yah

Re: [Axapta-Knowledge-Village] Report Reference in Navigation Pane.

2009-04-15 Thread kristanto surjadi
Assign the report to an menu item type output and add that menu item to the menu you wish it to appears.   PS: Khalil, I suggest you to take MIcrosoft Dynamics Ax development course. Or buy and read a Dynamics Ax development books (that includes MorphX and x++). It surely will help you with this

Re: [Axapta-Knowledge-Village] Can't see element.var in form button method?

2009-04-15 Thread kristanto surjadi
Hi Altgrep,   use:   if(elementShow) info("test") ;   in the debug if you want to watch the value you need to put element,elementShow in the watch window (and in the watch window only). The watch window need the extra "element." because the elementShow variable is declared on the class declarati

Re: [Axapta-Knowledge-Village] Ranges in Queries...

2009-04-15 Thread kristanto surjadi
Well I think it depends on the situation you have. When you are using a query with ranges you have defined and build in AOT as data source you can simply use find range on those fields.   I ussually use the addRange when I am using a coded query and need to add range (one time) and used findOrCre

RE: [Axapta-Knowledge-Village] Contact Person Name in SO Packing Slip.

2009-04-15 Thread kristanto surjadi
Or a more simple solution, is to hire an ax developer    --- On Wed, 4/15/09, James Flavell wrote: From: James Flavell Subject: RE: [Axapta-Knowledge-Village] Contact Person Name in SO Packing Slip. To: Axapta-Knowledge-Village@yahoogroups.com Date: Wednesday, April 15, 2009, 12:41 PM

Re: [Axapta-Knowledge-Village] New Hotfix methodology

2008-12-08 Thread kristanto surjadi
Hi Andre,   Yes it is not convinient, but you can try to work around it. Apply the hotfix to a standard ax, then export to xpo all objects that are affected by the hotfix (it is ussually stated in hotfix document). Then import the xpo to your development/production environment.   Regards,   Kri

Re: [Axapta-Knowledge-Village] Filtering records for report

2008-07-03 Thread kristanto surjadi
Hi Kristanto Surjadi,   Thanks for the reply.   Yes the Datasource property of MenuItem Button is set to SparesHeader. Autojoin property of the report is set to Yes.   Still it is printing all the records.   Thanks and regards   Murugan --- On Thu, 7/3/08, kristanto surjadi wrote: From: krist

Re: [Axapta-Knowledge-Village] Filtering records for report

2008-07-02 Thread kristanto surjadi
Dear Murugan,   Check on the MenuItemButton on the form that print your reports. See if you have set the "Data Source" properties with SparesHeader. And check the AutoJoin property of the report.     Regards,       Kristanto Surjadi --- On Tue, 7/1/08, sm_murugan <[EMAIL PROT

Re: [Axapta-Knowledge-Village] Report error

2008-07-01 Thread kristanto surjadi
Just add it to the batch processing and set the recurrence. --- On Tue, 7/1/08, asit nayak <[EMAIL PROTECTED]> wrote: From: asit nayak <[EMAIL PROTECTED]> Subject: [Axapta-Knowledge-Village] Report error To: [EMAIL PROTECTED], [EMAIL PROTECTED], [EMAIL PROTECTED], axapta-knowledge-village@yahoo

Re: [Axapta-Knowledge-Village] PO in AX 3.0

2008-05-28 Thread kristanto surjadi
Just add a code in the form setting the PurchLine_ds.allowedit(false) when the active PurchTable is already a Purchase Order. [EMAIL PROTECTED] wrote: Dear, Is it possible that after approving the PO by changing it from "Request" to "Purchase Order" that the PO lines c

Re: [Axapta-Knowledge-Village] Partial Invoice

2008-05-25 Thread kristanto surjadi
Axapta has partial invoicing as standard fuctionality. You can partial invoice either on SO or PO. Abdullah Munzer Fawzi Al-Nunu <[EMAIL PROTECTED]> wrote: Dear friends, Is there any functionality in Axapta that support Partial Invoicing Regards Best regards, Abdullah

Re: [Axapta-Knowledge-Village] URGENT: Layers in AX

2008-05-14 Thread kristanto surjadi
We can not do that. That is not what layers in Ax do. If you modified a form/report then the modification will affect all user that has security access to the particular form/report. Ax Consultant <[EMAIL PROTECTED]> wrote: Hi , Can we add access restriction on Layers? li

Re: [Axapta-Knowledge-Village] Manadatory fields

2008-05-12 Thread kristanto surjadi
There are several ways to do that: 1. The first way is to add code at the form level, on the method modified at "depreciation" field in the form datasource: if(depreciation == "consuption") { table_ds.object(fieldnum(table, field)).mandatory(true); } else {

[Axapta-Knowledge-Village] Re: Encryption used by Ax3.0?

2007-06-14 Thread Kristanto Surjadi
Hi james, Ax3.0 use the Dictionary.buildPassword to encrypt the user password. However the class has no decrytion method :D . if you're planning to use it to encrypt your customer credit card number the problem you'll face is once you encrpyt the numbers you can't decrypt them to their or

Re: [Axapta-Knowledge-Village] How to bring AX Reports to Enterprise portal

2007-02-28 Thread kristanto surjadi
hi Naushad, i dont know wheter you are using ax 3.0, or 4.0. However in ax 3.0 it is posible to use windows reports in enterprise portal. You dont have to recreate the report. Just the add the menu item for the report to your webform. Regards, Kris kamalakannan <[EMAIL PROTECTE

Re: [Axapta-Knowledge-Village] Jobs disappear from batch list

2007-01-26 Thread kristanto surjadi
What do you mean with disappear? Have you try to inquiry the Batch List form using different status? At the top left of Basic -> Inquiry -> Batch List form you have a show status combo box, have you try to inquiry the form with "Ended" status. The status of a job that successfully execut

RE: [Axapta-Knowledge-Village] Table browser without X++ license code

2007-01-22 Thread kristanto surjadi
Dear James, Though your customer do not have x++ license, i believe you have x++ license. Therefore you can create them a simple form that lists all the table in axapta and a button to browse the selected table using Dictionary and systablebrowser class. You can try the xpo i've sent you. I ho