If anyone has experience with using SPs instead of SELECT statements with
data shaping, I would appreciate some advice.
This works:
SHAPE {EXECUTE spProductObjectList 1} AS VLObjects
APPEND ({EXECUTE spProductPropValueList 1, 1} AS VLProperties
RELATE 'ID' TO 'OwnerID',
'TypeID' TO 'TypeID') AS VLProperty
This does not.
SHAPE {EXECUTE spProductObjectList 1} AS VLObjects
APPEND ({EXECUTE spProductPropValueList ?, ?} AS VLProperties
RELATE 'ID' TO PARAMETER 0,
'TypeID' TO PARAMETER 1) AS VLProperty
Any comments or suggestions would be appreciated. I would prefer that you
newsgroup.
Thanks in advance,
Jeff Jones