stored procedure writing directly in RMS

Is there any examples of writing stored procs directly in RMS? For example I have a stored procedure I have written that gets fired off from CR8.5. The stored proc has one section that does an insert into a temp table and at the end of the stored proc does a select of the temp table. Any time within the stored proc when doing an insert the last select does not work. If I do not do an insert within the stored proc everything works as normal. I even tried having my stored proc call another stored proc when it gets done, but because of that insert it has problems. Is there anything written anywhere or documented about some of the issues with stored proc writing directly into RMS? Thanks

Reply to
ClothingStore
Loading thread data ...

Try adding the following line to the beginning of your SP:

SET NOCOUNT ON

This suppresses the "Rows affected" message that your insert is sending back...

The SP is all within SQL Server, it really has nothing to do with RMS specifically.

Glenn Adams Tiber Creek C> Is there any examples of writing stored procs directly in RMS? For example I

Reply to
Glenn Adams [MVP - Retail Mgmt

Reply to
ClothingStore

BeanSmart website is not affiliated with any of the manufacturers or service providers discussed here. All logos and trade names are the property of their respective owners.