[Axapta-Knowledge-Village] hi

2007-05-18 Thread pradeep itnal
hi friends
if anyone has the ebook of Inside Microsoft Dynamics AX 4.0
  then please do forward.
  i would be very greatful to you people.
  Please help me.


Regards
  Pradeep S.Itnal
mob:+91-9886288179


   
-
 Office firewalls, cyber cafes, college labs, don't allow you to download CHAT? 
Here's a solution! 

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



[Axapta-Knowledge-Village] New field on InventBatch

2007-05-18 Thread pabundes
Hello!!
I Inserted a new field on InventBatch table, this field is named
LoteProveedor, and I modified InventBatch Form to modify this field,
but when I run that form, it doesn't work, I can't see that field, but
in my design, it appears there!, What can I do?

thanks



[Axapta-Knowledge-Village] exam quests

2007-05-18 Thread c
Hi All,
   
  I will be having a MS Axapta TradeLogistics certificate examination couple 
of weeks laters. For this occassion, I am asking a help with providing the 
sample training questions. Thanks in advance.
   
   
  Cuneyt Koker
  Axapta Logistics Consultant
   

 
-
Expecting? Get great news right away with email Auto-Check.
Try the Yahoo! Mail Beta.

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



[Axapta-Knowledge-Village] AX 4.0 Installation problem

2007-05-18 Thread manav_7649
Hi all,

Pls help me out, I am  trying to install a AX 4.0 in my machine i have 
installed. it in the following sequence
1. Database server (SQL)
2. File Server
3. Object Server
4. Application server

all of these i have installed on same system. Please correct me if i 
have done it wrong here.

After that i have configured the server configuration and client 
configuration both and the when i try to start the application it gives 
me an error  Floating point not loaded as i am very much new in this 
please help me out

Thanks and regards
Manav 




Re: [Axapta-Knowledge-Village] Lookup

2007-05-18 Thread Jacqueline Singh
Hi there;

I had the similar struggle last week.  And i posted it; and had helpful
response.

Go to your datasouce and click properties; in the property sheet set the
ordermode to Group by, MorpX will retrieve a  single record for each group
BASED on the sorting fields.

Or you can use the following; Depending on how you selecting records
either(ablove or Below) approach would help.

SalesLine s;
;
while select s
group by ItemId
where s.SalesId == mySalesId
{
 info(s.ItemId);   // display distinct item ids
}


On 5/16/07, V G [EMAIL PROTECTED] wrote:

   Hi
 In the report parameter I have to show all the unique values of a field of
 some table as selection.
 So if there are three records in that table A where in the field X has
 values 1,2,3,2,1
 I have to show the values 1,2,3 in the parameter of the report as
 selection.
 I know this possible using lookup form. Can someone please tell me how.
 I can get all the five values if I write a relation on the extended
 datatype
 but I need just the unique values.
 Thanks

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

 



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



[Axapta-Knowledge-Village] Error while installing Axapta 4.0 SP1

2007-05-18 Thread ali_trish
Hi All please resolve my problem. 
This problem is arriving when I am installing Axapta 4.0. I have 
tracked the error in log file when axapta is installing. The error 
message is 

Exception = System.ComponentModel.Win32Exception 
Message = The system cannot find the file specified 
FullText = System.ComponentModel.Win32Exception: The system cannot 
find the file specified 
at System.Diagnostics.Process.StartWithCreateProcess
(ProcessStartInfo startInfo) 
at System.Diagnostics.Process.Start() 
at Microsoft.Dynamics.Setup.MsiAos.PerformPostInstallActions() 
at Microsoft.Dynamics.Setup.MainForm.s250Timer_Tick() 
 Setup ended before completion. === 


I had tried lot to solve that one  , pls give me solution. 

Regards,
Ali Asghar





Re: [Axapta-Knowledge-Village] Printing reports in pdf format

2007-05-18 Thread Jacqueline Singh
Hi

Instead of setting the property of resize automatically to yes Rather give
the logo a width and height in the property sheet; im sure that'll work.


On 5/17/07, chamindakothalawala [EMAIL PROTECTED] wrote:

   Hi Group,

 I will try to save my customized report in PDF format.
 But the problem is that the Logo did not resized automatically. It is
 resized and showing correctly with in axapta. If I save that report in
 RTF format. it is showing Logo correctly. What could be the reason for
 this. I am using Axapta 3.0 with SP4 with SQL Server 2005.

 Can any one kindly advice on this.

 Regards,
 Chaminda

 



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



[Axapta-Knowledge-Village] Pallet transport for Shipment

2007-05-18 Thread alexchueng
Hi All,
I want to see the Pallet transport process for Shipment,but I can not 
found any Pallet transport creation after I Activate the shipment. Is 
I missing any setup for the Pallet transport? I am using the item ESB-
007 of AX 4.0 SP1 demo data, Does anybody can tell me how to use the 
Pallet transport for the shipment?



[Axapta-Knowledge-Village] How can we call multiple reports

2007-05-18 Thread contact2ajit2006
Dear Frnds,

Can any one tell me, how can we call multiple reports from single 
click..

plz help me out.

Thanks and Regards
Ajit



Re: [Axapta-Knowledge-Village] Lookup

2007-05-18 Thread Pankaj Gupta
 sysTableLookup.addLookupfield(fieldnum(ITL_AdminClubMembershipRequisition,
emplid));

   queryBuildDataSource =query.addDataSource
(tablenum(ITL_AdminClubMembershipRequisition));
   queryBuildDataSource.orderMode(OrderMode::GROUPBY);
   
queryBuildDataSource.addSortField(fieldNum(ITL_AdminClubMembershipRequisition,
emplid));

queryBuildDataSource.addRange
(fieldnum(ITL_AdminClubMembershipRequisition,Authorize))
.value(QueryValue(enum2str(noyes::Yes)));
   sysTableLookup.parmQuery(query);
  sysTableLookup.performFormLookup();
change table id and field id accordingly




On 5/16/07, V G [EMAIL PROTECTED] wrote:

   Hi
 In the report parameter I have to show all the unique values of a field of
 some table as selection.
 So if there are three records in that table A where in the field X has
 values 1,2,3,2,1
 I have to show the values 1,2,3 in the parameter of the report as
 selection.
 I know this possible using lookup form. Can someone please tell me how.
 I can get all the five values if I write a relation on the extended
 datatype
 but I need just the unique values.
 Thanks

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

 




-- 
Pankaj Kumar Gupta
-- 
Technical Consultant | Microsoft Axapta.
ILFS Technologies -09810999669.


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



[Axapta-Knowledge-Village] Reports in pdf format problem.

2007-05-18 Thread Imthiyaz Ahamed
Hi Group,

  I will try to save my customized report in PDF format. But the 
problem is that the Logo did not resized automatically. It is resized and 
showing correctly with in axapta. If I save that report in RTF format. it is 
showing Logo correctly. What could be the reason for this. I am using Axapta 
3.0 with SP4 with SQL Server 2005.

Can any one kindly advice on this.

Regards,

Imthiyaz Ahamed.


   
You
 snooze, you lose. Get messages ASAP with AutoCheck
in the all-new Yahoo! Mail Beta.
http://advision.webevents.yahoo.com/mailbeta/newmail_html.html

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



[Axapta-Knowledge-Village] SQL Query for AXAPTA BACKEND DATABASE

2007-05-18 Thread p.saravanakumar
Hi Friends
 
Does anybody having a SQL Query for taking reports directly from Backend
Database in Axapta? Or where I get it from?
 
 
 
Regards
 
P Saravanakumar
Co-Its
09894999281
 


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



[Axapta-Knowledge-Village] Re: How do you Identify different AX4 instances?

2007-05-18 Thread thestorm1974
Guys,

Thanks for all your help.

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

 Axaptapedia has a helpful solution to this, shows you how to get 
 instance info into the title bar.  Go to 
 http://www.axaptapedia.com/Configuration_in_title_bar for details.
 
 Hans
 
 --- In Axapta-Knowledge-Village@yahoogroups.com, Steve Wright 
 steve@ wrote:
 
  In the client AX Configuration Utility, first tab page there is 
an 
 entry
  Startup message.You could place PRODUCTION SYSTEM or TEST
  SYSTEM etc into this field.
  
   
  
  Steve
  
   
  
   
  
  From: Axapta-Knowledge-Village@yahoogroups.com
  [mailto:[EMAIL PROTECTED] On Behalf Of
  thestorm1974
  Sent: Monday, 14 May 2007 8:15 PM
  To: Axapta-Knowledge-Village@yahoogroups.com
  Subject: [Axapta-Knowledge-Village] How do you Identify different 
 AX4
  instances?
  
   
  
  Hi,
  
  I have two AX4 instances installed, when you login to AX how can 
 you 
  identify which instance you are using? I know you can check the 
 online 
  users, but in AX 3 it showed you which AOS  instance you are 
 attached 
  too.
  
  How is tis possible in AX 4, basically I would like an easy way 
to 
  highlight to users what system they are using.
  
  Many Thanks
  
  Garry 
  
   
  
  
  
  [Non-text portions of this message have been removed]
 





[Axapta-Knowledge-Village] AX 4.0 AIF (Intergration Framework)

2007-05-18 Thread Mike Matta
Hi all,

I have a general question about the AIF that is new to Ax4.0.  Is this 
basically the same as the Enterprise Portal in Ax3.0?  What is the 
difference?

Thanks,
Mike




RE: [Axapta-Knowledge-Village] exam quests

2007-05-18 Thread Mike Matta
Hi Cuneyt,

I am also planning on taking this exam.  Could you please share the 
questions that are sent to you?  I would be very thankful.  My email address 
is [EMAIL PROTECTED]

Thank you!
Mike


From: cüneyt köker [EMAIL PROTECTED]
Reply-To: Axapta-Knowledge-Village@yahoogroups.com
To: Axapta-Knowledge-Village@yahoogroups.com
Subject: [Axapta-Knowledge-Village] exam quests
Date: Wed, 16 May 2007 02:31:11 -0700 (PDT)

Hi All,

   I will be having a MS Axapta TradeLogistics certificate examination 
couple of weeks laters. For this occassion, I am asking a help with 
providing the sample training questions. Thanks in advance.


   Cuneyt Koker
   Axapta Logistics Consultant



-
Expecting? Get great news right away with email Auto-Check.
Try the Yahoo! Mail Beta.

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





Sharing the knowledge on Axapta.
Visit www.frappr.com/axapta for axapta friends.

Come and choose your preferred name for Microsoft Dynamics AX on the Axapta 
Knowledge Village, Visit www.axapta-knowledge-village.tk

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/Axapta-Knowledge-Village/

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/Axapta-Knowledge-Village/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* 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/
 


RE: [Axapta-Knowledge-Village] AX 4.0 AIF (Integration Framework)

2007-05-18 Thread Chris Legan
Mike,

 

AIF and EP are like night and day. AIF allows you to use web services and
generate XML's to pass data between AX and other applications. The selling
point is that the records are inserted into AX using AX business logic;
meaning they are not inserted directly into DB with no validation. 

 

Some issues with AIF. First of all the business connector in AX is not
compatible with a 64-bit OS. Big Problem. You can run the process as 32 bit
on 64 bit OS, but that kind of defeats the purpose of having 64 bit OS.

 

Second AIF currently only allows you to insert a record. You can not update
or delete a record using without some serious coding effort.

 

Third AIF does not work out of the box. It involves a lot of coding,
debugging, debugging!! Then some more debugging! I worked with a customer
who tried getting AIF to work with two MBS partners, and MBS and after 4
months they pulled the plug on AIF. 

 

Let's be clear I am not bashing AIF; it has serious potential, but I think
it is still early in its development cycle. Maybe by next release the bugs
will be worked out and it will be a nice solution.

 

If you are looking for a product that is similar to AIF, but allows more
flexibility for inserting, updating, and deleting records send me an email.
We have a solution via one of our partners out of DK.

 

[EMAIL PROTECTED]

 

Cheers!

 

  _  

From: Axapta-Knowledge-Village@yahoogroups.com
[mailto:[EMAIL PROTECTED] On Behalf Of Mike Matta
Sent: Friday, May 18, 2007 8:55 AM
To: Axapta-Knowledge-Village@yahoogroups.com
Subject: [Axapta-Knowledge-Village] AX 4.0 AIF (Intergration Framework)

 

Hi all,

I have a general question about the AIF that is new to Ax4.0. Is this 
basically the same as the Enterprise Portal in Ax3.0? What is the 
difference?

Thanks,
Mike

 



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



[Axapta-Knowledge-Village] Re: New field on InventBatch

2007-05-18 Thread Steeve Gilbert
If you have inserted your field in a group (in the form), check the 
group property DataGroup.  If a DataGroup is set and your field is 
not in that group (on the table field group) then your field will not 
appear on the form.

Hope it helps

Steeve...

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

 Hello!!
 I Inserted a new field on InventBatch table, this field is named
 LoteProveedor, and I modified InventBatch Form to modify this field,
 but when I run that form, it doesn't work, I can't see that field, but
 in my design, it appears there!, What can I do?
 
 thanks





[Axapta-Knowledge-Village] Re: How can we call multiple reports

2007-05-18 Thread Steeve Gilbert
You should be able to do that with ReportRun class.

Steeve...

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

 Dear Frnds,
 
 Can any one tell me, how can we call multiple reports from single 
 click..
 
 plz help me out.
 
 Thanks and Regards
 Ajit





[Axapta-Knowledge-Village] Blobdata type

2007-05-18 Thread James Flavell
Hi everyone,

 

I was wondering if I use the container type Blobdata on a table will this
take a fixed amount of space in the database or how is the space decided?

 

Thanks

James

 



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