[Axapta-Knowledge-Village] AX access rights permission is done by object ID?

2010-02-10 Thread James Flavell
Hi everyone just wanted to check is the AX permissions having functionality
linked to the AOT object ID?

 

Example:

Live appl report A has object ID 500

Test appl report A has object ID 600

 

If I take a copy of the live Db and put it into test will the permissions
for report A be all correct?

 

The reason I ask is it seems there are differences between the Live and Test
permissions setup in our environment for some reason

 

This is for Ax3.0 (although I don't think there has been any change in this
area even in AX2009)

 

Thanks

James



[Axapta-Knowledge-Village] Master Planning

2010-02-10 Thread Khalil Rehman

Dear all,

 

   i want to know how to increase the coverage days for SO  PO. because 
whenever i run my master scheduling in Periodics it gives me only 45 to 60 
days. i want to increase it upto 180 days. 

 

thanks  best regards.

 



 


  KHALIL UR REHMAN  


  
_
Your E-mail and More On-the-Go. Get Windows Live Hotmail Free.
https://signup.live.com/signup.aspx?id=60969

Re: [Axapta-Knowledge-Village] AX access rights permission is done by object ID?

2010-02-10 Thread Topár Tamás
Hi James,
If you take a copy of the live Db and put it into test all permissions should 
be the same.Best practice for that is detaching the live db, copying it to 
another fast accessible physical disk, and reattach both of them, the second 
one as test.Regards,Tamás
--- On Wed, 2/10/10, James Flavell djf1...@gmail.com wrote:

From: James Flavell djf1...@gmail.com
Subject: [Axapta-Knowledge-Village] AX access rights permission is done by 
object ID?
To: Axapta-Knowledge-Village@yahoogroups.com
Date: Wednesday, February 10, 2010, 11:59 AM















 
 



  



  
  
  







Hi everyone just wanted to check is the AX permissions
having functionality linked to the AOT object ID? 

   

Example: 

Live appl report A has object ID 500 

Test appl report A has object ID 600 

   

If I take a copy of the live Db and put it into test will
the permissions for report A be all correct? 

   

The reason I ask is it seems there are differences between
the Live and Test permissions setup in our environment for some reason 

   

This is for Ax3.0 (although I don’t think there has
been any change in this area even in AX2009) 

   

Thanks 

James 









 





 



  











  

RE: [Axapta-Knowledge-Village] Master Planning

2010-02-10 Thread Harry Deshpande
You will need to increase the coverage time fence that is found on item 
coverage group and which can be overridden on master plan setup

Regards

harry

From: Axapta-Knowledge-Village@yahoogroups.com 
[mailto:axapta-knowledge-vill...@yahoogroups.com] On Behalf Of Khalil Rehman
Sent: Wednesday, February 10, 2010 4:15 AM
To: Knowlege Village; Development Axapta
Subject: [Axapta-Knowledge-Village] Master Planning



Dear all,

   i want to know how to increase the coverage days for SO  PO. because 
whenever i run my master scheduling in Periodics it gives me only 45 to 60 
days. i want to increase it upto 180 days.

thanks  best regards.




[http://graphics.hotmail.com/i.p.emrose.gif]  KHALIL UR REHMAN  
[http://graphics.hotmail.com/i.p.emrose.gif]



Your E-mail and More On-the-Go. Get Windows Live Hotmail Free. Sign up 
now.https://signup.live.com/signup.aspx?id=60969



Re: [Axapta-Knowledge-Village] Sales order confirmation through batch job.

2010-02-10 Thread neeraj gupta
dear alok;
why u need to do that?

Neeraj Gupta 
ERP Technical 
Mahape Navi Mumbai 
Ph no 09969606185 


--- On Tue, 9/2/10, alokmishra_004 alokmishra_...@yahoo.com wrote:

From: alokmishra_004 alokmishra_...@yahoo.com
Subject: [Axapta-Knowledge-Village] Sales order confirmation through batch job.
To: Axapta-Knowledge-Village@yahoogroups.com
Date: Tuesday, 9 February, 2010, 11:17 AM







 



  



  
  
   Hi,



I want to confirm my sales orders through batch job.which are create in the 
current day only not all of the sales order,  Currently it update all the 
batched sales orders.

 

SO was confirm.

 

Have you solution.



Best regards.

 

Alok






 





 



  






  Your Mail works best with the New Yahoo Optimized IE8. Get it NOW! 
http://downloads.yahoo.com/in/internetexplorer/

RE: [Axapta-Knowledge-Village] pack and unpack a query object

2010-02-10 Thread Harry Deshpande
public boolean unpack(container packedClass)
{
Integer version= conpeek(packedClass,1);
container   packedQuery;
container   base;

switch (version)
{
case #CurrentVersion:
[version,base,packedQuery] = packedClass;
super(base);
if (packedQuery  conlen(packedQuery) == 1)
{
query = new QueryRun(packedQuery);
}
break;
default:
return false;
}
return true;
}

From: Axapta-Knowledge-Village@yahoogroups.com 
[mailto:axapta-knowledge-vill...@yahoogroups.com] On Behalf Of giridharraj
Sent: Tuesday, February 09, 2010 11:13 PM
To: Axapta-Knowledge-Village@yahoogroups.com
Subject: [Axapta-Knowledge-Village] pack and unpack a query object



Hi,

I have seen a method query.pack() which returns a container. Is there any 
method which unpacks it i.e., converts back to a query object because i didn't 
find query.unpack().

Simply I want a method which converts a query object to a container and that 
container to be converted into a query object.

Can anybody help me in this...

Regards,
giridhar Raj.



[Axapta-Knowledge-Village] Re: pack and unpack a query object

2010-02-10 Thread giridharraj

Thanks alot for ur help HarryI got it.:)
--- In Axapta-Knowledge-Village@yahoogroups.com, Harry Deshpande har...@... 
wrote:

 public boolean unpack(container packedClass)
 {
 Integer version= conpeek(packedClass,1);
 container   packedQuery;
 container   base;
 
 switch (version)
 {
 case #CurrentVersion:
 [version,base,packedQuery] = packedClass;
 super(base);
 if (packedQuery  conlen(packedQuery) == 1)
 {
 query = new QueryRun(packedQuery);
 }
 break;
 default:
 return false;
 }
 return true;
 }
 
 From: Axapta-Knowledge-Village@yahoogroups.com 
 [mailto:axapta-knowledge-vill...@yahoogroups.com] On Behalf Of giridharraj
 Sent: Tuesday, February 09, 2010 11:13 PM
 To: Axapta-Knowledge-Village@yahoogroups.com
 Subject: [Axapta-Knowledge-Village] pack and unpack a query object
 
 
 
 Hi,
 
 I have seen a method query.pack() which returns a container. Is there any 
 method which unpacks it i.e., converts back to a query object because i 
 didn't find query.unpack().
 
 Simply I want a method which converts a query object to a container and that 
 container to be converted into a query object.
 
 Can anybody help me in this...
 
 Regards,
 giridhar Raj.