Re: [development-axapta] Dificulties in refreshing grid.

2010-06-16 Thread Agus Riyadi
Hi, This blog maybe can help you http://kashperuk.blogspot.com/2010/03/tutorial-reread-refresh-research.html Regards, Agus On Tue, Jun 15, 2010 at 5:29 PM, abhi_the_star abhi_the_s...@yahoo.comwrote: Hi, I am new to Axapta. I have creates a simple program in which, I have enter a text

Re: [development-axapta] Re: Integration with Axapta

2009-02-05 Thread Agus Riyadi
Hi, One of our client uses Ax 3.0 with Galaxy. However you said that you need it urgently, which seems that you have limited time to set it up. If you use Ax 4.0 + maybe you can use AIF. Best regards, Agus 2009/2/2 jesper.joergen...@bertelsmann.de Hi, if you are post 4.0 you should take

Re: [development-axapta] [ask] Dynamics Axapta 4 vs Dynamics Axapta 3 in Technical

2008-01-09 Thread Agus Riyadi
Hi, There is no change in standard programming. There are some new technical features that you can read in the What's new Ax4.0 technical document. Regards, Agus On Jan 9, 2008 3:58 PM, Rando [EMAIL PROTECTED] wrote: Dear All What is the diferent between Dynamics Axapta 4 and Dynamics

Re: [development-axapta] CommaIO

2007-11-05 Thread Agus Riyadi
Hi Paulina, The difference is that tutorial_stdBaseReport run on client (in which you have access to local folder) while the TaxWithHoldTrans is run on the server which you do not have access by default. To get access to the server directory, you must call assert() method of class that inherits

Re: [development-axapta] Service Unavailable in EP configuration

2007-10-16 Thread Agus Riyadi
Hi, There are a lot of possible things happen. Take a look at this to get the idea to solve : http://blogs.msdn.com/david.wang/archive/2005/08/29/HOWTO_Understand_and_Diagnose_an_AppPool_Crash.aspx I read that article and I have my EP works now. Hope that helps. Agus On 10/15/07, naushad

Re: [development-axapta] Re: str2date

2007-08-30 Thread Agus Riyadi
Hi, I think you need to create your own validation like : Str str1 = 31.04.2007; Date d = str2date(str1,123); Str str2 = date2str(tgl,123,2,2,2,2,4); Just compare if str1 is not the same as str2 then your string date is invald. Regards, Agus On 8/29/07, mlefoa [EMAIL PROTECTED]

Re: [development-axapta] No help is available for use of % operator

2007-05-23 Thread Agus Riyadi
Hi, I believe the help page is wrong. It must be *div* and *mod* operator instead. Regards, Agus On 5/22/07, MaryAnn Hand [EMAIL PROTECTED] wrote: Tabish, If you go to that link you sent me, and at the bottom of the page click on the link for Operator Precedence (that link is:

Re: [development-axapta] Business Connector

2007-05-09 Thread Agus Riyadi
Hi Daniel, I never use sql 2005 assembly but maybe you can try this : In what security context does your sql 2005 assembly works ? You can capture that with System.Security.Principal.WindowsIdentity.GetCurrent().Name() method. It must be in the security context of windows domain user registered

Re: [development-axapta] Re: NETBusinessConnector Crashes

2007-04-20 Thread Agus Riyadi
Hi , I also experienced the same. Cannot login to business connector from web application. Regards, Agus On 06 Mar 2007 01:43:52 -0800, Enocha Marasinghe [EMAIL PROTECTED] wrote: --- In development-axapta@yahoogroups.comdevelopment-axapta%40yahoogroups.com, mau.1000 [EMAIL PROTECTED]

Re: [development-axapta] ODBC AX4.0

2007-03-22 Thread Agus Riyadi
Hi Bernhard, You can connect to external database through ODBC. The authorization of the connection depend on the login access right that you define in the external database. So you need to create a login in the target database that has only read access and then use the login name for your odbc

Re: [development-axapta] Debugger error

2007-01-23 Thread Agus Riyadi
Hi, You should activate option Allow debugging of X++ code running on the server in the object server settings. It doesn't matter which SP you are using. Regards, Agus On 1/22/07, jquinteroz [EMAIL PROTECTED] wrote: Hi!: Normally, I work in 2tier. I have the following issue in 3-tier

Re: [development-axapta] Making User accounts

2007-01-23 Thread Agus Riyadi
Hi, You must specify permission per user group per domain. In your case, you should specify authorization of the user group in the domain you want, and the for the rest domain, you set permission set all to No access. Regards, Agus On 1/20/07, febinpc [EMAIL PROTECTED] wrote: Hi friends

Re: [development-axapta] MenuItem Name...

2006-06-01 Thread Agus Riyadi
Hi Riaz Put this code on trade agreements form FormRun fr; Args args; Str name; ; fr = element.args().caller(); args = fr.args(); name = args.menuItemName(); Regards, Agus On 6/1/06, shaik ahmed [EMAIL PROTECTED] wrote: Hi all, How to find out the menuitem name of the caller

Re: [development-axapta] ENUM Element

2006-04-26 Thread Agus Riyadi
Hi Mike You can get the enumid with enumnum function. If you want to get enum element value then assign it to an integer type then you get the number. Regards, Agus On 4/24/06, Mike Savage [EMAIL PROTECTED] wrote: Thanks Yavuz I was thinking more of how do I do it from within a class,

Re: [development-axapta] Export record to text file

2006-04-26 Thread Agus Riyadi
Hi Irwan, Take a loot at the CommaIo class documentation in AOT. Regards, Agus On 3/22/06, Irwan Mulia [EMAIL PROTECTED] wrote: Hi, How do we export record into text file ? Supposed I have table A; with 3 fields : field1,field2,field3 and I want to export with format :

Re: [development-axapta] ReportRun -- QueryRun

2006-03-29 Thread Agus Riyadi
: public int getmyvariable() { return(myvariable); } And go to the Datasources/query and created a new method : void method1() { //here I want to use following : ...=x.getmyvariable(); } Agus Riyadi [EMAIL PROTECTED] wrote: Could you please show your code and where you put the code

Re: [development-axapta] ReportRun -- QueryRun

2006-03-27 Thread Agus Riyadi
Hi, Not clear with your problem. Having an instance of a class means you can access its public method or properties. If no method available to access a variable then there are two ways : create a new method of the class or create a subclass and add a method on it. In case of system classes the

Re: [development-axapta] SalesInvoice report bug

2006-03-26 Thread Agus Riyadi
Hi Bruno, Which fix is it ? I experienced the same problem. Regards, Agus On 3/17/06, Bruno Max Sørensen [EMAIL PROTECTED] wrote: Hi Christoph MBS has a fix for this problem. Kind regards Bruno _ From: development-axapta@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf

Re: [development-axapta] Use of Maps

2006-03-23 Thread Agus Riyadi
Hi, Taken from documentation, map is used as replacement when we need to have same methods in two or more similar tables, like having method of a parent class which can be used by it subclasses in term of inheritance. AFAIK, table method can't be called from map. Agus On 3/22/06, axpdev

Re: [development-axapta] ledger settlement

2006-03-23 Thread Agus Riyadi
Hi Alex, There is relation of LedgerTrans to LedgerTransSettlement, Then LedgerTrans has relation to customer or vendor invoice journal. I think you can create query based on these relations. Agus On 3/23/06, axapta_soporte [EMAIL PROTECTED] wrote: Hi everybody! Is there a way to know,

[development-axapta] Re: Updating CustPackingSlipJour

2006-03-23 Thread Agus Riyadi
Hi, You can override CustPackingSlipJour.printJournal or Override clicked method of the menu button, add a code after super() Regards, Agus --- In development-axapta@yahoogroups.com, Malters [EMAIL PROTECTED] wrote: Dear All, When a Customer packing slip journal is printed i have to

[development-axapta] Backslash problem on key column

2006-02-20 Thread Agus Riyadi
Hi All, It seems that axapta has problem in recognizing backslash character for a column that is used as key field. A packingslipid with backslash character like 'abc\123' (packing slip id entry in PO) will cause problem in the queryrun. It will not be able to get the transaction

Re: [development-axapta] Re: query with or array field

2006-02-09 Thread Agus Riyadi
will correct me :) Regards Andrew Jones --- In development-axapta@yahoogroups.com, Agus Riyadi [EMAIL PROTECTED] wrote: Hi Solary, I sill haven't solved the problem. Thanks for your reply, but that won't work since the first and third parameter for strfmt will be blank because

Re: [development-axapta] Re: query with or array field

2006-02-06 Thread Agus Riyadi
'); Regards, --- In development-axapta@yahoogroups.com, Agus Riyadi [EMAIL PROTECTED] wrote: Dear All, There have been a lot of discussion about query with or, but I don't find one that address to array field. I have a query like this, which I need to change it to a query

[development-axapta] query with or array field

2006-01-30 Thread Agus Riyadi
Dear All, There have been a lot of discussion about query with or, but I don't find one that address to array field. I have a query like this, which I need to change it to a query object : select prodtable where prodtable.dimension[1] == 'admin' || prodtable.dimension[2] == 'fina'; I

[development-axapta] Re: How to automatically change the primary key of a table and all their foreign k

2006-01-12 Thread Agus Riyadi
Hi nicolas, Why don't you use the rename functionality from Axapta. You just right click on the primary key field in the form, select record info and click the rename button. Fill in your new primary key and then it take a while for axapta to 'cascade' the rename to all related tables.

[development-axapta] Re: Lookup

2005-06-27 Thread Agus Riyadi
); sysTableLookup.performFormLookup(); I think your second question can be solved with similar way. Regards, Agus Riyadi --- In development-axapta@yahoogroups.com, Cenk Ince [EMAIL PROTECTED] wrote: Hi all I have two questions about lookup, 1. Is it possible to Run Lookup on a query with two

[development-axapta] Re: SQL Syntax in Axapta Table browser

2005-06-21 Thread Agus Riyadi
Hi Koh, Use this instead : SELECT * FROM InventTransPosting where InventTransPosting.Transdate = 30\4\2005 InventTransPosting.Transdate = 31\5\2005 Do not put semicolon in the end of statement. Regards, Agus --- In development-axapta@yahoogroups.com, Koh Meng Chiat [EMAIL PROTECTED]

RE: [development-axapta] Relations and primary keys

2005-04-25 Thread Agus Riyadi
You have to create a non duplicate index, include the primary key field(s) to this index and set the index name as primary index property of the table. Regards, Agus -Original Message- From: development-axapta@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of cdlmalherbe01

Re: SV: [development-axapta] can not change class' run on property

2005-01-23 Thread Agus Riyadi
] wrote: Hi Is it a subclass ? If so it inherets from the baseclass. Check the base class in your client's environment /Stefan -Ursprungligt meddelande- Från: Agus Riyadi [mailto:[EMAIL PROTECTED] Skickat: den 19 januari 2005 06:13 Till: development-axapta@yahoogroups.com

[development-axapta] Re: can not change class' run on property

2005-01-23 Thread Agus Riyadi
to import a second time. If that does not help, then go to #2... 2. Axapta could have a bug when exporting/importing. You can use the AOSRunMode tag inside the class to specify the execution point. Have you tried to create From: Agus Riyadi [mailto

[development-axapta] can not change class' run on property

2005-01-18 Thread Agus Riyadi
Hi All, I have a class that I created in a development environment (having morphx and x++ license),and then export/import it into our client's environment that do not have x++ license (only morhpx). I wonder why do the class' run on property that I have set to 'Server' was changed to

[development-axapta] Re: EXECUTE A STRING VARIABLE CONTENT - EJECUTAR CONTENIDO DE VARIABLE STRING

2005-01-04 Thread Agus Riyadi
Hi, Use runbuf method, but you need to wrap your code as a function. See details of runbuf method in the AOT System Documentation Function Runbuf. You may also need XppCompiler class to verify whether your string in the execode variabel is valid. Regards, Agus [EMAIL PROTECTED]

RE: RE : [development-axapta] How create project by layer?

2004-09-02 Thread Agus Riyadi
Another way is creating a new project. Open the project, click on filer records icon Crrl + F3, a project filter form is opened. Click the select button, in the inquiry dialog set the criteria of the field Util Level to the layer you want to include. It may takes time for axapta to find

RE: [development-axapta] Re: How to send a parameter with the clicked() method of a button?

2004-08-28 Thread Agus Riyadi
Hi, I am just not sure whether we can pass an object in the web environment since it's different in nature from traditional window form. The idea of passing object is passing it's member variable, so I did a workaround in passing this data using container, which I send to the database using

RE: [development-axapta] Information Exchange

2004-06-08 Thread Agus Riyadi
Hi dude, args.object(form); args.caller(this); // what is this referring to this refer to the object having the method that you write. If it's a class, then you have a reference to this class at the target form. you can override init's method of the target form to get the reference :

[development-axapta] web integer custom lookup

2004-06-08 Thread Agus Riyadi
Hi all, I'm using axapta 3.0 sp2 I have an integer field, in standard form it has lookup to a table. When developing enterprise portal, I think it has lookup button as in standard form, but it doesn't (because it is integer). So I think I have to create my own custom lookup for this

[development-axapta] semicolon

2004-05-31 Thread Agus Riyadi
hi all, When coding in axapta, we must put semicolon before the first statement, or there will be syntax error. I just wonder why doesn't axapta itself put semicolon for all of its methods. Usually I don't get any problem with it, but then it annoy me when sometimes axapta says ...has

[development-axapta] Re: semicolon

2004-05-31 Thread Agus Riyadi
What a nice explanation, thanks a lot Pedersen ! Best Regards, agus From: bmp_thydatacenter_dk [mailto:[EMAIL PROTECTED] Sent: Mon 5/31/2004 10:05 PM To: [EMAIL PROTECTED] Subject: [development-axapta] Re: semicolon The problem is present when

[development-axapta] object does not have method

2004-05-28 Thread Agus Riyadi
I am surprised that Axapta failed to recognize a method that has been compiled with no error. The message is : Object object does not have parmTemplateFileName Stack Trace : Classes\Object\parmTemplateFileName Classes\HRMApplicationWord\setDocuRef - line 24 Classes\HRMApplicationWord\run -

RE: [development-axapta] web lookup button

2004-05-21 Thread Agus Riyadi
into your form. Or you use a WebStringControll instead. Andreas Gahr -Ursprüngliche Nachricht- Von: Agus Riyadi [mailto:[EMAIL PROTECTED] Gesendet: Mittwoch, 19. Mai 2004 07:00 An: [EMAIL PROTECTED] Betreff: [development-axapta] web lookup button Dear All, In a webinteger field within

[development-axapta] webapp join

2004-05-21 Thread Agus Riyadi
Hi all, I created two web tab pages, each consists of a grid with data source property set to 'table1' and 'table2'. The 'table2' is the detail table, so I set its join source property to 'table1'. But I wonder how to select a row from the first grid (in the first web tab page), so that

[development-axapta] web lookup button

2004-05-19 Thread Agus Riyadi
Dear All, In a webinteger field within a web form, I have set its lookup button property to always and lookup method property to custom, but I didn't see the lookup button as I hope. I want to override the lookup method of that field. The field is not a foreign key, so by default it

[development-axapta] Record Level Security Question

2004-01-20 Thread Agus Riyadi
ation unit permitted for this user group. It means that this user group can only see the employees that are within those organization unit. Is it possible in axapta ? Thank you in advance and regards, agus riyadi Yahoo! Groups Sponsor ADVERTISEMENT Yahoo! Groups Links

RE: [development-axapta]

2004-01-20 Thread Agus Riyadi
Hi Michael, I think you can use fixed field relation. See on the HRMVirtualNetworkTable for example. There you can see that the lookup values of the reference field is limited, depend on the value of reference type field. regards, agus riyadi From

[development-axapta] selecting empty field

2004-01-08 Thread Agus Riyadi
Hi All, Is there a way to select a row from a data source with condition of an empty field ? In SQL, we can say select aTable where aTable.field == ; But I couldn't do this in form data source. In the form class declaration, I declare a QueryBuildRange object, QueryBuildRange range;

RE: [development-axapta] selecting empty field

2004-01-08 Thread Agus Riyadi
Thanks a lot Jacob, that is what I need !! :-) regards, Agus From: Jacob Christian Døskeland [mailto:[EMAIL PROTECTED] Sent: Thu 1/8/2004 4:18 PM To: [EMAIL PROTECTED] Subject: Re: [development-axapta] selecting empty field Use

[development-axapta] Row Grid Validation

2004-01-02 Thread Agus Riyadi
Hi all, I wonder how to handle a row grid validation. I have a grid bound to a datasource which has NoYes enum field displayed as checkbox, and a real field displayed as realEdit. What I want is when I tick the checkbox, the realEdit is disabled, and vice versa, when the ceckbox is not

RE: RE : [development-axapta] populating table contents from another table

2004-01-02 Thread Agus Riyadi
! Steeve -Message d'origine- De : Agus Riyadi [mailto:[EMAIL PROTECTED] Envoy : 19 novembre 2003 05:31 : [EMAIL PROTECTED] Objet : [development-axapta] populating table contents from another table Hi all, I have problem with populating table contents from another table. I want

[development-axapta] expression builder

2004-01-02 Thread Agus Riyadi
Hi All, Is there any such expression builder in axapta? I want to create a stringedit where user can type any legal x++ constructs and operators, user can choose any fields from any tables to be included, then axapta execute anything written in the stringedit as far as the syntax is ok. Thank

RE: [development-axapta] variable in sql statement

2004-01-02 Thread Agus Riyadi
the variable with a fixed length, e.g str 10 aVariable or use an extended datatype. - Bjrn -Original Message- From: Agus Riyadi [mailto:[EMAIL PROTECTED] Sent: 2. desember 2003 10:23 To: [EMAIL PROTECTED] Subject: [development-axapta] variable in sql statement Hi all, Why can't I use

[development-axapta] variable in sql statement

2004-01-02 Thread Agus Riyadi
Hi all, Why can't I use variable when using where expression in select statement ? It always display this error message : Container and unbound string (text) fields are not allowed here in a WHERE expression I did something like select empltable where emplId == aVariable Anyone have suggestion

[development-axapta] import problem

2004-01-02 Thread Agus Riyadi
Hi all, I exported data of two of my own tables. Why did I get this error message when imported data to axapta in different computer? Error executing code : An array index 0 is not allowed . I have also exported the application objects before exporting the data. This has no problem when I