Re: [Axapta-Knowledge-Village] seperate tables in WORD Document using COM in AX3.0

2007-05-09 Thread Sumit Loya
Hi,

You can use following piece of code to create a table


static void Insert_intoword_Tableformat(Args _args)
{
COM document;
COM wordDocument;
COM wordRange;
COM app;
CustTable   custTable;
str tableContent;
;

app = new com(Word.Application);
app.visible(true);
document = app.Documents();
wordDocument = document.add();
wordDocument.activate();
wordRange   = wordDocument.range(0,0);
while select AccountNum, Name From custTable
{
tableContent+= custTable.AccountNum + \t + custTable.Name +
\n;
}

wordRange.insertAfter(strfmt(tableContent));
wordRange.convertToTable();
}

But this would create only one table. For more than one it is better to
have a template file and then using that template file create tables. Will
send the code for that once it is developed. Till then try doing some R  D
on this piece of code and see if more than one table can be added or not.

Regards,

Sumit
On 5/8/07, karthik kumar [EMAIL PROTECTED] wrote:

   Hi ,

 how can i create a 3 seperate tables in WORD document using with COM
 object in AX 3.0.

 Regards
 Karthikkumar

 __
 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]

 



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



[Axapta-Knowledge-Village] Batch job setting

2007-05-09 Thread rueibin88
Dear All:
Is there any one know how to setup batch job to run at the last day of 
each month?
Thanks a lot



[Axapta-Knowledge-Village] Re: Multiple Employees on a Work Center or Work Center group

2007-05-09 Thread Anil Kumar Sinha
Hi Sumit,

I am sorry but you didn't get my question. Going by your suggestion 
I can assign an employee on work center. But my problem is I want to 
assign more than one employee on work center.

Regards
Anil Sinha


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

 Hi,
 
 Here is some information hope it helps you.
 
 Traverse to this form Work center groups - Work centers - 
Overview tab
 
 There you can find an option Employee beside Option Vendor.
 
 You can specify the employee there.
 
 Regards,
 Sumit
 
 On 5/8/07, Anil Kumar Sinha [EMAIL PROTECTED] wrote:
 
Hi,
 
  I am Dynamics Ax 4.0. Till AX 3.0 I could assign work center 
against
  employee. This facility is not there on employee anymore.
 
  How can I assign multiple employees on a work center or work 
center
  group?
 
  Regards
  Anil Sinha
 
  
 
 
 
 [Non-text portions of this message have been removed]





[Axapta-Knowledge-Village] Payment fees

2007-05-09 Thread zeno zoe
hi there ,

Is there anyone who got very good knowledge about Payment fees in purchase 
ledger, 

Many thanks
Zeno



  ___ 
Yahoo! Mail is the world's favourite email. Don't settle for less, sign up for
your free account today 
http://uk.rd.yahoo.com/evt=44106/*http://uk.docs.yahoo.com/mail/winter07.html 

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



[Axapta-Knowledge-Village] Regarding Extended Data Type

2007-05-09 Thread kgage_ax4
i am still new to the axapta developing and i have a problem with 
above subject.

there is an inbuilt extended data type called Dimension

and this has two array elements also.(Department/Cost center/Purpose)

i want to call them one by one as Enum types

can i do with this axapta?

please help me.

i don't know this is a question or but but please help me.

i am still 20 years ald and no one to ask inside the company.

thanx
best regards




[Axapta-Knowledge-Village] failed to establish connection

2007-05-09 Thread onurkiyik
Hi Friends,

I am having a problem with AX 4.0. I have
installed AX 4.0 successfully on windows 2003 server. But i can not
start the axapta because of an error failed to established connection

What are the possible solutions? what can i do?
Please help me.



With Kind Regards,

Onur KIYIK.



Re: [Axapta-Knowledge-Village] hi

2007-05-09 Thread zeno zoe
Hi 
Is there anyone who knows how to do Payment fees in purchase ledger. Could 
someone explain me about the logic behind it. Waiting for a reply.

Many thanks
Zeno 






___ 
New Yahoo! Mail is the ultimate force in competitive emailing. Find out more at 
the Yahoo! Mail Championships. Plus: play games and win prizes. 
http://uk.rd.yahoo.com/evt=44106/*http://mail.yahoo.net/uk 

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



Re: [Axapta-Knowledge-Village] Payment fees

2007-05-09 Thread G Radhakrishnan
Hi zeno,
Can u exactly mention the business logic ?

Regards,
GR.
--- zeno zoe [EMAIL PROTECTED] wrote:

 hi there ,
 
 Is there anyone who got very good knowledge about
 Payment fees in purchase ledger, 
 
 Many thanks
 Zeno
 
 
 
  

___
 
 Yahoo! Mail is the world's favourite email. Don't
 settle for less, sign up for
 your free account today

http://uk.rd.yahoo.com/evt=44106/*http://uk.docs.yahoo.com/mail/winter07.html
 
 
 [Non-text portions of this message have been
 removed]
 
 



 

Now that's room service!  Choose from over 150,000 hotels
in 45,000 destinations on Yahoo! Travel to find your fit.
http://farechase.yahoo.com/promo-generic-14795097


[Axapta-Knowledge-Village] Re: Regarding Extended Data Type

2007-05-09 Thread Steeve Gilbert
I'm not sure to understand what you want exactly but take a look at 
the EDT DimensionCode or Enum Type SysDimension.


Steeve...

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

 i am still new to the axapta developing and i have a problem with 
 above subject.
 
 there is an inbuilt extended data type called Dimension
 
 and this has two array elements also.(Department/Cost 
center/Purpose)
 
 i want to call them one by one as Enum types
 
 can i do with this axapta?
 
 please help me.
 
 i don't know this is a question or but but please help me.
 
 i am still 20 years ald and no one to ask inside the company.
 
 thanx
 best regards





Re: [Axapta-Knowledge-Village] Regarding Extended Data Type

2007-05-09 Thread setiaji
Do you want to call one of the element Dimensions ?

- setiaji -


kgage_ax4 wrote:

 i am still new to the axapta developing and i have a problem with
 above subject.

 there is an inbuilt extended data type called Dimension

 and this has two array elements also.(Department/Cost center/Purpose)

 i want to call them one by one as Enum types

 can i do with this axapta?



Send instant messages to your online friends http://asia.messenger.yahoo.com 


Re: [Axapta-Knowledge-Village] failed to establish connection

2007-05-09 Thread Sumit Loya
Hi,

Did you check whether the AOS is up and running or not. There could be
possibility of TCP/IP port mismatch also.

Regards,
Sumit


On 5/9/07, onurkiyik [EMAIL PROTECTED] wrote:

   Hi Friends,

 I am having a problem with AX 4.0. I have
 installed AX 4.0 successfully on windows 2003 server. But i can not
 start the axapta because of an error failed to established connection

 What are the possible solutions? what can i do?
 Please help me.

 With Kind Regards,

 Onur KIYIK.

 



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