I have a problem when running a DM pakage in BPC 7.5. The package suppose will take a selection (ex:category) and pass it to Logic Script which in turn will run a store procedure of SQL Server 2008. Here the example how I want to do it:
Data Manager Package Dynamic Script:
DEBUG(ON)
PROMPT(SELECTINPUT,,,,%CATEGORY_DIM%)
TASK(Execute formulas,USER,%USER%)
TASK(Execute formulas,APPSET,%APPSET%)
TASK(Execute formulas,APP,%APP%)
TASK(Execute formulas,SELECTION,%SELECTIONFILE%)
TASK(Execute formulas,LOGICMODE,1)
TASK(Execute formulas,LOGICFILE,Push_to_Stg.LGF)
TASK(Execute formulas,CHECKLCK,%CHECKLCK%)
Logic script:
*RUN_STORED_PROCEDURE=PUSH_FIN_STG('%CATEGORY%')
Store Procedure:
@CATEGORY NVARCHAR(20)
)
AS
--delete the table before insert
Delete from SMARTDOM.dbo.PUSH_FACTFIN_STG
-- Insert date from Fact table to destination table base on selection of CATEGORY
INSERT INTO SMARTDOM.dbo.PUSH_FACTFIN_STG SELECT TOP 1000 ACCOUNT, CATEGORY, ENTITY, SIGNEDDATA, SOURCE, TIMEID, COMPANY, PROFITCENTER, TERRITORYCODE, DATATYPE FROM tblFactFinance where CATEGORY = @CATEGORY
The SP is correct when I tested it on MSSQL Studio. Also data is movign correctly when I run the package with Logic Script having a constant (e.x:*RUN_STORED_PROCEDURE=PUSH_FIN_STG(''ConstantValue')
So the issue is on my guess is that, the BPC data manager selection does not pass the selected value to Script Logic correctly.
Does anyone have any idea where I'm missing?