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 djf1...@gmail.com wrote:


From: James Flavell djf1...@gmail.com
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









 
take a look in the Salespackingslip table methods. look in the 
initFromSalesTable and that should give you a place to start from (of course 
you will need to add the salesperson field to the salespackingslip table etc). 
you probably need to use the salestable.contactp erson() method in this 
initFrom method because only the contactpersonid is stored on the salestable
 
 



From: Axapta-Knowledge- vill...@yahoogro ups.com [mailto:Axapta- Knowledge- 
vill...@yahoogro ups.com] On Behalf Of Khalil Rehman
Sent: 15 April 2009 13:23
To: Knowlege Village; Development Group
Subject: [Axapta-Knowledge- Village] Contact Person Name in SO Packing Slip.




Dear All,
 
   i want ot have contact person name on Salespackingslip Report. how can i can 
some body write for me the code for this.
 
 
regards.



  KHALIL UR REHMAN  





What can you do with the new Windows Live? Find out 
















  

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 findOrCreateRange when I need to set the value for the 
range several times.
 
But its all come back to your personal preference...   

--- On Thu, 4/9/09, pranam mukher pranam_shub...@yahoo.co.in wrote:


From: pranam mukher pranam_shub...@yahoo.co.in
Subject: [Axapta-Knowledge-Village] Ranges in Queries...
To: development-axa...@yahoogroups.com, Axapta-Knowledge-Village@yahoogroups.com
Date: Thursday, April 9, 2009, 9:44 PM













Hi all
  I have one doubt in queries
When we should go for AddRange ,findRange and FindorCreaterange in Queries... 
can anyone tell me briefly
 
thanks in advance
 
 
Pranam


Add more friends to your messenger and enjoy! Invite them now.
















  

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

2009-04-15 Thread James Flavell
Yes I was going to say the best way to get people to write code for you is
to pay them ;)
 


  _  

From: Axapta-Knowledge-Village@yahoogroups.com
[mailto:axapta-knowledge-vill...@yahoogroups.com] On Behalf Of kristanto
surjadi
Sent: 15 April 2009 15:59
To: Axapta-Knowledge-Village@yahoogroups.com
Subject: RE: [Axapta-Knowledge-Village] Contact Person Name in SO Packing
Slip.







Or a more simple solution, is to hire an ax developer
http://mail.yimg.com/us.yimg.com/i/mesg/tsmileys2/04.gif 


--- On Wed, 4/15/09, James Flavell djf1...@gmail.com wrote:



From: James Flavell djf1...@gmail.com
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


 
take a look in the Salespackingslip table methods. look in the
initFromSalesTable and that should give you a place to start from (of course
you will need to add the salesperson field to the salespackingslip table
etc). you probably need to use the salestable.contactp erson() method in
this initFrom method because only the contactpersonid is stored on the
salestable
 
 

  _  

From: Axapta-Knowledge- vill...@yahoogro ups.com [mailto:Axapta- Knowledge-
vill...@yahoogro ups.com] On Behalf Of Khalil Rehman
Sent: 15 April 2009 13:23
To: Knowlege Village; Development Group
Subject: [Axapta-Knowledge- Village] Contact Person Name in SO Packing Slip.


Dear All,
 
   i want ot have contact person name on Salespackingslip Report. how can i
can some body write for me the code for this.
 
 
regards.



  http://graphics.hotmail.com/i.p.emrose.gif   KHALIL UR REHMAN
http://graphics.hotmail.com/i.p.emrose.gif 




  _  

What can you do with the new Windows Live? Find out
http://www.microsoft.com/windows/windowslive/default.aspx  





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 declaration and not
on the method being debug.
 
Hope that solve your confusion.
 
 
Regards,
 
Kris
 


--- On Thu, 4/9/09, altgrep wytsw7...@sneakemail.com wrote:


From: altgrep wytsw7...@sneakemail.com
Subject: [Axapta-Knowledge-Village] Can't see element.var in form button method?
To: Axapta-Knowledge-Village@yahoogroups.com
Date: Thursday, April 9, 2009, 12:27 PM







I'm probably missing something simple here because of tired. I have a boolean 
variable, named elementShow, declared in classdeclaration with a value set to 
true in init.

In my button method clicked(), I can reference variable like this:

if(elementShow)
info(test) ;

The compiler does not complain. However, when I run the code and watch in the 
debugger... there is no value. Watch list shows, Error: Symbol elementShow 
was not found

It does show a value in the debugger window for element.elementShow , however, 
so I try this:

if(element.elementS how)
info(test) ; 

This time, the debugger complains with the following error message, The table 
is out of range or does not exist

Can anyone point out what I am missing here?

Thanks

















  

[Axapta-Knowledge-Village] Re: Adding a button to a form

2009-04-15 Thread r_ssh
Hi Girac,

Any form which is designed will have the Document handling button readily 
available.

Please enable the Document Handling via

Tools  Options  Enable Document Handling active.(This is generic way where it 
enables globally to all the forms in AX)

Hope this answers your query.

Thanks
Santosh.R

--- In Axapta-Knowledge-Village@yahoogroups.com, Girac girac...@... wrote:

 I would like to add a document handler button to a form of mine and only have 
 the document show up. 
 I dont have alot of ax programming, can anyone shed light on how this is 
 done. 
 
 best regards,,,
 
 
 g





Re: [Axapta-Knowledge-Village] Re: [Axapta_Documentation] Dynamics Ax Interview Questions

2009-04-15 Thread Kumar
Hi,
 
If you want to help others do it, else simply delete the mail
Why you are bothering too much about a single mail, which is easily deletable.
 
 
regards,
Kumar
 
 


--- On Fri, 3/4/09, hari prasad hariprasad_...@yahoo.co.in wrote:


From: hari prasad hariprasad_...@yahoo.co.in
Subject: Re: [Axapta-Knowledge-Village] Re: [Axapta_Documentation] Dynamics Ax 
Interview Questions
To: Axapta-Knowledge-Village@yahoogroups.com
Date: Friday, 3 April, 2009, 4:08 PM








Hi ,
 I am replying after long back..there is nothing wrong give help with other 
persons in this blog. the moto of ththis blog is to help each other..We can not 
deside it's stupid or nessary. If you know some thing try to help other ...
 
Sorry for Correction.. Take sportive..
 
Note: if any one need any personal details about dynamics AX mail me 
personally..
Regards
Hri Prasad Rao...





From: Subbu subbu...@yahoo. com
To: Axapta_Documentatio n...@yahoogroups. com
Cc: Axapta-Job-House@ yahoogroups. com; Axapta-Knowledge- vill...@yahoogro 
ups.com
Sent: Thursday, 2 April, 2009 6:44:19 PM
Subject: [Axapta-Knowledge- Village] Re: [Axapta_Documentati on] Dynamics Ax 
Interview Questions








Yes. I have a problem. The problem is you, asking such stupid questions in the 
forum. This forum is not to get interview questions ( you can post in other 
forums ).  I have seem many people like you 'reciting interview QA, getting 
jobs here in US, do nothing and srew up the projects and bring bad name to 
community' 
 
SO YOU STAY AWAY.
 
I hope its clear to you now.


--- On Thu, 4/2/09, Naeem Sarwar mnaeemsarwar@ gmail.com wrote:


From: Naeem Sarwar mnaeemsarwar@ gmail.com
Subject: Re: [Axapta_Documentati on] Dynamics Ax Interview Questions
To: Axapta_Documentatio n...@yahoogroups. com, subbu...@yahoo. com
Cc: Axapta-Job-House@ yahoogroups. com, Axapta-Knowledge- vill...@yahoogro 
ups.com
Date: Thursday, April 2, 2009, 1:30 AM






Mr, Subbo

May i know your problem? Has this all got anything to do with you? Actually 
Nothing!!!  

So Stay away and mind your own business...




On Wed, Apr 1, 2009 at 5:28 PM, Subbu subbu...@yahoo. com wrote:











STOP THIS BS. 
 
One should be ashamed of asking this kind of questions in public form. DONT 
degrade yourself. I dont care where you are from.

--- On Wed, 4/1/09, Naeem Sarwar mnaeemsarwar@ gmail.com wrote:


From: Naeem Sarwar mnaeemsarwar@ gmail.com
Subject: [Axapta_Documentati on] Dynamics Ax Interview Questions
To: pakits pak...@yahoogroups. com, Axapta-Job-House@ yahoogroups. com, 
Axapta-Knowledge- vill...@yahoogro ups.com, Axapta_Documentatio 
n...@yahoogroups. com
Date: Wednesday, April 1, 2009, 9:18 AM 







Any Chance to have Dynamics AX interview Questions and Answers? for Technical 
and Functional (Finance, TL, Manufacturing, P/A)


BR
NS







Add more friends to your messenger and enjoy! Invite them now. 















  Add more friends to your messenger and enjoy! Go to 
http://messenger.yahoo.com/invite/

Re: [Axapta-Knowledge-Village] Item Stock

2009-04-15 Thread Ahmed Yakan
Hello Mudassar

Upload the folowing table (InventItemInventSetup) and it will work properly en 
shaa ALLAH

Regards

Ahmed Yakan





From: Mudassar popololo_...@yahoo..com
To: Axapta-Knowledge-Village@yahoogroups.com
Sent: Saturday, April 11, 2009 10:54:15 AM
Subject: [Axapta-Knowledge-Village] Item Stock





Hi all,

I have imported around 3,000 items in stock management. with one site named 
site and one warehouse named warehouse. while importing i have imported the 
site/warehouse with item on inventdim and inventdimcombinatio n table. 

now, item works fine in Purchase and Sale Order, however, it is giving me error 
while Item Movement Journal that Item has no stock Item  has no parameters 
for Stock.

does anybody has any idea about this?

Thanks 
Mudassar 




  

[Axapta-Knowledge-Village] Import file for LedgerInAccountStatementDE_DTAUS

2009-04-15 Thread priyanka_history
Hi All

I need some urgent help on LedgerInAccountStatementDE_DTAUS report.

This is a run-time report and requires a file, in a specified format, to be 
imported to generate the report.

The path of the report is:  General ledger  Journals  General journals  
Lines  Functions  Import account statement (Transactions) and select method 
of import with DTAUS (DE) format:

Next the import file is required to run the report.


Can I get some examples of the file, required to run the report.

Note: The setup required to get the import format is: Go to General ledger  
Setup  Journals  Methods of importing account statements and create a record 
with DTAUS (DE) import format.

Regards
Priyanka Pathak




[Axapta-Knowledge-Village] import file for LedgerInAccountStatementDE_DTAUS report

2009-04-15 Thread priyanka pathak
Hi All
 
I need some urgent help on LedgerInAccountStatementDE_DTAUS report.
 
This is a run-time report and requires a file, in a specified format, to be 
imported to generate the report.
 
The path of the report is:  General ledger  Journals  General journals  
Lines  Functions  Import account statement (Transactions) and select method 
of import with DTAUS (DE) format:
 

 
 
Next the import file is required to run the report:
 

 
 
Can I get some examples of the file, required to run the report.
 
Thank you all in advance.
 
Note: The setup required to get the import format is: Go to General ledger  
Setup  Journals  Methods of importing account statements and create a record 
with DTAUS (DE) import format.
 
Regards
Priyanka Pathak


  Add more friends to your messenger and enjoy! Go to 
http://messenger.yahoo.com/invite/

[Axapta-Knowledge-Village] doccuments on Global Address Book

2009-04-15 Thread sudeep s gopalkrishnan
Hi Friends,

Any doccuments on Global Address Book ( Ax 2009) is available.

Warm Regards
Sudeep.G


[Axapta-Knowledge-Village] Error while creting employee in Employee master

2009-04-15 Thread sudeep s gopalkrishnan
I am unable to create an employee in employee master. When i click on Save i
am getting the following error:

* Field person must be filled in*
* Transactions cannot be created in network table*

These are due to Global address book, but  am unable to find
asolution...

Any one can help me in this regard.



Warm Regards
Sudeep.G


[Axapta-Knowledge-Village] Re: Adding a button to a form

2009-04-15 Thread Girac
Hello Santosh
I have that option checked and have the button next to my alert, but I want to 
add a button on the form that when pressed will open the Document handler and 
select my NewDocument that I specify, instead of the user having to click 
the DocHandler, then New, then find the right word document as that will ba 
many to choose from.




--- In Axapta-Knowledge-Village@yahoogroups.com, r_ssh 
ramamurthy.sant...@... wrote:

 Hi Girac,
 
 Any form which is designed will have the Document handling button readily 
 available.
 
 Please enable the Document Handling via
 
 Tools  Options  Enable Document Handling active.(This is generic way where 
 it enables globally to all the forms in AX)
 
 Hope this answers your query.
 
 Thanks
 Santosh.R
 
 --- In Axapta-Knowledge-Village@yahoogroups.com, Girac girac127@ wrote:
 
  I would like to add a document handler button to a form of mine and only 
  have the document show up. 
  I dont have alot of ax programming, can anyone shed light on how this is 
  done. 
  
  best regards,,,
  
  
  g
 





[Axapta-Knowledge-Village] Axapta CRM vs Dynamics CRM

2009-04-15 Thread Steeve Gilbert
Hi,

Anyone know where I could find a comparative information about Axapta's CRM vs 
Dynamics CRM.  I know Axapta CRM well but I don't know anything (yet) about 
Dynamics CRM.  What would be the major point positive and negative of using 
Axapta without it's own CRM and using Dynamics CRM instead.

Thanks for your info!

Steeve



[Axapta-Knowledge-Village] Re: Axapta CRM vs Dynamics CRM

2009-04-15 Thread danfine
Hi Steeve,

We have implemented both AX CRM and MS CRM linked to AX.  There is one key 
advantage of MS CRM, and that is you can use it disconnected.  So, Sales folks 
can place orders remotely, not connected to the system.  Also, MS CRM is 
prettier, and works better with Outlook/Exchange.  However, AX CRM is totally 
integrated, which has its advantages.

Dan F

Fine Solutions
Gold Certified Dynamics AX Partner
877.777.FINE
eng...@fine.com

--- In Axapta-Knowledge-Village@yahoogroups.com, Steeve Gilbert 
steeve.gilb...@... wrote:

 Hi,
 
 Anyone know where I could find a comparative information about Axapta's CRM 
 vs Dynamics CRM.  I know Axapta CRM well but I don't know anything (yet) 
 about Dynamics CRM.  What would be the major point positive and negative of 
 using Axapta without it's own CRM and using Dynamics CRM instead.
 
 Thanks for your info!
 
 Steeve





Re: [Axapta-Knowledge-Village] Error while creting employee in Employee master

2009-04-15 Thread manish saxena
Hi Sudeep,
There is a field Person, which is related to HRMVirtualNetworkId, which is a 
numberSequence for Employee, Contact Person and Applicant.
In VirtualNetworkTable, these three types are maintained on the basis of an 
enum.
So, when you create any record of these three types, Ax creates a 
virtaulNetworkId also regarding this record.
I hope you follow the same process as create a record in Global Address book 
and from setup button create  an employee attached to this record,
When you create a new employee, in insert method of table, it inserts a related 
record in HRMVirtualNetworkTable, if already not exists.
Check for the number sequence , you are using for Person in HRM module. Check 
whether it is manual.
May be it helps...
Manish 
--- On Wed, 15/4/09, sudeep s gopalkrishnan sudee...@gmail.com wrote:


From: sudeep s gopalkrishnan sudee...@gmail.com
Subject: [Axapta-Knowledge-Village] Error while creting employee in Employee 
master
To: Axapta-Knowledge-Village@yahoogroups.com
Date: Wednesday, 15 April, 2009, 4:36 PM










I am unable to create an employee in employee master. When i click on Save i am 
getting the following error:
 
 Field person must be filled in
 Transactions cannot be created in network table
 
These are due to Global address book, but  am unable to find asolution... 
 
Any one can help me in this regard.
 
 

Warm Regards
Sudeep.G 















  Add more friends to your messenger and enjoy! Go to 
http://messenger.yahoo.com/invite/

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

2009-04-15 Thread Khalil Rehman

Dear All,

 

   i want to know how to add a reference in navigation pane, of any new or 
customized report.

 

regards.

 




  KHALIL UR REHMAN  



_
Invite your mail contacts to join your friends list with Windows Live Spaces. 
It's easy!
http://spaces.live.com/spacesapi.aspx?wx_action=createwx_url=/friends.aspxmkt=en-us

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 kind of basic development stuff.
 


--- On Thu, 4/16/09, Khalil Rehman khalilrehm...@hotmail.com wrote:


From: Khalil Rehman khalilrehm...@hotmail.com
Subject: [Axapta-Knowledge-Village] Report Reference in Navigation Pane.
To: Knowlege Village axapta-knowledge-village@yahoogroups.com, 
development...@yahoogroups.com
Date: Thursday, April 16, 2009, 12:18 PM








Dear All,
 
   i want to know how to add a reference in navigation pane, of any new or 
customized report.
 
regards.
 



  KHALIL UR REHMAN  





Invite your mail contacts to join your friends list with Windows Live Spaces. 
It's easy! Try it!