Announcements
What security setup to assign so user has access to "In-transit Transfers Entry" in Inventory module?
*This post is locked for comments
Check out this reference,
No Permission to Post In-Transit Transfer
The support debugging tool comes as an essential tool when it comes to security, I hope you could give it some time, as it might really be helpful for such security issues specifically, and other administrative issues generally.
Please never hesitate to share any further inquiries.
Thank you Mahmoud!
I also found out that to give access to the window you'd have to go to select Fieldservice in Product under Security Task Setup window. Under Window type>Project Series the In transit access is available.
/*
Used to reset the Batch Header Sales Transaction Entry Batch Counts in an SQL Job
Execute from the GYP System Database
*/
DECLARE @Cmd AS VARCHAR(5000)
DECLARE MyCurrsor CURSOR FOR
SELECT Cmd = '
USE ['+RTRIM(INTERID)+'];
UPDATE SY00500
SET NUMOFTRX= ISNULL((SELECT COUNT(1) FROM SOP10100 WHERE VOIDSTTS=0 AND BACHNUMB=A.BACHNUMB),0)
FROM SY00500 A
WHERE A.BCHSOURC=''Sales Entry''
AND NUMOFTRX<>ISNULL((SELECT COUNT(1) FROM SOP10100 WHERE VOIDSTTS=0 AND BACHNUMB=A.BACHNUMB),0);
'
FROM SY01500
OPEN MyCurrsor;
FETCH NEXT FROM MyCurrsor INTO @Cmd;
WHILE @@FETCH_STATUS = 0
BEGIN
EXECUTE(@Cmd);
END
CLOSE MyCurrsor;
DEALLOCATE MyCurrsor;
Under review
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.
Jump in, show your community spirit, and win prizes!
Expanding mentorship, skilling, and AI innovation
These are the community rock stars!
Stay up to date on forum activity by subscribing.
Dan Liebl 2
Shravan Attelli 1