RE: [Axapta-Knowledge-Village] AXAPTA Implementation

2007-05-03 Thread Faiqa Khushi
 

 

You can download Axapta test company from partner source .

 

 

Regards,

Faiqa

 

From: Axapta-Knowledge-Village@yahoogroups.com
[mailto:[EMAIL PROTECTED] On Behalf Of Naeem Sarwar
Sent: Thursday, May 03, 2007 1:29 PM
To: Axapta-Knowledge-Village@yahoogroups.com
Subject: [Axapta-Knowledge-Village] AXAPTA Implementation

 

hi guyz,
i need little help of you ppls that I've downloaded AXAPTA 4.0 from
somewhere. and I've installed it as well. now i don't find any test or
training company in AXAPTA? how would be that possible...
2nd as we have outsourced this project to vendor so what would be the best
approach to get it implemented within budgets and time lines.
I've another problem but i will speak about it later.
thanks and waiting for your help
Naeem Sarwar
Saudi Arabia

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

 



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



RE: [Axapta-Knowledge-Village] Citrix metaframe presentation server

2007-05-03 Thread Pankaj Kant
Hi
 
Simply Publish Axpata Application in Citrix as you do for other
Application 
 
Axapta will Work 
 
Incase of any Problem Just let me know
 
Pankaj
 


From: Axapta-Knowledge-Village@yahoogroups.com
[mailto:[EMAIL PROTECTED] On Behalf Of Praveen
Sent: Thursday, May 03, 2007 5:34 PM
To: Axapta-Knowledge-Village@yahoogroups.com
Subject: [Axapta-Knowledge-Village] Citrix metaframe presentation server
 
hi all,
Does any body know about citrix metaframe server and how it can be used
with axapta. i need things like instalation steps of citrix and how
citrix clients can be used to call axapta applications. Any pointers
would be helpful. Thanks in Advance.

Regards,
Praveen

Send a FREE SMS to your friend's mobile from Yahoo! Messenger. Get it
now at http://in.messenger.yahoo.com/  

[Non-text portions of this message have been removed]
 
The information contained in this communication is intended solely for the use 
of the individual or entity to whom it is addressed and others
authorized to receive it. It may contain confidential or legally privileged 
information. If you are not the intended recipient you are hereby notified
that any disclosure, copying, distribution or taking any action in reliance on 
the contents of this information is strictly prohibited and may be
unlawful. If you have received this communication in error, please notify us 
immediately by responding to this email and then delete it from yoursystem 
This email may have been intercepted, partially destroyed, arrive late, 
incomplete or contain viruses and no liability is accepted by LG Life
Sciences India Pvt. Ltd. (LGLSI) as a result. Opinions, conclusions and other 
information in this message represent the opinion of the sender and do not 
necessarily represent or reflect the views and opinions of LGLSI.

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



Re: [Axapta-Knowledge-Village] Refresh Or Execute of Data Source?

2007-05-03 Thread Pankaj Gupta
Hi,
 Nitesh
Thanks for your help,, but I am little confuse here, you can create an
object of class, table, and of an EDT but how can you create an object of a
form?, can you help me in detail,? may be with a piece of some code,,m
sounding foolish but m new in Axapta!

Regards,

On 4/30/07, Nitesh Ranjan <[EMAIL PROTECTED]> wrote:
>
>   It is same as caller of the current form. u need to have a object (O) of
> the form to be refreshed on the form from where u need to execute the
> refresh method. now create method (M) on the third form with code to refresh
> the datasourse. Call this method M from Object O.
>
> Hope u understand. If you need any further clarification let me know.
>
> Regards
> .
>
> pankaj_dbc <[EMAIL PROTECTED] > wrote:
> I have a requirement where I have to refresh or Execute (Execute
> Query) the datasource of a third form which is NOT a CALLER of my
> current form..Can any body suugest me a way?
>
> Pankaj.
>
> -
> Ahhh...imagining that irresistible "new car" smell?
> Check outnew cars at Yahoo! Autos.
>
> [Non-text portions of this message have been removed]
>
> 
>



-- 
Pankaj Kumar Gupta
-- 
Technical Consultant | Microsoft Axapta.
IL&FS Technologies -09810999669.


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



RE: [Axapta-Knowledge-Village] Charges in Sale order Structure

2007-05-03 Thread Ramachandran
Hi

 

There are two ways you can address this

 

1, Include the charge value in the item itself. Define the same in Item
master for sale price

 

2 Create a Service item for this charges and attach it with the sale
order for the item while processing.

 

Thanks & Regards,

S.Ramachandran

 

 

 



From: Axapta-Knowledge-Village@yahoogroups.com
[mailto:[EMAIL PROTECTED] On Behalf Of zyx_
Sent: Wednesday, May 02, 2007 3:32 PM
To: Axapta-Knowledge-Village@yahoogroups.com
Subject: [Axapta-Knowledge-Village] Charges in Sale order Structure

 

Hi,

In indian localization in sale order structure charges are not 
available, so we have only two options

1) Enter the charge as a miscellaneous charge which is not a part of 
indian localization or
2) Create those charges as a service item,

which is the right option? Is it advisable to use miscellaneous 
charges in indian localization environment? Is there any other option 
available to address the charges in the sale order

With Regards
Prakash

 



*
This e-mail communication and any attachments may be privileged and 
confidential to Hexaware and are intended only for the 
use of the recipients named above. If you are not the intended recipient, 
please do not review, disclose, disseminate, 
distribute or copy this e-mail and attachments. If you have received this email 
in error, please delete the same alongwith 
all attachments thereto and notify us immediately at [EMAIL PROTECTED] 
.
*



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



[Axapta-Knowledge-Village] End MSWORD process thorugh COM

2007-05-03 Thread karthik kumar
Hi All , 
I have tried accessing Microsoft Word through COM in Axapta 3.0  to 
print a document , as the  execution completes i find  that WINWORD.EXE , 
application still remains in the memory , as i  run the code several times ( as 
many as 3 times) for each execution a application gets loaded into memory. Is 
there any way to end the process through code ? , as of now i am closing the 
WINWORD.exe process  manually from the Task Manager by clicking End process. i 
have given portion of code here ,
 
 
COM COMAppl, COMdocuments, COMdocument;
;
 
COMAppl = new COM('Word.Application');
COMdocuments = COMappl.documents();
COMdocument = COMdocuments.add('c:\\LSMTableInfo_Word.dot');
{
--- // further execution

---

 
}
 COMdocument.saveAs('c:\\test.doc',1,false,'',false);   // saving the document
 
// is the any way to end the process of Word from memory through code ? as the 
code directly saves the output into file.

__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

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



[Axapta-Knowledge-Village] Citrix metaframe presentation server

2007-05-03 Thread Praveen
hi all,
Does any body know about citrix metaframe server and how it can be used 
with axapta. i need things like instalation steps of citrix and how citrix 
clients can be used to call axapta applications. Any pointers would be helpful. 
Thanks in Advance.
 
Regards,
Praveen


  Send a FREE SMS to your friend's mobile from Yahoo! Messenger. Get it now 
at http://in.messenger.yahoo.com/

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



[Axapta-Knowledge-Village] Error Code 110(0x6E) while Starting AOS Service

2007-05-03 Thread Imthiyaz Ahamed
Hi Group,
   
   I am trying to Install Microsoft Dynamics AX 4.0 with Service Pack1 in 
the SQL Server 2005 Clustering Environment. Installed Database Server and 
Application File Server on the Shared Hard Drive Successfully. After Installing 
AOS Service, The Service is  starting to build index. But at one stage, The 
service stopped and saying this message in Event viewer as Application Log: 
  Object Server 01: Internal Error occured executing stored procedure when 
creating session for the AOS. 
  In ths System Log:
   The Dynamics Server$01-TESTAOS1 service terminated with service-specific 
error 110 (0x6E).
  I tried to start the sevice again, But it is not starting and throws error 
event ID 110. Herewith I attached that Event log file.
   
  Can any one kindly advice on this. I really want to know whether Dynamics AX 
4.0 with ServicePack1 supports SQL Clustering Environment or not?
   
  Regards,
  Imthiyaz Ahamed.
   

   
-
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] AXAPTA Implementation

2007-05-03 Thread Naeem Sarwar
hi guyz,
i need little help of you ppls that I've downloaded AXAPTA 4.0 from
somewhere. and I've installed it as well. now i don't find any test or
training company in AXAPTA? how would be that possible...
2nd as we have outsourced this project to vendor so what would be the best
approach to get it implemented within budgets and time lines.
I've another problem but i will speak about it later.
thanks and waiting for your help
Naeem Sarwar
Saudi Arabia


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



[Axapta-Knowledge-Village] Re: PDF

2007-05-03 Thread Steeve Gilbert
If you're talking about Ax 3.0 then there's 1 fix in SP4 and many 
fixes in SP5 about PDF (haven't checked SP6 yet, just find out it was 
out).

I don't know if it can help you but here's the link to SP4, 5 and 6 
on customerSource : 

https://mbs.microsoft.com/customersource/downloads/servicepacks/ax30sp
4_eng.htm?printpage=false

https://mbs.microsoft.com/customersource/support/downloads/servicepack
s/dynax30sp5.htm?printpage=false

https://mbs.microsoft.com/customersource/support/downloads/servicepack
s/dynax30_sp6.htm?printpage=false

regards,

Steeve...

--- In Axapta-Knowledge-Village@yahoogroups.com, "Craig Fidler" 
<[EMAIL PROTECTED]> wrote:
>
> Hi All,
> 
>  
> 
> There is a hotfix out for the printing to PDF. Can anyone supply me 
with the
> hotfix as I am unable to locate the download files on partnersource.
> 
>  
> 
>  
> 
>  
> 
> Thanks
> 
>  
> 
>  
> 
> Craig
> 
> 
> 
> [Non-text portions of this message have been removed]
>




Re: [Axapta-Knowledge-Village] Facturacion En Axapta

2007-05-03 Thread Luis Martinez
Primero te llevas el método allocateNumAndVoucher, de la clase
"SalesFormLetter_Invoice" al reporte donde tienes tu factura (SalesInvoice),

Para poder "quemar" el folio de la factura,  luego se tiene que
modificar el método fetch, para que ejecute un método que
hay que agregar en el mismo reporte, que incluyo al final.

if (salesFormLetterReport.stillOriginalsOrCopiesToPrint())
element.reset();
}
   //código a insertar
if(element.page() > 1) {
   element.ConsecutivosImpresos(element.page());
}
   //antes del siguiente código.
if (!journalList.next(oldcustInvoiceJour))
{
...

* método "ConsecutivosImpresos":

void ConsecutivosImpresos(int numPaginas) {
  NumberSeq  numSeq;
  InvoiceId  numFactura;
  Container  numeroFacturas = connull();
  vouchernumAsiento;
  custInvoiceJourcustInvoiceJourLocal;
  inti;
  ;
  if(numPaginas>1) {
   ttsbegin; // control de transacción necesario para generar el numero de
factura y voucher
  if(custInvoiceJour.UltimasFacturas==connull()) {
  for(i=1;i<=numPaginas-1;i++) {
numSeq = this.allocateNumAndVoucher();
[numFactura, numAsiento] = numSeq.numAndVoucher();
numeroFacturas += numFactura;
  }
  select firstonly forupdate custInvoiceJourLocal
   where custInvoiceJourLocal.InvoiceId   ==
custInvoiceJour.InvoiceId
  && custInvoiceJourLocal.InvoiceDate ==
custInvoiceJour.InvoiceDate
  && custInvoiceJourLocal.CustInvoiceType ==
custInvoiceJour.CustInvoiceType;
  if(custInvoiceJourLocal) {
 custInvoiceJourLocal.ultimasFacturas = numeroFacturas;
 custInvoiceJourLocal.update();
  }
  }
   ttscommit;
  }
}

En este caso guardo los números de factura "quemados" en una variable
de la tabla de diario de facturas.

On 5/2/07, pabundes <[EMAIL PROTECTED]> wrote:
>
>   Hola, tenemos que hacer un cambio en la facturacion en axapta, para
> que al momento de facturar uno o varios pedidos de venta, el sistema
> me "corte" la factura cada 20 lineas (por ejemplo), y la siguiente
> hoja, sea otra factura en automatico, esto, puesto que el folio de la
> factura ya esta impreso (por disposiciones fiscales) y facturamos un
> monton de pedidos a personas en regimen fiscal que no requieren
> factura, ¿Como le puedo hacer o como hago que en automatico me saque
> de factura por pagina?
>
> Saludos y Gracias
>
>  
>



-- 
Lic. Luis Enrique Martínez Peña
Analista Programador Axapta
Consultor Sistemas Web
Off. (81) 8335 0620 ext 8564
http://www.it-soluciones.com.mx


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



Re: [Axapta-Knowledge-Village] Invoice arrived before PO received

2007-05-03 Thread kbi kbi
Hi Thang,

I believe you face the case of VAS requirement, correct?
Which AX version you are running? AX 3.0 SP?? or AX 4.0?

regards,
Khue



- Original Message 
From: Le Quyet Thang <[EMAIL PROTECTED]>
To: Axapta-Knowledge-Village@yahoogroups.com
Sent: Wednesday, May 2, 2007 2:14:20 PM
Subject: Re: [Axapta-Knowledge-Village] Invoice arrived before PO received

Hi Khue,

Thank you for your reply. I know this way, but if I use Invoice journal or 
Invoice Register, I cannot see the connection between Invoice and Packing slip. 

If I use the normal way, I can see in Inquery both Packing and Invoice posting, 
but if I use your way, how can I check the posting and connection. Please show 
me how to check. Thanks.

kbi kbi <[EMAIL PROTECTED] com> wrote: Hi Thang,

You receive invoice but not yet paid, correct? Because you may want to check 
your goods before paying money to the customer.

Then:

1. When received Invoice 1st May: Dr Account Payable -- Cr Unvoucher Invoiced
Can you use AP/Payment/Invoice Journal or Invoice Register
2. When PO goods received 4th May: Dr Unvoucher invoiced -- Cr Inventory 
Received
You can post your PO to packing slip 

Hope this help.
Khue

- Original Message 
From: Le Quyet Thang <[EMAIL PROTECTED] com>
To: Axapta-Knowledge- [EMAIL PROTECTED] ups.com
Sent: Wednesday, May 2, 2007 11:59:54 AM
Subject: [Axapta-Knowledge- Village] Invoice arrived before PO received

Hi all,

If my company received Invoice before goods received, how can we solved because 
accountant want to record: 
1. When received Invoice 1st May: Dr Account Payable -- Cr Unvoucher Invoiced
2. When PO goods received 4th May: Dr Unvoucher invoiced -- Cr Inventory 
Received

Similar when we deliver SO Invoice before shipping goods. Please help me how to 
resolved it in Axapta. My previous system has seperated screens recording for 
each step: PO Received, Invoice and Payment and we can matching each step later 
depend on which step arrives first . 

Thanks in advance,
Thang

zeno zoe  wrote: Print an Performa invoice, Untick 
the posting button while posting which would not create a Financial entry.

- Original Message 
From: Khurram Zaki <[EMAIL PROTECTED] com>
To: Axapta-Knowledge- [EMAIL PROTECTED] ups.com
Sent: Sunday, 15 April, 2007 12:43:43 PM
Subject: [Axapta-Knowledge- Village] Reciept/Invoice for Customer Prepayment

Hello Guys,

My client recieves advance payments against their SO sometimes even before
the SO is created in the system. They wish to issue a reciept or invoice for
that amount. I could not figure out how to print that either from Payment
Journal or SO. Can anyone help me out in that.

Cheers!

Khurram

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

 _ _ _ _ _ _
Yahoo! Answers - Got a question? Someone out there knows the answer. Try it
now.
http://uk.answers. yahoo.com/ 

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

 - - ---
Ahhh...imagining that irresistible "new car" smell?
Check outnew cars at Yahoo! Autos.

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

 _ _ _ _ __
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam protection around 
http://mail. yahoo.com 

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





 - - ---
Ahhh...imagining that irresistible "new car" smell?
Check outnew cars at Yahoo! Autos.

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




__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

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



[Axapta-Knowledge-Village] German Tax Forms

2007-05-03 Thread danfine
We are working at a German subsidary this week.  We moved them off the 
German layer in AX 3.0 and have put the server in the USA on AX 4.0 on 
the US layer.   After upgrading, the German tax forms are not printing 
right, the layout is not like it was in 3.0.  Legally, they have to be 
prepared in a certain way. Instead of printing everything in right rows 
columns and printing two pages, it is printing half a page and is not a 
format which is required by the tax authority here.  In configurations, 
Germany is selected for local functionality.  Is there a German tax 
form available, or how do we get this to print right?  Thank you.

Dan Fine



[Axapta-Knowledge-Village] PDF

2007-05-03 Thread Craig Fidler
Hi All,

 

There is a hotfix out for the printing to PDF. Can anyone supply me with the
hotfix as I am unable to locate the download files on partnersource.

 

 

 

Thanks

 

 

Craig



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



[Axapta-Knowledge-Village] Webform lookup doesn't work

2007-05-03 Thread Irving
Hi

I work on the webform EPCSSCheckOut and I want to add a lookup on the 
control 'WebGroup_DeliveryStreet'. When clicking the lookup button the 
user are able to select between the customers delivery or alternative 
delivery addresses.

I use the class webTableLookup to create the lookup. the same way it's 
done on the control 'WebGroup_DeliveryCounty' on the same form. My 
lookup looks up values from the address table.

My first problem is that I don't get a lookup button!
My second problem is that I'm unable to debug in the enterprise portal 
even though the setup is done.

Any help will be appriciated, thanks

Koffidan



[Axapta-Knowledge-Village] AX Consistency check

2007-05-03 Thread nm45do
Does anyone know of a good description for the Consistency checker and 
the fixes it performs. I hav the whitepaper describing functionality 
for BOM's, Items, and inventory, but I am curious to know which checks 
are made and which fixes are possible for AP, AR, Salestax 

Kind regards