[Axapta-Knowledge-Village] sending mails from crm quotation

2007-07-04 Thread pbercher
Hello

i have a problem when sending mails from crm quotation / documents:
If my outlook is closed i get the errormessage:

Method 'createItem' in COM object of class 'outlook.application' 
returned 
error code 0x80030003 (unknown) which means: The operation failed.


If outlook is open .. i don't ..
any hints?
Thx 
Pirmin




[Axapta-Knowledge-Village] change fieldid in Ax4

2007-07-04 Thread anton_tjiptadi
Hi all,

how to change field id in Ax 4 ?

TIA,
Ton



[Axapta-Knowledge-Village] Tab delimited text file

2007-07-04 Thread chuapatrickd
Hi to all,

currently the text file appear with quotes in each field.

the code is shown below

myfile= new Comma7Io(c:\\exportedfile8.txt,w);
myfile.outFieldDelimiter(\t);
myfile.outRecordDelimiter(\r\n);

what should I replace in the outFieldDelimiter parameter so that
it will have no more quotes?

thanks,
patrick






[Axapta-Knowledge-Village] Re: AOS is not working

2007-07-04 Thread Faisal Hussain
There are number of check but lets try to check the user account 
starting the Axapta service should have domain level rights.

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

 Ya I think there is some security problem because of which I am 
getting this
 issue, but I have checked all the options related to security but 
could not
 figure out . Can you please guide me to the possibilities .!
 
 Its working fine if I bring AOS and File server on same machines. 
But if
 both are on separate machines, AOS service gives the same error.
 
  
 
 Regards
 
 faiQa
 
  
 
 From: Axapta-Knowledge-Village@yahoogroups.com
 [mailto:[EMAIL PROTECTED] On Behalf Of 
Faisal
 Hussain
 Sent: Monday, July 02, 2007 5:53 AM
 To: Axapta-Knowledge-Village@yahoogroups.com
 Subject: Re: [Axapta-Knowledge-Village] AOS is not working
 
  
 
 Code 80: is usually permission error, you have to check users 
permission
 required to start AOS
 
 Faisal
 
 - Original Message 
 From: Faiqa Khushi [EMAIL PROTECTED]
 mailto:faiqa.khushi%40m-consultants.com 
 To: Axapta-Knowledge-Village@yahoogroups.com
 mailto:Axapta-Knowledge-Village%40yahoogroups.com 
 Sent: Sunday, July 1, 2007 9:37:44 AM
 Subject: [Axapta-Knowledge-Village] AOS is not working
 
 I am getting following error when I try to run AOS windows could 
not start
 the Dynamics server $01-company on local computer for more 
information view
 the system event log . if this is non-Microsoft service contact the 
service
 vendor and refer to service specific error code 80
 
 Installation structure is like , we have three server machines and 
I have
 installed these three application separately on each machine.
 
 . Database Server
 
 . File Server
 
 . Application Object Server ,Client and .Net Business connectors
 
 But when I tried to run Dynamic services on AOS machine it gives me 
the
 above error. Even I could not see SQL services in its dependencies 
tab which
 means my AOS could not communicate with SQL server . I searched over
 Knowledge base and got some solution but problem is still there. 
 
 Please suggest some solution to resolve this issue. 
 
 Operating system : windows 2003 server SP2
 
 AX: Axapta 4.0 with
 SP1
 
 Regards,
 
 FaiQa
 
 [Non-text portions of this message have been removed]
 
 __
 Don't get soaked. Take a quick peak at the forecast
 with the Yahoo! Search weather shortcut.
 http://tools.search.yahoo.com/shortcuts/#loc_weather
 
 [Non-text portions of this message have been removed]
 
  
 
 
 
 [Non-text portions of this message have been removed]





[Axapta-Knowledge-Village] Systomatics.com

2007-07-04 Thread Harry Deshpande
Hi

I have updated systomatics.com with a new blog

Regards

Harry
Ps: Please note that I will removing all code from this website very soon.




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



Re: [Axapta-Knowledge-Village] tab delimiter text file

2007-07-04 Thread Kamal Kannan
Hi Patrick

try this code it works.

static void exportToFile(Args _args)
{
Container con;
sqlDictionary sqlDictionary;
TableName TabName;
TextIO   txtIo;
salestable salestable;
;
TabName = SalesTable;
select * from sqlDictionary where TableName2id(TabName) ==
sqlDictionary.TabId;
if(sqlDictionary.RecId  0)
{
txtIo = new TextIO('C:\\exportfile.txt', 'W');
txtIo.outFieldDelimiter(\t);
txtIo.outRecordDelimiter(\r\n);
while select salestable
{
txtIo.write(salestable.SalesId,salestable.SalesName);
}
}
}


hope this helps :)

Regards
Kamalakannan
http://casperkamal.spaces.live.com

On 7/4/07, chuapatrickd [EMAIL PROTECTED] wrote:

   Hi Cam,Robert and sreenath,

 I have created a text file and the result is shown below.

 SO-00071 ALDERITES MARKETING
 SO-00081 ALDERITES MARKETING
 SO-00104 ALDERITES MARKETING

 It should look like this.

 SO-00071 ALDERITES MARKETING
 SO-00081 ALDERITES MARKETING
 SO-00104 ALDERITES MARKETING

 the codes now look like this.

 static void exportToFile(Args _args)
 {
 Container con;
 sqlDictionary sqlDictionary;
 TableName TabName;
 Comma7Io myfile;
 salestable salestable;
 ;
 TabName = SalesTable;
 select * from sqlDictionary where TableName2id(TabName) ==
 sqlDictionary.TabId;
 if(sqlDictionary.RecId  0)
 {
 myfile= new Comma7Io(c:\\exportedfile8.txt,w);
 myfile.outFieldDelimiter(\t);
 myfile.outRecordDelimiter(\r\n);
 while select salestable
 {
 //confiltered= [salestable.SalesId,salestable.SalesName];
 con= [salestable.SalesId,salestable.SalesName];
 myfile.writeExp(con);
 }
 }
 }
 How to revise to have tab delimiter record?
 Any help is greatly appreciated

 Thanks,
 Patrick

  




-- 
Regards
Kamalakannan
http://casperkamal.spaces.live.com
(Tech blog on Ax)


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



Re: [Axapta-Knowledge-Village] sending mails from crm quotation

2007-07-04 Thread mudit mittal
Is it 3.0 or 4.0 ? If you can pls specify exact steps... 

pbercher [EMAIL PROTECTED] wrote:  Hello

i have a problem when sending mails from crm quotation / documents:
If my outlook is closed i get the errormessage:

Method 'createItem' in COM object of class 'outlook.application' 
returned 
error code 0x80030003 (unknown) which means: The operation failed.

If outlook is open .. i don't ..
any hints?
Thx 
Pirmin



 

   
-
Choose the right car based on your needs.  Check out Yahoo! Autos new Car 
Finder tool.

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