RE: [Axapta-Knowledge-Village] Avg cost closing fields explanation

2005-09-15 Thread James Flavell
Title: Message





Hi 
Harry,

You 
mean the line will be left open with 99 or 99,995?

This 
is the exact problem I am struggling to understand.
I dont 
know if the minimum means when the receipt does not have the minimum then it is 
not included in the average ()what you say harry) or whether if it means when 
the receipt linereaches 99 if the average settlement calculated that 0.2 
should be taken from the receipt then the minimum will kick in and say no you 
have to take at least 1 and therefore the line will get 
closed?

Sorry 
I want to be clear, so please can give a bit more help.

Using what you said in your explanation, when is the line closed and where 
does the difference in qty or amount 
go?
Thanks
James


  
  -Original Message-From: 
  Axapta-Knowledge-Village@yahoogroups.com 
  [mailto:[EMAIL PROTECTED] On Behalf Of Harry 
  (Harshawardhan DeshpandeSent: 15 September 2005 15:28To: 
  Axapta-Knowledge-Village@yahoogroups.comSubject: Re: 
  [Axapta-Knowledge-Village] Avg cost closing fields 
  explanation
  hi
  
  A quick example:
  
  Qty 100 cost 100,000
  
  if minimum settle qty per is 1 and settle amount is 10, 
  
  then 
  
  once either 99 quantity or 99,995 amount has been adjusted against this 
  line, Axapta will not consider this line for future inventory cost 
  calculations
  
  regards
  
  harry
  
  James Flavell [EMAIL PROTECTED] wrote:
  





Hi,

Can someone please explain to me the 'Minimum settle qty percent' 
and/or 'Minimum settle amount' in the inventory closing before I go 
mad

Reading the white paper from MBS I still cant be sure exactly how 
these fields affect the actions taken in the closing (from what I understand 
they are also used differently in recalc and closing but that is another 
thing for another day...)

Thanks
James

  
  
  Yahoo! for GoodClick 
  here to donate to the Hurricane Katrina relief effort. 





Sharing the knowledge on Axapta.





  




  
  
  YAHOO! GROUPS LINKS



  Visit your group "Axapta-Knowledge-Village" 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.



  









[Axapta-Knowledge-Village] Replace char in string

2005-09-15 Thread Alfonso Collados Arroyo










Hi all:

How can I replace a char in a string?

I try to explain it. I have this string Pp-ppp-pp and
I want to obtain PP++pp

Thanks very much







--

This e-mail and any attachments are confidential. If you are not the named or intended recipient, please notify the sender immediately and do not disclose the contents to any other person, use it for any purpose or store or copy the information in any medium. Any unauthorized disclosure, use or storage is prohibited and might be unlawful.

 







Sharing the knowledge on Axapta.





  




  
  
  YAHOO! GROUPS LINKS



  Visit your group "Axapta-Knowledge-Village" 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.



  











[Axapta-Knowledge-Village] kernel level programming

2005-09-15 Thread axapta tecnical consultant





Hello All,
Can anyone please tell, which language is used in kernel level programming in Axapta. 
and in which file we can find that code.AdeusMaverick





Sharing the knowledge on Axapta.





  




  
  
  YAHOO! GROUPS LINKS



  Visit your group "Axapta-Knowledge-Village" 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.



  









[Axapta-Knowledge-Village] Clusteredindex on inventsum inventdim

2005-09-15 Thread TVG Tom Vergote










I'm investigating a performance issue at a customer's site
and I've narrowed 
it down to a single query involving inventsum  inventdim. 
The problem is pretty strange, needing to reindex every now and then. 

For many reasons it's advised to have a clustered index on every table 
(would avoid the fragmentation i'm seeing now for example) but inventsum and 
inventdim have no clustered index, and inventdim hasn't even got a primary 
key (dimidx is defines as allowduplicates=no) 

But I'm wary of changing these, because I assume since these are very core 
tables, navision/ms evaluated the options and picked this design for a reason. 
Then again I don't see how adding a clustered index on inventdimid (always 
increasing, never gets changed) could hurt that much 

Anyone have any insight? 
Could I create trouble elsewhere if I add those primarykeys and clustered 
indexes? Are these design decisions maybe taken because oracle needs to be 
supported?









Sharing the knowledge on Axapta.








  
  
SPONSORED LINKS
  
  
  

Business finance course
  
  
Business to business finance
  
  
Small business finance
  
  


Business finance consultant
  
  
Business finance magazine
  
  
Business finance schools
  
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit your group "Axapta-Knowledge-Village" 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: [Axapta-Knowledge-Village] Replace char in string

2005-09-15 Thread Varden Morris



Hi Alfonso,

Place the following code in a job and execute it:

 str RepStr = 'Pp-ppp-pp'; int CharPos; char RepChar = '-'; char RepCharWith = '+'; ;
 CharPos = strscan(RepStr, RepChar,1, strlen(RepStr));
 while (CharPos) { RepStr = strPoke(RepStr, RepCharWith, CharPos); CharPos = strscan(RepStr, RepChar,1, strlen(RepStr)); }
 info(RepStr);Alfonso Collados Arroyo [EMAIL PROTECTED] wrote:





Hi all:
How can I replace a char in a string?
I try to explain it. I have this string “Pp-ppp-pp” and I want to obtain “PP++pp”
Thanks very much



--This e-mail and any attachments are confidential. If you are not the named or intended recipient, please notify the sender immediately and do not disclose the contents to any other person, use it for any purpose or store or copy the information in any medium. Any unauthorized disclosure, use or storage is prohibited and might be unlawful.
Varden MorrisSenior DeveloperWellPoint Systems Inc.(403) 444-5848 direct(403) 444-3900 mainwww.wellpoint.ca[EMAIL PROTECTED]
		Yahoo! for Good 
Click here to donate to the Hurricane Katrina relief effort. 






Sharing the knowledge on Axapta.





  




  
  
  YAHOO! GROUPS LINKS



  Visit your group "Axapta-Knowledge-Village" 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: [Axapta-Knowledge-Village] Replace char in string

2005-09-15 Thread Alfonso Collados Arroyo












Thanks, but I found a function:

strreplace(Text,Char to Replace,Replace Char
);

Anyway thank you very much.











De: Axapta-Knowledge-Village@yahoogroups.com
[mailto:Axapta-Knowledge-Village@yahoogroups.com]
En nombre de Varden Morris
Enviado el: jueves, 15 de
septiembre de 2005 16:06
Para: Axapta-Knowledge-Village@yahoogroups.com
Asunto: Re:
[Axapta-Knowledge-Village] Replace char in string







Hi
Alfonso,











Place
the following code in a job and execute it:












str RepStr = 'Pp-ppp-pp';
 int CharPos;
 char RepChar = '-';
 char RepCharWith = '+';
 ;






CharPos = strscan(RepStr, RepChar,1, strlen(RepStr));






while (CharPos)
 {
 RepStr = strPoke(RepStr,
RepCharWith, CharPos);
 CharPos = strscan(RepStr, RepChar,1,
strlen(RepStr));
 }






info(RepStr);

Alfonso Collados Arroyo
[EMAIL PROTECTED]
wrote:





Hi all:

How can I replace a char in a string?

I try to explain it. I have this string Pp-ppp-pp and
I want to obtain PP++pp

Thanks very much











--

This e-mail and any attachments are confidential. If you are not the named or
intended recipient, please notify the sender immediately and do not disclose
the contents to any other person, use it for any purpose or store or copy the
information in any medium. Any unauthorized disclosure, use or storage is
prohibited and might be unlawful.







Varden Morris
Senior Developer
WellPoint Systems Inc.

(403) 444-5848 direct
(403) 444-3900 main
www.wellpoint.ca
[EMAIL PROTECTED]







Yahoo! for Good
Click here to donate to
the Hurricane Katrina relief effort. 





--

This e-mail and any attachments are confidential. If you are not the named or intended recipient, please notify the sender immediately and do not disclose the contents to any other person, use it for any purpose or store or copy the information in any medium. Any unauthorized disclosure, use or storage is prohibited and might be unlawful.

 







Sharing the knowledge on Axapta.








  
  
SPONSORED LINKS
  
  
  

Business finance course
  
  
Business to business finance
  
  
Small business finance
  
  


Business finance consultant
  
  
Business finance magazine
  
  
Business finance schools
  
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit your group "Axapta-Knowledge-Village" 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.



  











[Axapta-Knowledge-Village] In printer setup, how to make PDF the default file/message type?

2005-09-15 Thread slees32
Our users when emailing a document from Axapta almost always choose 
PDF.
However the standard default is ASCII meaning they always have to 
click on the combo box and select PDF from the bottom of the list.

The default seems to be controlled by the element ASCII of the base 
enum SysPrintFileType, which is set to enumvalue 0.

Tried swapping this enumvalue with the element PDF which does make it 
the default, however it stil produces an ASCII file.

Any help would be much appreciated.
I presume this is a simple change but I am just not competent enough 
to work it out.

Thanks,


Steve




 Yahoo! Groups Sponsor ~-- 
Put more honey in your pocket. (money matters made easy).
http://us.click.yahoo.com/r7D80C/dlQLAA/cosFAA/kGEolB/TM
~- 

Sharing the knowledge on Axapta. 
Yahoo! Groups Links

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

* 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] Replace char in string

2005-09-15 Thread kbi kbi



Hi,
Personally, I think you can find many many usefull functions (somtime can be duplicated) from class call Global.
Take a look at that class.
Have anice day.Alfonso Collados Arroyo [EMAIL PROTECTED] wrote:










Thanks, but I found a function:
strreplace(Text,Char to Replace,Replace Char );
Anyway thank you very much.





De: Axapta-Knowledge-Village@yahoogroups.com [mailto:Axapta-Knowledge-Village@yahoogroups.com] En nombre de Varden MorrisEnviado el: jueves, 15 de septiembre de 2005 16:06Para: Axapta-Knowledge-Village@yahoogroups.comAsunto: Re: [Axapta-Knowledge-Village] Replace char in string


Hi Alfonso,



Place the following code in a job and execute it:



 str RepStr = 'Pp-ppp-pp'; int CharPos; char RepChar = '-'; char RepCharWith = '+'; ;

 CharPos = strscan(RepStr, RepChar,1, strlen(RepStr));

 while (CharPos) { RepStr = strPoke(RepStr, RepCharWith, CharPos); CharPos = strscan(RepStr, RepChar,1, strlen(RepStr)); }

 info(RepStr);Alfonso Collados Arroyo [EMAIL PROTECTED] wrote:

Hi all:
How can I replace a char in a string?
I try to explain it. I have this string “Pp-ppp-pp” and I want to obtain “PP++pp”
Thanks very much




--This e-mail and any attachments are confidential. If you are not the named or intended recipient, please notify the sender immediately and do not disclose the contents to any other person, use it for any purpose or store or copy the information in any medium. Any unauthorized disclosure, use or storage is prohibited and might be unlawful.
Varden MorrisSenior DeveloperWellPoint Systems Inc.(403) 444-5848 direct(403) 444-3900 mainwww.wellpoint.ca[EMAIL PROTECTED]



Yahoo! for GoodClick here to donate to the Hurricane Katrina relief effort. 



--This e-mail and any attachments are confidential. If you are not the named or intended recipient, please notify the sender immediately and do not disclose the contents to any other person, use it for any purpose or store or copy the information in any medium. Any unauthorized disclosure, use or storage is prohibited and might be unlawful.

		Yahoo! for Good 
Click here to donate to the Hurricane Katrina relief effort. 






Sharing the knowledge on Axapta.








  
  
SPONSORED LINKS
  
  
  

Business finance course
  
  
Business to business finance
  
  
Small business finance
  
  


Business finance consultant
  
  
Business finance magazine
  
  
Business finance schools
  
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit your group "Axapta-Knowledge-Village" 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.



  









[Axapta-Knowledge-Village] Fixed rate

2005-09-15 Thread yansuryas
Dear all,

Has anybody tried to use the fixed rate on the purchase order posting
invoice..??
what is the function..??
it seems to useless..??
no effect to the invoice calculation and the journal as well..??


Regards,
Yanti





 Yahoo! Groups Sponsor ~-- 
Help Sudanese refugees rebuild their lives through GlobalGiving.
http://us.click.yahoo.com/hjNroD/EbOLAA/cosFAA/kGEolB/TM
~- 

Sharing the knowledge on Axapta. 
Yahoo! Groups Links

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

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




[Axapta-Knowledge-Village] Planned orders creation by period

2005-09-15 Thread daniellim_yh
hi all,

good day.

currently the master scheduling that im running here create 1 planned 
order to fulfill each requirement. With the 
item's purchase qty multiple set as 5, it create 1 planned order of 5 
to fulfill a small requirement (e.g.0.001).
consequences are so many planned orders created (even in same day of 
requirement) and qty is much more exceeded.

my expected result is system create 1 planned orders to fulfill some 
requirements based on period, to propose more
logical planned orders to users.

i have coverage code in coverage group setting set as Period and 
cov period set as 7.

pls advice which parameters else i should consider to solve this 
problem.

thx in advance.


daniel





 Yahoo! Groups Sponsor ~-- 
Help tsunami villages rebuild at GlobalGiving. The real work starts now.
http://us.click.yahoo.com/njNroD/KbOLAA/cosFAA/kGEolB/TM
~- 

Sharing the knowledge on Axapta. 
Yahoo! Groups Links

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

* 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] Fixed rate

2005-09-15 Thread Sergey Siroklin
If you set up fixed rate on the purchase order, this rate will be use to 
calcucate amountMST (if currency of purch is not company currency).
 
Example. Invoice is 100 USD. EUR - is a company currency and exch rate is 1.2.
 
If you set up fixed rate 1.3, vendTrans will be like this:
 
AmountCur = 100
AmountMST = 130 (not 120).

-Original Message- 
From: Axapta-Knowledge-Village@yahoogroups.com on behalf of yansuryas 
Sent: Fri 9/16/2005 5:41 
To: Axapta-Knowledge-Village@yahoogroups.com 
Cc: 
Subject: [Axapta-Knowledge-Village] Fixed rate



Dear all,

Has anybody tried to use the fixed rate on the purchase order posting
invoice..??
what is the function..??
it seems to useless..??
no effect to the invoice calculation and the journal as well..??


Regards,
Yanti





 Yahoo! Groups Sponsor ~--
Help Sudanese refugees rebuild their lives through GlobalGiving.
http://us.click.yahoo.com/hjNroD/EbOLAA/cosFAA/kGEolB/TM
~-

Sharing the knowledge on Axapta.
Yahoo! Groups Links










 Yahoo! Groups Sponsor ~-- 
Get fast access to your favorite Yahoo! Groups. Make Yahoo! your home page
http://us.click.yahoo.com/dpRU5A/wUILAA/yQLSAA/kGEolB/TM
~- 

Sharing the knowledge on Axapta. 
Yahoo! Groups Links

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

* 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/
 
winmail.dat

Re: [Axapta-Knowledge-Village] In printer setup, how to make PDF the default file/message type?

2005-09-15 Thread Sonny Wibawa Adi
Hi, Steve,


You may set your preferred file format when print the
report to a file. The function name is
preferredFileFormat in printJobSettings class. Here is
the sample code in init method of a report:

public void init()
{
super();
   
element.printJobSettings().preferredFileFormat(PrintFormat::PDF);
}

Hope this help.

--- slees32 [EMAIL PROTECTED] wrote:

 Our users when emailing a document from Axapta
 almost always choose 
 PDF.
 However the standard default is ASCII meaning they
 always have to 
 click on the combo box and select PDF from the
 bottom of the list.
 
 The default seems to be controlled by the element
 ASCII of the base 
 enum SysPrintFileType, which is set to enumvalue 0.
 
 Tried swapping this enumvalue with the element PDF
 which does make it 
 the default, however it stil produces an ASCII file.
 
 Any help would be much appreciated.
 I presume this is a simple change but I am just not
 competent enough 
 to work it out.
 
 Thanks,
 
 
 Steve
 
 
 


Best regards,


Sonny Wibawa Adi
MBS Certified Professional - Axapta 3.0 Technical
MCSD.NET
MCAD.NET



__ 
Yahoo! Mail - PC Magazine Editors' Choice 2005 
http://mail.yahoo.com


 Yahoo! Groups Sponsor ~-- 
Put more honey in your pocket. (money matters made easy).
http://us.click.yahoo.com/r7D80C/dlQLAA/cosFAA/kGEolB/TM
~- 

Sharing the knowledge on Axapta. 
Yahoo! Groups Links

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

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




[Axapta-Knowledge-Village] Service Tax through General Journal

2005-09-15 Thread amit singh



Dear All
Can I pass a Voucher entry with service tax through General Journal? 
Regards
Amit
		 
Yahoo! India Matrimony: Find your partner now.





Sharing the knowledge on Axapta.





  




  
  
  YAHOO! GROUPS LINKS



  Visit your group "Axapta-Knowledge-Village" 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.