AW: [Axapta-Knowledge-Village] How to assign a variable in a class to args.Parm() ?

2007-01-18 Thread Andreas Rudischhauser
Args arg = new Args();
 arg.parm(some string);
 Myclass::Main(arg)
 ...


 static Main(Args arg)
 {
 MyClass obj = new MyClass();
 obj.parmXY(arg.Parm());
 //myVaraible is decared as a str member in MyClass

 }


MyClass:

Str parmXY(str _parmXY = parmXY)
{
parmXY = _parmXY;
return parmXY;
}


-Ursprüngliche Nachricht-
Von: Axapta-Knowledge-Village@yahoogroups.com [mailto:[EMAIL PROTECTED] Im 
Auftrag von Agus Riyadi
Gesendet: Donnerstag, 18. Januar 2007 03:21
An: Axapta-Knowledge-Village@yahoogroups.com
Betreff: Re: [Axapta-Knowledge-Village] How to assign a variable in a class to 
args.Parm() ?

Hi Amer,

That should work, and Axapta class can not directly assign to member
variable, use parameter method instead. You also need to instantiate the
Args object.

Regards,

Agus


On 1/17/07, Amer Adnan [EMAIL PROTECTED] wrote:

   Dears,

 How can I pass a value from the args in the main(Args args), to a string
 filed in my class.

 What I want to do is:

 Args arg;
 arg.parm(some string);
 Myclass::Main(arg)
 ...


 static Main(Args arg)
 {
 MyClass obj = new MyClass();
 obj.myVariable = arg.Parm();
 //myVaraible is decared as a str member in MyClass

 }

 The last statement [ obj.myVariable = arg.Parm(); ] gives an error: Wrong
 argument types assignments...


 How can I solve this problem?





 Thank you all
 amer

 -
 Sucker-punch spam with award-winning protection.
 Try the free Yahoo! Mail Beta.

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

 



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



Sharing the knowledge on Axapta.
Visit www.frappr.com/axapta for axapta friends.
Visit www.axapta-knowledge-village.tk 
Yahoo! Groups Links







RE: [Axapta-Knowledge-Village] Re: Production closing error: Quantity ordered may not be reduced, as there are

2007-01-18 Thread Harry Deshpande
Hi

If this field is filled up then there is a BOM journal that has not been 
posted. If you cant see this in the form then search for the line in the 
database.

If (you find the line)
 Delete this line and you should be ok
else
 Let me know.

Regards

Harry




This posting is provided AS IS with no warranties, and confers no rights. Use 
of included script samples are subject to the terms specified at 
http://www.microsoft.com/info/cpyright.htm;

The code provided (if any) may be written from the point of view of a third 
party and the programming style/development standards may suit such a point of 
view.




From: Axapta-Knowledge-Village@yahoogroups.com [mailto:[EMAIL PROTECTED] On 
Behalf Of futzawm
Sent: 17 January 2007 18:21
To: Axapta-Knowledge-Village@yahoogroups.com
Subject: [Axapta-Knowledge-Village] Re: Production closing error: Quantity 
ordered may not be reduced, as there are


Thanks for your response, Harry. I believe you are referring to the
'General' tab of the 'Transactions' form. Yes, there's an inventory
reference (the field is 'TransChildRefId' and the Type is 'Picking
List Journal'). Would that be of significance? Note that the status of
the transaction is 'On order' as pointed out in my original question.

Regards.
Mikki

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

 hi

 Is there any inventory reference on the inventory transaction for
the item? I dont have Ax in front of me right now, but this reference
is I think on the second tab and the field is InventRefChildId or
something similar

 regards

 harry

 
 From: 
 Axapta-Knowledge-Village@yahoogroups.commailto:Axapta-Knowledge-Village%40yahoogroups.com
[EMAIL PROTECTED]mailto:Axapta-Knowledge-Village%40yahoogroups.com] On Behalf 
Of futzawm
[EMAIL PROTECTED]
 Sent: Monday, January 15, 2007 9:23 PM
 To: 
 Axapta-Knowledge-Village@yahoogroups.commailto:Axapta-Knowledge-Village%40yahoogroups.com
 Subject: [Axapta-Knowledge-Village] Production closing error:
Quantity ordered may not be reduced, as there are..


 Please help on the following problem (I have seen similar questions in
 the forum but none Were resolved):

 We are trying to close a production order and the following error is
 being generated:

 Calculating BOM Consumption
 Posting - Picking list journal
 Journal: PJ
 Voucher: PV
 Line No: 1
 Item No: 00123

 Quantity ordered may not be reduced, as there are not enough stock
 transactions with 'on order' status.
 The items are 'Sold', 'Deducted' or 'Picked'.

 The production was started with the item in question but another item
 was substituted during production. Registration of the picking list
 journal was thus done with the item consumption = 0. There are no
 transactions with 'Sold', 'Deducted' or 'Picked' status for the item
 as referring to that particular production. However, the item
 transactions show a quantity equal to the original started quantity
 with status 'On Order' for that particular production (therefore, no
 reason for the error not enough stock transactions with 'On Order'
 status). I saw one earlier response to this type of problem by
 fvatne where it was suggested that the problem can be a result of
 mismatch between different dimensions. This seemed a logical reason
 but the problem was not solved even after we removed all dimension
 restrictions on the particular item. How would we be able to resolve
 this problem? Would be very grateful for some pointers.

 Thanks.
 Mikki




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



Re: [Axapta-Knowledge-Village] How to assign a variable in a class to args.Parm() ?

2007-01-18 Thread Amit Jain
Hi,
   
  Try compile forward on your class. If your str variable is a new one and you 
have not done compile forward yet, then do it. 
   
   
  BR
Amit
Agus Riyadi [EMAIL PROTECTED] wrote:
  Hi Amer,

That should work, and Axapta class can not directly assign to member
variable, use parameter method instead. You also need to instantiate the
Args object.

Regards,

Agus


On 1/17/07, Amer Adnan wrote:

 Dears,

 How can I pass a value from the args in the main(Args args), to a string
 filed in my class.

 What I want to do is:

 Args arg;
 arg.parm(some string);
 Myclass::Main(arg)
 …


 static Main(Args arg)
 {
 MyClass obj = new MyClass();
 obj.myVariable = arg.Parm();
 //myVaraible is decared as a str member in MyClass

 }

 The last statement [ obj.myVariable = arg.Parm(); ] gives an error: Wrong
 argument types assignments…


 How can I solve this problem?





 Thank you all
 amer

 -
 Sucker-punch spam with award-winning protection.
 Try the free Yahoo! Mail Beta.

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

 



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



Sharing the knowledge on Axapta.
Visit www.frappr.com/axapta for axapta friends.
Visit www.axapta-knowledge-village.tk 
Yahoo! Groups Links





 
-
Don't be flakey. Get Yahoo! Mail for Mobile and 
always stay connected to friends.

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



[Axapta-Knowledge-Village] Re: PO invoicing error - Inventory Transactions not generated

2007-01-18 Thread joelholloway
Thanks Tracy. We did have enough stock on hand but I could not do 
the negative packing slip because the stock was no longer in the 
location the packing slip was received into (we track inventory by 
location, but cost at the warehouse level).  What, I failed to 
mention in the original post that there were two packing slips 
received on the line.  When I posted the quantities from the packing 
slips individually instead of combined I was able to bypass the 
error.  (This all may be related to a mod in our system - Sorry - 
but I appreciated the checks)

Thanks for you help.

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

 Hi Joel,
 
 This is a bug in version 3 of Axapta.  You can perform the 
following checks:
 
 Before crediting the other sales check to see if the on-hand 
quantity of the item you are trying to invoice is = the invoice 
quantity.
 If on-hand is the same or greater than the invoice check to see if 
there are any reservations on the item for unposted sales orders or 
other transactions (movement/transfer journals etc.). The items may 
be available on-hand but reserved and therefore restricted.
 Check to see if the PO status has changed to received. Or if the 
lines in Inventtrans, Inventjournaltrans, and Vendpackingsliptrans 
also say receved for those lines you are trying to invoice.  It may 
be that the packing slip is not posted or was posted improperly.
 Hope this helps.
 
 Tracy-Ann
 
 
 
 - Original Message 
 From: joelholloway [EMAIL PROTECTED]
 To: Axapta-Knowledge-Village@yahoogroups.com
 Sent: Wednesday, 17 January, 2007 12:14:42 PM
 Subject: [Axapta-Knowledge-Village] PO invoicing error - Inventory 
Transactions not generated
 
 I am atttempting to invoice a packing slip updated PO line and I 
 receive the error, Inventory Transactions have not been 
 generated for the line. I see the packing slip receipt in the 
 InventTrans and I verified that the line also exists in the 
 VendPackingSlipTran s. So I do not understand what the problem is. 
 Their are sales of the item prior to the PO invoicing as we allow 
 negative financial inventory, but not negative physical inventory. 
 Thus far the only resolution I have found is to credit all 
subsequent 
 sales, post a negative packing slip and cancel then line then redo 
all 
 transactions. This is not a very effective solution. Any tips 
would 
 be appreciated. Thanks
 
 
 
 
 
   
 ___ 
 What kind of emailer are you? Find out today - get a free analysis 
of your email personality. Take the quiz at the Yahoo! Mail 
Championship. 
 http://uk.rd.yahoo.com/evt=44106/*http://mail.yahoo.net/uk 
 
 [Non-text portions of this message have been removed]





[Axapta-Knowledge-Village] Re: Virtual Company

2007-01-18 Thread Faisal Hussain
Step 1. Create new Company Account from Administration - Company 
Accounts
Step 2. Create Table Collection in AOT and drag-n-drop the required 
shared tables.
Step 3. Create Virtual company account from Administration - Setup - 
Virtual company accounts, in the company account tab select the newly 
created company, in the table collection tab select the required table 
collection you have created.

Faisal Hussain

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

 How do we setup Virtual Company in Axapta? Please write the exact 
steps . 
 
 I read somewhere, it helps us to share data between different 
companies .
 Can anyone please explain it with some example? 
 
  
 
 Regards
 
 
 
 [Non-text portions of this message have been removed]





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

2007-01-18 Thread Paul Parry Ax Software
Has anyone implemented Red maple on AX4 in the UK.

If so are there any issues to watch for or cards it cannot process.

Paul




  - Original Message - 
  From: Chris Legan 
  To: Axapta-Knowledge-Village@yahoogroups.com 
  Sent: Tuesday, December 05, 2006 8:22 PM
  Subject: RE: [Axapta-Knowledge-Village] AX4 Credit Card add on


  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]



   


--


  No virus found in this incoming message.
  Checked by AVG Free Edition.
  Version: 7.5.430 / Virus Database: 268.15.7/569 - Release Date: 05/12/2006 
03:00


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



[Axapta-Knowledge-Village] Inventory Journal Number Sequence

2007-01-18 Thread viju27_kumar
Hi All,

We have a journal number sequence for an inventory (Ex:IJ-07) which has 
been set in the basic- setup- Number Sequence- reference. can i have 
a different number sequence for different journals like 
mov,counting,transfer..


Regards,
Vijay



[Axapta-Knowledge-Village] Sales Order Confirmation Error.

2007-01-18 Thread Imthiyaz Ahamed
Hi Group,
 While I am trying to Post  Confirmation through Sales Order, I am 
getting this following Error.

Error executing code: The field with ID '65538' does not exist in table 
'SalesParmTable'.
Stack trace:
\Classes\SalesFormLetter\initParmUpdate - line 8
\Classes\SalesFormLetter\new - line 12
\Classes\SalesFormLetter_Confirm\new - line 3
\Classes\SalesFormLetter\construct - line 9
\Classes\SalesFormLetter\main - line 25
\Classes\FormFunctionButtonControl\Clicked
\Classes\FormMenuButtonControl\Clicked
\Classes\FormMenuButtonControl\Clicked - line 14

Can anyone encountered this problem. Please advise on this.

Regards,

Imthiyaz Ahamed.


 

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]



Re: [Axapta-Knowledge-Village] proforma invoice with invoice number

2007-01-18 Thread Amer Adnan
Kenneth, 
   
   
  I didnt get you :S.
   
  Do you need a development solution? or a bussiness one?? 
   
  i just faced the same case. I've successfully implemented that. It doesnt 
requires more than 20 lines of code!.
   
   
  good luck, waiting for your answer :)
  amer

allie [EMAIL PROTECTED] wrote:
  Kenneth,

Unless the numbering sequence is set as same in sales parameters the numbr on 
the pro-forma invoice will not be the same as that on the actual invoice. In 
any case the pro forma can be printed many times and the number will change as 
many time as it is printed unless it sent to printer as a reprint. The actual 
SO invoice number therefore will not be the same as the pro forma unless 
manually set. This will require code changes.

P.S. Point out to your client the possibility of misuse (theft) if the 
pro-forma and the actal invoice are set up to match exactly they could be 
setting themself up for losses.

Tracy-Ann

- Original Message 
From: kennethpotter83 [EMAIL PROTECTED]
To: Axapta-Knowledge-Village@yahoogroups.com
Sent: Tuesday, 16 January, 2007 10:27:22 PM
Subject: [Axapta-Knowledge-Village] proforma invoice with invoice number

hello. 

My client has required dynamisc ax to assign an invoice number to 
proforma sales invoice (with posting check box unchecked) that is 
same as the actual sales invoice. 

May you be so kind to enlighten me on this.

thanks in advance for your help.

kenneth potter


__ 
Copy addresses and emails from any email account to Yahoo! Mail - quick, easy 
and free. http://uk.docs.yahoo.com/trueswitch2.html

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



 

 
-
Finding fabulous fares is fun.
Let Yahoo! FareChase search your favorite travel sites to find flight and hotel 
bargains.

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



[Axapta-Knowledge-Village] Re: Creating Purchase Order Automatically

2007-01-18 Thread ajastra_1
Hi Saied,
Thanx 4 ur reply.
I tried ur solution but it is copying only the lines and not the
header. Can u please tell me how can I copy the header also?

Regards,
Ashish

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

 HI Ashish,
 I don't think you need to have this function since copy fom all 
 function is available and from there you can copy the previous 
 created purchase order with type Journal,
 and I don't know why you need to do this since you can change the 
 type of the current journal to make quotation, unless you want to 
 keep the journal as it is.
 would you please explain more about the business case.
 
 Best Regards
 Saied
 
 --- In Axapta-Knowledge-Village@yahoogroups.com, ajastra_1 
 ajastra_1@ wrote:
 
  Hi all,
  
  I am having a strange requirement.
  If I made 1 purchase order with type Journal, I want to copy this
  Purchase Order into new 1 with new Purchase Id and Purchase Type
  Quotation by clicking 1 button.
  Is it possible? How can I do it?
  As per my knowledge,there is a class PurchAutoCreate that is 
 useful
  in creating Purchase order from Blanket Order. How can I use this in
  creating Quotation from Journal?
  
  Regards,
  Ashish.
 





Re: [Axapta-Knowledge-Village] How to assign a variable in a class to args.Parm() ?

2007-01-18 Thread Amer Adnan
Hi Riyadi,
   
   
  Yes thats correct. But i tried to do that millions of times but it didnt work 
well. 
   
  Then, I recompiled the whole AOT and guess what! it works perfectly 
   
   
   
  Thank you form your time any way :)..
  amer
   
  

Agus Riyadi [EMAIL PROTECTED] wrote:
  Hi Amer,

That should work, and Axapta class can not directly assign to member
variable, use parameter method instead. You also need to instantiate the
Args object.

Regards,

Agus


On 1/17/07, Amer Adnan wrote:

 Dears,

 How can I pass a value from the args in the main(Args args), to a string
 filed in my class.

 What I want to do is:

 Args arg;
 arg.parm(some string);
 Myclass::Main(arg)
 …


 static Main(Args arg)
 {
 MyClass obj = new MyClass();
 obj.myVariable = arg.Parm();
 //myVaraible is decared as a str member in MyClass

 }

 The last statement [ obj.myVariable = arg.Parm(); ] gives an error: Wrong
 argument types assignments…


 How can I solve this problem?





 Thank you all
 amer

 -
 Sucker-punch spam with award-winning protection.
 Try the free Yahoo! Mail Beta.

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

 



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



Sharing the knowledge on Axapta.
Visit www.frappr.com/axapta for axapta friends.
Visit www.axapta-knowledge-village.tk 
Yahoo! Groups Links





 
-
Don't be flakey. Get Yahoo! Mail for Mobile and 
always stay connected to friends.

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



[Axapta-Knowledge-Village] Training Classes for Axapta

2007-01-18 Thread ashwathi_123
Dear all,
Those who are willing to take Axapta training(place chennai location), 
pl send mail to
[EMAIL PROTECTED]
Emporis Academy will send reply to you.

regards
ashwathi



[Axapta-Knowledge-Village] Need help

2007-01-18 Thread Dhanashree Bhagwat
Hi,
   
  I want to know about how axapta connects to any web applications?
   
   
  Thanks in advance,
  Dhanashree


-
 Here’s a new way to find what you're looking for - Yahoo! Answers 

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



[bisnis-retail] outsourcing websites list

2007-01-18 Thread narmadha jaiij
http://hyperurl.com/outsourcingwebsites


check above for
outsourcing websites 
list



http://hyperurl.com/outsourcingwebsites

-
 Here’s a new way to find what you're looking for - Yahoo! Answers 

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



posting: [EMAIL PROTECTED]

subscribe  : [EMAIL PROTECTED]

unsubscribe: [EMAIL PROTECTED]

Web: http://www.geocities.com/kiosserabi

 Tingkatkan kewirausahaan, sukses  sejahtera  
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/bisnis-retail/

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/bisnis-retail/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* 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

2007-01-18 Thread mohit rajvanshy
Hi Dhanashree,

U can access axapta classes and methods using Business Connector programming. 

 
Regards


Mohit Rajvanshy



- Original Message 
From: Dhanashree Bhagwat [EMAIL PROTECTED]
To: Axapta-Knowledge-Village@yahoogroups.com
Sent: Friday, January 19, 2007 9:13:45 AM
Subject: [Axapta-Knowledge-Village] Need help

Hi,

I want to know about how axapta connects to any web applications?


Thanks in advance,
Dhanashree


 - - ---
Here¢s a new way to find what you're looking for - Yahoo! Answers 

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





 

Finding fabulous fares is fun.  
Let Yahoo! FareChase search your favorite travel sites to find flight and hotel 
bargains.
http://farechase.yahoo.com/promo-generic-14795097

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



Sharing the knowledge on Axapta.
Visit www.frappr.com/axapta for axapta friends.

Come and choose your preferred name for Microsoft Dynamics AX on the Axapta 
Knowledge Village, Visit www.axapta-knowledge-village.tk

 
Yahoo! Groups Links

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

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/Axapta-Knowledge-Village/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* 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] Re: BOM from X++

2007-01-18 Thread mohit rajvanshy
U need to search in Axapta that which class has been used to create BOM; same 
class u can call from com connectore coding. I think u need to call only main 
function of the class rest it will take care.

 
Regards


Mohit Rajvanshy



- Original Message 
From: gennarociulla [EMAIL PROTECTED]
To: Axapta-Knowledge-Village@yahoogroups.com
Sent: Wednesday, January 17, 2007 2:08:53 PM
Subject: [Axapta-Knowledge-Village] Re: BOM from X++

I need to create (or use if it already exists) a class to use from an
external program (via com connector) to create BOMs.
Thx.
--- In Axapta-Knowledge- [EMAIL PROTECTED] ups.com, Srivastava Ashish
ashishdifferent@ ... wrote:

 what is the need to create the BOM through X++
 
 On 1/16/07, gennarociulla gennarociulla@ ... wrote:
 
  Hi, there's a way to build and approve a BOM via X++?
  Thank you.
 
  
 
 
 
 [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

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



[bisnis-retail] outsourcing websites list

2007-01-18 Thread narmadha jaiij
http://hyperurl.com/outsourcingwebsites


check above for
outsourcing websites 
list



http://hyperurl.com/outsourcingwebsites

-
 Here’s a new way to find what you're looking for - Yahoo! Answers 

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



posting: [EMAIL PROTECTED]

subscribe  : [EMAIL PROTECTED]

unsubscribe: [EMAIL PROTECTED]

Web: http://www.geocities.com/kiosserabi

 Tingkatkan kewirausahaan, sukses  sejahtera  
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/bisnis-retail/

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/bisnis-retail/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

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


[bisnis-retail] outsourcing websites list

2007-01-18 Thread narmadha jaiij

http://hyperurl.com/outsourcingwebsites  check above for  outsourcing 
websites  listhttp://hyperurl.com/outsourcingwebsites


-
 Here’s a new way to find what you're looking for - Yahoo! Answers 

-
 Here’s a new way to find what you're looking for - Yahoo! Answers 

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



posting: [EMAIL PROTECTED]

subscribe  : [EMAIL PROTECTED]

unsubscribe: [EMAIL PROTECTED]

Web: http://www.geocities.com/kiosserabi

 Tingkatkan kewirausahaan, sukses  sejahtera  
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/bisnis-retail/

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/bisnis-retail/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* 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] Inventory Journal Number Sequence

2007-01-18 Thread Faiqa Khushi
Yes , you can have different number sequence for different journals.

Go to Inventory managementsetupJournalsJournal Names, Inventory and
assign different number sequence to different Journals.

You can define unlimited number sequences in BasicsetupNumber Sequence
and can use in different scenarios.

I hope, I answered your question correctly :S

 

Regards.

 

 

From: Axapta-Knowledge-Village@yahoogroups.com
[mailto:[EMAIL PROTECTED] On Behalf Of viju27_kumar
Sent: Thursday, January 18, 2007 5:31 PM
To: Axapta-Knowledge-Village@yahoogroups.com
Subject: [Axapta-Knowledge-Village] Inventory Journal Number Sequence

 

Hi All,

We have a journal number sequence for an inventory (Ex:IJ-07) which has 
been set in the basic- setup- Number Sequence- reference. can i have 
a different number sequence for different journals like 
mov,counting,transfer..

Regards,
Vijay

 



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



RE: [Axapta-Knowledge-Village] Re: Virtual Company

2007-01-18 Thread Faiqa Khushi
Thank you Faisal. It workedJ

 

Regards.

 

 

From: Axapta-Knowledge-Village@yahoogroups.com
[mailto:[EMAIL PROTECTED] On Behalf Of Faisal
Hussain
Sent: Thursday, January 18, 2007 12:14 PM
To: Axapta-Knowledge-Village@yahoogroups.com
Subject: [Axapta-Knowledge-Village] Re: Virtual Company

 

Step 1. Create new Company Account from Administration - Company 
Accounts
Step 2. Create Table Collection in AOT and drag-n-drop the required 
shared tables.
Step 3. Create Virtual company account from Administration - Setup - 
Virtual company accounts, in the company account tab select the newly 
created company, in the table collection tab select the required table 
collection you have created.

Faisal Hussain

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

 How do we setup Virtual Company in Axapta? Please write the exact 
steps . 
 
 I read somewhere, it helps us to share data between different 
companies .
 Can anyone please explain it with some example? 
 
 
 
 Regards
 
 
 
 [Non-text portions of this message have been removed]


 



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