cancel
Showing results for 
Search instead for 
Did you mean: 

IC Data Matching Package Error

Former Member
0 Kudos

Dear Friends,

I am facing the error while running the IC Data matching.. the below error is coming:

"RUN_LOGIC:Dimension set:"IC_ACCTDATAVALUE" not assigned in Data Manager"

Can anyone please help me to resolve the same.

Thanks and regards,

MD.

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Thnks Jigar,

While running the Data Package, there is no input selection of DIM: ACCT, GROUP, DATASRC.

Modify the data package to go to the path -- Modify Package list - View Package - Dynamic Package list - PROMPT - update all the DIM which you want in selection range.

The error get resolved.

Thnks MD.

Edited by: Mah2007 on Jan 10, 2012 1:20 PM

Former Member
0 Kudos

Hi

Please list the dimensions and the script logic you are using to help understand the cause.

Regards

Jigar

Edited by: jigarv on Jan 10, 2012 9:04 AM

Former Member
0 Kudos

Dear Jigar,

Please find the script for IC Data and FX TRANS:

*RUN_PROGRAM ICDATA

CATEGORY = %C_Category_SET%

ACCOUNT = %IC_ACCT_SET%

CURRENCY = %RPTCURRENCY_SET%

GROUPS= %GROUPS_SET%

DATASRC = %IC_DATASRC_SET%

TID_RA = %Time_SET%

ENTITY = %Entity_SET%

TYPE = 'I'

*ENDRUN_PROGRAM

*RUN_PROGRAM CURR_CONVERSION

CATEGORY = %C_CATEGORY_SET%

CURRENCY=%RPTCURRENCY_SET%

//GROUP = %GROUPS_SET%

TID_RA = %TIME_SET%

RATEENTITY = GLOBAL

ENTITY = %ENTITY_SET%

//OTHER = [ENTITY=%ENTITY_SET%]//For More than one other scope parameters: OTHER = [ENTITY=%ENTITY_SET%;INTCO=%INTCO_SET%...]

*ENDRUN_PROGRAM

List of dimensions used in IC Matching:

C_Category

Entity

Flow

Groups

IC_ACCT

IC_DATASRC

IntCo

RptCurrency

Time

Thanks in advance.

Regards, MD.

Former Member
0 Kudos

HI MD ,

Follow the steps below and it should resolve your issue.

In BPC for Excel, click 'eData / Organize Package List',

Right-click on the Allocation package and select 'Modify Package',

Click on the 'View package' button,

Expand 'Dynamic Package Script(MODIFYSCRIPT)' and select TASK,

Add the following TASK: TASK Name= /CPMB/ALLOCATION_LOGIC ; Property= SELECTION ; Value= %SELECTION% and tick the 'Activate' box,

Save the modification then run the Allocation package.

Hopefully this should resolve your issue. Thanks.

Regards,

Sanjeev

Former Member
0 Kudos

Hi Sanjeev,

Thnks for your reply,

I am not doing the allocation here.. want to do the IC Matching and data package is already selected ICDATA which is standard.

Can you please elaborate why should we go for Allocation package?

Thanks in advance.

Regards, MD.

Former Member
0 Kudos

Please try the following:

*RUN_PROGRAM ICDATA

CATEGORY = %C_Category_SET%

ACCOUNT = %IC_ACCT_SET%

CURRENCY = %RPTCURRENCY_SET%

//GROUPS= %GROUPS_SET%

FLOW = %FLOW_SET%

DATASRC = %IC_DATASRC_SET%

TID_RA = %Time_SET%

ENTITY = %Entity_SET%

TYPE = 'I'

*ENDRUN_PROGRAM

Also try Hard Coding the fields:

*RUN_PROGRAM ICDATA

CATEGORY = ACTUAL

ACCOUNT = %IC_ACCT_SET%

CURRENCY = %RPTCURRENCY_SET%

//GROUPS= %GROUPS_SET%

FLOW = F_999

DATASRC = INPIUT

TID_RA = %Time_SET%

ENTITY = %Entity_SET%

TYPE = 'I'

*ENDRUN_PROGRAM

Also, in the data manager package for ICData check the following:The package has reference to the script logic files and the dimensions that the data manager package is calling

Edited by: jigarv on Jan 10, 2012 12:32 PM