- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
Updating Quantities in timinvtlot bin table
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
12-01-2011 12:42 AM
Hi Guys,
Would anyone by chance know the stored procedure being used by Sage in updating Quantities in the timinvtlotbin table? I'd like to study how sage does the updates.
As always, any feedback would be greatly appreciated.
Best Regards,
Patrick
Re: Updating Quantities in timinvtlot bin table
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
12-01-2011 10:36 AM
Run this in SQL
SELECT Distinct O.Name
FROM sysobjects O
INNER JOIN syscomments C on O.Id = C.ID
WHERE O.Type = 'P' AND C.Text LIKE '%timInvtLotBin%'
There are a lot. ![]()
J
Re: Updating Quantities in timinvtlot bin table
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
12-01-2011 07:51 PM
Thanks for the feedback John, I already ran that query before I posted the question here ![]()
I was hoping that someone from SAGE can direct me to the specific SPs especially for creating pick lists, committing SOs and Processing Inventory transactions under the IV module.
Anyway, I guess I'll just have to do a trace and see what SPs are involved while there is no specific SP mentioned in this thread.
Again, thanks for the feedback ![]()
Re: Updating Quantities in timinvtlot bin table
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
12-02-2011 06:40 AM
If you are looking to do this processing on your own, in regards to the pick list and committing SO's you may want to check out RKL's Autoship API which has this functionality. As far as Inventory transactions go, you could always use the standard MAS 500 DIM routine spimAPIInventoryIns and its related staging tables to do this.. No sense in re-inventing the wheeel if processes already exist to do this..
e2b teknologies, inc
www.e2btek.com
Re: Updating Quantities in timinvtlot bin table
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
12-04-2011 05:15 PM
Thanks Lou, I'll look into your suggestion ![]()


