Re: [Axapta-Knowledge-Village] HRM exam

2005-11-14 Thread uday reddy


hello
yes you do get 3 to 4 questions from this.
Organizational Structure – 25%
• Understand the different kinds of organizational structures available in the module, including
positions and roles and affiliation of employees
Employee Administration and Development – 25%
• Have an in depth knowledge of employee base data setup, résumé and status
• Understand the tools for managing employee dialogues
• Have an in depth knowledge of the skill mapping functionality
• Understand the definition and setup of the skill catalogue and how skill gap analysis can be
performed
Recruitment Process and Absence Registration – 25%
• Understand the administration of applicants and applications
• Understand the communication process with applicants, managing interviews and hiring
employees
• Knowledge of the setup and administration of absence registration for employee
Integration, Loaned Items, and Course and Training Administration – 25%
• Knowledge of the relation of HRM to Balanced scorecard, Business process management and
Questionnaire
• Knowledge of the HRM roles for Enterprise Portal
• Understand the setup and administration of internal courses
• Understand the process of course registration and completion by participants
• Understand how course content can be set up, and how courses can be displayed for employees
on Enterprise Portal
RegardsUday--- Axa Cons [EMAIL PROTECTED] wrote:From: Axa Cons [EMAIL PROTECTED]Date: Sun, 13 Nov 2005 23:56:31 -0800 (PST)To: Axapta-Knowledge-Village@yahoogroups.comSubject: [Axapta-Knowledge-Village] HRM exam
Hi all,

I am going to take the HRM exam next saturday. But I want to know if there are some questions from Questionairre and Balance Scorecard. 

I appreciate, if somebody can help.

Thanks


Yahoo! FareChase - Search multiple travel sites in one click. Sign up for FREE email from duvvuru.com at http://www.duvvuru.com





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] Cursor not on record after Summary update

2005-11-14 Thread James Flavell
Title: Message





Thanks 


Sorry 
I am not so technical with Axapta so kinda get you but at the sametime not 
enough to fix it. Can you help me a little more.

The 
first bit of code I psoted was standard Axapta. Are you suggesting I change 
that?

Thanks
James


  
  -Original Message-From: 
  Axapta-Knowledge-Village@yahoogroups.com 
  [mailto:[EMAIL PROTECTED] On Behalf Of Amit 
  JainSent: 14 November 2005 21:06To: 
  Axapta-Knowledge-Village@yahoogroups.comSubject: RE: 
  [Axapta-Knowledge-Village] Cursor not on record after Summary 
  update
  The main problem seems to be the executeQuery code block. 
  Why do you want to run executeQuery, because it will always take you to last 
  record. If you follow the same rereadlines and research, i think you will not 
  even require to use the findRecord method as Harry 
  suggested..James Flavell 
  [EMAIL PROTECTED] wrote: 
  

Hi 
Harry,

Thanks for theis code (hope you can remember it)

It 
seems the users have told me they were getting out of memory error once this 
code was put into the system (on both sales and purchase 
side).
Any ideas what might bewrong?

Thanks
James



  
  -Original Message-From: 
  Axapta-Knowledge-Village@yahoogroups.com 
  [mailto:[EMAIL PROTECTED] On Behalf Of 
  Harry (Harshawardhan DeshpandeSent: 22 September 2005 
  21:32To: 
  Axapta-Knowledge-Village@yahoogroups.comSubject: Re: 
  [Axapta-Knowledge-Village] Cursor not on record after Summary 
  update
  hi
  
  change the clicked method of ButtonHeaderUpdateNow (on 
  purchtable form) as follows
  
  void clicked(){ PurchTable 
  purchTableCurrent; ; 
  purchTableCurrent.data(purchTable); 
  purchTable.checkMarkupTrans(); 
  purchTableForm.enableUpdateJournalButtons(purchTable, 
  buttonUpdatePurchaseOrder, 
  buttonUpdateReceiptsList, 
  buttonUpdatePackingSlip, 
  buttonUpdateInvoice);
   super();
   
  purchTable_ds.findRecord(purchTableCurrent); 
  purchTable = purchTable;}
  regards
  
  harry
  James Flavell [EMAIL PROTECTED] 
  wrote:
  Hi 
I have a customer using the summary update funciton on both SO and PO 
andI just realised that after posting SO or PO of any kind the 
cursor does notstay on the record the user had highlighted before 
they pressed the postingbutton. Instead the cursor goes to the 
last recod in the SO or PO listI found one bit of code that 
maybe is affecting 
inClasses/PurchFormLetter/main: 
if 
(PurchTable::exist(purchTable.purchId)) 
{ 
if 
(purchFormLetter.sumBy() 
!=AccountOrder::None 
|| 
purchFormLetter.numberOfRecords()  
1) 
{ 
purchTable_ds.executeQuery(); 
} 
else 
{ 
purchTable_ds.reRead(); 
purchTable_ds.reFresh(); 
purchTable_ds.editPurch(); 
purchTable_ds.reReadLines(); 
} 
} 
else 
{ 
purchTable_ds.reSearch(); 
}Can anyone tell me if I change so that the 
purchtable_ds.executequery() isreplaced by the same code in the else 
part (reread,refresh) will this work?I am afraid that this code 
is actually the part selecting which PO and linesto include in the 
posting and not just the refreshIf this is not the right code to 
change can anyone tell me how to get thecursor to stay on the same 
record once the posting is 
finished.ThanksJames
  
  
  Yahoo! for GoodClick here to donate 
  to the Hurricane Katrina relief effort. 
  
  
  
  Yahoo! 
  FareChase - Search multiple travel sites in one click. 





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] tricky query

2005-11-14 Thread Askeryd Thomas










If there are two fields in different tables, say
income and noOfChildren, and you have to set up a Query and not write it in
code, i.e. use a Query with ranges and values and not write a select. How would
one solve this problem:

Selecting persons with (income  3000  noOfChildren
 2) || (income 9000  noOfChildren  5) ?



Simply putting in income.value ( 3000 ||  9000)
and noOfChildren.value ( 2 ||  5) will not do it since that will also
include persons with income  3000 and noOfChildren  5 and vice versa. So
how can this be solved? Please help me out with this. If you know the answer it
will not take you much time to answer.







__

Thomas
 Askeryd

WM-data Affärssystem  Axapta  



Sandhamnsgatan 65

Box 270 30, 102 51 Stockholm

08-6710474

0733-988686

[EMAIL PROTECTED]

http://www.wmdata.se





The information transmitted is intended only for the
person or entity
to which it is addressed and may contain confidential and/or
privileged material. Any review, retransmission, dissemination or
other use of, or taking of any action in reliance upon, this
information by persons or entities other than the intended recipient
is prohibited. If you received this in error, please contact the
sender and delete the material from any computer.











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] Re: production exam

2005-11-14 Thread erudit2001
There is no such questions.

Vitaliy.

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

 Hi Every one ,


  I am going to take the manufacturing exam On 18 nov 
05. But I want to know if there are some questions from Questionairre 
and Balance Scorecard. 

   I appreciate, if somebody can help.

   Thanks

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







 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/
 




Ant: [Axapta-Knowledge-Village] Dynamic insertion , updation in Axapta

2005-11-14 Thread Hans-Walter Bous



Hi Mohit,
do I understand you right that you want to import data not coming from Axapta ? Why don' t you use standard functionality ?
Under Administration / Periodic / Data Import / Export you can set it up with an import definition type ´"user defined". Then you can also setup the fields to come in the correct order.
The other way ist possible to:
You need a table instance for 
COMMON myTable;
Dicttable dt = new DictTable(myTableId);
DictField df; //You'll need for the fields
Int i;
;
Now you can create an instance of this by table by
myTable = dt.makeRecord()
Afterwards you have to loop over the fields (dt.fieldCnt() will give you the number of fields in the table. 
You can address the field in your table with
myTable.(fieldId)
but you'll have to check the data type of the field
This are only some hints. Take a look at class SysDataIntegration how it is done in standard Axapta. If you need more help you can contact me.
Greetings 
Johnmohit rajvanshy [EMAIL PROTECTED] schrieb:
Hi All,Can we do the transaction dynamically on the table?The problem is that i will pass table name as stringin the function and depending upon the name we need todo the transactions. The passing parameter is of typestring and the function will loop through all thecolumns for the table and one by one insert/update thecolumns for that table.Thanks in advanceMohitRegardsMohit Rajvanshy  __ Yahoo! FareChase: Search multiple travel sites in one click.http://farechase.yahoo.comH.W. Bous
		Gesendet von Yahoo! Mail - Jetzt mit 1GB kostenlosem Speicher





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] Batch Server setup

2005-11-14 Thread Brandon George





Hello 
Everyone!

Hope everybody is doing well. I have a question, or a matter of 
thought gathering from everyone on a subject matter. You see we have a Batch 
Server that we have setup. Currently it runs 3-tier Fat Client, but the 
processing that it does sometimes take a really long time, and I have found a 
correlation between the number of users in AOS and the speed at which the Batch 
Server can process.

I was 
wondering if anyone has a Batch Server setup, what you would recommend? What are 
some possible bottlenecks that can be improved on? Should we be setup with 
2-tier instead of 3-tier fat client? If so why? etc. etc.

If 
anyone can give me any feedback on this, I would be more than happy to make 
reference to you in my post on http://dynamics-ax.blogspot.com

thanks,
Brandon





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] Re: BOMHierarchyCheck::checkBOM()

2005-11-14 Thread Steeve Gilbert
Indeed, it is a nice way to go.  I'll inform my people about this.  Thanks for 
the tip.

Steeve... 


-Message d'origine-
De : Axapta-Knowledge-Village@yahoogroups.com [mailto:[EMAIL PROTECTED] De la 
part de erudit2001
Envoyé : 14 novembre 2005 04:58
À : Axapta-Knowledge-Village@yahoogroups.com
Objet : [Axapta-Knowledge-Village] Re: BOMHierarchyCheck::checkBOM()

There is another, even more suitable way to do it.
You can set the parameter 'Level of circularity' to 'BOM' in 
Inventory parameters, Bills of matearials tab page, and each time 
you've changed something in the structure and exit BOM it will run 
BOM check automatically. So, you don't need to remember to do it 
yourself.

Best regards,
Vitaliy.

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

 The functioanality you asked for already exists.
 You can check your BOM either from Items-BOM-Lines-Functions-
Check
 or Items\Bills of material\Functions\Check
 
 Vitaliy.
 
 --- In Axapta-Knowledge-Village@yahoogroups.com, Steeve Gilbert 
 [EMAIL PROTECTED] wrote:
 
  Hi all!
  
   
  
  We've been having case where creating a production 
 order was
  taking a lot of time (in the range of 20min).  I've drilled down 
the
  issue to line 9 of BOMSearch.init() where 
 BOMHierarchyCheck::checkBOM()
  is called.  It's actually the circularity check that is taking 
that
  long.  One of the items that take a lot of time has 9 levels and 
has
  ~130 items on the first level.  I don't think we have big BOM 
 compared
  to other companies.  Is there a way to speed up that check?
  
   
  
  I know that once the check runs successfully, the next
  production order will not trigger a check for circularity until 
 someone
  changes the BOM.  Can this be checked before the production order
  creation occurred?  Like when the user has finished his 
 modification to
  the BOM he can run circularity check on one item or all of those 
who
  needs circularity Check.  I don't want the one creating the 
 production
  order to wait to long for circularity check.
  
   
  
  Waiting for your input,
  
  Regards,
  
  Steeve...
 








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/
 




[Axapta-Knowledge-Village] production exam

2005-11-14 Thread niphawan sungnoi



Hi Every one , I am going to take themanufacturing exam On 18 nov 05. But I want to know if there are some questions from Questionairre and Balance Scorecard. I appreciate, if somebody can help.Thanks niphawanSend instant messages to your online friends http://uk.messenger.yahoo.com 





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] Cursor not on record after Summary update

2005-11-14 Thread James Flavell
Title: Message





Hi 
Harry,

Thanks 
for theis code (hope you can remember it)

It 
seems the users have told me they were getting out of memory error once this 
code was put into the system (on both sales and purchase 
side).
Any 
ideas what might bewrong?

Thanks
James



  
  -Original Message-From: 
  Axapta-Knowledge-Village@yahoogroups.com 
  [mailto:[EMAIL PROTECTED] On Behalf Of Harry 
  (Harshawardhan DeshpandeSent: 22 September 2005 21:32To: 
  Axapta-Knowledge-Village@yahoogroups.comSubject: Re: 
  [Axapta-Knowledge-Village] Cursor not on record after Summary 
  update
  hi
  
  change the clicked method of ButtonHeaderUpdateNow (on 
  purchtable form) as follows
  
  void clicked(){ PurchTable 
  purchTableCurrent; ; 
  purchTableCurrent.data(purchTable); 
  purchTable.checkMarkupTrans(); 
  purchTableForm.enableUpdateJournalButtons(purchTable, 
  buttonUpdatePurchaseOrder, 
  buttonUpdateReceiptsList, 
  buttonUpdatePackingSlip, 
  buttonUpdateInvoice);
   super();
   
  purchTable_ds.findRecord(purchTableCurrent); purchTable 
  = purchTable;}
  regards
  
  harry
  James Flavell [EMAIL PROTECTED] 
  wrote:
  Hi 
I have a customer using the summary update funciton on both SO and PO 
andI just realised that after posting SO or PO of any kind the cursor 
does notstay on the record the user had highlighted before they pressed 
the postingbutton. Instead the cursor goes to the last recod in 
the SO or PO listI found one bit of code that maybe is affecting 
inClasses/PurchFormLetter/main: 
if 
(PurchTable::exist(purchTable.purchId)) 
{ 
if 
(purchFormLetter.sumBy() 
!=AccountOrder::None 
|| 
purchFormLetter.numberOfRecords()  
1) 
{ 
purchTable_ds.executeQuery(); 
} 
else 
{ 
purchTable_ds.reRead(); 
purchTable_ds.reFresh(); 
purchTable_ds.editPurch(); 
purchTable_ds.reReadLines(); 
} 
} 
else 
{ 
purchTable_ds.reSearch(); 
}Can anyone tell me if I change so that the 
purchtable_ds.executequery() isreplaced by the same code in the else 
part (reread,refresh) will this work?I am afraid that this code is 
actually the part selecting which PO and linesto include in the posting 
and not just the refreshIf this is not the right code to change can 
anyone tell me how to get thecursor to stay on the same record once the 
posting is finished.ThanksJames
  
  
  Yahoo! for GoodClick 
  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] Re: BOMHierarchyCheck::checkBOM()

2005-11-14 Thread erudit2001
There is another, even more suitable way to do it.
You can set the parameter 'Level of circularity' to 'BOM' in 
Inventory parameters, Bills of matearials tab page, and each time 
you've changed something in the structure and exit BOM it will run 
BOM check automatically. So, you don't need to remember to do it 
yourself.

Best regards,
Vitaliy.

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

 The functioanality you asked for already exists.
 You can check your BOM either from Items-BOM-Lines-Functions-
Check
 or Items\Bills of material\Functions\Check
 
 Vitaliy.
 
 --- In Axapta-Knowledge-Village@yahoogroups.com, Steeve Gilbert 
 [EMAIL PROTECTED] wrote:
 
  Hi all!
  
   
  
  We've been having case where creating a production 
 order was
  taking a lot of time (in the range of 20min).  I've drilled down 
the
  issue to line 9 of BOMSearch.init() where 
 BOMHierarchyCheck::checkBOM()
  is called.  It's actually the circularity check that is taking 
that
  long.  One of the items that take a lot of time has 9 levels and 
has
  ~130 items on the first level.  I don't think we have big BOM 
 compared
  to other companies.  Is there a way to speed up that check?
  
   
  
  I know that once the check runs successfully, the next
  production order will not trigger a check for circularity until 
 someone
  changes the BOM.  Can this be checked before the production order
  creation occurred?  Like when the user has finished his 
 modification to
  the BOM he can run circularity check on one item or all of those 
who
  needs circularity Check.  I don't want the one creating the 
 production
  order to wait to long for circularity check.
  
   
  
  Waiting for your input,
  
  Regards,
  
  Steeve...
 







 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/
 




RE: [Axapta-Knowledge-Village] Cursor not on record after Summary update

2005-11-14 Thread Amit Jain



The main problem seems to be the executeQuery code block. Why do you want to run executeQuery, because it will always take you to last record. If you follow the same rereadlines and research, i think you will not even require to use the findRecord method as Harry suggested..James Flavell [EMAIL PROTECTED] wrote:  Hi Harry,Thanks for theis code (hope you can remember it)It seems the users have told me they were getting out of memory error once this code was put into the system (on both sales and purchase side).  Any ideas what might bewrong?Thanks  James  -Original
 Message-From: Axapta-Knowledge-Village@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Harry (Harshawardhan DeshpandeSent: 22 September 2005 21:32To: Axapta-Knowledge-Village@yahoogroups.comSubject: Re: [Axapta-Knowledge-Village] Cursor not on record after Summary update  hichange the clicked method of ButtonHeaderUpdateNow (on purchtable form) as followsvoid clicked(){ PurchTable purchTableCurrent; ; purchTableCurrent.data(purchTable); purchTable.checkMarkupTrans();
 purchTableForm.enableUpdateJournalButtons(purchTable, buttonUpdatePurchaseOrder, buttonUpdateReceiptsList,
 buttonUpdatePackingSlip, buttonUpdateInvoice);   super();   purchTable_ds.findRecord(purchTableCurrent); purchTable = purchTable;}  regardsharry  James Flavell [EMAIL PROTECTED] wrote:  Hi I have a customer using the summary update funciton on both SO and PO andI just realised that after posting SO or PO of any kind the cursor does notstay on the record the user had highlighted before
 they pressed the postingbutton. Instead the cursor goes to the last recod in the SO or PO listI found one bit of code that maybe is affecting inClasses/PurchFormLetter/main: if (PurchTable::exist(purchTable.purchId)) { if (purchFormLetter.sumBy() !=AccountOrder::None || purchFormLetter.numberOfRecords()  1)
 { purchTable_ds.executeQuery(); } else { purchTable_ds.reRead(); purchTable_ds.reFresh(); purchTable_ds.editPurch();
 purchTable_ds.reReadLines(); } } else { purchTable_ds.reSearch(); }Can anyone tell me if I change so that the purchtable_ds.executequery() isreplaced by the same code in the else part (reread,refresh) will this work?I am afraid that this code is actually the part selecting which PO and linesto include in the posting and not just the refreshIf this is not the right code to change can anyone tell me how to get thecursor to stay on the same record once the posting is
 finished.ThanksJames  Yahoo! for GoodClick here to donate to the Hurricane Katrina relief effort. 
		 Yahoo! FareChase - Search multiple travel sites in one click.

 

 





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.



  









R: [Axapta-Knowledge-Village] Axapta Excel Template Upload of Customers

2005-11-14 Thread Alessandro Ghidini











Hi Nihar.. Look in the CRM module.. New customer creation involves a new line
creation in that module (ok.. only if youre using that module.. J)









Ghidini
Ing. Alessandro

Kibuz SRL




 
  
  
  
  
  Galleria Ludovico
  Mortara, 2 - 46100 - Mantova
  
 
 
  
  
  
  
  +39 0376 220605
  
 
 
  
  
  
  
  +39 0376 367439
  
 
 
  
  
  
  
  [EMAIL PROTECTED]
  
 














Da: Axapta-Knowledge-Village@yahoogroups.com [mailto:Axapta-Knowledge-Village@yahoogroups.com] Per conto di Nihar Saraiya
Inviato: mercoled 9
novembre 2005 12.56
A: 'Axapta-Knowledge-Village@yahoogroups.com'
Oggetto: RE:
[Axapta-Knowledge-Village] Axapta Excel Template Upload of Customers







Hi Hemant











Thanks for the reply.











I even tried to attach a number sequence
with auto generation of codes. But in vain. My issue was not with the template
upload (which i realised later on), but seem to be Number Sequence issue.





Since this being a new created company, i
had not generated all the number sequence. Hence i generated the number
sequence thru wizard. After this i was able to create new customers manually.
Next i tried to upload the customers thru template. It uploaded successfully.











I still fail to
understand which number sequences are to be created as a pre-requisite to
Customer and Vendor number sequence to start with. Hope someone can hrow light on this.











If i remember correctly, even i
facedsimilar issue as u r doing now, might be at the time of CoA upload.
Iformated the Account code to text as well as recreated new company and
uploaded is successfully.











From: hemant
kumar [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, November 09, 2005
1:29 PM
To: Axapta-Knowledge-Village@yahoogroups.com
Subject: Re:
[Axapta-Knowledge-Village] Axapta Excel Template Upload of Customers


 
  
  
  hi,
  
  i
  am also doing the same thing but i was unable to do it so plz help me whicle
  IMPORTING the excel sheet of customer igot an error file cannot
  read.
  but
  for your problem as u have givrn the manual No. series it may be possible
  that the no. series of excel and axapta does not match so why don't u try for
  the automatic No. series.
  
  Regards
  hemant
  
 
 
  
  
  
 








Nihar Saraiya
[EMAIL PROTECTED] wrote: 



Hi All











I uploaded Customersthru standard Axapta excel
template. Upload was withoutany errors. But when i wanted to make changes
in any of the customers, i am getting a message,'number sequence
notdefined properly'. I am not even to create a new customer.











I had defined the number sequence and attached itin
Number Sequence tab of AR Parameters. The Num Seq created was kept as manual.
Am i missing any other setup in this regards or is there something else that i
need to do at the time of upload.











Waiting fora quick assistance.











Regards





Nihar Saraiya,





Confidentiality Notice

This email is
confidential and may also be privileged. If you are not the intended recipient
please notify the sender immediately. You must not copy or use it for any
purpose or disclose its contents to any other person. The sender accepts no
responsibility for viruses received with or changes made to this email after it
was sent. Any opinion expressed in this email may be personal to the sender.



















Yahoo!
FareChase - Search multiple travel sites in one click. 







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] Re: Printing ranges on reports

2005-11-14 Thread Brian DonovanSmith
I think the option to print the tranges is only available for reports 
that havn't had a generated design.  I did get around it a while ago.
I cannot remember exactly where to place this code, but basically it 
is either;

SysReportRunsysReportRun = element;
;
sysReportRun.printRanges( true );

or;

SysReportRun::executePrintRangeSection(element);


Please post back the correct answer.

Brian Donovan-Smith;





 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/
 




Re: [Axapta-Knowledge-Village] tricky query

2005-11-14 Thread Sonny Wibawa Adi



Hi, Askeryd Thomas,When writing the range criteria of the query, put the value using _expression_ in query range.  For more detailed explanation about how to use _expression_ in query range, you may point to this article:  http://www.axaptapedia.com/index.php/Expressions_in_query_rangesSo, one of the solution of your problem, write these two ranges in the range criterias:((income  3000)  (noOfChildren   2))  ((income  9000)  (noOfChildren  5))Askeryd Thomas [EMAIL PROTECTED] wrote:If there are two fields in different tables, say  income and noOfChildren, and you have to set up a Query and not write it in 
 code, i.e. use a Query with ranges and values and not write a select. How would  one solve this problem:Selecting persons with (income  3000  noOfChildren   2) || (income 9000  noOfChildren  5) ?Simply putting in income.value ( 3000 ||  9000)  and noOfChildren.value ( 2 ||  5) will not do it since that will also  include persons with income  3000 and noOfChildren  5 and vice versa. So  how can this be solved? Please help me out with this. If you know the answer it  will not
 take you much time to answer.__Thomas   AskerydWM-data Affärssystem – Axapta Sandhamnsgatan 65Box 270 30, 102 51 Stockholm08-67104740733-988686[EMAIL PROTECTED]http://www.wmdata.seThe information transmitted is intended only for the  person or entity  to which it is addressed and may contain confidential and/or  privileged material. Any review, retransmission, dissemination or  other use of, or taking of any action in reliance upon, this  information by persons or entities other than the intended recipient  is prohibited. If you
 received this in error, please contact the  sender and delete the material from any computer.  Best regards,Sonny Wibawa AdiMBS Certified Professional - Axapta 3.0 TechnicalMCSD.NETMCAD.NET
		 Yahoo! FareChase - Search multiple travel sites in one click.

 

 





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] need help about project module

2005-11-14 Thread jasonxu231
HI, all

I plan to take MBS Axapta project certification exam.But I don't get 
Project studying materials.

Could you send me the project serial I and II materials?

Thanks and my email is [EMAIL PROTECTED]

jason






 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/
 




Re: [Axapta-Knowledge-Village] need help about project module

2005-11-14 Thread Sajeed
hi 

Please join and post your message on
[EMAIL PROTECTED] You would get this
stuff there 

Bye...



--- jasonxu231 [EMAIL PROTECTED] wrote:

 HI, all
 
 I plan to take MBS Axapta project certification
 exam.But I don't get 
 Project studying materials.
 
 Could you send me the project serial I and II
 materials?
 
 Thanks and my email is [EMAIL PROTECTED]
 
 jason
 
 
 
 
 





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


 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/
 




[Axapta-Knowledge-Village] expand voucher

2005-11-14 Thread niphawan sungnoi



hi all   I want to know , I want to used payment voucher , but i don' t know for working flowthanks,   niphawan  Send instant messages to your online friends http://uk.messenger.yahoo.com 





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.