[Axapta-Knowledge-Village] PDF viewer used by AX

2008-02-05 Thread James Flavell
Hi everyone,
 
I would just like to check does AX uses whatever PDF viewer is installed on
a PC for the doc management 'Preview' or does it use its own?
I guess its the OS's but just want to be sure
 
Thanks
James
 
 


[Non-text portions of this message have been removed]



[Axapta-Knowledge-Village] Ax Implementation Project Plan

2008-02-05 Thread esuneelbabu
Hi.,
 I want to know the Ax implementation Methodologies. so If any one
have the Ax Implementation Project Plan Plz send to me..


Thanks in Advance



[Axapta-Knowledge-Village] Ax implementation project Plan

2008-02-05 Thread suneel babu

HI.,
  i want to know the Ax implementation Methodologies. so if any one have 
the  Ax Implementation Project Plans . Plz send to me...
 
Thank in Advance...
_
Post free property ads on Yello Classifieds now! www.yello.in
http://ss1.richmedia.in/recurl.asp?pid=220

[Non-text portions of this message have been removed]



[Axapta-Knowledge-Village] USe of super

2008-02-05 Thread pradeep itnal
Hi all
  i have some confusion with respect to USe of super() in different 
methods: can anyone help me out clearyfing this doubt?? i want to what 
difference it makes when i write my code before super() and what happens if i 
write my code after Super().
for example in fetch() method on  reports we override super(); and same in 
Lookup() method also pls help me out...

thanks in advance... 


  5, 50, 500, 5000 - Store N number of mails in your inbox. Go to 
http://help.yahoo.com/l/in/yahoo/mail/yahoomail/tools/tools-08.html


Re: [Axapta-Knowledge-Village] Ax implementation project Plan

2008-02-05 Thread Akshay
There is something called Sure Step methodology which you will find on
partnersource. You can find a project plan template there.

On Feb 5, 2008 4:46 PM, suneel babu [EMAIL PROTECTED] wrote:


 HI.,
 i want to know the Ax implementation Methodologies. so if any one have the
  Ax Implementation Project Plans . Plz send to me...

 Thank in Advance...
 __
 Post free property ads on Yello Classifieds now! www.yello.in
 http://ss1.richmedia.in/recurl.asp?pid=220

 [Non-text portions of this message have been removed]

 



[Non-text portions of this message have been removed]



RE: [Axapta-Knowledge-Village] Problem loging on to SQl server

2008-02-05 Thread Malcolm Burtt
Hi Lars

I'm not sure if this will work as I don't have your setup to test it, but you 
could try specifying the server on SQL Server settings tab of the configuration 
tool as servername:port (e.g. myserver:1434).

Regards


Malcolm Burtt
Touchstone
People, Partnership, Solutions


From: Axapta-Knowledge-Village@yahoogroups.com [mailto:[EMAIL PROTECTED] On 
Behalf Of larsj_73
Sent: 04 February 2008 05:09
To: Axapta-Knowledge-Village@yahoogroups.com
Subject: [Axapta-Knowledge-Village] Problem loging on to SQl server


Hi,
I have a problem logging on to the SQL server with the AX client. I
only get the `login failed' message on a 2T configuration and the AOS
server just stops after a sec of pending.

The SQL server is configured to port 1434, and if I try to create an
ODBC connection from the client machine/AOS server to the SQL server, I
have to specify that it should use port 1434 in order for the
connection to succeed. If I choose `dynamically determine port', the
login fails here as well. I use SQL server 2005 and AX 3.0 SP4, KR2.

I can't find any way to neither tell the AOS server nor the client
which port to use to connect to the SQL server.

I'll appreciate any help or suggestions

Br,
Lars H. Sandvik-Jacobsen



[Non-text portions of this message have been removed]



Re: [Axapta-Knowledge-Village] Ax implementation project Plan

2008-02-05 Thread Arijit Basu
Hi,
  Please have a look @ the Sure Step Methodology from Partnersource. Its
very comprehensive.

Cheers

Arijit Basu

On Feb 5, 2008 4:46 PM, suneel babu [EMAIL PROTECTED] wrote:


 HI.,
 i want to know the Ax implementation Methodologies. so if any one have the
  Ax Implementation Project Plans . Plz send to me...

 Thank in Advance...
 __
 Post free property ads on Yello Classifieds now! www.yello.in
 http://ss1.richmedia.in/recurl.asp?pid=220

 [Non-text portions of this message have been removed]

 




-- 


Arijit Basu


[Non-text portions of this message have been removed]



RE: [Axapta-Knowledge-Village] Xml document generation

2008-02-05 Thread Malcolm Burtt
Hi

Have you looked at doing XSLT transformations rather than modifying the 
standard Ax classes. Ax can apply a transformation directly to the schema it 
generates if you specify an XSLT transformation via the pipeline components on 
the endpoint action policies. You may well be able to achieve want you want 
without changing Ax at all using this mechanism.

Regards


Malcolm Burtt
Touchstone
People, Partnership, Solutions


From: Axapta-Knowledge-Village@yahoogroups.com [mailto:[EMAIL PROTECTED] On 
Behalf Of tearstechnologies
Sent: 28 January 2008 13:01
To: Axapta-Knowledge-Village@yahoogroups.com
Subject: [Axapta-Knowledge-Village] Xml document generation


Hi,
I have three types of schema files(xsd and xsx) and I want to create
three different types of xml files for Item master data using thease
shemas in place of standard Axa schema .I think there should be some
modification in axd classes/framework but i dont have much idea about
this subject so anyone can guide me ?
Bye
Ritesh



[Non-text portions of this message have been removed]



[Axapta-Knowledge-Village] Re: USe of super

2008-02-05 Thread Steeve Gilbert
To understand what super() does, you need to know about the basic of 
Object Oriented Programming, which is : inheritence.

For exemple, class SalesFormLetter_Invoice extends (inherits) class 
SalesFormLetter.  SalesFormLetter has a method init() and so does 
SalesFormLetter_Invoice.  If you instanciate SalesFormLetter_Invoice 
and call it's init(), when it gets to super() it will call it's parent 
method (SalesFormLetter.init()).  If you comment the call the super(), 
SalesFormLetter.init() will never be called.  Putting code before or 
after super() depends on if you want your action to happen before or 
after SalesFormLetter.init().

In Axapta it's not always clear what is the parent, but you don't 
always need to know either.

Another exemple, in the lookup() method, super() call the generic 
lookup construction.  If you want to create your own lookup you have to 
comment super() ortherwise 2 lookup will pop-up.

I know it's a bit confusing but I don't know how to explain it 
further.  It's really in the basics of OO.

Steeve...

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

 Hi all
   i have some confusion with respect to USe of super() in 
different methods: can anyone help me out clearyfing this doubt?? i 
want to what difference it makes when i write my code before super() 
and what happens if i write my code after Super().
 for example in fetch() method on  reports we override super(); and 
same in Lookup() method also pls help me out...
 
 thanks in advance... 
 
 
   5, 50, 500, 5000 - Store N number of mails in your inbox. Go to 
http://help.yahoo.com/l/in/yahoo/mail/yahoomail/tools/tools-08.html