[Axapta-Knowledge-Village] Re: query range -> like

2005-01-11 Thread anton_tjiptadi


correct, I just found it.
the criteria string should be like this :
sCrit = strFmt(('%1, %2'),'*CPP*', '*RV*'); 

thanks for your reply
rgds,


--- In Axapta-Knowledge-Village@yahoogroups.com, Steve Wright 
<[EMAIL PROTECTED]> wrote:
>  
> I think sCrit should be a comma separated list "*CPP*,*RV*"  as 
this is
> standard Axapta syntax when entering filters, eg in the Ledger 
Transactions
> Inquiry form. You should not need to know ANY SQL to do an 
Axapta query
> - tableid and fieldid/values should be enough.
>  
>  
> S
>  
> 
> 
>   _  
> 
> From: anton_tjiptadi [mailto:[EMAIL PROTECTED] 
> Sent: Wednesday, 12 January 2005 12:32 PM
> To: Axapta-Knowledge-Village@yahoogroups.com
> Subject: [Axapta-Knowledge-Village] query range -> like
> 
> 
> 
> I want to create query range with "like" and "or" criteria", 
> something like this :
> (SQL Statement)
> 
> select accountnum, voucher, * from ledgerjournaltrans where 
voucher 
> like '%CPP%' or voucher like '%RV%'
> 
> My statement rises an error if I wrote it like this one in X++ :
> 
> sCrit = strFmt('((Voucher like %1) || (Voucher like %2))',
>  "*CPP*", "*RV*");
> 
> qRange2 = qbds1.addRange(fieldnum(LedgerJournalTrans, Voucher));
> qRange2.value(sCrit);
> 
> please help,
> thanks in advance,
> Anton
> 
> 
> 
> 
> 
> Sharing the knowledge on Axapta. 
> 
> 
> 
> Yahoo! Groups Sponsor 
> 
> ADVERTISEMENT
>  
> 
 
oups/S=1705001380:HM/EXP=1105590723/A=2495202/R=0/SIG=11evjk50a/*http
://www.
> netflix.com/Default?mqso=60188913> click here 
>  
>  :HM/A=2495202/rand=365997701> 
> 
>   _  
> 
> 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]
>  ribe> 
>   
> 
> * Your use of Yahoo! Groups is subject to the Yahoo! Terms of 
Service
>  .





 Yahoo! Groups Sponsor ~--> 
What would our lives be like without music, dance, and theater?
Donate or volunteer in the arts today at Network for Good!
http://us.click.yahoo.com/Tcy2bD/SOnJAA/cosFAA/kGEolB/TM
~-> 

Sharing the knowledge on Axapta. 
Yahoo! Groups Links

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

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

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





Re: [Axapta-Knowledge-Village] What shoule be consider when import table object?

2005-01-11 Thread Nitesh


Hi,
While importing the the table u should have to take care of the TableID,Data
of that table And the layer in which u r Exporting/Importing the table

Regards
Nitesh
- Original Message -
From: "ptmhki" <[EMAIL PROTECTED]>
To: 
Sent: Wednesday, January 12, 2005 11:50 AM
Subject: [Axapta-Knowledge-Village] What shoule be consider when import
table object?


>
>
> What shoule be consider when import table object?
>
>
>
>
>
>
> Sharing the knowledge on Axapta.
> Yahoo! Groups Links
>
>
>
>
>
>



 Yahoo! Groups Sponsor ~--> 
What would our lives be like without music, dance, and theater?
Donate or volunteer in the arts today at Network for Good!
http://us.click.yahoo.com/Tcy2bD/SOnJAA/cosFAA/kGEolB/TM
~-> 

Sharing the knowledge on Axapta. 
Yahoo! Groups Links

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

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

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





[Axapta-Knowledge-Village] Change label question

2005-01-11 Thread ptmhki


What is the mean of system field and how to change its label?





 Yahoo! Groups Sponsor ~--> 
Has someone you know been affected by illness or disease?
Network for Good is THE place to support health awareness efforts!
http://us.click.yahoo.com/Rcy2bD/UOnJAA/cosFAA/kGEolB/TM
~-> 

Sharing the knowledge on Axapta. 
Yahoo! Groups Links

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

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

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





[Axapta-Knowledge-Village] What shoule be consider when import table object?

2005-01-11 Thread ptmhki


What shoule be consider when import table object?





 Yahoo! Groups Sponsor ~--> 
Has someone you know been affected by illness or disease?
Network for Good is THE place to support health awareness efforts!
http://us.click.yahoo.com/Rcy2bD/UOnJAA/cosFAA/kGEolB/TM
~-> 

Sharing the knowledge on Axapta. 
Yahoo! Groups Links

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

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

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





RE: [Axapta-Knowledge-Village] query range -> like

2005-01-11 Thread Steve Wright






 
I think sCrit should be a comma separated list 
"*CPP*,*RV*"  as this is standard Axapta syntax when entering filters, eg 
in the Ledger Transactions Inquiry form. You should not 
need to know ANY SQL to do an Axapta query - tableid and fieldid/values should 
be enough.
 
 
S
 


From: anton_tjiptadi 
[mailto:[EMAIL PROTECTED] Sent: Wednesday, 12 January 2005 
12:32 PMTo: 
Axapta-Knowledge-Village@yahoogroups.comSubject: 
[Axapta-Knowledge-Village] query range -> like
I want to create query range with "like" and "or" criteria", 
something like this :(SQL Statement)select accountnum, voucher, 
* from ledgerjournaltrans where voucher like '%CPP%' or voucher like 
'%RV%'My statement rises an error if I wrote it like this one in X++ 
:sCrit = strFmt('((Voucher like %1) || (Voucher like 
%2))', 
"*CPP*", "*RV*");qRange2 = qbds1.addRange(fieldnum(LedgerJournalTrans, 
Voucher));qRange2.value(sCrit);please help,thanks in 
advance,AntonSharing the knowledge on 
Axapta. 


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 the Yahoo! Terms of Service.










[Axapta-Knowledge-Village] Re: query range -> like

2005-01-11 Thread anton_tjiptadi


thanks,
but I need to create it in querybuildrange, not in 'select statement'

rgds,

--- In Axapta-Knowledge-Village@yahoogroups.com, Lalith Jayantha 
<[EMAIL PROTECTED]> wrote:
> Hi anton 
>  
> Create a string type Extenderd data type and asign the string 
value to Extenderd data type 
> 
> ex:  if  Extenderd data type  is "Likestring"
> assign the string value
>  
> Likestring = '%RV%'
>  
> select accountnum, voucher, * from ledgerjournaltrans where 
voucher 
> like Likestring ;
> 
>  
> 
> Lalith
> 
> anton_tjiptadi <[EMAIL PROTECTED]> wrote:
> 
> I want to create query range with "like" and "or" criteria", 
> something like this :
> (SQL Statement)
> 
> select accountnum, voucher, * from ledgerjournaltrans where 
voucher 
> like '%CPP%' or voucher like '%RV%'
> 
> My statement rises an error if I wrote it like this one in X++ :
> 
> sCrit = strFmt('((Voucher like %1) || (Voucher like %2))',
>  "*CPP*", "*RV*");
> 
> qRange2 = qbds1.addRange(fieldnum(LedgerJournalTrans, Voucher));
> qRange2.value(sCrit);
> 
> please help,
> thanks in advance,
> Anton
> 
> 
> 
> 
> 
> Sharing the knowledge on Axapta. 
> 
> 
> Yahoo! Groups SponsorADVERTISEMENT
> 
> 
> -
> 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 the Yahoo! Terms of 
Service. 
> 
> 
>   
> -
> Do you Yahoo!?
>  Yahoo! Mail - now with 250MB free storage. Learn more.





 Yahoo! Groups Sponsor ~--> 
In low income neighborhoods, 84% do not own computers.
At Network for Good, help bridge the Digital Divide!
http://us.click.yahoo.com/EpW3eD/3MnJAA/cosFAA/kGEolB/TM
~-> 

Sharing the knowledge on Axapta. 
Yahoo! Groups Links

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

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

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





Re: [Axapta-Knowledge-Village] query range -> like

2005-01-11 Thread Lalith Jayantha




Hi anton 
 
Create a string type Extenderd data type and asign the string value to Extenderd data type 
ex:  if  Extenderd data type  is "Likestring"
assign the string value
 
Likestring = '%RV%'
 
select accountnum, voucher, * from ledgerjournaltrans where voucher like Likestring ;
 
Lalith
anton_tjiptadi <[EMAIL PROTECTED]> wrote:
I want to create query range with "like" and "or" criteria", something like this :(SQL Statement)select accountnum, voucher, * from ledgerjournaltrans where voucher like '%CPP%' or voucher like '%RV%'My statement rises an error if I wrote it like this one in X++ :sCrit = strFmt('((Voucher like %1) || (Voucher like %2))', "*CPP*", "*RV*");qRange2 = qbds1.addRange(fieldnum(LedgerJournalTrans, Voucher));qRange2.value(sCrit);please help,thanks in advance,AntonSharing the knowledge on Axapta. 
		Do you Yahoo!? 
Yahoo! Mail - now with 250MB free storage. Learn more.


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 the Yahoo! Terms of Service.










[Axapta-Knowledge-Village] query range -> like

2005-01-11 Thread anton_tjiptadi


I want to create query range with "like" and "or" criteria", 
something like this :
(SQL Statement)

select accountnum, voucher, * from ledgerjournaltrans where voucher 
like '%CPP%' or voucher like '%RV%'

My statement rises an error if I wrote it like this one in X++ :

 sCrit = strFmt('((Voucher like %1) || (Voucher like %2))',
 "*CPP*", "*RV*");

 qRange2 = qbds1.addRange(fieldnum(LedgerJournalTrans, Voucher));
 qRange2.value(sCrit);

please help,
thanks in advance,
Anton





 Yahoo! Groups Sponsor ~--> 
In low income neighborhoods, 84% do not own computers.
At Network for Good, help bridge the Digital Divide!
http://us.click.yahoo.com/EpW3eD/3MnJAA/cosFAA/kGEolB/TM
~-> 

Sharing the knowledge on Axapta. 
Yahoo! Groups Links

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

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

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





Re: [Axapta-Knowledge-Village] Closing Subscription Purchase Orders

2005-01-11 Thread sunfen

Hi Bruce,

Your subscription order is still open because it keeps on keeping the remaining 
delivery in 
the PO Line Quantity Tab after invoicing. In order to close it use the 
Function->Delivery 
Reminder->and set 0 as the Deliver Reminder for each item in the PO line. If 
you have 
invoiced this order, it will automatically become Invoiced.


Regars,
Sun Fen
-Original Message-
From: "frodnew57" <[EMAIL PROTECTED]>
To: Axapta-Knowledge-Village@yahoogroups.com
Date: Tue, 11 Jan 2005 14:37:03 -
Subject: [Axapta-Knowledge-Village] Closing Subscription Purchase Orders

> 
> 
> We have subscription orders with many of our vendors, but wish to 
> have them expire at the end of the year and be replaced with new 
> subscription orders.  Unfortunately, the old subscription orders 
> still appear as open.  This invites transactions being posted to the 
> wrong order.  We would like to somehow flag these old subscription 
> orders as being "invoiced", "closed", or something along those 
> lines.  Any suggestions?
> 
> The purchasing folks would also like to retain visibility of the old 
> purchase orders.  So deleting them to the voided order table is not 
> an option.
> 
> 
> Thanks,
> Bruce   
> 
> 
> 
> 
> 
> 
> Sharing the knowledge on Axapta. 
> Yahoo! Groups Links
> 
> 
> 
>  



 Yahoo! Groups Sponsor ~--> 
Has someone you know been affected by illness or disease?
Network for Good is THE place to support health awareness efforts!
http://us.click.yahoo.com/Rcy2bD/UOnJAA/cosFAA/kGEolB/TM
~-> 

Sharing the knowledge on Axapta. 
Yahoo! Groups Links

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

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

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





RE: [Axapta-Knowledge-Village] RE: Make 2 Production Order, 1 Production Order.

2005-01-11 Thread Harry Deshpande











Hi

 

Yes, keeping the reservations and markings
is a problem. In that case I would recommend writing a class that is exact
opposite of ProdUpdSplit. 

 

Its always problematic to finger around
InventTrans directly and creates a problem for system upgrade.

 

Regards

 

Harry

 









From:
Cenk Ince [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, 12 January 2005
9:52 a.m.
To: Axapta-Knowledge-Village@yahoogroups.com
Subject: YNT:
[Axapta-Knowledge-Village] RE: Make 2 Production Order, 1 Production Order.



 





Hi Harry 





 





I don't want to lose reservations or any
other references like inventtrans or whatever system keeps to make itself run
correctly.





 







 







Kimden: Harry Deshpande [mailto:[EMAIL PROTECTED]
Gönderilmiş: Sal 11.01.2005 22:34
Kime: Axapta-Knowledge-Village@yahoogroups.com
Konu: [Axapta-Knowledge-Village]
RE: Make 2 Production Order, 1 Production Order.







Hi Cenk!

 

Is there any particular reason as to why
you have to do it this way?

 

If not then then what you could
potentially do is…

 

Take 2 identical PO’s, reset the
status back to created, increase PO quantity of main PO, delete child PO and
the increase the status of the main PO to whatever it was earlier (estimated or
released). It is easier to do it this way.

 

 

Regards

 

harry

 





 





 





 





Harry Deshpande 





Senior Consultant 





CGNZ Middle Market
Solutions 





Website: www.cgnz.com/middlemarketsolutions 





Ph +64 29 277 5133 





Fax +64 9 358 1018 





 





CGNZ Limited and its
predecessor organisations (Cap Gemini Ernst & Young, and Ernst & Young
Consulting) have a proud track record of market leadership and excellent
service delivery in all areas of systems delivery both for New Zealand
clients and in supporting regional and global projects.  CGNZ is a
licensed affiliate of Cap Gemini S.A. (one of the world’s leading
management consulting and IT services companies), wholly owned by NZ
employee-shareholders, with over 150 IT professionals in our Auckland
and Wellington
offices.  Middle Market Solutions specialises in the implementation of
business solutions for small corporate and middle market companies.  The
core activity of our team is the implementation and support of Enterprise
Resource Planning (ERP), Customer Relationship Management (CRM), E-Business
solutions and related technologies from Microsoft Business Solutions. 
Find out more about what we do at http://www.cgnz.com/middlemarketsolutions 





 





CGNZ DISCLAIMER: This
email and any attachments are confidential and intended exclusively for the
person to whom the email is addressed. If you are not the intended recipient,
do not read, copy, disclose or use the contents in any way. Please notify us immediately
by return email and destroy the email and attachments. CGNZ does not accept any
liability for any changes made to this email or attachments after sending by
CGNZ. You must scan this email and attachments for viruses. The opinions
expressed are not necessarily those of CGNZ.  





CGNZ accepts no
liability for any loss, damage or consequence, whether caused by our own
negligence or not, resulting directly or indirectly from the use of this email
and attachments. 





 













From:
Cenk Ince [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, 12 January 2005
9:10 a.m.
To: Axapta-Knowledge-Village@yahoogroups.com
Subject: Make 2 Production Order,
1 Production Order.



 

Hi
all;

I
make some modificationas on prodtable. I have 2 PO and i want to make them 1 PO if they have same route, same itemid and same bom. 
But when i make union them with code below i lose inventtrans references.
How can i keep references? 

Thanks

void
UnionPO(ProdId ProdIdMain,ProdId ProdIdChild)
{
    ProdTable   ProdMain,ProdChild;
    ProdBOMCalc ProdBOMCalc;
    ;
    ttsBegin;
    SELECT FORUPDATE ProdMain WHERE ProdMain.ProdId ==
ProdIdMain;
    SELECT FORUPDATE ProdChild WHERE ProdChild.ProdId ==
ProdIdChild;

   
WHILE SELECT FORUPDATE ProdBOMMain
    WHERE   ProdBOMMain.ProdId
== ProdMain.ProdId
    {
    SELECT FORUPDATE ProdBOMChild
    WHERE
ProdBOMChild.ProdId == ProdChild.ProdId &&
 
ProdBOMChild.ItemId == ProdBOMMain.ItemId &&
 
ProdBOMChild.LineNum== ProdBOMMain.LineNum;
    ProdBOMMain.QtyBOMCalc =
ProdBOMMain.QtyBOMCalc + ProdBOMChild.QtyBOMCalc;
   
InventMovement::setMinMaxQty(prodBOMMain);
   
InventMovement::bufferSetTransQtyUnit(prodBOMMain);
    ProdBOMMain.update(true);
    WHILE SELECT FORUPDATE
InventTransChild
    WHERE
InventTransChild.InventTransId == ProdBOMChild.InventTransId
    {
   
InventTransChild.InventTransId = ProdBOMMain.InventTransId;
   
InventTransChild.update();
    }

   
ProdBOMChild.delete();
    }
    ProdMain.QtySched += ProdChild.QtySched;
    ProdChild.delete(false);
    ProdMain.update();
    ttsCommit;
}





Sharing
the knowledge on Axapta. 



YNT: [Axapta-Knowledge-Village] RE: Make 2 Production Order, 1 Production Order.

2005-01-11 Thread Cenk Ince
Hi Harry 
 
I don't want to lose reservations or any other references like inventtrans or 
whatever system keeps to make itself run correctly.
 



Kimden: Harry Deshpande [mailto:[EMAIL PROTECTED]
Gönderilmiş: Sal 11.01.2005 22:34
Kime: Axapta-Knowledge-Village@yahoogroups.com
Konu: [Axapta-Knowledge-Village] RE: Make 2 Production Order, 1 Production 
Order.



Hi Cenk!

 

Is there any particular reason as to why you have to do it this way?

 

If not then then what you could potentially do is...

 

Take 2 identical PO's, reset the status back to created, increase PO quantity 
of main PO, delete child PO and the increase the status of the main PO to 
whatever it was earlier (estimated or released). It is easier to do it this way.

 

 

Regards

 

harry

 

 
 
 
Harry Deshpande 
Senior Consultant 
CGNZ Middle Market Solutions 
Website: www.cgnz.com/middlemarketsolutions 
  
Ph +64 29 277 5133 
Fax +64 9 358 1018 
 
CGNZ Limited and its predecessor organisations (Cap Gemini Ernst & Young, and 
Ernst & Young Consulting) have a proud track record of market leadership and 
excellent service delivery in all areas of systems delivery both for New 
Zealand clients and in supporting regional and global projects.  CGNZ is a 
licensed affiliate of Cap Gemini S.A. (one of the world's leading management 
consulting and IT services companies), wholly owned by NZ 
employee-shareholders, with over 150 IT professionals in our Auckland and 
Wellington offices.  Middle Market Solutions specialises in the implementation 
of business solutions for small corporate and middle market companies.  The 
core activity of our team is the implementation and support of Enterprise 
Resource Planning (ERP), Customer Relationship Management (CRM), E-Business 
solutions and related technologies from Microsoft Business Solutions.  Find out 
more about what we do at http://www.cgnz.com/middlemarketsolutions 
 
CGNZ DISCLAIMER: This email and any attachments are confidential and intended 
exclusively for the person to whom the email is addressed. If you are not the 
intended recipient, do not read, copy, disclose or use the contents in any way. 
Please notify us immediately by return email and destroy the email and 
attachments. CGNZ does not accept any liability for any changes made to this 
email or attachments after sending by CGNZ. You must scan this email and 
attachments for viruses. The opinions expressed are not necessarily those of 
CGNZ.  
CGNZ accepts no liability for any loss, damage or consequence, whether caused 
by our own negligence or not, resulting directly or indirectly from the use of 
this email and attachments. 
 



From: Cenk Ince [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, 12 January 2005 9:10 a.m.
To: Axapta-Knowledge-Village@yahoogroups.com
Subject: Make 2 Production Order, 1 Production Order.

 

Hi all;

I make some modificationas on prodtable. I have 2 PO and i want to make them 1 
PO if they have same route, same itemid and same bom. 
But when i make union them with code below i lose inventtrans references. How 
can i keep references? 

Thanks

void UnionPO(ProdId ProdIdMain,ProdId ProdIdChild)
{
ProdTable   ProdMain,ProdChild;
ProdBOMCalc ProdBOMCalc;
;
ttsBegin;
SELECT FORUPDATE ProdMain WHERE ProdMain.ProdId == ProdIdMain;
SELECT FORUPDATE ProdChild WHERE ProdChild.ProdId == ProdIdChild;

WHILE SELECT FORUPDATE ProdBOMMain
WHERE   ProdBOMMain.ProdId == ProdMain.ProdId
{
SELECT FORUPDATE ProdBOMChild
WHERE ProdBOMChild.ProdId == ProdChild.ProdId &&
  ProdBOMChild.ItemId == ProdBOMMain.ItemId &&
  ProdBOMChild.LineNum== ProdBOMMain.LineNum;
ProdBOMMain.QtyBOMCalc = ProdBOMMain.QtyBOMCalc + 
ProdBOMChild.QtyBOMCalc;
InventMovement::setMinMaxQty(prodBOMMain);
InventMovement::bufferSetTransQtyUnit(prodBOMMain);
ProdBOMMain.update(true);
WHILE SELECT FORUPDATE InventTransChild
WHERE InventTransChild.InventTransId == ProdBOMChild.InventTransId
{
InventTransChild.InventTransId = ProdBOMMain.InventTransId;
InventTransChild.update();
}

ProdBOMChild.delete();
}
ProdMain.QtySched += ProdChild.QtySched;
ProdChild.delete(false);
ProdMain.update();
ttsCommit;
}



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 the Yahoo! Terms of Service 
 . 




 Yahoo! Groups Sponsor ~--> 
Has someone you know

[Axapta-Knowledge-Village] RE: Make 2 Production Order, 1 Production Order.

2005-01-11 Thread Harry Deshpande










Hi Cenk!

 

Is there any particular reason as to why
you have to do it this way?

 

If not then then what you could
potentially do is…

 

Take 2 identical PO’s, reset the
status back to created, increase PO quantity of main PO, delete child PO and
the increase the status of the main PO to whatever it was earlier (estimated or
released). It is easier to do it this way.

 

 

Regards

 

harry

 







 
 
 

Harry Deshpande


Senior Consultant


CGNZ Middle Market Solutions


Website: www.cgnz.com/middlemarketsolutions


Ph +64 29 277 5133


Fax +64 9 358 1018

 

CGNZ Limited and its predecessor organisations (Cap Gemini Ernst & Young, and Ernst & Young Consulting) have a proud track record of market leadership and excellent service delivery in all areas of systems delivery both for New Zealand clients and in supporting regional and global projects.  CGNZ is a licensed affiliate of Cap Gemini S.A. (one of the world’s leading management consulting and IT services companies), wholly owned by NZ employee-shareholders, with over 150 IT professionals in our Auckland and Wellington offices.  Middle Market Solutions specialises in the implementation of business solutions for small corporate and middle market companies.  The core activity of our team is the implementation and support of Enterprise Resource Planning (ERP), Customer Relationship Management (CRM), E-Business solutions and related technologies from Microsoft Business Solutions.  Find out more about what we do at 
http://www.cgnz.com/middlemarketsolutions

 

CGNZ DISCLAIMER: This email and any attachments are confidential and intended exclusively for the person to whom the email is addressed. If you are not the intended recipient, do not read, copy, disclose or use the contents in any way. Please notify us immediately by return email and destroy the email and attachments. CGNZ does not accept any liability for any changes made to this email or attachments after sending by CGNZ. You must scan this email and attachments for viruses. The opinions expressed are not necessarily those of CGNZ.  


 


CGNZ accepts no liability for any loss, damage or consequence, whether caused by our own negligence or not, resulting directly or indirectly from the use of this email and attachments.



 






From:
Cenk Ince [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, 12 January 2005
9:10 a.m.
To: Axapta-Knowledge-Village@yahoogroups.com
Subject: Make 2 Production Order,
1 Production Order.



 

Hi
all;

I
make some modificationas on prodtable. I have 2 PO and i want to make them 1 PO if they have same route, same itemid and same bom. 
But when i make union them with code below i lose inventtrans references.
How can i keep references? 

Thanks

void
UnionPO(ProdId ProdIdMain,ProdId ProdIdChild)
{
    ProdTable   ProdMain,ProdChild;
    ProdBOMCalc ProdBOMCalc;
    ;
    ttsBegin;
    SELECT FORUPDATE ProdMain WHERE ProdMain.ProdId ==
ProdIdMain;
    SELECT FORUPDATE ProdChild WHERE ProdChild.ProdId ==
ProdIdChild;

   
WHILE SELECT FORUPDATE ProdBOMMain
    WHERE   ProdBOMMain.ProdId
== ProdMain.ProdId
    {
    SELECT FORUPDATE ProdBOMChild
    WHERE
ProdBOMChild.ProdId == ProdChild.ProdId &&
 
ProdBOMChild.ItemId == ProdBOMMain.ItemId &&
 
ProdBOMChild.LineNum== ProdBOMMain.LineNum;
    ProdBOMMain.QtyBOMCalc =
ProdBOMMain.QtyBOMCalc + ProdBOMChild.QtyBOMCalc;
   
InventMovement::setMinMaxQty(prodBOMMain);
    InventMovement::bufferSetTransQtyUnit(prodBOMMain);
    ProdBOMMain.update(true);
    WHILE SELECT FORUPDATE
InventTransChild
    WHERE
InventTransChild.InventTransId == ProdBOMChild.InventTransId
    {
   
InventTransChild.InventTransId = ProdBOMMain.InventTransId;
   
InventTransChild.update();
    }

   
ProdBOMChild.delete();
    }
    ProdMain.QtySched += ProdChild.QtySched;
    ProdChild.delete(false);
    ProdMain.update();
    ttsCommit;
}







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 the Yahoo! Terms of Service.










[Axapta-Knowledge-Village] Make 2 Production Order, 1 Production Order.

2005-01-11 Thread Cenk Ince
Hi all;

I make some modificationas on prodtable. I have 2 PO and i want to make them 1 
PO if they have same route, same itemid and same bom. 
But when i make union them with code below i lose inventtrans references. How 
can i keep references? 

Thanks

void UnionPO(ProdId ProdIdMain,ProdId ProdIdChild)
{
ProdTable   ProdMain,ProdChild;
ProdBOMCalc ProdBOMCalc;
;
ttsBegin;
SELECT FORUPDATE ProdMain WHERE ProdMain.ProdId == ProdIdMain;
SELECT FORUPDATE ProdChild WHERE ProdChild.ProdId == ProdIdChild;

WHILE SELECT FORUPDATE ProdBOMMain
WHERE   ProdBOMMain.ProdId == ProdMain.ProdId
{
SELECT FORUPDATE ProdBOMChild
WHERE ProdBOMChild.ProdId == ProdChild.ProdId &&
  ProdBOMChild.ItemId == ProdBOMMain.ItemId &&
  ProdBOMChild.LineNum== ProdBOMMain.LineNum;
ProdBOMMain.QtyBOMCalc = ProdBOMMain.QtyBOMCalc + 
ProdBOMChild.QtyBOMCalc;
InventMovement::setMinMaxQty(prodBOMMain);
InventMovement::bufferSetTransQtyUnit(prodBOMMain);
ProdBOMMain.update(true);
WHILE SELECT FORUPDATE InventTransChild
WHERE InventTransChild.InventTransId == ProdBOMChild.InventTransId
{
InventTransChild.InventTransId = ProdBOMMain.InventTransId;
InventTransChild.update();
}

ProdBOMChild.delete();
}
ProdMain.QtySched += ProdChild.QtySched;
ProdChild.delete(false);
ProdMain.update();
ttsCommit;
}



 Yahoo! Groups Sponsor ~--> 
Has someone you know been affected by illness or disease?
Network for Good is THE place to support health awareness efforts!
http://us.click.yahoo.com/Rcy2bD/UOnJAA/cosFAA/kGEolB/TM
~-> 

Sharing the knowledge on Axapta. 
Yahoo! Groups Links

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

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

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

RE : [Axapta-Knowledge-Village] Multiple Tables in a View DataSource

2005-01-11 Thread Steeve Gilbert

I don't have a clear answer for you but here are some tips: 

- If you want to create a view like this:

MainTab
  + SubTab1
  + SubTab2

You can do this :

SubTab1
  + MainTab
  + SubTab2

This way, both table will be able to link with MainTab.  It's not very clean 
but it get you out of trouble some times.  And if you want more complex stuff 
you can do view of view like that:

MainTab
   + SubTab1
   + SubTab2
   + SubTab3

View1 :
SubTab1
  + MainTab
  + SubTab2

View2 : 
View1
  + SubTab3

Steeve... 


-Message d'origine-
De : mkaliszewski [mailto:[EMAIL PROTECTED] 
Envoyé : 11 janvier 2005 13:59
À : Axapta-Knowledge-Village@yahoogroups.com
Objet : [Axapta-Knowledge-Village] Multiple Tables in a View DataSource



I am trying to create a View that links multiple tables. I can drag
over one table into the DataSource of the view, but it will not let me
add another at the same level. 

Is there some way around this? Basically I am trying to do this so
that I can have output on one line of a report instead of three.

I am hitting a wall with trying to link one main table to two related
sub tables. I can envision a point where I will need to link even more
tables.








Sharing the knowledge on Axapta. 
Yahoo! Groups Links



 





 Yahoo! Groups Sponsor ~--> 
Has someone you know been affected by illness or disease?
Network for Good is THE place to support health awareness efforts!
http://us.click.yahoo.com/Rcy2bD/UOnJAA/cosFAA/kGEolB/TM
~-> 

Sharing the knowledge on Axapta. 
Yahoo! Groups Links

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

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

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





[Axapta-Knowledge-Village] Multiple Tables in a View DataSource

2005-01-11 Thread mkaliszewski


I am trying to create a View that links multiple tables. I can drag
over one table into the DataSource of the view, but it will not let me
add another at the same level. 

Is there some way around this? Basically I am trying to do this so
that I can have output on one line of a report instead of three.

I am hitting a wall with trying to link one main table to two related
sub tables. I can envision a point where I will need to link even more
tables.







 Yahoo! Groups Sponsor ~--> 
In low income neighborhoods, 84% do not own computers.
At Network for Good, help bridge the Digital Divide!
http://us.click.yahoo.com/EpW3eD/3MnJAA/cosFAA/kGEolB/TM
~-> 

Sharing the knowledge on Axapta. 
Yahoo! Groups Links

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

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

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





Re: [Axapta-Knowledge-Village] One report with data from all companies

2005-01-11 Thread Girish B

you need to include the table which will be populated
with the records (and used in the report) , in the
virtual company which has access to all the companies.
 now you can write a function to populate the data and
use the changecompany() function to change to another
company. 
   this will perfectly work well. good luck.

cheers,
girish
 --- hbrommer <[EMAIL PROTECTED]> wrote: 

-

Hi all,

I would like to run a report in one company,
containing data from 
several other companies as well.

Does anyone have a clue how this can be done?

Thanks in advance,
Henk-Jan





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 the Yahoo!
Terms of Service.
 





___ 
ALL-NEW Yahoo! Messenger - all new features - even more fun! 
http://uk.messenger.yahoo.com


 Yahoo! Groups Sponsor ~--> 
In low income neighborhoods, 84% do not own computers.
At Network for Good, help bridge the Digital Divide!
http://us.click.yahoo.com/EpW3eD/3MnJAA/cosFAA/kGEolB/TM
~-> 

Sharing the knowledge on Axapta. 
Yahoo! Groups Links

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

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

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





RE: [Axapta-Knowledge-Village] Branch Definition within an Entity and attachment of documents to Branch

2005-01-11 Thread Jesper Kehlet






Number sequence groups if within the same 
company.


From: Nitesh [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, January 11, 2005 5:14 AMTo: 
Axapta-Knowledge-Village@yahoogroups.comSubject: Re: 
[Axapta-Knowledge-Village] Branch Definition within an Entity and attachment of 
documents to Branch
HiHow u r generating the different invoice number to 
different location?RegardsNitesh- Original Message 
-From: "bhgopal12" <[EMAIL PROTECTED]>To: 
Sent: Monday, January 10, 
2005 2:53 PMSubject: [Axapta-Knowledge-Village] Branch Definition within an 
Entity andattachment of documents to Branch>>> 
Hi All,>> I have a clarification:>> An organization 
with 100 Branches / Sales Depots going for Axapta> 
implementation.>> Each Branch / Sales Depot is having a seperate 
Set of documents> (including running serial number) such as Sales 
Invoice, DN, CN, etc.>> How to define the branches / Sales Depots 
and attach a set of> documents to 
it.> 
Sharing the knowledge on Axapta.> Yahoo! Groups 
Links>>Sharing 
the knowledge on Axapta. 



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 the Yahoo! Terms of Service.










[Axapta-Knowledge-Village] SysPrintForm/Email

2005-01-11 Thread Danny Gaethofs


Dear all,

Can someone tell me how the selection made in the SysPrintForm is 
returned to the form SalesEditLines.

When selecting email I want to influence the outlook id that is used 
for sending the message. Is it possible to use another sender id 
then the outlook id of the user/employee. Which method calls outlook 
from these forms?

regards,
Danny





 Yahoo! Groups Sponsor ~--> 
Has someone you know been affected by illness or disease?
Network for Good is THE place to support health awareness efforts!
http://us.click.yahoo.com/Rcy2bD/UOnJAA/cosFAA/kGEolB/TM
~-> 

Sharing the knowledge on Axapta. 
Yahoo! Groups Links

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

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

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





[Axapta-Knowledge-Village] Closing Subscription Purchase Orders

2005-01-11 Thread frodnew57


We have subscription orders with many of our vendors, but wish to 
have them expire at the end of the year and be replaced with new 
subscription orders.  Unfortunately, the old subscription orders 
still appear as open.  This invites transactions being posted to the 
wrong order.  We would like to somehow flag these old subscription 
orders as being "invoiced", "closed", or something along those 
lines.  Any suggestions?

The purchasing folks would also like to retain visibility of the old 
purchase orders.  So deleting them to the voided order table is not 
an option.


Thanks,
Bruce   





 Yahoo! Groups Sponsor ~--> 
In low income neighborhoods, 84% do not own computers.
At Network for Good, help bridge the Digital Divide!
http://us.click.yahoo.com/EpW3eD/3MnJAA/cosFAA/kGEolB/TM
~-> 

Sharing the knowledge on Axapta. 
Yahoo! Groups Links

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

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

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





[Axapta-Knowledge-Village] Re: VAR/USR Layer changes and data

2005-01-11 Thread Danny Gaethofs


Jesper,

Running ax3.0SP3.

You are absolutely right. I tested it today and the data disappears 
after synchronization.

## SQL Administration
You suggest SQL Administration, Table, Synchronize could to the 
trick. I have tested this but it deletes the data also.
You probably ment to say use SQL Administration for synchronization.

## Field Id modification
I am following the other way you suggested. 
It is working!


## Export/Import with ID Values
Someone else suggested me, to export the usr layer with ID Values 
from the production environment. Import the xpo with ID Values into 
the VAR layer of the development environment.

Then copy the VAR layer from the development back to the production 
environment.

I have also been doing some test following this method. I notice 
that when I import the xpo in the VAR layer the objects will keep 
their ID from the USR Layer. I stopped testing because in that way 
it seems logical that the data remains available, because the ID´s 
are not changing. 


Question here is whether the object, fields in this case, really 
belong to the VAR Layer. Has someone experimented or used this in 
the past.


regards,
Danny




--- In Axapta-Knowledge-Village@yahoogroups.com, "Jesper Kehlet" 
<[EMAIL PROTECTED]> wrote:
> You don't mention anything about synchronizing.  Did you?  That is 
the
> lithmus-test...
> 
> 
> 
> From: Danny Gaethofs [mailto:[EMAIL PROTECTED] 
> Sent: Monday, January 10, 2005 10:54 AM
> To: Axapta-Knowledge-Village@yahoogroups.com
> Subject: [Axapta-Knowledge-Village] Re: VAR/USR Layer changes and 
data
> 
> 
> 
> Dear Jesper,
> 
> I am running axapta 3.0 sp3.
> 
> To simulate the situation I did some testing in a test-environment 
> and in a development-environment.
> 
> I created a new field for the table VendTable in both 
environments. 
> In my test-environment I did it in the usr layer. In my 
development 
> environment I did it in the var layer. Same name for the field. I 
> entered data in the field for the records in my test-environment.
> 
> I logged out of both environments. 
> 
> I removed the axusr.aod and related files from the test-
environment 
> application directory. I copied the axvar.aod and related files 
from 
> the development-environment to the test-environment application 
> directory.
> 
> I started the axapta test-environment. Axapta then starts building 
> the axapd.aoi, axapden-us.khi and axapden-us.ahi files.
> 
> After that I logged in and checked whether the data entered 
> previously was still there. I checked the field id, which was 
> changed from 51 into 31.
> 
> The data was still in the fields.
> 
> regards,
> Danny
> 
> --- In Axapta-Knowledge-Village@yahoogroups.com, "Jesper Kehlet" 
> <[EMAIL PROTECTED]> wrote:
> > Your explanation is a little confusing:  Did you do a 
synchronize 
> in
> > your own environment?  What version of Axapta are you using?
> > 
> > 
> > 
> > From: Danny Gaethofs [mailto:[EMAIL PROTECTED] 
> > Sent: Monday, January 10, 2005 9:57 AM
> > To: Axapta-Knowledge-Village@yahoogroups.com
> > Subject: [Axapta-Knowledge-Village] Re: VAR/USR Layer changes 
and 
> data
> > 
> > 
> > 
> > Dear all,
> > 
> > The reason for my question was that my customer made noticed 
after 
> > they installed the var layer that the field values were deleted.
> > 
> > I did some testing in my own environment. I removed the USR 
layer 
> > file axusr.aod and related files and replaced them by axvar.aod. 
> > After logging back into axapta I saw the id's of the fields were 
> > changed from 51 to 31.
> > 
> > The data in the fields was not deleted.
> > 
> > I conclude that using this approach replacing axusr.aod with 
> > axvar.aod will not change the content of the fields in the table 
> > being modified. Only thing that is changed are the id's.
> > 
> > regards,
> > Danny
> > 
> > --- In Axapta-Knowledge-Village@yahoogroups.com, "Jesper Kehlet" 
> > <[EMAIL PROTECTED]> wrote:
> > > Use the SQL Administration/Tables/Synchronize -- it works just 
> > fine, at
> > > least in 3.0.
> > >  
> > > Another way to go about this, and if it's only a few fields 
> > (Caution:
> > > Should be done in 2-tier mode with AOSs shut down, and without 
> > anybody
> > > else in the system!):
> > >  
> > > 1.  In the SqlDictionary table, find the fields, and 
change 
> > their
> > > field ids to the new field ids (5 -> 3), then log out.
> > > 2.  Put the new VAR/USR layer in there.
> > > 3.  Start Axapta and perform synchronization to create 
other 
> > new
> > > fields etc.
> > >  
> > > Of course, test it in a test environment before you perform 
> > updates in
> > > live environments -- you may experience some trouble that 
causes 
> > it to
> > > go haywire, especially in heavily customized systems.
> > > 
> > > 
> > > 
> > > From: Danny Gaethofs [mailto:[EMAIL PROTECTED] 
> > > Sent: Monday, January 10, 

RE: [Axapta-Knowledge-Village] Question from a (future?) customer in France

2005-01-11 Thread Neil Ferguson-Lee

Philippe,

If your customer is working in a production environment without production
orders, it is possible they are operating in a Lean Manufacturing
environment.

Lean Manufacturing modules, including kanban, are provided by eBECS Limited
in the UK and they do provide a French language solution.

Neil


-Original Message-
From: Philippe OBSER [mailto:[EMAIL PROTECTED] 
Sent: 11 January 2005 11:10
To: Axapta-Knowledge-Village@yahoogroups.com
Subject: [Axapta-Knowledge-Village] Question from a (future?) customer in
France




Hello,

new in the village, new with Axapta and ,as French, a very bad 
english

One of our customer ask us about Axapta and production management 
without manufacturing orders (does he mean MTS, Kanban, ... -> I 
don't know)

Does anybody have an idea ?

thanks

Philippe









Sharing the knowledge on Axapta. 
Yahoo! Groups Links



 






 Yahoo! Groups Sponsor ~--> 
In low income neighborhoods, 84% do not own computers.
At Network for Good, help bridge the Digital Divide!
http://us.click.yahoo.com/EpW3eD/3MnJAA/cosFAA/kGEolB/TM
~-> 

Sharing the knowledge on Axapta. 
Yahoo! Groups Links

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

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

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





[Axapta-Knowledge-Village] Question from a (future?) customer in France

2005-01-11 Thread Philippe OBSER



Hello,

new in the village, new with Axapta and ,as French, a very bad 
english

One of our customer ask us about Axapta and production management 
without manufacturing orders (does he mean MTS, Kanban, ... -> I 
don't know)

Does anybody have an idea ?

thanks

Philippe








 Yahoo! Groups Sponsor ~--> 
In low income neighborhoods, 84% do not own computers.
At Network for Good, help bridge the Digital Divide!
http://us.click.yahoo.com/EpW3eD/3MnJAA/cosFAA/kGEolB/TM
~-> 

Sharing the knowledge on Axapta. 
Yahoo! Groups Links

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

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

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





RE: [Axapta-Knowledge-Village] Re: working time not specified

2005-01-11 Thread Yifat Halili











Hey there,

 

I have not read your previous mails, but
have you created the calendar with the working times?

 

Basic-> setup -> calendar -> working
times template, then create the calendar using the working times template, make
sure that the date that you are refer to is in fact been specified.

 

Good luck

 



__

Yifat Halili

Financial Systems Consultant 











From: birzanto
[mailto:[EMAIL PROTECTED] 
Sent: Tuesday, January 11, 2005
12:16 PM
To:
Axapta-Knowledge-Village@yahoogroups.com
Subject:
[Axapta-Knowledge-Village] Re: working time not specified



 


Dear all,

I really need this information.
Today, I found also the same problem when I click
the Net 
Requirements and Explosion.

Working time '' has not been specified for
'1/11/2005'
Although the work center related has been
specified on that date 
forward.

Please kindly help !

Rgds,

--- In Axapta-Knowledge-Village@yahoogroups.com,
"birzanto" 
<[EMAIL PROTECTED]> wrote:
> 
> Dear all,
> 
> Sometimes when I generated MRP or Update
Production Order into 
status 
> Start, this message error appears: 
> 
> Working time '' has not been specified for
'12/20/2004'.
> 
> I have checked the respective Route and its Work Center,
but the 
> Working Times in that work center has been
specified.
> 
> Anybody knows what caused the above error
messages and what should 
I 
> do to fix it ?
> 
> Regards,





Sharing the
knowledge on Axapta. 








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 the Yahoo! Terms of Service.












Re: [Axapta-Knowledge-Village] Branch Definition within an Entity and attachment of documents to Branch

2005-01-11 Thread Nitesh


Hi
How u r generating the different invoice number to different location?

Regards
Nitesh
- Original Message -
From: "bhgopal12" <[EMAIL PROTECTED]>
To: 
Sent: Monday, January 10, 2005 2:53 PM
Subject: [Axapta-Knowledge-Village] Branch Definition within an Entity and
attachment of documents to Branch


>
>
> Hi All,
>
> I have a clarification:
>
> An organization with 100 Branches / Sales Depots going for Axapta
> implementation.
>
> Each Branch / Sales Depot is having a seperate Set of documents
> (including running serial number) such as Sales Invoice, DN, CN, etc.
>
> How to define the branches / Sales Depots and attach a set of
> documents to it.
>
>
>
>
>
>
>
>
> Sharing the knowledge on Axapta.
> Yahoo! Groups Links
>
>
>
>
>
>



 Yahoo! Groups Sponsor ~--> 
In low income neighborhoods, 84% do not own computers.
At Network for Good, help bridge the Digital Divide!
http://us.click.yahoo.com/EpW3eD/3MnJAA/cosFAA/kGEolB/TM
~-> 

Sharing the knowledge on Axapta. 
Yahoo! Groups Links

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

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

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





[Axapta-Knowledge-Village] Re: working time not specified

2005-01-11 Thread birzanto


Dear all,

I really need this information.
Today, I found also the same problem when I click the Net 
Requirements and Explosion.

Working time '' has not been specified for '1/11/2005'
Although the work center related has been specified on that date 
forward.

Please kindly help !

Rgds,

--- In Axapta-Knowledge-Village@yahoogroups.com, "birzanto" 
<[EMAIL PROTECTED]> wrote:
> 
> Dear all,
> 
> Sometimes when I generated MRP or Update Production Order into 
status 
> Start, this message error appears: 
> 
> Working time '' has not been specified for '12/20/2004'.
> 
> I have checked the respective Route and its Work Center, but the 
> Working Times in that work center has been specified.
> 
> Anybody knows what caused the above error messages and what should 
I 
> do to fix it ?
> 
> Regards,





 Yahoo! Groups Sponsor ~--> 
What would our lives be like without music, dance, and theater?
Donate or volunteer in the arts today at Network for Good!
http://us.click.yahoo.com/Tcy2bD/SOnJAA/cosFAA/kGEolB/TM
~-> 

Sharing the knowledge on Axapta. 
Yahoo! Groups Links

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

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

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