RE: [development-axapta] Carriage Return in SysMailer body

2005-08-25 Thread Pascal




Hi Christoph,

 

Have you already tried this? :

 

messageBody = messageBody + strFmt("%1%2", "user:cdlmalherbe",
num2char(10)); ?

 

or

 

messageBody = messageBody + strFmt("%1%2", "user:cdlmalherbe", '/n'); ?

 

 

with kind regards,

 

Pascal

 

http://www.axapta-links.com <http://www.axapta-links.com/>  - The startpage
for Axapta !

 

 

 





 

  _  

Van: development-axapta@yahoogroups.com
[mailto:[EMAIL PROTECTED] Namens cdlmalherbe01
Verzonden: woensdag 24 augustus 2005 18:37
Aan: development-axapta@yahoogroups.com
Onderwerp: [development-axapta] Carriage Return in SysMailer body

 

Hi all,

I used to send email notifications using sqlmail but adapted some 
code found on this forum to great effect.(thanks a lot!)

The challenge is to have each "line" in messageBody appear as a 
separate row in the email's body section when it arrives at the 
intended recipient.

Suffixing "num2char(13)+num2char(10)" doesn't seem to work(it does 
work when writing out to a file).

Neither \r nor \n seems to work.

Any suggestions will be much appreciated!

Regards,

Christoph Malherbe

*** code segment 
static void SendMail(Args _args)
{
SysEMailBatch mailer;
str messageBody = '';
str cRLF=num2char(13)+num2char(10);
;
messageBody = 'api_id:805399' + cRLF;
messageBody = messageBody + 'user:cdlmalherbe' + cRLF;
messageBody = messageBody + 'password:' + cRLF;
messageBody = messageBody + 'to:[EMAIL PROTECTED]' + cRLF;
messageBody = messageBody + 'text:test email + cRLF;

mailer = SysEmailBatch::construct();

mailer.parmEmailAddr("[EMAIL PROTECTED]");

mailer.parmMessageBody(MessageBody);

mailer.parmSenderAddr("[EMAIL PROTECTED]");

mailer.run();

}







  _  

YAHOO! GROUPS LINKS 

 

*   Visit your group "development-axapta
<http://groups.yahoo.com/group/development-axapta> " on the web.
  
*   To unsubscribe from this group, send an email to:
 [EMAIL PROTECTED]
 
  
*   Your use of Yahoo! Groups is subject to the Yahoo!
<http://docs.yahoo.com/info/terms/>  Terms of Service. 

 

  _  



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









  
  
SPONSORED LINKS
  
  
  

Computer part
  
  
Programming languages
  
  
Microsoft axapta
  
  


Support exchange
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "development-axapta" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









RE: [development-axapta] Dundas error = method sendmail returns socket connection failed

2005-07-14 Thread Pascal




Hi,

 

Are you sure that you've registered the DSmailer.dll on the other machines??

(you can find this *.dll in your Axapta Client/Bin directory)

 

With kind regards,

 

Pascal

 

  _  

Van: development-axapta@yahoogroups.com
[mailto:[EMAIL PROTECTED] Namens rhodsinger
Verzonden: woensdag 13 juli 2005 18:41
Aan: development-axapta@yahoogroups.com
Onderwerp: [development-axapta] Dundas error = method sendmail returns
socket connection failed

 

Hi,
I get the above error when running a job using the sysmailer class. The 
email addresses are all set up correctly as are the parameters. There 
is one user on our network who does not get the error when he runs the 
job from his machine but gets the error when running the job from any 
other machine. Any ideas please, this is driving me insane!!
Regards
Rhod Singer








  _  

YAHOO! GROUPS LINKS 

 

*   Visit your group "development-axapta
<http://groups.yahoo.com/group/development-axapta> " on the web.
  
*   To unsubscribe from this group, send an email to:
 [EMAIL PROTECTED]
 
  
*   Your use of Yahoo! Groups is subject to the Yahoo!
<http://docs.yahoo.com/info/terms/>  Terms of Service. 

 

  _  



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







  
  





  
  
  YAHOO! GROUPS LINKS



   Visit your group "development-axapta" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









RE: [development-axapta] Re: run 2 reports

2005-07-14 Thread Pascal




Hi,

 

That's exactly what I ment !

 

Good luck!

 

Pascal

 

  _  

Van: development-axapta@yahoogroups.com
[mailto:[EMAIL PROTECTED] Namens byteway_so
Verzonden: woensdag 13 juli 2005 16:38
Aan: development-axapta@yahoogroups.com
Onderwerp: [development-axapta] Re: run 2 reports

 

Thanks, 

Thought about that, but  what do you think of the following:
Create a class that extends from runbasereport.
Then add the following in the run() method after the call to super();

Args arg;
ReportRun rr;
;
args = new Args("reportname2");
rr = new ReportRun(args);
rr.init();
rr.run();

So now the first report will run normal, the second one will be 
called after the first one has run. What do you think of this?


---

What about creating another class for the second report and calling 
the other class instance from the first report?
f.e.:

new Menufunction(menuItemActionStr(OtherClassReport),
MenuItemType::Action).run();

Pascal








  _  

YAHOO! GROUPS LINKS 

 

*   Visit your group "development-axapta
<http://groups.yahoo.com/group/development-axapta> " on the web.
  
*   To unsubscribe from this group, send an email to:
 [EMAIL PROTECTED]
 
  
*   Your use of Yahoo! Groups is subject to the Yahoo!
<http://docs.yahoo.com/info/terms/>  Terms of Service. 

 

  _  



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







  
  





  
  
  YAHOO! GROUPS LINKS



   Visit your group "development-axapta" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









RE: [development-axapta] run 2 reports

2005-07-13 Thread Pascal




Hi,

 

What about creating another class for the second report and calling the
other class instance from the first report?

 

f.e.:

new Menufunction(menuItemActionStr(OtherClassReport),
MenuItemType::Action).run();

 

 

Pascal

 

  _  

Van: development-axapta@yahoogroups.com
[mailto:[EMAIL PROTECTED] Namens byteway_so
Verzonden: woensdag 13 juli 2005 9:55
Aan: development-axapta@yahoogroups.com
Onderwerp: [development-axapta] run 2 reports

 

Hi,

How can I run two reports from one class?
I can see that IdentifierName lastValueElementName() returns one 
report, but how can I run two?

Any thoughts?

/b







  _  

YAHOO! GROUPS LINKS 

 

*   Visit your group "development-axapta
<http://groups.yahoo.com/group/development-axapta> " on the web.
  
*   To unsubscribe from this group, send an email to:
 [EMAIL PROTECTED]
 
  
*   Your use of Yahoo! Groups is subject to the Yahoo!
<http://docs.yahoo.com/info/terms/>  Terms of Service. 

 

  _  



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







  
  





  
  
  YAHOO! GROUPS LINKS



   Visit your group "development-axapta" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









RE: [development-axapta] Document Handling doesn't work on AOS but works on 2 Tier

2005-06-20 Thread Pascal




Yes, Installing AOS from SP3

-Oorspronkelijk bericht-
Van: development-axapta@yahoogroups.com
[mailto:[EMAIL PROTECTED] Namens Cenk Ince
Verzonden: zondag 19 juni 2005 18:48
Aan: development-axapta@yahoogroups.com
Onderwerp: YNT: [development-axapta] Document Handling doesn't work on AOS
but works on 2 Tier

Do you mean installing Service pack?
 



Kimden: development-axapta@yahoogroups.com bu kiþinin yerine: Marco Bakker
Gönderilmiþ: Cmt 18.06.2005 22:49
Kime: development-axapta@yahoogroups.com
Konu: RE: [development-axapta] Document Handling doesn't work on AOS but
works on 2 Tier



Hi,

I think you have the wrong version of AxCtrl.exe (AOS)
I had the same problem.
After installing AOS with file version 3.0.1951.3730   it's working.

Good luck.

Pascal

-Oorspronkelijk bericht-
Van: development-axapta@yahoogroups.com
[mailto:[EMAIL PROTECTED] Namens Cenk Ince
Verzonden: vrijdag 17 juni 2005 23:09
Aan: development-axapta@yahoogroups.com
Onderwerp: YNT: [development-axapta] Document Handling doesn't work on AOS
but works on 2 Tier

Axapta3.0 SP3



Kimden: development-axapta@yahoogroups.com bu ki?inin yerine: Jesper Kehlet
Gönderilmi?: Cum 17.06.2005 18:08
Kime: development-axapta@yahoogroups.com
Konu: RE: [development-axapta] Document Handling doesn't work on AOS but
works on 2 Tier



What version of Axapta?



From: development-axapta@yahoogroups.com
[mailto:[EMAIL PROTECTED] On Behalf Of Cenk INCE
Sent: Friday, June 17, 2005 9:47 AM
To: development-axapta@yahoogroups.com
Subject: [development-axapta] Document Handling doesn't work on AOS but
works on 2 Tier



Hi all;

Document Handling doesn't work on AOS but works on 2 Tier.

Does anybody know why this happens?

Thanks.

  
-
Yahoo! Mail
Stay connected, organized, and protected. Take the tour

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







Yahoo! Groups Links


*   To visit your group on the web, go to:
    http://groups.yahoo.com/group/development-axapta/
    
*   To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

be>
    
*   Your use of Yahoo! Groups is subject to the Yahoo! Terms of
Service <http://docs.yahoo.com/info/terms/> .




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







Yahoo! Groups Links










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






Yahoo! Groups Links











Yahoo! Groups Links










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





 
Yahoo! Groups Links



 














Yahoo! Groups Links

To visit your group on the web, go to:http://groups.yahoo.com/group/development-axapta/ 
To unsubscribe from this group, send an email to:[EMAIL PROTECTED] 
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.










Re: [development-axapta] SQL VIEWS missing and cannot be synced

2004-06-17 Thread Pascal Dutour Geerling








Hi James,

If this view doesn't exist, try to run this script in the SQL Query
Analyzer:

---

setuser N'sa'
GO

CREATE VIEW LEDGERBALANCESDIM AS SELECT SUM(A.DEBITMST) AS
DEBITMST,SUM(A.CREDITMST) AS CREDITMST,SUM(A.DEBITOPRMST) AS
DEBITOPRMST,SUM(A.CREDITOPRMST) AS CREDITOPRMST,SUM(A.DEBITTAXMST) AS
DEBITTAXMST,SUM(A.CREDITTAXMST) AS CREDITTAXMST,SUM(A.DEBITMSTSECOND) AS
DEBITMSTSECOND,SUM(A.CREDITMSTSECOND) AS
CREDITMSTSECOND,SUM(A.DEBITOPRMSTSECOND) AS
DEBITOPRMSTSECOND,SUM(A.CREDITOPRMSTSECOND) AS
CREDITOPRMSTSECOND,SUM(A.DEBITTAXMSTSECOND) AS
DEBITTAXMSTSECOND,SUM(A.CREDITTAXMSTSECOND) AS
CREDITTAXMSTSECOND,SUM(A.QTY) AS QTY,A.ACCOUNTNUM AS ACCOUNTNUM,A.DIMENSION
AS DIMENSION,A.DIMENSION2_ AS DIMENSION2_,A.DIMENSION3_ AS
DIMENSION3_,A.TRANSDATE AS TRANSDATE,A.PERIODCODE AS
PERIODCODE,A.SYSTEMGENERATEDULTIMO AS SYSTEMGENERATEDULTIMO,A.DATAAREAID AS
DATAAREAID,1010 AS RECID FROM LEDGERBALANCESDIMTRANS A(NOLOCK)  GROUP BY
A.ACCOUNTNUM,A.DIMENSION,A.DIMENSION2_,A.DIMENSION3_,A.TRANSDATE,A.PERIODCODE,A.SYSTEMGENERATEDULTIMO,A.DATAAREAID
GO
setuser
GO

---

Good luck.

Regards,

Pascal



   
 "James Flavell"   
 <[EMAIL PROTECTED] 
 .com>  To 
   <[EMAIL PROTECTED] 
 17-06-2004 09:55  >   
    cc 
   
 Please respond to Subject 
 development-axapt [development-axapta] SQL VIEWS  
 [EMAIL PROTECTED] missing and cannot be synced    
   
   
   
   
   
   




Has anyone had the problem that views such as LEDBALANCESDIM does not exist
in SQL server and when sync in AOT nothing is created?

I have checked and find that some of the views can sync but others
cannot!!!
I have checked the MASTER db and the views in that have INFORMATION_SCHEMA
as the owner...I dont know what or where else to try

Thanks
James


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






Yahoo! Groups Links
















Yahoo! Groups Sponsor


  ADVERTISEMENT 












Yahoo! Groups Links

To visit your group on the web, go to:http://groups.yahoo.com/group/development-axapta/ 
To unsubscribe from this group, send an email to:[EMAIL PROTECTED] 
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.










Re: [development-axapta] Technet.navition.com gone

2004-06-11 Thread Pascal Dutour Geerling








Hi Torgeir !

Technet is still available at  http://technet.navision.com/

regards,

Pascal




   
 "Torgeir Toms"    
 <[EMAIL PROTECTED] 
 ds.no> To 
   <[EMAIL PROTECTED] 
 11-06-2004 11:46  >   
    cc 
   
 Please respond to Subject 
 development-axapt [development-axapta]    
 [EMAIL PROTECTED] Technet.navition.com gone   
   
   
   
   
   
   




Hi
Anybody who know where and how to use Technet.


Med vennlig hilsen

Torgeir Toms

Systemkonsulent Teknisk IT/Oracle DBA



==

Good Judgment Comes From Experience. Experiences Comes From Bad
Judgment.

=




    
   Yahoo! Groups Sponsor    
    
    
    
   ADVERTISEMENT    
   (Embedded image moved to file: pic24464.gif)click here   
    
    
 (Embedded image moved to file: pic05705.gif)   
    



Yahoo! Groups Links
  To visit your group on the web, go to:
  http://groups.yahoo.com/group/development-axapta/

  To unsubscribe from this group, send an email to:
  [EMAIL PROTECTED]

  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.

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










Yahoo! Groups Sponsor


  ADVERTISEMENT 












Yahoo! Groups Links

To visit your group on the web, go to:http://groups.yahoo.com/group/development-axapta/ 
To unsubscribe from this group, send an email to:[EMAIL PROTECTED] 
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.










Re: [development-axapta] Re: How to Insert record

2004-04-20 Thread Pascal Dutour Geerling








Hi Jay,

Maybe you can do it like this:



While select ItemId, GroupId, Qty, amount From InventTransJournal


where GroupId == 'CH254'


{


  if (amount < 0)


    temp.amount = abs(amount);


  else


    temp.amount = -1 * amount;





  temp.insert();


}





with kind regards,


Pascal





   
 Jay Sathasivam    
 <[EMAIL PROTECTED] 
 o.com> To 
   [EMAIL PROTECTED]  
 21-04-2004 00:35   cc 
   
   Subject 
 Please respond to Re: [development-axapta] Re: How to 
 development-axapt Insert record   
 [EMAIL PROTECTED] 
   
   
   
   
   




Hi Pascal and Claudia


Thanks for that but my problem is


I have a temp table and 1000 records of InventTransJournal table


in the InventTransJournal I have + Amount and - Amount so


If I do this way it is not working


Insert_recordset Temp(ItemId, GroupID, Qty, Amount)


Select ItemId, GroupId, Qty, -1 * Amount From InventTransJournal


where GroupId == 'CH254';





Note :-


I am not inserting 1 record. also If it is (+) then I have to Update (-)
amount and If (-) then I have to update (+) Amount.








Regards


Jay










Pascal Dutour Geerling <[EMAIL PROTECTED]> wrote:




 Hi Jay,

 You can also use the function abs(-amount) this will return a positive
 amount.
 (see system documentation --> functions)


 with kind regards,
 Pascal




  Claudia Göries

  <[EMAIL PROTECTED]

  .de>   To

    [EMAIL PROTECTED]

  20-04-2004 14:26   cc


    Subject

  Please respond to [development-axapta] Re: How to

  development-axapt Insert record

  [EMAIL PROTECTED]










 Hi Jay,

 tempTable.amount = InventJournalTrans.Amount * -1;
 tempTable.insert();

 cu
 Claudia

 --- In [EMAIL PROTECTED], Jay Sathasivam
 <[EMAIL PROTECTED]> wrote:
 >
 > Hi Guys
 >
 >
 >
 > I want to Insert into temp table some records from
 InventJournalTrans there I have
 >
 >  (-) amount so how can I Insert the amount as  (+) .
 >
 >
 >
 > Regards
 >
 > Jay
 >
 >
 >
 > -
 > Do you Yahoo!?
 > Yahoo! Photos: High-quality 4x6 digital prints for 25¢


 Yahoo! Groups Links
   To visit your group on the web, go to:
   http://groups.yahoo.com/group/development-axapta/

   To unsubscribe from this group, send an email to:
   [EMAIL PROTECTED]

   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



Do you Yahoo!?
Yahoo! Photos: High-quality 4x6 digital prints for 25¢
Yahoo! Groups Links
  To visit your group on the web, go to:
  http://groups.yahoo.com/group/development-axapta/

  To unsubscribe from this group, send an email to:
  [EMAIL PROTECTED]

  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.










Yahoo! Groups Links

To visit your group on the web, go to:http://groups.yahoo.com/group/development-axapta/ 
To unsubscribe from this group, send an email to:[EMAIL PROTECTED] 
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.










Re: [development-axapta] Re: How to Insert record

2004-04-20 Thread Pascal Dutour Geerling








Hi Jay,

You can also use the function abs(-amount) this will return a positive
amount.
(see system documentation --> functions)


with kind regards,
Pascal



   
 Claudia Göries    
 <[EMAIL PROTECTED] 
 .de>   To 
   [EMAIL PROTECTED]  
 20-04-2004 14:26   cc 
   
   Subject 
 Please respond to [development-axapta] Re: How to 
 development-axapt Insert record   
 [EMAIL PROTECTED] 
   
   
   
   
   




Hi Jay,

tempTable.amount = InventJournalTrans.Amount * -1;
tempTable.insert();

cu
Claudia

--- In [EMAIL PROTECTED], Jay Sathasivam
<[EMAIL PROTECTED]> wrote:
>
> Hi Guys
>
>
>
> I want to Insert into temp table some records from
InventJournalTrans there I have
>
>  (-) amount so how can I Insert the amount as  (+) .
>
>
>
> Regards
>
> Jay
>
>
>
> -
> Do you Yahoo!?
> Yahoo! Photos: High-quality 4x6 digital prints for 25¢


Yahoo! Groups Links
  To visit your group on the web, go to:
  http://groups.yahoo.com/group/development-axapta/

  To unsubscribe from this group, send an email to:
  [EMAIL PROTECTED]

  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.










Yahoo! Groups Links

To visit your group on the web, go to:http://groups.yahoo.com/group/development-axapta/ 
To unsubscribe from this group, send an email to:[EMAIL PROTECTED] 
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.










Re: [development-axapta] Error when try to filter ...

2004-02-22 Thread Pascal Dutour Geerling








Hi Harish,

You can try to do a forward compile of the class sysQueryEdit.
It was the solution in my case.



Good luck.,
Pascal



   
 "Harish   
 Mohanbabu"    
 <[EMAIL PROTECTED]  To 
 .co.in>   [EMAIL PROTECTED]  
    cc 
 20-02-2004 16:35  
   Subject 
   [development-axapta] Error when try 
 Please respond to to filter ...   
 development-axapt 
 [EMAIL PROTECTED] 
   
   
   
   




Hi,

Whenever the filter button in the tool bar is pressed, the following
error crops up (invariably from any form) -

..

Error executing code: Wrong type of element at call of ConIns.

Stack trace:
(C) \Classes\SysQueryEdit\pack - line 18
(C) \Classes\SysQueryForm\queryInit - line 4
(C) \Forms\SysQueryForm\Methods\run - line 4
(C) \Classes\QueryRun\prompt
(C) \Classes\FormDataSource\prompt
(C) \Classes\FormRun\task
(C) \Classes\SysSetupFormRun\task - line 20

..

The class 'SysQueryEdit' is untouched. What could be wrong here?

Environment is Axapta ver 3.0 + SP2

Thanks,

Harish Mohanbabu





Yahoo! Groups Links
















Yahoo! Groups Sponsor


ADVERTISEMENT




Click Here















Yahoo! Groups Links

To visit your group on the web, go to:http://groups.yahoo.com/group/development-axapta/ 
To unsubscribe from this group, send an email to:[EMAIL PROTECTED] 
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.










Re: [development-axapta] read multi row select

2004-02-04 Thread Pascal Dutour Geerling





Hi,

You have to do something with this:

if (Table_ds.getFirst(true))
{
 for ( tmpDS = Table_ds.getFirst(true); tmpDS; tmpDS =
Table_ds.getnext())
 {
  //do something with the selected lines
  }
}
else
{
  //only one line selected
 }

Good luck.



With kind regards,

Pascal Dutour Geerling




   
 "byteway_so"  
 <[EMAIL PROTECTED]> 
    To 
 04-02-2004 16:39  [EMAIL PROTECTED]  
    cc 
   
 Please respond to Subject 
 development-axapt [development-axapta] read multi row 
 [EMAIL PROTECTED] select  
   
   
   
   
   
   




Hi all,

Is there a way to read the id's of the selected rows?
I can imagine there is a form with a grid with multi select set to
true. Then when i click a button i want to read all selected id's.

void clicked()
{
  MyTable mytable;
  ;
  while mytable.id.selected()
  {
    print mytable.id;
  }
  pause;
}

Could it be something like the above?
Thanks in advance,
/b





Yahoo! Groups Links

To visit your group on the web, go to:
 http://groups.yahoo.com/group/development-axapta/

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/












Yahoo! Groups Links

To visit your group on the web, go to:http://groups.yahoo.com/group/development-axapta/ 
To unsubscribe from this group, send an email to:[EMAIL PROTECTED] 
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.







Re: [development-axapta] Register COM+ (Component Services) not selectable

2004-01-02 Thread Pascal Dutour Geerling

Hi Clyde,

This is a "bug" in the ACU.
What you can try to do is clicking on the Help button, close the Help
window again and switch from tabpage.
Go back to the COM-Connector tabpage and now you can register the COM+
Good luck.


Pascal Dutour Geerling




|-+--->
| |   "Clyde Zuber"   |
| |   <[EMAIL PROTECTED]|
| |   wler.com>   |
| |   |
| |   12-12-2003 02:08|
| |   Please respond  |
| |   to  |
| |   development-axap|
| |   ta  |
| |   |
|-+--->
  
>-|
  |
 |
  |To:  [EMAIL PROTECTED]  
|
  |cc: 
 |
  |Subject: [development-axapta] Register COM+ (Component Services) not 
selectable  |
  
>-|



Can anyone explain why or at least how to deal with the "Register COM+
(Component Services)" radio button not being selectable (i.e. grayed
out).  This is in the Configuration Utility, COM Connector tab.  You
have to have COM+ to create a web application in Axapta, but I can not
figure out what conditions makes the button available.

Thanks,
-- Clyde Zuber
---
http://www.zuberfowler.com/
---
"Clyde Zuber" <[EMAIL PROTECTED]>
---

 
Yahoo! Groups Sponsor
 
 
 
ADVERTISEMENT
(Embedded image moved to file: pic11478.gif) 
 
 
(Embedded image moved to file: pic29358.gif)
 



Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.




Yahoo! Groups Sponsor
ADVERTISEMENT
click here  


Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. 
<><>

Re: [development-axapta] Interesting Axapta Error..

2004-01-02 Thread Pascal Dutour Geerling
Hi,

This message comes from the kernel. If you try to open the file ax32.exe
f.e. into notepad and search for the string: "RecId %i in table '%s' has
mismatching Sequence field values. Original value was %i, new value is %i."
you'll find it there.
Best regards,
Pascal


|-+--->
| |   "Anil Ozay" |
| |   <[EMAIL PROTECTED]|
| |   m.com.tr>   |
| |   |
| |   05-11-2003 17:09|
| |   Please respond  |
| |   to  |
| |   development-axap|
| |   ta  |
| |   |
|-+--->
 
>--|
 | 
 |
 |To:  "Development-Axapta (E-mail)" <[EMAIL PROTECTED]>   
|
 |cc:  
 |
 |Subject: [development-axapta] Interesting Axapta Error.. 
 |
 
>--|


Hi all. I get an error message from Axapta.

Record with RecId 4294307 in table 'BankChequeTable' has mismatching
sequence field values.Original value was 4294284, new value is 4294307.
This is interesting message. I search it in label files AxSys.., AxDIS..
bla bla bla... but i couldn't find anything. I search it in code, but i
couldn't find anything. How can i find where this message comes from? I
think, it may be a system message.. Your help is very important for me..
Best Regards,

Anil Ozay



Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/









Yahoo! Groups Sponsor	 
	 
	

Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. 


Re: [development-axapta] UK Postcode data ...

2004-01-02 Thread Pascal Dutour Geerling
Hi,

You can buy this f.e. by QAS, (http://www.qas.com)

Greetz,
Pascal


|-+--->
| |   "Harish |
| |   Mohanbabu"  |
| |   <[EMAIL PROTECTED]|
| |   o.co.in>|
| |   |
| |   27-10-2003 11:31|
| |   Please respond  |
| |   to  |
| |   development-axap|
| |   ta  |
| |   |
|-+--->
 
>--|
 | 
 |
 |To:  [EMAIL PROTECTED]   
|
 |cc:  
 |
 |Subject: [development-axapta] UK Postcode data ...   
 |
 
>--|


Hi,

From where can I get postcode data for UK? Can someone let me know
please.

Thanks in advance.

Harish





Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/









Yahoo! Groups Sponsor	 
ADVERTISEMENT
click here	
	

Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. 


Re: [development-axapta] Axapta startup and WinAPI and 3tier

2004-01-02 Thread Pascal Dutour Geerling
Hi Annette,

Try to use the Application::StartUpPost...then it should also work for
3-tier.
Best Regards,

Pascal
___
Connor Software
Populierenweg 39a
3421 TX Oudewater
The Netherlands
T :+31 (0)348 - 566550
F: +31 (0)348 - 556559
@: [EMAIL PROTECTED]
|-+--->
| |   "Theissen,  |
| |   Annette"|
| |   <[EMAIL PROTECTED]>  |
| |   |
| |   24-10-2003 13:33|
| |   Please respond  |
| |   to  |
| |   development-axap|
| |   ta  |
| |   |
|-+--->
 
>--|
 | 
 |
 |To:  [EMAIL PROTECTED]   
|
 |cc:  
 |
 |Subject: [development-axapta] Axapta startup and WinAPI and 3tier
 |
 
>--|


Hi everybody,

I am trying to startup a file automatically after the user logged in, using
a call to the WinAPI. I inserted my function call at the very end of
Application::startup().
During startup, the code works fine on 2tier clients, but not on 3tier
clients.
After the startup, when calling the code explicitly, it works fine both on
2tier and 3tier clients.
So it seems to me, that on 3tier clients, Application::startup() is too
soon
to call a winApi function ...
Does anybody have a idea, how I can show the file (different code,
different
time during startup to execute code)?
TIA, Annette

Mit freundlichen Grüßen / Best regards
Dipl. Phys. Annette Theißen
System Software Entwicklung
__
Viscom AG - Carl-Buderus-Str. 9-15 - D-30455 Hannover
Phone: +49/511/94996-0 - Fax: +49/511/94996-900
mailto:[EMAIL PROTECTED] - http://www.viscom.de




Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/









Yahoo! Groups Sponsor	 
ADVERTISEMENT
click here	
	

Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. 


Re: [development-axapta] Problem with Exel import

2004-01-02 Thread Pascal Dutour Geerling
Hi John,

This is a standard bug in Axapta 3.0 SP1..It's solved in SP2
See Partnerguide for more info (FI-471-964-LPS3).
greetz,
Pascal
___
Connor Software
Populierenweg 39a
3421 TX Oudewater
The Netherlands
T :+31 (0)348 - 566550
F: +31 (0)348 - 556559
@: [EMAIL PROTECTED]


|-+->
| |   "johnn_16"|
| |  |
| | |
| |   17-10-2003 14:22  |
| |   Please respond to |
| |   development-axapta|
| | |
|-+->
 
>--|
 | 
 |
 |To:  [EMAIL PROTECTED]   
|
 |cc:  
 |
 |Subject: [development-axapta] Problem with Exel import   
 |
 
>--|


Hi, I want to import data by exel.  So I use the Template Wizard in
Exel Spreadsheets.  I get a problem with some of my personnal
tables.  My newest created tables always get that error:
Error executing code: SysDictType object not initialized.

Stack trace:
\Classes\SysDictType\baseType
\Classes\SysExcelTemplateWizard\formatType - line 11
\Classes\SysExcelTemplateWizard\formatColumns - line 34
\Classes\SysExcelTemplateWizard\createTemplate - line 17
\Classes\SysExcelTemplateWizard\run - line 21
\Classes\SysExcelTemplateWizard\main - line 11
Does someone have any idea why??
Thanks!




Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/









Yahoo! Groups Sponsor	 
ADVERTISEMENT
Click Here!	
	

Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. 


[development-axapta] Word-templates

2004-01-02 Thread Pascal Dutour Geerling
Hi,

Can anyone tell me if it's possible to create a document from Axapta 3.0 ,
based on a Word-template (*.dot) via a 3-tier installation,
when the client doesn't has Office installed. Office is only installed on
the server then.
Thanks,
Pascal


Yahoo! Groups Sponsor	 
	 
	

Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. 


[development-axapta] Possible to set multiple Advanced settings on Axapta Configuration Utility?

2004-01-02 Thread Pascal Dutour Geerling
   
   
   
   
Hi,
   
Does anybody know if it's possible to put more then one parameter into the 
Advanced field on the ACU? 
   
f.e.: -aos=xxx.yyy.zzz: && -INTERNAL=IMPORTEXPORTID
   
Thanks in advance. 
       
Pascal 
   
   









Yahoo! Groups Sponsor	 
ADVERTISEMENT
click here	
	

Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. 


Re: AW: [development-axapta] Change of 5 decimals from 2 decimals of 'Price' (Extended Datatype)

2004-01-02 Thread Pascal Dutour Geerling
Maybe this has something to do with your regional settings from your
machine.
Pascal



|-+->
| |   "Mister L"|
| |  |
| | |
| |   22-09-2003 12:19  |
| |   Please respond to |
| |   development-axapta|
| | |
|-+->
 
>--|
 | 
 |
 |To:  <[EMAIL PROTECTED]> 
|
 |cc:  
 |
 |Subject: AW: [development-axapta] Change of 5 decimals from 2 decimals of 
'Price' (Extended Datatype) |
 
>--|


Which way did you choose for displaying the result?

- info()
- print()
- something else?
I think that print() and info(strfmt()) always show 2 decimals.

Try using info(num2str(...)).

BG
Herbert
| -Ursprüngliche Nachricht-
| Von: seong_ky [mailto:[EMAIL PROTECTED]
| Gesendet: Montag, 22. September 2003 11:51
| An: [EMAIL PROTECTED]
| Betreff: [development-axapta] Change of 5 decimals from 2 decimals of
| 'Price' (Extended Datatype)
|
|
| Does anyone got any idea what's wrong with my customization?? I have
| edited the Extended Datatype for 'Price' to increase from 2 decimals
| to 5 decimals.
|
| I can see all the Price in InventTableModule has changed to 5
| decimals from the screen and also from the table browser.
|
| However, when I try to write a simple job to retrieve one item from
| the table using
| InventTableModule::find(ItemId, ModuleInventPurchSales::Purch).price
| (), I get the 2 decimals instead of 5 decimals.
|
| Does anyone know why this thing happen ??
|
|
|
|
|
| Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
|
|
|




Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/









Yahoo! Groups Sponsor	 
ADVERTISEMENT
click here	
	

Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. 


Re: [development-axapta] automatic lookup of fields (for example in SysQueryForm) with an empty AutoLooku

2004-01-02 Thread Pascal Dutour Geerling
Hi Juergen,

These fields are comming from the Primary Indexes of the Table.

met vriendelijke groet,

Pascal Dutour Geerling
___
Ing. P. Dutour Geerling
Software Engineer
Connor Software
Populierenweg 39a
3421 TX Oudewater
The Netherlands


|-+->
| |   "juepeterberlin"  |
| |  |
| | |
| |   22-09-2003 10:31  |
| |   Please respond to |
| |   development-axapta|
| | |
|-+->
 
>--|
 | 
 |
 |To:  [EMAIL PROTECTED]   
|
 |cc:  
 |
 |Subject: [development-axapta] automatic lookup of fields (for example in 
SysQueryForm) with an empty AutoLooku|
 
>--|


If I have fields in AutoLookup, then these fields are shown at the
automatic lookup_function in SysQueryForm. But even with an empty
fieldgroup AutoLookup there are fields shown beside the the
lookup-Field (for example when VendTable is looked up for account
numbers of vendors). How are the field chosen?-
Juergen





Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/









Yahoo! Groups Sponsor	 
ADVERTISEMENT
click here	
	

Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.