Quantcast
Channel: SCN : Discussion List - SAP Planning and Consolidation, version for the Microsoft platform
Viewing all articles
Browse latest Browse all 1545

Passing parameters to Logic script from Data Manager Package

$
0
0

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?


Viewing all articles
Browse latest Browse all 1545

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>