[Axapta-Knowledge-Village] Where to handle tool tip in each column

2010-07-07 Thread axaeffect
Hi all,

I'd like to know where is the handle to show tool tip in column/field in Ax ?
You know for example, in Sales Order form or Inventory movement form, when we 
move pointer or click  Item column, there is tool tip inform item id and item 
name.

In the form layout, I notice there's method called ToolTip but can not debug 
the method super(). It goes by and just return the message of the tool tip. I 
want to see the logic of creating this tool tip.

Thanks,




[Axapta-Knowledge-Village] Re: On hand

2010-05-18 Thread axaeffect
Hi Preston,

Sorry to ask, have u try this before? I did try this before but strange is 
while the program running, inventdimid in Inventsum is blank (I did debug the 
code). So I cannot use it for linking it to InventBatch.

thanks,
Axl



--- In Axapta-Knowledge-Village@yahoogroups.com, Preston A. Larimer 
palari...@... wrote:

 Your Display method will actually need to be on InventSum table, and this is
 what you will add to your grid…
 
  
 
 display VendorBatchID vendBatch()
 
 {
 
 return inventBatch::find(this.inventDim().inventBatchId,
 this.ItemId).vendorBatchId;
 
 }
 
  
 
  
 
 From: Axapta-Knowledge-Village@yahoogroups.com
 [mailto:axapta-knowledge-vill...@yahoogroups.com] On Behalf Of Anton
 Sent: Monday, May 10, 2010 4:05 AM
 To: Axapta-Knowledge-Village@yahoogroups.com
 Subject: [Axapta-Knowledge-Village] Re: On hand
 
  
 
   
 
 Yes, I create it in table level, its in InventDim
 
 str VendBatch(ItemID _itemID)
 {
 ;
 if (_itemId)
 {
 return InventBatch::find(this.inventBatchId, _itemID).VendorBatch; //
 vendorbatch is my addition field in InventDim
 }
 else
 return '';
 
 }
 
 But to parse the parameter _itemID, I have to put another method in form,
 right? 
 
 So in form InventOnHandItem, under datasource table InventDim, I create
 another method like below :
 
 display str vendorBatch()
 {
 return InventDim.VendBatch(InventSum.ItemId);
 }
 
 and the above display method is the one I use in my Overview grid.
 
 Thanks,
 
 --- In Axapta-Knowledge-Village@yahoogroups.com
 mailto:Axapta-Knowledge-Village%40yahoogroups.com , Preston A. Larimer
 palarimer@ wrote:
 
  If you put your display method on the Form dataSource, move it to the
 Table
  that should fix your issue about redundant data.
  
  
  
  
  
  
  
  From: Axapta-Knowledge-Village@yahoogroups.com
 mailto:Axapta-Knowledge-Village%40yahoogroups.com 
  [mailto:Axapta-Knowledge-Village@yahoogroups.com
 mailto:Axapta-Knowledge-Village%40yahoogroups.com ] On Behalf Of axaeffect
  Sent: Wednesday, May 05, 2010 10:42 PM
  To: Axapta-Knowledge-Village@yahoogroups.com
 mailto:Axapta-Knowledge-Village%40yahoogroups.com 
  Subject: [Axapta-Knowledge-Village] Re: On hand
  
  
  
  
  
  Yes I've tried that, but you see in InventDim only gives you
 InventBatchID,
  to find record in InventBatch you need one more, ItemID.
  
  I can get it from InventSum, and I create the display method in the form,
  but It shows redundant data in my grid.
  
  Thanks,
  
  --- In Axapta-Knowledge-Village@yahoogroups.com
 mailto:Axapta-Knowledge-Village%40yahoogroups.com 
  mailto:Axapta-Knowledge-Village%40yahoogroups.com , Nitesh Ranjan
  niteshranjan007@ wrote:
  
   Invent OnHand is having InventDim as its datasource
   Create a display method at InventDim table level and show this display
  method  on the form.
   Â 
   Regards,
   Nitesh Ranjan
   
   --- On Wed, 5/5/10, axaeffect axaeffect@ wrote:
   
   
   From: axaeffect axaeffect@
   Subject: [Axapta-Knowledge-Village] On hand
   To: Axapta-Knowledge-Village@yahoogroups.com
 mailto:Axapta-Knowledge-Village%40yahoogroups.com 
  mailto:Axapta-Knowledge-Village%40yahoogroups.com 
   Date: Wednesday, May 5, 2010, 2:30 PM
   
   
   Â 
   
   
   
   Hi all,
   
   I've modified table InventBatch to add new column. 
   
   You know the information in Inventory On hand (Path : Inventory
  management/Item, button Onhand). Lets say I choose to display inventory
  dimension batch number and want to display also the new column that I
 added.
  
   
   I've add some display method in Form InventOnHandItem but not getting
 the
  correct info.
   
   What step should I do?
   
   Thanks,
   
   Axl
  
 





[Axapta-Knowledge-Village] On hand

2010-05-05 Thread axaeffect
Hi all,

I've modified table InventBatch to add new column.  

You know the information in Inventory On hand (Path : Inventory 
management/Item, button Onhand).  Lets say I choose to display inventory 
dimension batch number and want to display also the new column that I added. 

I've add some display method in Form InventOnHandItem but not getting the 
correct info.

What step should I do?

Thanks,

Axl



[Axapta-Knowledge-Village] Re: On hand

2010-05-05 Thread axaeffect
Yes I've tried that, but you see in InventDim only gives you InventBatchID, to 
find record in InventBatch you need one more, ItemID.

I can get it from InventSum, and I create the display method in the form, but 
It shows redundant data in my grid.

Thanks,

--- In Axapta-Knowledge-Village@yahoogroups.com, Nitesh Ranjan 
niteshranjan...@... wrote:

 Invent OnHand is having InventDim as its datasource
 Create a display method at InventDim table level and show this display 
 method  on the form.
  
 Regards,
 Nitesh Ranjan
 
 --- On Wed, 5/5/10, axaeffect axaeff...@... wrote:
 
 
 From: axaeffect axaeff...@...
 Subject: [Axapta-Knowledge-Village] On hand
 To: Axapta-Knowledge-Village@yahoogroups.com
 Date: Wednesday, May 5, 2010, 2:30 PM
 
 
   
 
 
 
 Hi all,
 
 I've modified table InventBatch to add new column. 
 
 You know the information in Inventory On hand (Path : Inventory 
 management/Item, button Onhand). Lets say I choose to display inventory 
 dimension batch number and want to display also the new column that I added. 
 
 I've add some display method in Form InventOnHandItem but not getting the 
 correct info.
 
 What step should I do?
 
 Thanks,
 
 Axl





[Axapta-Knowledge-Village] Copy item table to another company/dataarea

2010-04-20 Thread axaeffect
Hi all,

May I ask how to copy item table (InventTable, InventTableModule, 
InventItemLocation) to another company/dataarea.

Kindly advise. 
Thanks,
Axl



[Axapta-Knowledge-Village] Re: Customer aging by dimension

2010-04-08 Thread axaeffect
Hi agus,

Can u describe a bit about the modification ? Actualy this kind of report will 
be ask million times, I wonder why till now the standard Aging can not provide 
it. :)


Thanks,
Axl

--- In Axapta-Knowledge-Village@yahoogroups.com, Agus Riyadi agusa...@... 
wrote:

 Hi,
 
 We met this similar kind of requirement and the only solution that we found
 was to modify the Aging report.
 
 Best Regards,
 
 Agus
 
 On Wed, Apr 7, 2010 at 11:00 AM, axaeffect axaeff...@... wrote:
 
 
 
  Hi all,
 
  In report customer aging (A/R - reports - Status - Aging report), is
  there a way to group it per dimension.
 
  For example if I have activated 1st dimension (Department), in that report
  I want to group it per department, not just sort by customer account,
  because there is a case my customer transaction is in many department.
 
  Thanks in advance,
  axl
 
   
 





[Axapta-Knowledge-Village] Customer aging by dimension

2010-04-06 Thread axaeffect
Hi all,

In report customer aging (A/R - reports - Status - Aging report), is there a 
way to group it per dimension.

For example if I have activated 1st dimension (Department), in that report I 
want to group it per department, not just sort by customer account, because 
there is a case my customer transaction is in many department.

Thanks in advance,
axl



[Axapta-Knowledge-Village] Security setup for intercompany

2008-08-01 Thread axaeffect
Dear all,

If I want to use intercompany process, what security I must open in 
order for the buying company can send the Sales Order automatic to the 
intercompany (selling company) ?

FYI, I already can setup and run the intercompany before, but that time 
using Admin rights. 

Thanks in advance

regards,
Antony



[Axapta-Knowledge-Village] Sales order type intercompany

2008-07-14 Thread axaeffect
Dear all,

Do you have any idea how to setup default Sales Order in Intercompany, 
so when it created Sales Order automatic in the other company, the 
Sales Order type will be set to Quotation or anything else, other 
then sales order .

Thanks in advance.

Ton




[Axapta-Knowledge-Village] Inventory Dimension in Intercompany Order

2008-07-04 Thread axaeffect
Hi all,

I got some trouble with my intercompany order. First, in my first SO, 
we did not put inventory dimension such as location, then I create PO 
from it. Now when I try to receive and want to assign location, it show 
me error says can not change inventory dimension. If I still change  
the dimension then the relation between SO and PO is broken.

Does anyone know the solution? 
Thanks in advance.

Regards,
Ton,



[Axapta-Knowledge-Village] Can not End Production, Inventory already closed

2008-02-10 Thread axaeffect
Hi all,

May I ask, how to End Production Order in the month the already closed. 

The situation is, actualy we already Report as Finished the Production 
Order but we forgot to End it. Now the inventory is closed. Is there a 
way to solve this?

Thanks in advance,
Ton.




[Axapta-Knowledge-Village] Re:Error when install Ax4

2007-11-08 Thread axaeffect
sorry, just need confirmation, when I connected to my server, is my 
server need to have active directory (has to be a domain controller)?

thanks,

--- In Axapta-Knowledge-Village@yahoogroups.com, axaeffect 
[EMAIL PROTECTED] wrote:

 Hi,
 
 The DB Server is my local computer, so when I install Ax, when 
asking 
 DB Server I stated to use my local. 
 
 Also, it already can created the new database (Dynamics) only when 
it 
 says Setup AOS, the error occur.
 
 Thanks,
 
 
 --- In Axapta-Knowledge-Village@yahoogroups.com, saurabh agrawal 
 itssaurabh.agrawal@ wrote:
 
  Please check if your DB instance is in the same domain same as 
the AOS
  machine.
  Also check the user id of the install if it is an admin in the 
domain 
 and
  also a valid user in the DB server.
  If you can detail out the steps in install perhaps it will give a 
 better
  understanding.
  
  
  [Non-text portions of this message have been removed]
 





[Axapta-Knowledge-Village] Re:Error when install Ax4

2007-11-06 Thread axaeffect
Hi,

The DB Server is my local computer, so when I install Ax, when asking 
DB Server I stated to use my local. 

Also, it already can created the new database (Dynamics) only when it 
says Setup AOS, the error occur.

Thanks,


--- In Axapta-Knowledge-Village@yahoogroups.com, saurabh agrawal 
[EMAIL PROTECTED] wrote:

 Please check if your DB instance is in the same domain same as the AOS
 machine.
 Also check the user id of the install if it is an admin in the domain 
and
 also a valid user in the DB server.
 If you can detail out the steps in install perhaps it will give a 
better
 understanding.
 
 
 [Non-text portions of this message have been removed]





[Axapta-Knowledge-Village] Error when install Ax4

2007-10-23 Thread axaeffect
Hi all,

I got error when installing Ax4 in my computers, right when the setup 
says setup AOS. When I look at the log it says something like this :

=== Setting up Object server ===
Adding this computer's Network Service account as a login in to the 
database server. 
Exception = System.NullReferenceException 
 Message = Object reference not set to an instance of an object. 
 FullText = System.NullReferenceException: Object reference not set 
to an instance of an object.
   at Microsoft.Dynamics.Setup.Misc.GetMachineDomain()
   at 
Microsoft.Dynamics.Setup.InstallSqlServer.GrantAosAccessToRemoteSqlSer
ver()
   at Microsoft.Dynamics.Setup.MainForm.AosDbAccess()
   at Microsoft.Dynamics.Setup.MainForm.s250Timer_Tick()
 Setup ended before completion. ===


Could anyone help me on this ?


Thanks in advance,
Tonz




[Axapta-Knowledge-Village] System sequences

2007-07-26 Thread axaeffect
hi all,

what will happen if table system sequences empty?
and can the data created again automatically with some process or 
should manualy insert?

TIA,
Tonz



[Axapta-Knowledge-Village] Need help! Record already exist ??

2007-07-24 Thread axaeffect
Hi all,

I need some help or advice...
The case is my Ax sometimes produce an error when inserting new data, 
it says Can not insert, data already exist but I can assure you that 
the suspected data is new. This is true bcoz after I restart the AOS, 
all process gone normal, no error.

Before I restart AOS, I tried reindex data, synchronize table, and 
compile application, and it shows no error/ warning. What happen? 


TIA,
Tonz





[Axapta-Knowledge-Village] Need Help : Urgent...

2007-07-24 Thread axaeffect
Hi all,

I need some help or advice...
The case is my Ax sometimes produce an error when inserting new data,
it says Can not insert, data already exist but I can assure you that
the suspected data is new. This is true bcoz after I restart the AOS,
all process gone normal, no error.

Before I restart AOS, I tried reindex data, synchronize table, and
compile application, and it shows no error/ warning. What happen?


TIA,
Tonz




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

2007-07-24 Thread axaeffect
hi,

right now, we already face 2 process produce error:
1. when posting picking list in Inventory Transfer Order
2. when posting packing slip in SO

strange is if i restart the AOS, there's no error. Last time, I reset 
usage data but no effect.

BTW, what is the purpose of table SystemSequences? and what should be 
done, if it is empty?

thanks,
Tonz



--- In Axapta-Knowledge-Village@yahoogroups.com, kbi kbi [EMAIL PROTECTED] 
wrote:

 Hi Tonz,
 
 WHen is it happen? with any form/table or just one?
 
 Regards,
 Khue
 
 
 - Original Message 
 From: axaeffect [EMAIL PROTECTED]
 To: Axapta-Knowledge-Village@yahoogroups.com
 Sent: Tuesday, July 24, 2007 3:31:16 PM
 Subject: [Axapta-Knowledge-Village] Need Help : Urgent...
 
 Hi all,
 
 I need some help or advice...
 The case is my Ax sometimes produce an error when inserting new 
data,
 it says Can not insert, data already exist but I can assure you 
that
 the suspected data is new. This is true bcoz after I restart the 
AOS,
 all process gone normal, no error.
 
 Before I restart AOS, I tried reindex data, synchronize table, and
 compile application, and it shows no error/ warning. What happen?
 
 TIA,
 Tonz
 
 
 
 
 

 
__
__Ready for the edge of your seat? 
 Check out tonight's top picks on Yahoo! TV. 
 http://tv.yahoo.com/
 
 [Non-text portions of this message have been removed]





[Axapta-Knowledge-Village] Ax 4 SP 1

2007-06-19 Thread axaeffect
Hi all,

probably this is a stupid question. :), but can I copy Ax Application 
folder that already SP 1, and run it in another computer running Ax 4 
which is not yet SP 1.

thanks in advance,
Ton






[Axapta-Knowledge-Village] joining 3 tables

2007-06-07 Thread axaeffect
Hi all,

how to join 3 tables in querybuilder?

for example I want to join InventDim Table with inventBatch and 
WMSLocation

In my logic should be like this
1. first Query is InventDim
2. join InventDim to InventBatch 
3. join inventDim again to WMSLocation

is that correct? 

thanks in advance,
Ton



[Axapta-Knowledge-Village] Re: joining 3 tables

2007-06-07 Thread axaeffect
hi kamal,

Thx, I already know the relation, the problem is when I use 
QueryBuildDataSource, after I create the first Query (InventDim), add 
new datasource (InventBatch), linked them, and add new datasource 
again(WMSLocation), when I link it to the first query, seems can not 
work.



rgds,
Ton.



--- In Axapta-Knowledge-Village@yahoogroups.com, kamal_ec 
[EMAIL PROTECTED] wrote:

 Hi Ton,
 
The Relation has to be something like this
 
   Invent Dim
  |
  |  
  |__ Invent Batch (Relation InventBatchId)
  |  
  |
  |__ WMSLocation (Relation InvnetLocationId)
 
 Hope this helps :)
 
 Regards
 Kamalakannan
 
 
 --- In Axapta-Knowledge-Village@yahoogroups.com, axaeffect
 axaeffect@ wrote:
 
  Hi all,
  
  how to join 3 tables in querybuilder?
  
  for example I want to join InventDim Table with inventBatch and 
  WMSLocation
  
  In my logic should be like this
  1. first Query is InventDim
  2. join InventDim to InventBatch 
  3. join inventDim again to WMSLocation
  
  is that correct? 
  
  thanks in advance,
  Ton
 





[Axapta-Knowledge-Village] Re: joining 3 tables

2007-06-07 Thread axaeffect
Hi Agus,
Thx.. IT WORKS. !!! :D



--- In Axapta-Knowledge-Village@yahoogroups.com, Agus Riyadi 
[EMAIL PROTECTED] wrote:

 Hi Ton,
 
 Set the properties FetchMode to 1:1 to the second and third data 
source.
 
 Regards,
 
 Agus
 
 
 
 On 6/8/07, axaeffect [EMAIL PROTECTED] wrote:
 
hi kamal,
 
  Thx, I already know the relation, the problem is when I use
  QueryBuildDataSource, after I create the first Query (InventDim), 
add
  new datasource (InventBatch), linked them, and add new datasource
  again(WMSLocation), when I link it to the first query, seems can 
not
  work.
 
  rgds,
  Ton.
 
  --- In Axapta-Knowledge-Village@yahoogroups.comAxapta-Knowledge-
Village%40yahoogroups.com,
  kamal_ec
  casperkamal.dax@ wrote:
  
   Hi Ton,
  
   The Relation has to be something like this
  
   Invent Dim
   |
   |
   |__ Invent Batch (Relation InventBatchId)
   |
   |
   |__ WMSLocation (Relation InvnetLocationId)
  
   Hope this helps :)
  
   Regards
   Kamalakannan
  
  
   --- In Axapta-Knowledge-Village@yahoogroups.comAxapta-
Knowledge-Village%40yahoogroups.com,
  axaeffect
   axaeffect@ wrote:
   
Hi all,
   
how to join 3 tables in querybuilder?
   
for example I want to join InventDim Table with inventBatch 
and
WMSLocation
   
In my logic should be like this
1. first Query is InventDim
2. join InventDim to InventBatch
3. join inventDim again to WMSLocation
   
is that correct?
   
thanks in advance,
Ton
   
  
 
   
 
 
 
 [Non-text portions of this message have been removed]





[Axapta-Knowledge-Village] not recognized user

2007-06-05 Thread axaeffect
Hi all,

I just installed Dynamics Ax 4 in my notebook. First I installed it 
when connecting to domain, although I installing AOS, dB Server to my 
notebook. First time, it working just fine. The AOS started in my local 
notebook, and DB connection to my local SQL server is success.

But the problem is when i log out from domain, and then I log in again 
to my Local domain (windows logon - connect to this computer), I got 
the message You are not recognized user of 

can someone help me, b'coz I really need to open it locally, not depend 
on domain server.

thanks,
Ton.






[Axapta-Knowledge-Village] Re: Pick Inventory per Batch by ExpiryDate

2007-05-21 Thread axaeffect
Hi Hemant, 

thx, but I think it won't work, correct me if I'm wrong, but as I 
look in the code, date controlled only look for LastUpdatePhysical 
in Onhand Inventory. 

and I can't use automatic batch number bcoz already agreed, user will 
give the batch manually, also expiry date. The problem is like my 
example below, they can input batch number and expire date unmatch.

rgds,

--- In Axapta-Knowledge-Village@yahoogroups.com, Hemant Kumthekar 
[EMAIL PROTECTED] wrote:

 Hi Ton,
 
 How about checking the flag on IMG Reservation date controlled 
also you would like to consider the allocation of batch numbers to be 
Automatic rather than manual as the number allocated will be in 
sequential order. 
 
 Hemant K
 
 - Original Message 
 From: axaeffect [EMAIL PROTECTED]
 To: Axapta-Knowledge-Village@yahoogroups.com
 Sent: Monday, May 21, 2007 10:04:38 PM
 Subject: [Axapta-Knowledge-Village] Pick Inventory per Batch by 
ExpiryDate
 
 hi all,
 
 I want to pick Onhand Inventory, and the batch that should be 
picked 
 usually in alpabhet order (batchid). How if I want to sort by 
Expiry 
 Date ?
 
 For Example,
 I have Onhand Inventory like this :
 Item A - Batch X - ExpDate : 20/5/2007
 Item A - Batch Y - ExpDate : 18/5/2007
 Item A - Batch Z - ExpDate : 21/5/2007
 Right now, when we pick the item, it will pick batch X, how if I 
want 
 to pick batch Y, coz the expdate is earlier.
 
 thx in advance,
 Ton.
 
 
 
 
 
  
 
__
__
 Be a PS3 game guru.
 Get your game face on with the latest PS3 news and previews at 
Yahoo! Games.
 http://videogames.yahoo.com/platform?platform=120121
 
 [Non-text portions of this message have been removed]





[Axapta-Knowledge-Village] Copy User Layer in DynamicsAx 4.0

2007-05-02 Thread axaeffect
dear all,

have u ever copied axusr.aod and axpd.aoi to a newly standard 
application folder ?

I've done this in Ax 3.0 and it's OK, just copying axusr.aod  
axpd.aoi
in application folder, configure in Axapta configuration utility, 
also connect to a new database, and then just start Axapta, and their 
automatically update all the application base on the user layer.

but, can I do it in Ax 4, 'coz right now I can't start the service, 
and said 'the request can not respon in timely fashioned..'

please help.
thx in advance,
Ton










[Axapta-Knowledge-Village] Re: Copy User Layer in DynamicsAx 4.0

2007-05-02 Thread axaeffect
yap.. thq venkat :) 

just need confirmation, after that I start Axapta, and then 
synchronize, and then compile application, right?




--- In Axapta-Knowledge-Village@yahoogroups.com, venkat raghavan 
[EMAIL PROTECTED] wrote:

 Hi Ton,
You can do the same in Ax 4.0 also. While starting the Ax 
Service, After receiving the message you have mentioned wait for 5 to 
10 mins. after that refresh the service.It will be started. 

   When you are starting the service of Ax 4.0 for first time it 
will take some time to start.Becuase it will build the index 
file.Nothing to worry about the message given by the service 
controler. Just wait for 5 more mins.

   Regards,
   Venkat
   http://DynamicsTech.blogspot.com

   
 
 axaeffect [EMAIL PROTECTED] wrote:
   dear all,
 
 have u ever copied axusr.aod and axpd.aoi to a newly standard 
 application folder ?
 
 I've done this in Ax 3.0 and it's OK, just copying axusr.aod  
 axpd.aoi
 in application folder, configure in Axapta configuration utility, 
 also connect to a new database, and then just start Axapta, and 
their 
 automatically update all the application base on the user layer.
 
 but, can I do it in Ax 4, 'coz right now I can't start the service, 
 and said 'the request can not respon in timely fashioned..'
 
 please help.
 thx in advance,
 Ton
 
 
 
  
 

 -
 Ahhh...imagining that irresistible new car smell?
  Check outnew cars at Yahoo! Autos.
 
 [Non-text portions of this message have been removed]





[Axapta-Knowledge-Village] Re: www.systomatics.com (Compare XPO)

2006-12-20 Thread axaeffect
Hi Hary,

I'm Anton.

I'm download one of your project : Compare XPO, do you have the 
DynamicAX (AX4) version?

thanks,


--- In Axapta-Knowledge-Village@yahoogroups.com, Harry Deshpande 
[EMAIL PROTECTED] wrote:

 Hi
 
 www.systomatics.com is updated with a new project
 
 Regards
 
 harry
 
 From: Harry Deshpande
 Sent: Monday, December 18, 2006 12:24 PM
 To: Axapta-Knowledge-Village@yahoogroups.com
 Subject: RE: [Axapta-Knowledge-Village] Re: Ax 4.0 login screen as 
3.0
 
 Hi
 
 Read this link to understand why the passwords should not be 
stored in the database
 
 http://en.wikipedia.org/wiki/MD5
 
 regards
 
 harry
 
 
 
 From: Axapta-Knowledge-Village@yahoogroups.com [mailto:Axapta-
[EMAIL PROTECTED] On Behalf Of Ax Dev
 Sent: 18 December 2006 12:06
 To: Axapta-Knowledge-Village@yahoogroups.com
 Subject: Re: [Axapta-Knowledge-Village] Re: Ax 4.0 login screen as 
3.0
 
 
 Hi Friends,
 
 It was asked from one of our costumers as well. Does anyone has the
 solution of how to provide the same kind of user input in Ax4.0 as 
we have
 in Ax3.0?
 
 It is something very interesting and we are curious to know about 
it. Please
 share your views.
 
 Thanks  Regards,
 Harsh
 
 On 12/18/06, John Lindsay [EMAIL PROTECTED]mailto:jtl%40dragonsfoot.com 
wrote:
 
  You can use the runas command to change the user
 
  Confidentiality Notice: This e-mail contains confidential and/or
  privileged
  information and is intended to be read only by the person or 
authorized
  representative of the organization to whom it is addressed. If 
you are
  neither of these persons, you have received this e-mail in 
error. Please
  do
  not print, copy, re-transmit, disseminate or otherwise use the
  information,
  all of which are prohibited. Please immediately notify the 
sender by
  return
  e-mail or by telephone at (303) 593-1246 that you have received 
this
  communication in error and delete this e-mail from your system. 
Thank you.
 
  MBS Dynamics AX Master
 
  John T. Lindsay
 
  Micro Sciences
 
  303 593-1246
 
  720 982-4620
 
  _
 
  From: Axapta-Knowledge-Village@yahoogroups.commailto:Axapta-
Knowledge-Village%40yahoogroups.comAxapta-Knowledge-Village%
40yahoogroups.com
  [mailto:Axapta-Knowledge-Village@yahoogroups.commailto:Axapta-
Knowledge-Village%40yahoogroups.comAxapta-Knowledge-Village%
40yahoogroups.com]
  On Behalf Of Andreas
  Rudischhauser
  Sent: Saturday, December 16, 2006 4:48 AM
  To: Axapta-Knowledge-Village@yahoogroups.commailto:Axapta-
Knowledge-Village%40yahoogroups.comAxapta-Knowledge-Village%
40yahoogroups.com
  Subject: AW: [Axapta-Knowledge-Village] Re: Ax 4.0 login screen 
as 3.0
 
  Please contact Mr. Schuster on schuster(AT)back2.biz.
 
  Von: Axapta-Knowledge- mailto:Axapta-Knowledge-Village%
40yahoogroups.com
  [EMAIL PROTECTED]mailto:Village%40yahoogroups.com 
Village%40yahoogroups.com
  [mailto:Axapta-Knowledge-
  mailto:Axapta-Knowledge-Village%40yahoogroups.com
  [EMAIL PROTECTED]mailto:Village%40yahoogroups.com 
Village%40yahoogroups.com]
  Im Auftrag von Hardi
  Gesendet: Samstag, 16. Dezember 2006 00:52
  An: Axapta-Knowledge- mailto:Axapta-Knowledge-Village%
40yahoogroups.com
  [EMAIL PROTECTED]mailto:Village%40yahoogroups.com 
Village%40yahoogroups.com
  Betreff: [Axapta-Knowledge-Village] Re: Ax 4.0 login screen as 
3.0
 
  As Ax40 is integrated with active directory, I think what is
  required is to prompt user to re-enter login/password when
  application started.
  This is something being asked too from my customer.
 
  Thanks
 
  Hardi
 
  --- In Axapta-Knowledge- mailto:Axapta-Knowledge-Village%
40yahoog
  roups.com
  [EMAIL PROTECTED]mailto:Village%40yahoogroups.com 
Village%40yahoogroups.com
  mailto:Axapta-Knowledge-Village%40yahoogroups.com , Jake
  olorinpc@ wrote:
  
   Hi Andreas -
  
   Do you have any info on how this is being done? Are you doing a
   second Active Directory login?
  
   Thanks, Jake
  
   http://axaptasource http://axaptasource.com .com
  
   --- In Axapta-Knowledge-
  mailto:Axapta-Knowledge-Village%40yahoogroups.com
  [EMAIL PROTECTED]mailto:Village%40yahoogroups.com 
Village%40yahoogroups.com
  mailto:Axapta-Knowledge-Village%40yahoogroups.com , Andreas
   Rudischhauser Andreas.Rudischhauser@ wrote:
   
We're currently in development. I will post the link here in 
a
  few
   days
   
   
   
Von: Axapta-Knowledge-
  mailto:Axapta-Knowledge-Village%40yahoogroups.com
  [EMAIL PROTECTED]mailto:Village%40yahoogroups.com 
Village%40yahoogroups.com
  mailto:Axapta-Knowledge-Village%40yahoogroups.com
[mailto:Axapta-Knowledge-
  mailto:Axapta-Knowledge-Village%40yahoogroups.com
  [EMAIL PROTECTED]mailto:Village%40yahoogroups.com 
Village%40yahoogroups.com
  mailto:Axapta-Knowledge-Village%40yahoogroups.com ] Im Auftrag 
von
   Agus
Riyadi
Gesendet: Donnerstag, 14. Dezember 2006 03:14
An: Axapta-Knowledge-
  mailto:Axapta-Knowledge-Village%40yahoogroups.com
  [EMAIL 

[Axapta-Knowledge-Village] error field id does not exist in table

2006-12-06 Thread axaeffect
hi all,

I have an error in my Ax says field id 12345 does not exist in table 
MyTable.. does anyone knows what error is it? and how to resolve this 
issue 'coz i already re-compile and synchronize all tables and didn't 
work.

thanks in advance,
ton



[Axapta-Knowledge-Village] Making enum element invisible

2006-11-23 Thread axaeffect
hi all,

does anyone know how to make some element in base enum invisible.
For example I have base enum with 5 element, but in my form I only 
want to display 3.

I don't want to change the value, so even if I make element no 1 
invisible, and user choose the first element displayed which is 
originaly element no 2, the value I get must be 2 also, not 1.

TIA,
Ton


















[Axapta-Knowledge-Village] Refresh DataGrid

2005-03-01 Thread axaeffect


Hi,
How to refresh data in Grid ?

I make a form to insert data to my table. I have two TabPage, one is 
for the insert and the others is to display the table content in a 
Grid.

The problem is after I insert the data, I have a OK button (in 
TabPage 1) which is run a method to insert data to the table. But 
when I move to TabPage 2, the grid is not refresh by displaying my 
new record.

thanks in advanced.









 Yahoo! Groups Sponsor ~-- 
Has someone you know been affected by illness or disease?
Network for Good is THE place to support health awareness efforts!
http://us.click.yahoo.com/Rcy2bD/UOnJAA/cosFAA/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/
 





[Axapta-Knowledge-Village] Class : LedgerBalanceSum_CurrentMST

2005-02-02 Thread axaeffect


How to add dimension criteria in class LedgerBalanceSum_CurrentMST ?

the class :
ledgerBalance= new LedgerBalanceSum_CurrentMST
(ledgerReport_TrialBalance.parmPeriodStart(),
   periodEnd,
   
dimensionCriteriaEmpty,
   NoYes::Yes,
   opening,
   NoYes::Yes,
   
OperationsTax::Current,
   
DebCredProposal::None,
   NoYes::Yes,
   NoYes::Yes);

I want to add dimensioncriteria, 'cause I need to filter the 
calculation with dimension I had which is in dimension(5).

What value should I fill to replace the dimensioncriteriaempty ?

thanks in advance,





 Yahoo! Groups Sponsor ~-- 
In low income neighborhoods, 84% do not own computers.
At Network for Good, help bridge the Digital Divide!
http://us.click.yahoo.com/EpW3eD/3MnJAA/cosFAA/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/