RE: [Axapta-Knowledge-Village] Re: RunbaseReport

2006-12-05 Thread Harry Deshpande
Hi

You need pack/unpack methods, you will get a different error otherwise.

If you have already tried compiling and changing the version number then


 1.  check if the pack method stores in the format  currentVersion, 
currentList
 2.  if the above is correct then there is something wrong with case 
#CurrentVersion: statement in the unpack method.

Put a debug in the unpack method and find out which line is throwing the error.

Regards

Harry



From: Axapta-Knowledge-Village@yahoogroups.com [mailto:[EMAIL PROTECTED] On 
Behalf Of chuapatrickd
Sent: 05 December 2006 06:36
To: Axapta-Knowledge-Village@yahoogroups.com
Subject: [Axapta-Knowledge-Village] Re: RunbaseReport


--- In 
Axapta-Knowledge-Village@yahoogroups.commailto:Axapta-Knowledge-Village%40yahoogroups.com,
 Agus Riyadi
[EMAIL PROTECTED] wrote:
Hi Agus,

Yes. I just did. compile and compile forward as you suggested.
However, the error still occur.

THanks,
Patrick

 Hi,

 Have u try compile or compile forward (add ins  compile forward) ?

 Regards,

 Agus


 On 12/5/06, chuapatrickd [EMAIL PROTECTED] wrote:
 
  Hi to all,
 
  I'm encountering an error when running my class which extend the
  runbaseReport base class. The error message Iv'e got is
  Error executing code: Wrong argument types in variable
assignement
 
  the method shown is: \classes\RunbaseReport\MakeReportRun
  \classes\runbaseReport\initparmdefault
  \classes\xsyslastvalue\getlast
 
  I've already tried changing the version number in the class
  declaration and also deleted pack and unpack method, but same
error
  occur.
 
  Is there anyone who knows how to remedy the situation ?
 
  Thanks,
  Patrick
 
 
 


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




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



[Axapta-Knowledge-Village] Re: Specify costprice for an item on an order

2006-12-05 Thread markusotte2
Hi Lars.

The field return cost price is intended for customer complaint 
(Order type=Returned item) to define the cost price for the 
inventory transaction (type=Receipt).

To use different cost prices for different sales orders you have to 
use the function marking (Inventory/Marking) where you create an 
alliance between the inventory transaction of type Receipt (e. g. 
purchase order) and the inventory transaction of type Issue (e. g. 
sales order). This alliance makes AX to use the specific cost price 
of the receipt for the issue, whatever inventory model is set up.

Regards!
Markus
--- In Axapta-Knowledge-Village@yahoogroups.com, Lars Brink 
[EMAIL PROTECTED] wrote:

 Hi group,
 
 I have a setup where I want to use the same item on several orders 
but
 with a different costprice and salesprice. In the old system it was
 possible to insert a costprice on the item line on the order so 
that
 the contribution margin would show as expected.
 
 When items are in stock the cost price of these items are used. 
 
 When none in stock the costprice of the item form is used but if I
 change that it will change for all orders.
 
 I see a field called return cost price. Could that be used for the
 gross margin calculation on the individual order?
 
 Regards from Denmark,
 Lars Brink





[Axapta-Knowledge-Village] Re: RunbaseReport

2006-12-05 Thread chuapatrickd
hi hARRY,

Thanks for the advice. It's my mistake, I happen to modify one of the 
method of runbase class unintentionally. I was able to sense that 
something is wrong with axapta becasue I've tried running one of the 
standard report of AX and it shows same error as I've encountered. 
What I did is to recompile the whole AOT and now its working fine 
including my class. 

AS I've knowm earlier, changing the version number should already 
correct the problem and you are the same person who advice me way 
back then. :)  Thanks Harry for your usual help.

Thanks,
Patrick



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

 Hi
 
 You need pack/unpack methods, you will get a different error 
otherwise.
 
 If you have already tried compiling and changing the version number 
then
 
 
  1.  check if the pack method stores in the 
format  currentVersion, currentList
  2.  if the above is correct then there is something wrong with 
case #CurrentVersion: statement in the unpack method.
 
 Put a debug in the unpack method and find out which line is 
throwing the error.
 
 Regards
 
 Harry
 
 
 
 From: Axapta-Knowledge-Village@yahoogroups.com [mailto:Axapta-
[EMAIL PROTECTED] On Behalf Of chuapatrickd
 Sent: 05 December 2006 06:36
 To: Axapta-Knowledge-Village@yahoogroups.com
 Subject: [Axapta-Knowledge-Village] Re: RunbaseReport
 
 
 --- In Axapta-Knowledge-Village@yahoogroups.commailto:Axapta-
Knowledge-Village%40yahoogroups.com, Agus Riyadi
 agusacil@ wrote:
 Hi Agus,
 
 Yes. I just did. compile and compile forward as you suggested.
 However, the error still occur.
 
 THanks,
 Patrick
 
  Hi,
 
  Have u try compile or compile forward (add ins  compile 
forward) ?
 
  Regards,
 
  Agus
 
 
  On 12/5/06, chuapatrickd chuapatrickd@ wrote:
  
   Hi to all,
  
   I'm encountering an error when running my class which extend the
   runbaseReport base class. The error message Iv'e got is
   Error executing code: Wrong argument types in variable
 assignement
  
   the method shown is: \classes\RunbaseReport\MakeReportRun
   \classes\runbaseReport\initparmdefault
   \classes\xsyslastvalue\getlast
  
   I've already tried changing the version number in the class
   declaration and also deleted pack and unpack method, but same
 error
   occur.
  
   Is there anyone who knows how to remedy the situation ?
  
   Thanks,
   Patrick
  
  
  
 
 
  [Non-text portions of this message have been removed]
 
 
 
 
 [Non-text portions of this message have been removed]





[Axapta-Knowledge-Village] Input packing slip number,manually

2006-12-05 Thread [EMAIL PROTECTED]
Hello Axapta-Knowledge-Village,

  Can i input packing slip number in AR,manually?
  AFAIK,it cant without modifying.
  Is there enlightment i can have ?
  Thx before :D

-- 
Best regards,
 setiaji  mailto:[EMAIL PROTECTED]



Re: [Axapta-Knowledge-Village] Re: RunbaseReport

2006-12-05 Thread Agus Riyadi
Hi Patrick,

I am sure Harry's suggestion will work. Please check the sequence of data
stored in the container within pack and unpack method.

Regards,

Agus


On 12/5/06, Harry Deshpande [EMAIL PROTECTED] wrote:

   Hi

 You need pack/unpack methods, you will get a different error otherwise.

 If you have already tried compiling and changing the version number then

 1. check if the pack method stores in the format currentVersion,
 currentList
 2. if the above is correct then there is something wrong with case
 #CurrentVersion: statement in the unpack method.

 Put a debug in the unpack method and find out which line is throwing the
 error.

 Regards

 Harry

 
 From: 
 Axapta-Knowledge-Village@yahoogroups.comAxapta-Knowledge-Village%40yahoogroups.com[mailto:
 Axapta-Knowledge-Village@yahoogroups.comAxapta-Knowledge-Village%40yahoogroups.com]
 On Behalf Of chuapatrickd
 Sent: 05 December 2006 06:36
 To: 
 Axapta-Knowledge-Village@yahoogroups.comAxapta-Knowledge-Village%40yahoogroups.com
 Subject: [Axapta-Knowledge-Village] Re: RunbaseReport

 --- In 
 Axapta-Knowledge-Village@yahoogroups.comAxapta-Knowledge-Village%40yahoogroups.com
 mailto:Axapta-Knowledge-Village%40yahoogroups.com, Agus Riyadi
 [EMAIL PROTECTED] wrote:
 Hi Agus,

 Yes. I just did. compile and compile forward as you suggested.
 However, the error still occur.

 THanks,
 Patrick

  Hi,
 
  Have u try compile or compile forward (add ins  compile forward) ?
 
  Regards,
 
  Agus
 
 
  On 12/5/06, chuapatrickd [EMAIL PROTECTED] wrote:
  
   Hi to all,
  
   I'm encountering an error when running my class which extend the
   runbaseReport base class. The error message Iv'e got is
   Error executing code: Wrong argument types in variable
 assignement
  
   the method shown is: \classes\RunbaseReport\MakeReportRun
   \classes\runbaseReport\initparmdefault
   \classes\xsyslastvalue\getlast
  
   I've already tried changing the version number in the class
   declaration and also deleted pack and unpack method, but same
 error
   occur.
  
   Is there anyone who knows how to remedy the situation ?
  
   Thanks,
   Patrick
  
  
  
 
 
  [Non-text portions of this message have been removed]
 

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

 



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



[Axapta-Knowledge-Village] Re: Item attribute personalization and store

2006-12-05 Thread dj3mb3
Hi all,
I try to work with Item Dimension combinations and it's all right.
But If want to combine more than 2 dimensions and differ the dimension
names for each group of Item/Dimension, How can i do that?

Thanks

Luca

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

 Hi Varden,

   Could you please provide more input for using configuration group
for the xample taken below. I would like to understand the different
(more then 2 or 3 item attributes for one group ) item attributes
satisfying the configuration group usage as this would also help in
meeting one of our client requirement.

   Thanks

   Andy
 
 Arijit Basu [EMAIL PROTECTED] wrote:
   Hi all,
 Varden is right. You should try n use the base configurations as much
 possible. In case u cant manage with that, then u can think of
customizing
 on the lines below :)
 Cheers
 
 On 12/4/06, Varden Morris [EMAIL PROTECTED] wrote:
 
  I think item groups should be good enough to categorize the items as
  air, sold or gas. For the variation of each item you should look into
  creating a configuration group for each item as required.
 
  Arijit Basu [EMAIL PROTECTED] arijit.basu%40gmail.com wrote: Hi,
  Can u tell me if these attributes decide the Prices/ Cost for these
  items. If these are for information  reporting only, you may
consider to
  add an field which determine the item type and based on the item type
  (Air/
  Solid/Gas) , you may add new fields which describe the attributes
of these
  items. Based on the selection, you can enable/disable these fileds
in the
  item master.
  Hope it helps :)
  Cheers
 
  On 12/4/06, dj3mb3 [EMAIL PROTECTED] dj3mb3%40yahoo.it wrote:
  
   I wish to fit Axapta 3.0 production for three kind of items.
   A solid (ex. Iron), a gas (ex. air) and a liquid (ex. Color).
  
   Every Item has own attrib:
  
   Iron: Atomic mass [g/mol]
   Melting point [°C]
   ...
  
   air: oxygen min. [%]
   azote min. [%]
   other gas. [%]
   ...
  
   Color: Viscosity [mm²/s]
   Pantone [number]
   ...
  
   In the Item form how can I create a group of attribute for every
   typology of article and store its appropriate values.
  
   (For example I want to store 3 kind of iron, 2 kind of air and 5
color)
  
   thank you, Luca
  
  
  
 
  --
 
  Arijit Basu
 
  [Non-text portions of this message have been removed]
 
  Varden Morris
 
  85 Saddleland Close N.E.
  Calgary, Alberta T3J 5J5
  Canada
 
  (403) 366-8434 (H)
  (403) 615-1604 (C)
  [EMAIL PROTECTED] vardenm%40yahoo.com
 
 
 
  -
  Have a burning question? Go to Yahoo! Answers and get answers from
real
  people who know.
 
  [Non-text portions of this message have been removed]
 
  
 
 
 -- 
 
 Arijit Basu
 
 [Non-text portions of this message have been removed]
 
 
 
  
 
   
 -
  Find out what India is talking about on  - Yahoo! Answers India 
  Send FREE SMS to your friend's mobile from Yahoo! Messenger Version
8. Get it NOW
 
 [Non-text portions of this message have been removed]





[Axapta-Knowledge-Village] Re: Specify costprice for an item on an order

2006-12-05 Thread Lars Brink
Hi Markus,

Thanks for your answer!

 The field return cost price is intended for customer complaint 
 (Order type=Returned item) to define the cost price for the 
 inventory transaction (type=Receipt).

I know that the field was not intented for the use that I wanted but I
was hoping that it could be used for it (fx. by coding).

 To use different cost prices for different sales orders you have to 
 use the function marking (Inventory/Marking) where you create an 
 alliance between the inventory transaction of type Receipt (e. g. 
 purchase order) and the inventory transaction of type Issue (e. g. 
 sales order). This alliance makes AX to use the specific cost price 
 of the receipt for the issue, whatever inventory model is set up.

This system works great for items on hand. Sometimes we make
salesorders for things that we are only ordering when the customer
buys them. To have the full idea of the gross margin on the different
orders using the same item number will not work then the stock is zero.

Eg:
Item 1, last costprice 25

I want:
Order 1, item 1, costprice 10, sales price 20 = Gross margin 10
Order 2, item 1, costprice 15, sales price 20 = Gross margin  5

I get: 
Order 1, item 1, costprice 25, sales price 20 = Gross margin -5
Order 2, item 1, costprice 25, sales price 20 = Gross margin -5

The system will take the costprice from the item data and it cannot be
different as in my I want-example.

Even after updating the purchase order with new purchase the system
will not take the cost from that purchase and use when calculating.

Any ideas?

Regards from Denmark,
Lars Brink



[Axapta-Knowledge-Village] How many certified professional require for starting axapta practice?

2006-12-05 Thread sam axapta
Hi All,
 
How many certified professional require for starting axapta practice?
 
 
 
Thanks n Regards
 
Sam


 

Cheap talk?
Check out Yahoo! Messenger's low PC-to-Phone call rates.
http://voice.yahoo.com

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



[Axapta-Knowledge-Village] How many certified professional require for starting axapta practice?

2006-12-05 Thread sam axapta
Hi All,
 
How many certified professional require for starting axapta practice?
 
 
 
Thanks n Regards
 
Sam


 

Do you Yahoo!?
Everyone is raving about the all-new Yahoo! Mail beta.
http://new.mail.yahoo.com

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



[Axapta-Knowledge-Village] Re: How many certified professional require for starting axapta practice?

2006-12-05 Thread Lars Brink
Hi!

 How many certified professional require for starting axapta 
 practice?

To become a partner within Axapta you need to have a total of 8 exams
distributed on minimum 3 persons.

Regards from Denmark,
Lars Brink



[Axapta-Knowledge-Village] Adding fields on the fly to the report

2006-12-05 Thread chidambaranathan
Hi Folks,

Iam very new to Axapta programming.   

I would like to add fields in the report dynamically(on the fly) 
based on the user selection of the fields.

For instance while running Base data customer report  a dialog 
appears in which we can sort and select the range of  records.In the 
same dialog I would like to give the available fields in the 
customer from which the user needs to pick the fields on the fly 
that he desired to see in the report.

Please let me know how to proceed with this.

Thanks in advance

Regards,
Chida





RE: [Axapta-Knowledge-Village] US Sales tax setup

2006-12-05 Thread Bonk, David
Tahir;

 

I am not sure if I understand the question; are you saying this customer
is taxable in one county but not in another?  When you say a city the
only state that I know that has taxes calculated at a lower level than a
county is New Orleans as they calculate tax at a parish level.  Anyway
you assign a 'default' tax group to a customer; this populates the
header of the sales order however it can be changed for a particular
sales order if necessary.  This is the only way that I can think of
changing the taxes for a customer if it is taxed differently in a
different county (and city).

 

David

 



From: Axapta-Knowledge-Village@yahoogroups.com
[mailto:[EMAIL PROTECTED] On Behalf Of TAHIR
AZIZ
Sent: Monday, December 04, 2006 11:16 AM
To: Axapta-Knowledge-Village@yahoogroups.com
Subject: RE: [Axapta-Knowledge-Village] US Sales tax setup

 

Thanks David,

How we deal with the scenario that a perticular customer can have
exemption certificate in some county of some city. How we can do that.

Thanks

Tahir Aziz

Bonk, David [EMAIL PROTECTED]
mailto:david.bonk%40visalign.com  wrote:
Tahir;

You can set-up US sales tax with standard Axapta functionality however
depending on the number of states that the company sells to you might
want to use a service like you mentioned. The problem is the large
number of different taxing authorities (counties) in each state makes
the set-up tricky and maintenance an issue. Some companies that I have
worked with will pick one county in a state and pay all taxes to them
for that state's sales. This is not correct but it makes setting up
taxes very easy.

Generally the Sales tax groups are set-up for each county in a state;
these are attached to the customer as that dictates where the sale is
made. The item sales tax group would have all codes that are in the
Sales tax group and would be attached to the items. Then you deal with
the exceptions with different groups for each.

David



From: Axapta-Knowledge-Village@yahoogroups.com
mailto:Axapta-Knowledge-Village%40yahoogroups.com 
[mailto:Axapta-Knowledge-Village@yahoogroups.com
mailto:Axapta-Knowledge-Village%40yahoogroups.com ] On Behalf Of
aziz.tahir
Sent: Thursday, November 30, 2006 9:59 PM
To: Axapta-Knowledge-Village@yahoogroups.com
mailto:Axapta-Knowledge-Village%40yahoogroups.com 
Subject: [Axapta-Knowledge-Village] US Sales tax setup

Hi 

Can somebody through light on how to setup US sales tax structure on 
Axapta. OR do we have to use third party software for this e.g. Vertax 
or Taxware.

Please advice,

Thanks in Advance,

Tahir Aziz

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

-
Access over 1 million songs - Yahoo! Music Unlimited.

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

 



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



RE: [Axapta-Knowledge-Village] Grouping Customers

2006-12-05 Thread Bonk, David
On a customer you can have an 'invoicing account' which means you can
invoice a parent account rather than the ordering customer (delivery
address)   Also in 4.0 you can set the invoicing address as the
invoicing account or the order account so you can send the invoice to
either address for payment.  This gives you some grouping ability.  As
far as credit limit at the parent level and other features, it is not
there yet.

 

David

 



From: Axapta-Knowledge-Village@yahoogroups.com
[mailto:[EMAIL PROTECTED] On Behalf Of Faiqa
Khushi
Sent: Monday, December 04, 2006 4:53 AM
To: Axapta-Knowledge-Village@yahoogroups.com
Subject: [Axapta-Knowledge-Village] Grouping Customers
Importance: High

 

Does Axapta Dynamics support National Accounts (i.e. grouping customers
in
parent child relation)? 

Faiqa 

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

 



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



RE: [Axapta-Knowledge-Village] Intercompany ActionID

2006-12-05 Thread andreas gunawan
Dear Karina,
  tks a lot for your answer. I've tried and it works good.
   
   
  Rgds,
  

Karina Normann Jakobsen [EMAIL PROTECTED] wrote:
  You should be able to create the actions.

Open End points form. Press button Action policies, then press button Create 
Actions.

[cid:image001.jpg@01C717B7.265F1CD0]
Karina Normann Jakobsen
Program Manager
Microsoft Dynamics AX
Microsoft Corporation


From: Axapta-Knowledge-Village@yahoogroups.com [mailto:[EMAIL PROTECTED] On 
Behalf Of andreas gunawan
Sent: 4. december 2006 14:30
To: Axapta-Knowledge-Village@yahoogroups.com
Subject: [Axapta-Knowledge-Village] Intercompany ActionID

Dear All,
I can't find how to create intercompany actionID (in Basic à Setup à Applcation 
integration framework à Endpoints à Action policies button à tab overview) 
where it should be available in the demo database contains purchaserequisition 
and sales order
after reinstalled AX 4.0, prior to reinstall, it still exists. I am really 
confusing now. I appreciate your answer so much. Tks in advance.

Rgds,

-
Everyone is raving about the all-new Yahoo! Mail beta.

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

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



 

 
-
Have a burning question? Go to Yahoo! Answers and get answers from real people 
who know.

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



[Axapta-Knowledge-Village] Fields on tab status of parameters form in production module

2006-12-05 Thread andreas gunawan
 
   
  Dear All,
  I am currently confusing about field definitions on tab status on production 
parameters setup of AX 4.0 , when I press F1 online help, I search production 
parameter, I found but there is no available info about it. I need your help to 
let me know it. TIA
   
   
  Rgds, 

 
-
Need a quick answer? Get one in minutes from people who know. Ask your question 
on Yahoo! Answers.

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



[Axapta-Knowledge-Village] Re: Specify costprice for an item on an order

2006-12-05 Thread markusotte2
Hi Lars.

To get the figures before invoicing, you have to do some coding.
After invoicing the marking function should/will solve your problem.

Cheers!
Markus
--- In Axapta-Knowledge-Village@yahoogroups.com, Lars Brink 
[EMAIL PROTECTED] wrote:

 Hi Markus,
 
 Thanks for your answer!
 
  The field return cost price is intended for customer complaint 
  (Order type=Returned item) to define the cost price for the 
  inventory transaction (type=Receipt).
 
 I know that the field was not intented for the use that I wanted 
but I
 was hoping that it could be used for it (fx. by coding).
 
  To use different cost prices for different sales orders you have 
to 
  use the function marking (Inventory/Marking) where you create 
an 
  alliance between the inventory transaction of type Receipt (e. 
g. 
  purchase order) and the inventory transaction of type Issue 
(e. g. 
  sales order). This alliance makes AX to use the specific cost 
price 
  of the receipt for the issue, whatever inventory model is set up.
 
 This system works great for items on hand. Sometimes we make
 salesorders for things that we are only ordering when the customer
 buys them. To have the full idea of the gross margin on the 
different
 orders using the same item number will not work then the stock is 
zero.
 
 Eg:
 Item 1, last costprice 25
 
 I want:
 Order 1, item 1, costprice 10, sales price 20 = Gross margin 10
 Order 2, item 1, costprice 15, sales price 20 = Gross margin  5
 
 I get: 
 Order 1, item 1, costprice 25, sales price 20 = Gross margin -5
 Order 2, item 1, costprice 25, sales price 20 = Gross margin -5
 
 The system will take the costprice from the item data and it 
cannot be
 different as in my I want-example.
 
 Even after updating the purchase order with new purchase the system
 will not take the cost from that purchase and use when calculating.
 
 Any ideas?
 
 Regards from Denmark,
 Lars Brink





[Axapta-Knowledge-Village] Re: Fields on tab status of parameters form in production module

2006-12-05 Thread markusotte2
Hi Andreas.

This Setup is to allow (or refuse) the status update on the 
production order:
- e. g. are you allowed to create a production order and update it 
to status finished without any other updates in-between
- e. g. are you allowed to reset the status of a production order 
which is released already

Cheers!
Markus
--- In Axapta-Knowledge-Village@yahoogroups.com, andreas gunawan 
[EMAIL PROTECTED] wrote:

  

   Dear All,
   I am currently confusing about field definitions on tab status 
on production parameters setup of AX 4.0 , when I press F1 online 
help, I search production parameter, I found but there is no 
available info about it. I need your help to let me know it. TIA


   Rgds, 
 
  
 -
 Need a quick answer? Get one in minutes from people who know. Ask 
your question on Yahoo! Answers.
 
 [Non-text portions of this message have been removed]





[Axapta-Knowledge-Village] Fax Integration with Ax

2006-12-05 Thread vijaybhatv
The Ax documentation mentions of 
=Option to e-mail and fax directly from Microsoft Dynamics AX

Does anybody know how Fax can be sent directly from Ax and how is it 
configured

thanks




[Axapta-Knowledge-Village] Reservation of Items for a Production Order.

2006-12-05 Thread vijay_navaxapta
Hi,

The Production Orde is created for 10 Nos of FG. However, while 
changing the status of Production Order to Started, the Qty to start 
is 5. In other words the Production Order is started for only 5 Nos.

Though the Production Order is started for 5,the system reserves the 
components for the entire 10 Quantity.


This is  making  many of the Items = not available for Other 
PRoduction Order since they are reserved.

My question is how to resreve the components only for the Started 
Quantity.?

Will anydody answer Please?

Thanks in advance.


Vijay.






[Axapta-Knowledge-Village] AX 4.0 Financial Statement help

2006-12-05 Thread John
Hi All,

In creating statement columns in 4.0 -is there any way to include both 
amount and quantity in the same column?  We're doing cost per tons 
analysis and using two columns takes up too much real estate.  

Has anyone came across this, or have an ideas?

Thanks,
-John R.



[Axapta-Knowledge-Village] Re: Reservation of Items for a Production Order.

2006-12-05 Thread markusotte2
Hi Vijay.

There is no way in standard, but you may:
- reduce the reservation manual afterwards
- reduce the qty of the production order before reservation
- change the code

Cheers!
Markus
--- In Axapta-Knowledge-Village@yahoogroups.com, vijay_navaxapta 
[EMAIL PROTECTED] wrote:

 Hi,
 
 The Production Orde is created for 10 Nos of FG. However, while 
 changing the status of Production Order to Started, the Qty to 
start 
 is 5. In other words the Production Order is started for only 5 
Nos.
 
 Though the Production Order is started for 5,the system reserves 
the 
 components for the entire 10 Quantity.
 
 
 This is  making  many of the Items = not available for Other 
 PRoduction Order since they are reserved.
 
 My question is how to resreve the components only for the Started 
 Quantity.?
 
 Will anydody answer Please?
 
 Thanks in advance.
 
 
 Vijay.





RE: [Axapta-Knowledge-Village] Intercompany ActionID

2006-12-05 Thread yuli tany
Hi all,

When I was trying to setup the Intercompany SO/PO,
system always prompt me this msg: conversion of code
not specified

So far, i have specified all the things, I use
external code for the Customer/Vendor and I've
attached this code to teh Customer/Vendor too.

Please help.

Thanks,
'Joels

--- andreas gunawan [EMAIL PROTECTED] wrote:

 Dear Karina,
   tks a lot for your answer. I've tried and it works
 good.


   Rgds,
   
 
 Karina Normann Jakobsen [EMAIL PROTECTED]
 wrote:
   You should be able to create the actions.
 
 Open End points form. Press button Action policies,
 then press button Create Actions.
 
 [cid:image001.jpg@01C717B7.265F1CD0]
 Karina Normann Jakobsen
 Program Manager
 Microsoft Dynamics AX
 Microsoft Corporation
 
 
 From: Axapta-Knowledge-Village@yahoogroups.com
 [mailto:[EMAIL PROTECTED] On
 Behalf Of andreas gunawan
 Sent: 4. december 2006 14:30
 To: Axapta-Knowledge-Village@yahoogroups.com
 Subject: [Axapta-Knowledge-Village] Intercompany
 ActionID
 
 Dear All,
 I can't find how to create intercompany actionID (in
 Basic à Setup à Applcation integration framework à
 Endpoints à Action policies button à tab overview)
 where it should be available in the demo database
 contains purchaserequisition and sales order
 after reinstalled AX 4.0, prior to reinstall, it
 still exists. I am really confusing now. I
 appreciate your answer so much. Tks in advance.
 
 Rgds,
 
 -
 Everyone is raving about the all-new Yahoo! Mail
 beta.
 
 [Non-text portions of this message have been
 removed]
 
 [Non-text portions of this message have been
 removed]
 
 
 
  
 
  
 -
 Have a burning question? Go to Yahoo! Answers and
 get answers from real people who know.
 
 [Non-text portions of this message have been
 removed]
 
 



 

Do you Yahoo!?
Everyone is raving about the all-new Yahoo! Mail beta.
http://new.mail.yahoo.com


[Axapta-Knowledge-Village] Error 100: Cannot create another system semaphore

2006-12-05 Thread cdlmalherbe01
Hi all,

We have 2 identical(drive letters, file systems etc) environments
(although one is a VPC and the other has a physical host). We want to 
move the application and database from the one to the other on a 
regular basis.

We consistently receive the above-mentioned error message when trying 
to start up the AOS.

Any ideas regarding the purpose, type(file, registry etc) and location 
(path, key etc) will be highly appreciated.

Regards,

Christoph Malherbe




RE: [Axapta-Knowledge-Village] Intercompany ActionID

2006-12-05 Thread Bonk, David
What about on the items?

 

You need to have them defined also.

 

David

 



From: Axapta-Knowledge-Village@yahoogroups.com [mailto:[EMAIL PROTECTED] On 
Behalf Of yuli tany
Sent: Tuesday, December 05, 2006 9:43 AM
To: Axapta-Knowledge-Village@yahoogroups.com
Subject: RE: [Axapta-Knowledge-Village] Intercompany ActionID

 

Hi all,

When I was trying to setup the Intercompany SO/PO,
system always prompt me this msg: conversion of code
not specified

So far, i have specified all the things, I use
external code for the Customer/Vendor and I've
attached this code to teh Customer/Vendor too.

Please help.

Thanks,
'Joels

--- andreas gunawan [EMAIL PROTECTED] mailto:andreas2975%40yahoo.com  wrote:

 Dear Karina,
 tks a lot for your answer. I've tried and it works
 good.
 
 
 Rgds,
 
 
 Karina Normann Jakobsen [EMAIL PROTECTED] mailto:kjakobse%40microsoft.com 
 wrote:
 You should be able to create the actions.
 
 Open End points form. Press button Action policies,
 then press button Create Actions.
 
 [cid:image001.jpg@01C717B7.265F1CD0 mailto:image001.jpg%4001C717B7.265F1CD0 
 ]
 Karina Normann Jakobsen
 Program Manager
 Microsoft Dynamics AX
 Microsoft Corporation
 
 
 From: Axapta-Knowledge-Village@yahoogroups.com 
 mailto:Axapta-Knowledge-Village%40yahoogroups.com 
 [mailto:Axapta-Knowledge-Village@yahoogroups.com 
 mailto:Axapta-Knowledge-Village%40yahoogroups.com ] On
 Behalf Of andreas gunawan
 Sent: 4. december 2006 14:30
 To: Axapta-Knowledge-Village@yahoogroups.com 
 mailto:Axapta-Knowledge-Village%40yahoogroups.com 
 Subject: [Axapta-Knowledge-Village] Intercompany
 ActionID
 
 Dear All,
 I can't find how to create intercompany actionID (in
 Basic à Setup à Applcation integration framework à
 Endpoints à Action policies button à tab overview)
 where it should be available in the demo database
 contains purchaserequisition and sales order
 after reinstalled AX 4.0, prior to reinstall, it
 still exists. I am really confusing now. I
 appreciate your answer so much. Tks in advance.
 
 Rgds,
 
 -
 Everyone is raving about the all-new Yahoo! Mail
 beta.
 
 [Non-text portions of this message have been
 removed]
 
 [Non-text portions of this message have been
 removed]
 
 
 
 
 
 
 -
 Have a burning question? Go to Yahoo! Answers and
 get answers from real people who know.
 
 [Non-text portions of this message have been
 removed]
 
 

__
Do you Yahoo!?
Everyone is raving about the all-new Yahoo! Mail beta.
http://new.mail.yahoo.com http://new.mail.yahoo.com 

 



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



RE: [Axapta-Knowledge-Village] AX 4.0 Financial Statement help

2006-12-05 Thread Bonk, David
John;

 

Based on my time working on the statements I do not see how you could
accomplish this as it asks for a column type and allows only one
selection.  I have built statements with six columns and because it
scales the reports, the six columns fit without problem.

 

David

 



From: Axapta-Knowledge-Village@yahoogroups.com
[mailto:[EMAIL PROTECTED] On Behalf Of John
Sent: Tuesday, December 05, 2006 11:04 AM
To: Axapta-Knowledge-Village@yahoogroups.com
Subject: [Axapta-Knowledge-Village] AX 4.0 Financial Statement help

 

Hi All,

In creating statement columns in 4.0 -is there any way to include both 
amount and quantity in the same column? We're doing cost per tons 
analysis and using two columns takes up too much real estate. 

Has anyone came across this, or have an ideas?

Thanks,
-John R.

 



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



[Axapta-Knowledge-Village] AX4 Credit Card add on

2006-12-05 Thread Kevin
Does anyone using AX 4, have a stable credit card solution
recommendation? We need a plug in at the Sales order level to process
catalog call in orders.. both credit card prepayment and real time at
time of packing. Anyone?? Appreciate comments / solutions.

Kevin S. Krieger
IS/IT/Business Applications Manager
16661 N. 84th Ave Ste-150
Peoria, AZ 85382
Ph. 800-735-7030 x125
Cell 623-776-5430
[EMAIL PROTECTED]
[EMAIL PROTECTED] (blackberry)
www.diamondbacktactical.com




RE: [Axapta-Knowledge-Village] AX4 Credit Card add on

2006-12-05 Thread Chris Legan
Red Maple has a good credit card solution. 

 

Email [EMAIL PROTECTED] and tell him Chris with Axtin sent you there.

 

  _  

From: Axapta-Knowledge-Village@yahoogroups.com
[mailto:[EMAIL PROTECTED] On Behalf Of Kevin
Sent: Tuesday, December 05, 2006 1:56 PM
To: Axapta-Knowledge-Village@yahoogroups.com
Subject: [Axapta-Knowledge-Village] AX4 Credit Card add on

 

Does anyone using AX 4, have a stable credit card solution
recommendation? We need a plug in at the Sales order level to process
catalog call in orders.. both credit card prepayment and real time at
time of packing. Anyone?? Appreciate comments / solutions.

Kevin S. Krieger
IS/IT/Business Applications Manager
16661 N. 84th Ave Ste-150
Peoria, AZ 85382
Ph. 800-735-7030 x125
Cell 623-776-5430
[EMAIL PROTECTED] mailto:k.krieger%40diamondbacktactical.com
cktactical.com
kevin.krieger@ mailto:kevin.krieger%40cat-armor.com cat-armor.com
(blackberry)
www.diamondbacktactical.com

 



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



AW: [Axapta-Knowledge-Village] Adding fields on the fly to the report

2006-12-05 Thread Andreas Rudischhauser
Add all fields and make them available by setting AutoDeclaration to Yes
in de Properties. So you can set them visible or not via

 

Field.Visible = true;

 

Von: Axapta-Knowledge-Village@yahoogroups.com
[mailto:[EMAIL PROTECTED] Im Auftrag von
chidambaranathan
Gesendet: Dienstag, 5. Dezember 2006 13:18
An: Axapta-Knowledge-Village@yahoogroups.com
Betreff: [Axapta-Knowledge-Village] Adding fields on the fly to the
report

 

Hi Folks,

Iam very new to Axapta programming. 

I would like to add fields in the report dynamically(on the fly) 
based on the user selection of the fields.

For instance while running Base data customer report a dialog 
appears in which we can sort and select the range of records.In the 
same dialog I would like to give the available fields in the 
customer from which the user needs to pick the fields on the fly 
that he desired to see in the report.

Please let me know how to proceed with this.

Thanks in advance

Regards,
Chida

 



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



[Axapta-Knowledge-Village] Re: Adding fields on the fly to the report

2006-12-05 Thread chidambaranathan
Hi Andreas,
   Thanks for the reply.
   I would like to make visible the fields in the selection dialog 
itself so from there end user wants to select the fields he 
desired,on the fly.

Regards
Chida

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

 Add all fields and make them available by setting AutoDeclaration 
to Yes
 in de Properties. So you can set them visible or not via
 
  
 
 Field.Visible = true;
 
  
 
 Von: Axapta-Knowledge-Village@yahoogroups.com
 [mailto:[EMAIL PROTECTED] Im Auftrag von
 chidambaranathan
 Gesendet: Dienstag, 5. Dezember 2006 13:18
 An: Axapta-Knowledge-Village@yahoogroups.com
 Betreff: [Axapta-Knowledge-Village] Adding fields on the fly to the
 report
 
  
 
 Hi Folks,
 
 Iam very new to Axapta programming. 
 
 I would like to add fields in the report dynamically(on the fly) 
 based on the user selection of the fields.
 
 For instance while running Base data customer report a dialog 
 appears in which we can sort and select the range of records.In 
the 
 same dialog I would like to give the available fields in the 
 customer from which the user needs to pick the fields on the fly 
 that he desired to see in the report.
 
 Please let me know how to proceed with this.
 
 Thanks in advance
 
 Regards,
 Chida
 
  
 
 
 
 [Non-text portions of this message have been removed]





RE: [Axapta-Knowledge-Village] Intercompany ActionID

2006-12-05 Thread yuli tany
Hi David,

I set all to OUR.

Thanks,
Yuliana

--- Bonk, David [EMAIL PROTECTED] wrote:

 What about on the items?
 
  
 
 You need to have them defined also.
 
  
 
 David
 
  
 
 
 
 From: Axapta-Knowledge-Village@yahoogroups.com
 [mailto:[EMAIL PROTECTED] On
 Behalf Of yuli tany
 Sent: Tuesday, December 05, 2006 9:43 AM
 To: Axapta-Knowledge-Village@yahoogroups.com
 Subject: RE: [Axapta-Knowledge-Village] Intercompany
 ActionID
 
  
 
 Hi all,
 
 When I was trying to setup the Intercompany SO/PO,
 system always prompt me this msg: conversion of
 code
 not specified
 
 So far, i have specified all the things, I use
 external code for the Customer/Vendor and I've
 attached this code to teh Customer/Vendor too.
 
 Please help.
 
 Thanks,
 'Joels
 
 --- andreas gunawan [EMAIL PROTECTED]
 mailto:andreas2975%40yahoo.com  wrote:
 
  Dear Karina,
  tks a lot for your answer. I've tried and it works
  good.
  
  
  Rgds,
  
  
  Karina Normann Jakobsen [EMAIL PROTECTED]
 mailto:kjakobse%40microsoft.com 
  wrote:
  You should be able to create the actions.
  
  Open End points form. Press button Action
 policies,
  then press button Create Actions.
  
  [cid:image001.jpg@01C717B7.265F1CD0
 mailto:image001.jpg%4001C717B7.265F1CD0 ]
  Karina Normann Jakobsen
  Program Manager
  Microsoft Dynamics AX
  Microsoft Corporation
  
  
  From: Axapta-Knowledge-Village@yahoogroups.com
 mailto:Axapta-Knowledge-Village%40yahoogroups.com 
  [mailto:Axapta-Knowledge-Village@yahoogroups.com
 mailto:Axapta-Knowledge-Village%40yahoogroups.com
 ] On
  Behalf Of andreas gunawan
  Sent: 4. december 2006 14:30
  To: Axapta-Knowledge-Village@yahoogroups.com
 mailto:Axapta-Knowledge-Village%40yahoogroups.com 
  Subject: [Axapta-Knowledge-Village] Intercompany
  ActionID
  
  Dear All,
  I can't find how to create intercompany actionID
 (in
  Basic à Setup à Applcation integration framework à
  Endpoints à Action policies button à tab overview)
  where it should be available in the demo database
  contains purchaserequisition and sales order
  after reinstalled AX 4.0, prior to reinstall, it
  still exists. I am really confusing now. I
  appreciate your answer so much. Tks in advance.
  
  Rgds,
  
  -
  Everyone is raving about the all-new Yahoo! Mail
  beta.
  
  [Non-text portions of this message have been
  removed]
  
  [Non-text portions of this message have been
  removed]
  
  
  
  
  
  
  -
  Have a burning question? Go to Yahoo! Answers and
  get answers from real people who know.
  
  [Non-text portions of this message have been
  removed]
  
  
 

__
 Do you Yahoo!?
 Everyone is raving about the all-new Yahoo! Mail
 beta.
 http://new.mail.yahoo.com
 http://new.mail.yahoo.com 
 
  
 
 
 
 [Non-text portions of this message have been
 removed]
 
 



 

Cheap talk?
Check out Yahoo! Messenger's low PC-to-Phone call rates.
http://voice.yahoo.com


[Axapta-Knowledge-Village] Help !!

2006-12-05 Thread vijaynznair
Help to fix this problem.

Error  : File 'C:\AXAPTA\AXClient\share\include\CCLicens.lic' could 
not be opened


Error 10 or 15 mts after logged in :

The navision Axapta Object server has shut down the connection to 
your computer. An administrator might have requested termination of 
you session or the object server might be shutting down or 
restarting. if problem persists please contact your administrator
 
The system crashes after this.

Please help if you have a solution. 
Thanks 

Vijay
[EMAIL PROTECTED]





Re: [Axapta-Knowledge-Village] Re: Reservation of Items for a Production Order.

2006-12-05 Thread anand rathi
Can anyone help in the following:
   
  1. SO Line created for 100 qty.
  2. Manually reserved for 40 qty.
  3. Production Order/ Purchase Order created for 50 qty.
   
  Now if i want to see the reservations its showing for 50 and manual 
reservation is no more valid. The last one is overlapping the earlier one.
   
  I am aware of two types of Reservation:
   
  Reserved Physically
  Reserved Ordered
   
  Can we have both the reservation (manual and production/purchse having 
together?

   
  Thanks  Regards
  Andy
markusotte2 [EMAIL PROTECTED] wrote:
  Hi Vijay.

There is no way in standard, but you may:
- reduce the reservation manual afterwards
- reduce the qty of the production order before reservation
- change the code

Cheers!
Markus
--- In Axapta-Knowledge-Village@yahoogroups.com, vijay_navaxapta 
[EMAIL PROTECTED] wrote:

 Hi,
 
 The Production Orde is created for 10 Nos of FG. However, while 
 changing the status of Production Order to Started, the Qty to 
start 
 is 5. In other words the Production Order is started for only 5 
Nos.
 
 Though the Production Order is started for 5,the system reserves 
the 
 components for the entire 10 Quantity.
 
 
 This is making many of the Items = not available for Other 
 PRoduction Order since they are reserved.
 
 My question is how to resreve the components only for the Started 
 Quantity.?
 
 Will anydody answer Please?
 
 Thanks in advance.
 
 
 Vijay.




 


-
 Find out what India is talking about on  - Yahoo! Answers India 
 Send FREE SMS to your friend's mobile from Yahoo! Messenger Version 8. Get it 
NOW

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



[Axapta-Knowledge-Village] SFC3 Payroll license

2006-12-05 Thread Georgena Tan
Hi,
   
  Currently I am in an implemetion of AX SP4 Finance, Trade and Logistics, 
Production, Projects, Service maintenance and Shop Floor Control modules for a 
client. I would like to find out if my client is required to  purchase SFC3 
Payroll license since the client already has its own sophisticated payroll 
system working great for them. My client only requires all the production hours 
reported via SFC module to be transfered to their existing payroll system. 
Please kindly advice if puchasing the SFC3 license is mandatory? If not 
mandatory, how I do transfer all the production hours from Production and SFC 
to their existing payroll system. 
   
  Thank you.
  georgena
   

 
-
Check out the all-new Yahoo! Mail beta - Fire up a more powerful email and get 
things done faster.

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



Re: [Axapta-Knowledge-Village] Re: Trade Logistics Training Materials

2006-12-05 Thread TAHIR AZIZ
I will apreciate if somebody will send me some examination preparation and 
sample questions.
   
  Thanks
   
  Tahir

faiQa [EMAIL PROTECTED] wrote:
  Hi Rasika,

can you please mail me the Material on TL.

Thanks
faQ

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

 Hi,
 
 I have E-academy courses for Trade Essentials 3.0 and Logistics 
 Essentials 3.0. Are they any good for the TL exam preparation?
 
 Thanks,
 Maneesh
 
 
 
 
 --- In Axapta-Knowledge-Village@yahoogroups.com, lars_kjaersgaard 
 lk@ wrote:
 
  Hi Rasika,
  
  I am very much interested in TL exam materials. I would be very 
  grateful If you would mail me the material.
  
  Maybe I have som materials you are interested in? We can talk 
about 
  it.
  
  Best regards
  Lars 
  
   
   Hi, 
   I am Rasika from Sri Lanka.
   I did TL exam resently and got through. If you still searching 
  for the materials I can send it. Pl. write to me if you want it. 
   wbr,
   Rasika
   
    - - ---
   Ring'em or ping'em. Make PC-to-phone calls as low as 1¢/min 
with 
  Yahoo! Messenger with Voice.
   
   [Non-text portions of this message have been removed]
   
   Sharing the knowledge on Axapta.
   Visit www.frappr.com/ axapta for axapta friends. 
   
   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:
   Axapta-Knowledge- Village-unsubscr [EMAIL PROTECTED] com
   
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of 
  Service.
   
   [Non-text portions of this message have been removed]
   
   
    - - ---
   Find out what India is talking about on - Yahoo! Answers India 
   Send FREE SMS to your friend's mobile from Yahoo! Messenger 
  Version 8. Get it NOW
   
   [Non-text portions of this message have been removed]
   
   
   
   
   
   
   
  
 
__
  ___
   Sponsored Link
   
   Mortgage rates near 39yr lows. 
   $510k for $1,698/mo. Calculate new payment! 
   www.LowerMyBills.com/lre
   
   [Non-text portions of this message have been removed]
  
 




 

 
-
Have a burning question? Go to Yahoo! Answers and get answers from real people 
who know.

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



[Axapta-Knowledge-Village] how to get prepare for axapta certification

2006-12-05 Thread jonatorba
Hi everybody,
I would like to know what is the best way to get prepared for the 
axapta certification. Tests, manuals. Where can i get them in a cheap 
form? Any help will be very appreciated.
Jonatorba 



[Axapta-Knowledge-Village] Need to know Methods to Direct Report to Excel.

2006-12-05 Thread Dipankar Paul
Hi Friends,
   I have written some piece of code to generate report in 
Excel using COM class. It works fine when i test it in JOB but not getting the 
way how to make use it in Report Section.There are several methods can be 
overriden in reports like Fetch() , Send()..etc,.Could u pls tell me exactly 
how  where i need to make use of this code..

With Kind Regards,
Dipankar.

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

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



Re: [Axapta-Knowledge-Village] Re: Trade Logistics Training Material

2006-12-05 Thread Khurram Zaki
Hello guys,

I got this breakup of TL paper when I was preparing for certification (and
yes I cleared :) )
Maybe this is of some help to someone. If anyone needs the training
material, I have some DOCs and PDFs as well, drop me a line.
In my view, exam tests more for practical knowledge as compared to book
knowledge, so its better to keep your practice up to date as well.

Cheers!

Khurram

   *Sales and purchase orders – 25%*
• Set up and use of reservations and registration; • Details and use of the
different sales order types; • Demonstrate understanding of various purchase
order functionality (miscellaneous charges); • Advanced sales order features
(returned items, over /under, credit limits, integration with the accounts
receivables, order status and types); • Advanced purchase order features
(returned items, creation from a sales order, updates and status); • Sales
order subscriptions and sales order parameters; • Understand features of the
sales order form; • Configuration and differences between manual and
automatic reservations; • Customer and vendor set up used by inventory
management; • Backorder lines in sales orders; • Set up of calculation of
commissions
*Trade Agreements – 13%*
• Forecast future sales and purchase expectations; • Know the different
types of trade agreements and how to set up and activate trade agreements; •
Set up discounts and know how they are calculated and applied; • Set up of
multi line discounts, how they are calculated and posted; • Implement the
use of supplementary items
*Bills of Material – 15%*
• Set up and consequences of the BOM components' line type field; •
Understand the benefits and differences of working with the BOM designer; •
Product configurator, item configuration; • Understand how the BOM price
calculation is performed, the profit settings used, and how to transfer the
price to the sales order line; • Creation of BOMs, BOM versions and BOM
lines
*Inventory – 47%*
• Set up and use of item groups; • Setup and integration of inventory
management with ledger accounts to track the financial aspects of inventory;
• Understand the purpose and process of adjusting and closing Inventory and
the available reports; • Setup of items, item coverage and item coverage
groups used with master planning; • Use of advanced item settings to control
order quantity, automatic price updates, etc; • Understand the issue and
receipt status values assigned to inventory transactions, distinguishing
between physical and financial inventory; • Know how the total available
on-hand inventory is calculated; • Use of number sequences in the TL module
(serial numbers, batch numbers, order numbers); • Calculation of cost
prices, item consumption, inventory values and recalculation based on the
inventory model group settings; • Setup inventory dimension groups and their
impact on how items are stored and how they control items are managed in
inventory; • Use of the unit conversion form to establish conversions; •
Understand the purpose and mechanics to use the inventory journals (profit
and loss, transfer, BOM, movement); • Create the setups and parameters for
managing quarantine items; • Understand and use serial and batch in
inventory

-



On 12/5/06, TAHIR AZIZ [EMAIL PROTECTED] wrote:

   I will apreciate if somebody will send me some examination preparation
 and sample questions.

 Thanks

 Tahir

 faiQa [EMAIL PROTECTED] faiqa.khushi%40m-consultants.com
 wrote:
 Hi Rasika,

 can you please mail me the Material on TL.

 Thanks
 faQ

 -- In 
 Axapta-Knowledge-Village@yahoogroups.comAxapta-Knowledge-Village%40yahoogroups.com,
 maneesh_jain
 [EMAIL PROTECTED] wrote:
 
  Hi,
 
  I have E-academy courses for Trade Essentials 3.0 and Logistics
  Essentials 3.0. Are they any good for the TL exam preparation?
 
  Thanks,
  Maneesh
 
 
 
 
  --- In 
  Axapta-Knowledge-Village@yahoogroups.comAxapta-Knowledge-Village%40yahoogroups.com,
 lars_kjaersgaard
  lk@ wrote:
  
   Hi Rasika,
  
   I am very much interested in TL exam materials. I would be very
   grateful If you would mail me the material.
  
   Maybe I have som materials you are interested in? We can talk
 about
   it.
  
   Best regards
   Lars
  
   
Hi,
I am Rasika from Sri Lanka.
I did TL exam resently and got through. If you still searching
   for the materials I can send it. Pl. write to me if you want it.
wbr,
Rasika
   
 - - ---
Ring'em or ping'em. Make PC-to-phone calls as low as 1¢/min
 with
   Yahoo! Messenger with Voice.
   
[Non-text portions of this message have been removed]
   
Sharing the knowledge on Axapta.
Visit www.frappr.com/ axapta for axapta friends.
   
SPONSORED LINKS Business finance course Business to business
   finance Small business finance
Business finance consultant 

[Axapta-Knowledge-Village] Axapta Permissions Report

2006-12-05 Thread Mohammed Sadiq
 

 

 

Hi All

 

I need to generate a report in Axapta for all the users in a particular
domain who have the permission to access a particular session. How can
this be accomplished through standard Axapta. If we cannot do it through
standard Axapta, is there any workaround for this. Thanks for your
suggestions.

 

Regards 



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



RE: [Axapta-Knowledge-Village] Re: Trade Logistics Training Material

2006-12-05 Thread Radwa Youssef
Hi

Yes, I need them urgently

Radwa

-Original Message-
From: Axapta-Knowledge-Village@yahoogroups.com
[mailto:[EMAIL PROTECTED] On Behalf Of Khurram Zaki
Sent: Wednesday, December 06, 2006 9:13 AM
To: Axapta-Knowledge-Village@yahoogroups.com
Subject: Re: [Axapta-Knowledge-Village] Re: Trade  Logistics Training
Material

Hello guys,

I got this breakup of TL paper when I was preparing for certification (and
yes I cleared :) )
Maybe this is of some help to someone. If anyone needs the training
material, I have some DOCs and PDFs as well, drop me a line.
In my view, exam tests more for practical knowledge as compared to book
knowledge, so its better to keep your practice up to date as well.

Cheers!

Khurram

   *Sales and purchase orders – 25%*
• Set up and use of reservations and registration; • Details and use of the
different sales order types; • Demonstrate understanding of various purchase
order functionality (miscellaneous charges); • Advanced sales order features
(returned items, over /under, credit limits, integration with the accounts
receivables, order status and types); • Advanced purchase order features
(returned items, creation from a sales order, updates and status); • Sales
order subscriptions and sales order parameters; • Understand features of the
sales order form; • Configuration and differences between manual and
automatic reservations; • Customer and vendor set up used by inventory
management; • Backorder lines in sales orders; • Set up of calculation of
commissions
*Trade Agreements – 13%*
• Forecast future sales and purchase expectations; • Know the different
types of trade agreements and how to set up and activate trade agreements; •
Set up discounts and know how they are calculated and applied; • Set up of
multi line discounts, how they are calculated and posted; • Implement the
use of supplementary items
*Bills of Material – 15%*
• Set up and consequences of the BOM components' line type field; •
Understand the benefits and differences of working with the BOM designer; •
Product configurator, item configuration; • Understand how the BOM price
calculation is performed, the profit settings used, and how to transfer the
price to the sales order line; • Creation of BOMs, BOM versions and BOM
lines
*Inventory – 47%*
• Set up and use of item groups; • Setup and integration of inventory
management with ledger accounts to track the financial aspects of inventory;
• Understand the purpose and process of adjusting and closing Inventory and
the available reports; • Setup of items, item coverage and item coverage
groups used with master planning; • Use of advanced item settings to control
order quantity, automatic price updates, etc; • Understand the issue and
receipt status values assigned to inventory transactions, distinguishing
between physical and financial inventory; • Know how the total available
on-hand inventory is calculated; • Use of number sequences in the TL module
(serial numbers, batch numbers, order numbers); • Calculation of cost
prices, item consumption, inventory values and recalculation based on the
inventory model group settings; • Setup inventory dimension groups and their
impact on how items are stored and how they control items are managed in
inventory; • Use of the unit conversion form to establish conversions; •
Understand the purpose and mechanics to use the inventory journals (profit
and loss, transfer, BOM, movement); • Create the setups and parameters for
managing quarantine items; • Understand and use serial and batch in
inventory



-



On 12/5/06, TAHIR AZIZ [EMAIL PROTECTED] wrote:

   I will apreciate if somebody will send me some examination preparation
 and sample questions.

 Thanks

 Tahir

 faiQa [EMAIL PROTECTED] faiqa.khushi%40m-consultants.com
 wrote:
 Hi Rasika,

 can you please mail me the Material on TL.

 Thanks
 faQ

 -- In
Axapta-Knowledge-Village@yahoogroups.comAxapta-Knowledge-Village%40yahoogro
ups.com,
 maneesh_jain
 [EMAIL PROTECTED] wrote:
 
  Hi,
 
  I have E-academy courses for Trade Essentials 3.0 and Logistics
  Essentials 3.0. Are they any good for the TL exam preparation?
 
  Thanks,
  Maneesh
 
 
 
 
  --- In
Axapta-Knowledge-Village@yahoogroups.comAxapta-Knowledge-Village%40yahoogro
ups.com,
 lars_kjaersgaard
  lk@ wrote:
  
   Hi Rasika,
  
   I am very much interested in TL exam materials. I would be very
   grateful If you would mail me the material.
  
   Maybe I have som materials you are interested in? We can talk
 about
   it.
  
   Best regards
   Lars
  
   
Hi,
I am Rasika from Sri Lanka.
I did TL exam resently and got through. If you still searching
   for the materials I can send it. Pl. write to me if you want it.
wbr,
Rasika
   
 - - ---
Ring'em or ping'em. Make PC-to-phone calls as low as 1¢/min

[Axapta-Knowledge-Village] Re: Need to know Methods to Direct Report to Excel.

2006-12-05 Thread lars_kjaersgaard
Paul,

I want to understand you right. You have programmed a COM-class 
which contains code that generate some output and sends it to Excel? 

I presume it is a tablebuffer?
What is the output?

Best regards
Lars


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

 Hi Friends,
I have written some piece of code to generate 
report in Excel using COM class. It works fine when i test it in JOB 
but not getting the way how to make use it in Report Section.There 
are several methods can be overriden in reports like Fetch() , Send
()..etc,.Could u pls tell me exactly how  where i need to make use 
of this code..
 
 With Kind Regards,
 Dipankar.
 
 Send instant messages to your online friends 
http://uk.messenger.yahoo.com 
 
 [Non-text portions of this message have been removed]





[Axapta-Knowledge-Village] Re: Trade Logistics Training Material

2006-12-05 Thread lars_kjaersgaard


Hi Khurram,

I would appreciate it very much if you would send med the materials.

[EMAIL PROTECTED]

Thank you in advance.

Best regards
Lars


 
 Hello guys,
 
 I got this breakup of TL paper when I was preparing for 
certification (and
 yes I cleared :) )
 Maybe this is of some help to someone. If anyone needs the training
 material, I have some DOCs and PDFs as well, drop me a line.
 In my view, exam tests more for practical knowledge as compared to 
book
 knowledge, so its better to keep your practice up to date as well.
 
 Cheers!
 
 Khurram
 
*Sales and purchase orders – 25%*
 • Set up and use of reservations and registration; • Details and 
use of the
 different sales order types; • Demonstrate understanding of 
various purchase
 order functionality (miscellaneous charges); • Advanced sales 
order features
 (returned items, over /under, credit limits, integration with the 
accounts
 receivables, order status and types); • Advanced purchase order 
features
 (returned items, creation from a sales order, updates and 
status); • Sales
 order subscriptions and sales order parameters; • Understand 
features of the
 sales order form; • Configuration and differences between manual 
and
 automatic reservations; • Customer and vendor set up used by 
inventory
 management; • Backorder lines in sales orders; • Set up of 
calculation of
 commissions
 *Trade Agreements – 13%*
 • Forecast future sales and purchase expectations; • Know the 
different
 types of trade agreements and how to set up and activate trade 
agreements; •
 Set up discounts and know how they are calculated and applied; • 
Set up of
 multi line discounts, how they are calculated and posted; • 
Implement the
 use of supplementary items
 *Bills of Material – 15%*
 • Set up and consequences of the BOM components' line type field; •
 Understand the benefits and differences of working with the BOM 
designer; •
 Product configurator, item configuration; • Understand how the BOM 
price
 calculation is performed, the profit settings used, and how to 
transfer the
 price to the sales order line; • Creation of BOMs, BOM versions 
and BOM
 lines
 *Inventory – 47%*
 • Set up and use of item groups; • Setup and integration of 
inventory
 management with ledger accounts to track the financial aspects of 
inventory;
 • Understand the purpose and process of adjusting and closing 
Inventory and
 the available reports; • Setup of items, item coverage and item 
coverage
 groups used with master planning; • Use of advanced item settings 
to control
 order quantity, automatic price updates, etc; • Understand the 
issue and
 receipt status values assigned to inventory transactions, 
distinguishing
 between physical and financial inventory; • Know how the total 
available
 on-hand inventory is calculated; • Use of number sequences in the 
TL module
 (serial numbers, batch numbers, order numbers); • Calculation of 
cost
 prices, item consumption, inventory values and recalculation based 
on the
 inventory model group settings; • Setup inventory dimension groups 
and their
 impact on how items are stored and how they control items are 
managed in
 inventory; • Use of the unit conversion form to establish 
conversions; •
 Understand the purpose and mechanics to use the inventory journals 
(profit
 and loss, transfer, BOM, movement); • Create the setups and 
parameters for
 managing quarantine items; • Understand and use serial and batch in
 inventory
 
 ---
-
 ---
-
 -
 
 
 
 On 12/5/06, TAHIR AZIZ [EMAIL PROTECTED] wrote:
 
I will apreciate if somebody will send me some examination 
preparation
  and sample questions.
 
  Thanks
 
  Tahir
 
  faiQa [EMAIL PROTECTED] faiqa.khushi%40m-consultants.com
  wrote:
  Hi Rasika,
 
  can you please mail me the Material on TL.
 
  Thanks
  faQ
 
  -- In
 Axapta-Knowledge-Village@yahoogroups.comAxapta-Knowledge-Village%
40yahoogro
 ups.com,
  maneesh_jain
  maneesh_jain@ wrote:
  
   Hi,
  
   I have E-academy courses for Trade Essentials 3.0 and Logistics
   Essentials 3.0. Are they any good for the TL exam preparation?
  
   Thanks,
   Maneesh
  
  
  
  
   --- In
 Axapta-Knowledge-Village@yahoogroups.comAxapta-Knowledge-Village%
40yahoogro
 ups.com,
  lars_kjaersgaard
   lk@ wrote:
   
Hi Rasika,
   
I am very much interested in TL exam materials. I would be 
very
grateful If you would mail me the material.
   
Maybe I have som materials you are interested in? We can talk
  about
it.
   
Best regards
Lars
   

 Hi,
 I am Rasika from Sri Lanka.
 I did TL exam resently and got through. If you still 
searching
for the materials I can send it. Pl. write to me if you want 
it.
 wbr,
 Rasika

  - - ---
 Ring'em or ping'em. Make PC-to-phone calls as low as 1¢/min
  with