BPC 7.5 NW Logc validation

Hi to all,
I have a logic to run allocation whrere allocation parameters (what, where, using and total) user variables defined at package level.
In detail I have creater a package that contains %SEND% and %RECE%: both variables are built on the dimension COST CENTER and Account that for me are the dimensions that I need to allocate.
In the script logic that execute the allocation I have inserted the following:
*RUNALLOCATION
FACTOR=USING-1
*DIM P_DATASRC WHAT=ALLOC;WHERE=ALLOC;USING=ALLOC;TOTAL=ALLOC
*DIM D_ACCT WHAT=%SEND%; WHERE=%RECE%; USING=DRIVER2;TOTAL=<<<
*DIM D_CDC WHAT=%SEND%; WHERE=%RECE%; USING=%RECE%;TOTAL=%REC%
*DIM D_PROFIT WHAT=A;WHERE=BAS(TOT_PRC);USING=<<<;TOTAL=<<<
*ENDALLOCATION
when I validate the script the system give the error "Member %SEND% not exist"
Which is the problem?
Regards
Stefano

Hi,
this is my advanced prompt
PROMPT(SELECTINPUT,%SEND%,,"Source Selection","D_CDC,D_ACCT")
PROMPT(SELECTINPUT,%RECE%,,"Receiver Selection","D_CDC,D_ACCT")
PROMPT(SELECTINPUT,,,,"%ENTITY_DIM%,%CATEGORY_DIM%,%TIME_DIM%")
INFO(%EQU%,=)
INFO(%TAB%,;)
TASK(/CPMB/ALLOCATION_LOGIC,TAB,%TAB%)
TASK(/CPMB/ALLOCATION_LOGIC,EQU,%EQU%)
TASK(/CPMB/ALLOCATION_LOGIC,SUSER,%USER%)
TASK(/CPMB/ALLOCATION_LOGIC,SAPPSET,%APPSET%)
TASK(/CPMB/ALLOCATION_LOGIC,SAPP,%APP%)
TASK(/CPMB/ALLOCATION_LOGIC,SELECTION,%SELECTION%%SEND%%RECE%)
TASK(/CPMB/ALLOCATION_LOGIC,REPLACEPARAM,SOURCE%EQU%%SEND%%TAB%RECE%EQU%%RECE%)
TASK(/CPMB/ALLOCATION_LOGIC,LOGICFILENAME,ALLOCATION_FREE.LGF)
this is my script logic
*XDIM_MEMBERSET D_CATEGORY=%D_CATEGORY_SET%
*XDIM_MEMBERSET D_ENTITY=%D_ENTITY_SET%
*XDIM_MEMBERSET RPTCURRENCY=LC
*XDIM_MEMBERSET MEASURES=PERIODIC
*XDIM_MEMBERSET TIME=%TIME_SET%
// reverse on the sender
*RUNALLOCATION
*FACTOR=-1
*DIM P_DATASRC WHAT=UPLOAD;WHERE=ALLOC
*DIM D_ACCT WHAT=%SEND%; WHERE=%RECE%
*DIM D_CDC WHAT=%SEND%;WHERE=%SEND%
*ENDALLOCATION
*COMMIT
// allocation to receivers
*XDIM_MEMBERSET D_CATEGORY=%D_CATEGORY_SET%
*XDIM_MEMBERSET D_ENTITY=%D_ENTITY_SET%
*XDIM_MEMBERSET RPTCURRENCY=LC
*XDIM_MEMBERSET MEASURES=PERIODIC
*XDIM_MEMBERSET TIME=%TIME_SET%
*RUNALLOCATION
FACTOR=USING-1
*DIM P_DATASRC WHAT=ALLOC;WHERE=ALLOC;USING=ALLOC;TOTAL=ALLOC
*DIM D_ACCT WHAT=%SEND%; WHERE=%RECE%; USING=DRIVER2;TOTAL=<<<
*DIM D_CDC WHAT=%SEND%; WHERE=%RECE%; USING=%RECE%;TOTAL=%RECE%
*DIM D_PROFIT WHAT=A;WHERE=BAS(TOT_PRC);USING=<<<;TOTAL=<<<
*ENDALLOCATION
with this script I obtain the error from the validation logic. If I substitue % with $ I continue to have the error in validation. If I save and then execute the package, the package retourn the error
RUN_LOGIC:Member "%SEND%" not exist
or
RUN_LOGIC:Member "$SEND$" not exist
where I'm wrong?

Similar Messages

  • BPC 7.5 NW - BPF: validation error the CV dimension is management ?

    Hi, some know this error in BPF for SAP BPC 7.5 NW ?
    BPF: validation error the CV dimension is management
    BPF: Error de validación; la dimensión CV CUENTA no es de gestión
    BPF: Error de validación; la dimensión CV Category no es de identificación
    BPF: Error de validación; la dimensión CV CentroDeCosto no es de gestión
    BPF: Error de validación; la dimensión CV Moneda_Ppto no es de gestión
    BPF: Error de validación; la dimensión CV PARAMETRO no es de gestión
    BPF: Error de validación; la dimensión CV RptCurrency no es de gestión
    BPF: Error de validación; la dimensión CV Sociedad no es de gestión
    BPF: Error de validación; la dimensión CV Sucursales no es de gestión
    BPF: Error de validación; la dimensión CV Tipo_vta no es de gestión
    I am reading "How to configure and execute Business Process Flows in SAP BusinessObjects Planning and Consolidation 7.5 version for SAP NetWeaver"
    Thank you.

    Hi Vitoto,
    Each step should have a driver dimension. This dimension needs to have the OWNER property. So, in each step, you need to select which is the driver dimension. And you need to select the member as well.

  • Question on LGF/LGX - Validation

    Hello Experts,
    From my understanding, There is LGF (logic file) which is being "compiled" into LGX (logic with all the parameters from database as per SELECT statements). We get LGX file by "Validate and Save" in the application.
    Is there any way to automate this?
    In the "Admin Task" SSIS  task there is "Validate" option - would it also produce LGX with fresh parameters? Is there is an option when you run logic to use LGF and automatically compile it to LGX with refreshed data?
    Please keep in mind that I'm not BPC application user and it is new to me.
    Thanks in advance,
    Akim

    Hi Akim,
    I'm not sure why you would need to automate this, as part of an administrative batch process.
    I would either validate logic when I'm developing it -- manually, via the admin consol -- or else I'd want it to be validated each time a user runs it, which can be done for batch-mode logic operation by calling the Logic.LGF file (instead of the Logic.LGX file) in the LOGICFILE parameter of the "advanced" script modification in the eData -> Organize Package List setup in Excel.
    The second option allows you to take selections from the user's current view, and pass them into the *SELECT statetments and other parts of the logic file, to control the logic execution.
    This second option, however, does not actually update the LGX file in the AdminApp\Application directory. The LGF file is validated, and the results are (I assumed) stored somewhere in the logic engine's memory on the app server, but not stored in an LGX file anywhere. (In fact, if you call the LGF file from the package, you can delete the LGX file entirely, with no ill effects.)
    Note that this validation-at-run-time option is not available for default logic. This limits the flexibility of what you can do in default logic, compared to batch-mode logic.
    But to answer your question directly -- I have seen that "validate logic" admin task, but I've never used it. As a practical matter, the logic should validate exactly the same when it's run as part of this admin package, as when you run it manually from the admin console. So I'm not sure what benefits that admin task would give.
    And at least in BPC 5.1, the logic validation itself -- and the error messages that it does and does not provide -- is limited at best. It checks the syntax but it oftens misses critical flaws in the logic, that you'll only discover by either (1.) scanning through the LGX file carefully, or (2.) running the logic and analyzing the debug logs.
    Hope that helps,
    Tim

  • Member Access Profile in BPC

    Hi,
    I have some doubts w.r.t Member access profile in BPC. We have Entity and Category as secured dimension. Entity is read only (All members). Category is R/W (All members).
    1) If i add a third row, and deny only one base member of Entity, whether it will work fine? Which definition system will accept? Read or deny?
    2) In the above scenario, if i run the report on summary node of hierarchy (which has a denied base member), whether i will be able to read the values at summary node level.
    3) When i say Entity members are read only .. cant i do input using input schedules for those entities?
    4) How we need to copy these BPC authorizations to BI in BPC 7.0 (NW). Do we need to recreate these authorization concept in BI or the authorizations i define in BPC 7.0 (NW) are valid for BI also. In this case, if i run a report on BPC cubes using query designer in BI, how authorizations are checked?
    Please suggest.
    Thanks/regards,
    Lokesh Nandula

    Hi Lokesh
    I will try to answer your questions:
    1+2) If you give read/write access to a "Parentmember" all these settings are applied to all childs of this member. So if you give  Read Access to a Parent the User will be able to see everything under this Member.
    3) If you have Read Only on a Member, you cant send Data to the Database via Inputschedule.
    If you have Read Only on the whole Entity Dimension you cant do any posting in the whole cube, regardless of the settings in Category Dimension (but I think this is clear in Multidimensional Systems)
    4) Unfortunatly in Germany the RampUmp Version of BPC7NW is still not shipped, so I cant answer on this point
    Regards
    Jörg

  • CX_SY_ARITHMETIC_OVERFLOW    error

    Dear All
    while connecting  external content server to SAP. while I run report RSCMST, it throws dump.
    Error analysis
    An exception occurred that is explained in detail below.
    The exception, which is assigned to class 'CX_SY_ARITHMETIC_OVERFLOW', was not
    caught in
    procedure "GET_TIME" "(FORM)", nor was it propagated by a RAISING clause.
    Since the caller of the procedure could not have anticipated that the
    exception would occur, the current program is terminated.
    The reason for the exception is:
    In the current program "RSCMST", multiplying the numbers "-734176" and
    86400 (using the operation '*' or 'MULTIPLY') resulted in a value
    greater than 2147483647 or smaller than -2147483648. This
    |    results in a whole number overflow.
    I have given date and time  time in format  yyyymmdd  hhmmss
    Please suggest me some solution
    Regards
    sandeep

    Miguel,
    Check  if you  are  running  in t o  this  note..
    Note 1355621 - overflow in WriteBack concurrent locking
    https://websmp230.sap-ag.de/sap%28bD1lbiZjPTAwMQ==%29/bc/bsp/spn/sapnotes/index2.htm?numm=1355621
    Summary
    Symptom
    System exception CX_SY_ARITHMETIC_OVERFLOW throwed. The exception occurs in CL_UJR_WRITE_BACK=>CHECK_CONCURRENT_LOCK.
    Other terms
    WriteBack, Overflow
    Reason and Prerequisites
        This is a program error. The variable(integer) is not large enough to calculate number of all possible combination of dimension members used in one WriteBack data package.
        This Note will increase the variable length to 100 to handle a googol (10E100) of combinations.
    Solution
    Please apply this Note or upgrade to Support Package.
    Header Data
    Release Status:     Released for Customer
    Released on:     16.07.2009  05:08:14
    Master Language:     English
    Priority:     Correction with low priority
    Category:     Program error
    Primary Component:     EPM-BPC-NW-DM-WBV WriteBack Validation
    Secondary Components:     EPM-BPC-NW NetWeaver Version
    Affected Releases
    Software
    Component
    hope  this helps..
    Edited by: Vishal Mahawadhi on Dec 10, 2009 10:28 AM

  • ERROR with CX_SY_ARITHMETIC_OVERFLOW and RAISING clause (for Consolidation)

    Hello,
    When we run the Consolidation several times on the same data range several times the tool adds the results, so we need to execute in a single package a CLEAR data, the Currency Conversion and the Consolidation.
    Our package launches a ScriptLogic  with the following code:
    *XDIM_MEMBERSET C_ACCT=<all>
    *XDIM_MEMBERSET FLOW=<all>
    *XDIM_MEMBERSET TIME= %TIME_SET%
    *XDIM_MEMBERSET GROUPS= %GROUPS_SET%
    *XDIM_MEMBERSET C_CATEGORY=%C_CATEGORY_SET%
    *XDIM_MEMBERSET ENTITY=<ALL>
    *XDIM_MEMBERSET C_DATASRC = <ALL>
    *XDIM_MEMBERSET CECO = <ALL>
    *XDIM_MEMBERSET INTCO = <ALL>
    *WHEN GROUPS
    *IS <>"LC", "EUR"
         *WHEN C_DATASRC
         *IS <>"INPUT","T_MAN"
              //Here, we need an instruction to erase the data
              *REC(FACTOR=-1,
                        TIME="%TIME_SET%",
                        GROUPS="%GROUPS_SET%",
                        C_CATEGORY="%C_CATEGORY_SET%")
         *ENDWHEN
    *ENDWHEN
    *COMMIT
    *INCLUDE FXTRANS.LGF
    *INCLUDE CONSOLIDATION.LGF
    And when we run the package we get the following error:
    An exception with the type CX_SY_ARITHMETIC_OVERFLOW occurred, but was neither handled locally, nor declared in a RAISING clause
    Overflow in the operation *
    On the one hand, we want to solve the issue and, second, Is it normal that the tool accumulates the results when we run several times the consolidation?
    Best regards,
    Miguel.

    Miguel,
    Check  if you  are  running  in t o  this  note..
    Note 1355621 - overflow in WriteBack concurrent locking
    https://websmp230.sap-ag.de/sap%28bD1lbiZjPTAwMQ==%29/bc/bsp/spn/sapnotes/index2.htm?numm=1355621
    Summary
    Symptom
    System exception CX_SY_ARITHMETIC_OVERFLOW throwed. The exception occurs in CL_UJR_WRITE_BACK=>CHECK_CONCURRENT_LOCK.
    Other terms
    WriteBack, Overflow
    Reason and Prerequisites
        This is a program error. The variable(integer) is not large enough to calculate number of all possible combination of dimension members used in one WriteBack data package.
        This Note will increase the variable length to 100 to handle a googol (10E100) of combinations.
    Solution
    Please apply this Note or upgrade to Support Package.
    Header Data
    Release Status:     Released for Customer
    Released on:     16.07.2009  05:08:14
    Master Language:     English
    Priority:     Correction with low priority
    Category:     Program error
    Primary Component:     EPM-BPC-NW-DM-WBV WriteBack Validation
    Secondary Components:     EPM-BPC-NW NetWeaver Version
    Affected Releases
    Software
    Component
    hope  this helps..
    Edited by: Vishal Mahawadhi on Dec 10, 2009 10:28 AM

  • Eliminations and adjustments rule: Other Dimension Filter

    Hi guys,
    Anyone knows if it is possible to include a specific property value of a USer defined Dimension as the criteria in "Other Dimension Filter"?
    Instead of Product=Prod1 using something like Product.Family=Type1
    Thanks

    Hi Vadim:
    This is Weiwei from SAP Support. I just tested in BPC 10 SP12 that the validation will not be passed when you put something like  PROFIT_CENTER.PCTR_TYPE=OP in additional dimension filter. You can only put dimension member in the filter such as PROFIT_CENTER=XXX.
    I also test and verified in IFRS Startup Kit and can not find a rule that has the filter configured based on property in the business rule. If you see a different story, please let me know.
    A rule is saved does not mean the rule is valid, that is why when you save a rule it will give you warning that it does match the validation. It is not a problem of the product, just as you save dimension without processing/validating it, does not mean the formula/value you put in the dimension sheet is valid.
    Hope that helps. Feel free to let me know if you have any thoughts.
    Thanks,
    Weiwei 

  • BPC Error in Validation "0RATE_TYPE does not exist in source"

    Hi Experts,
    We are on BPC 7.5 Netweaver version SP7.
    I am loading FX RATES to BPC from BI DSO using Data Manager. I am getting an error while doing validation for One of the InfoObject in DSO stating "0RATE_TYPE is not a valide command or 0RATE_TYPE does not exist in source " . I find that same infoObject 0RATE_TYPE is missing from the "field list " in "set selection" parameter while validating the transformation file; In datatype I am selcting "Transaction data from NW BW InfoProvider"
    Pl let me know how it is possible that the transformation file has mapping for my InfoObject 0RATE_TYPE but my InfoObject 0RATE_TYPE is not available for selection.
    Also if we can change the selection where to make required changes in BI Or BPC.
    Thanks

    DSO Structure:
    Characteristics
         BPC Exchange Rate Period                 /BIC/ZPERIOD   ZPERIOD     /BIC/OIZPERIOD   CHAR          20
    Key Figures
         Exchange Rate for BPC                    /BIC/ZXCHGRATE ZXCHGRATE   /BIC/OIZXCHGRATE DEC           11
         Ratio for the "from" currency units      /BIC/ZFFACT    ZFFACT      /BIC/OIZFFACT    DEC            9
         Ratio for the "to" currency units        /BIC/ZTFACT    ZTFACT      /BIC/OIZTFACT    DEC            9
    Units
         Currency Key for Transaction Currency    CURKEY_TC      0CURKEY_TC  /BI0/OICURKEY_TC CUKY           5
         From currency                            /BIC/ZFCURR    ZFCURR      /BIC/OIZFCURR    CUKY           5
    Other Fields
         BW Delta Process: Update Mode            RECORDMODE     0RECORDMODE RODMUPDMOD       CHAR           1
    Transformation File:
    FORMAT = DELIMITED
    HEADER = YES
    DELIMITER = ,
    AMOUNTDECIMALPOINT = .
    SKIP = 0
    SKIPIF =
    VALIDATERECORDS=YES
    CREDITPOSITIVE=YES
    MAXREJECTCOUNT=
    ROUNDAMOUNT=
    *MAPPING
    C_Category=*NEWCOL(C_100)
    INPUTCURRENCY=0CURKEY_TC
    R_ENTITY=*NEWCOL(GLOBAL)
    R_ACCT=0RATE_TYPE
    TIME=ZPERIOD
    SIGNEDDATA=ZXCHGRATE
    *CONVERSION
    INPUTCURRENCY=INR.XLS

  • Parent is not a valid member error in BPC

    hi all,
    i use SSIS package that upload members to BPC dimension and it worked successfully.
    But when i try to process dimension the following error appeared
    "  - Parent is not a valid member. -  Member ID : [Insurance],  Property Name : [PARENTH1],  Property Value : [AccruedExpenses]"
    Although that  i have this parent [AccruedExpenses] member in mbrAccount.
    your help is so appreciated
    Thanks in advance

    Heba,
    We ran into the same error (parent not valid, even though the parent was a memeber) when automating our dimension processing......
    Try looking at the data in your source table (for example, using Query Analyzer).  Do you have records with "NULL" as the value for one or more columns?  Not blank values - but values that in the query output actually have the letters NULL.  If so, you may have the same issue we had.....
    We found that fields on the source table that we were not specifically updating via the SSIS package (because we did not have any data from our source system) were getting filled with "NULL" - an example of such a field for us as NEWID.  The IDs coming from the source system will never change, so we did not have a NEWID value in the file we were mapping to our source table and so at first we just ignored NEWID field in the mapping in the SSIS package.  After getting the "parent is not valid..." errors, we updated the SSIS package to map something to all fields in the source table - if we didn't have a value from our source file for a particular field, then we mapped '' (two single quotes) to the field.  After making the change to the SSIS, we no longer had NULL values on the table and we also no longer go the parent is not valid errors!
    Also as a head's up to something else we learned the hard way.....  Make sure you are populating the CALC, DIMCALC, and ISBASEMEM fields on all your members with the appropriate value ("Y" or "N").
    Good luck!
    Regards,
    Shannon

  • BPC 7.0MS Validation Report isn't displayed

    Hello colleage,
    This question is related to the following thread.
    [BPC - Submitted data did not pass validation|Re: BPC - Submitted data did not pass validation;
    <Procedure>
    -eSubmit > Validate submission
    -The message is displayed:
    "Submitted data did not pass validation; you may need to resubmit it.
    A Validation report cannot be generated because there is no Validation report template."
    I think that Validation report can be opened on this timing.
    Are there missing settings?
    If you have any information or ideas, could you please help me?
    <Setting>
    Application Parameter
    LOCKREPORT: Validate.xlt
    Validation Report
    eExcel\Input Schedules\Wizard\Validate.xlt
    Thank you in advance.
    Best regards,
    Kei Ogino
    Edited by: Kei Ogino on Jun 24, 2009 11:00 AM

    Hi Ki Ogino,
    We have tested the behaviour for the same scenario.
    You get this error, if the template is opened from the /INPUT SCHEDULE/WIZARD or the template not accessible from the relevant location.
    Otherwise, able to succesfully validate the data submission by both ways:
    1. eSubmit :: Validate Submission
    2. Send Data :: Validate Submission before sending.
    The issue noticed is that data not refreshed / displayed in the input template after succesful sending into BPC database, whereas the same data can be viewed by new template or ANYBYANY report.
    Setting -- APPLICATION PARAMETER for LOCKREPORT.
    The report launches when submission validation for a data region is not u20180u2019 in BPC Excel. The template should be located in the eExcel\Report\ folder., though it is currently available in the path eExcel\Input Schedules\Wizard\Validate.xlt.
    Try this.
    Cheers
    Uma

  • SAP Bpc: automate script logic validation

    Is there a way to automate the validation of the SAP BPC script logics?
    I ask you that because I have daily SSIS packages and, actually, if I don't manually vaildate the logics every time, using SAP BPC administration interface, the new members are not cosidered into the application.
    I tryed the BPC SSIS "Adimin Task" (using Validate Logic mode) but it only checks if the syntax of the logic is correct or not.

    Thanx for the replay but, unfortunatly, I think it's not useful for my case.
    I use SSIS packages to populate dimensions (such as Employees). In these packages I have BPC Admin Task (in create dimension mode) and it works fine.
    The problem is > if I don't go into SAP BPC Administration Console to "Validate and Save" the script logics manually > inside the .lgx file there aren't into XDIM_MEMBERSET the new data I previously imported throught the SSIS packages above (in the exemple the new Employees).
    Beeing not into the XDIM_MEMBERSET, the script logic executed by the users excel input schedules cannot manage the new set of data... until I "Validate and Save" the logic manually.
    Edited by: Francesco Andolfi on May 26, 2010 4:22 PM
    Edited by: Francesco Andolfi on May 26, 2010 4:22 PM

  • BPC validation rules based on member properties

    Hi all,
    validation rules seem to be very helpful in BPC NW but all examples I have found use members to define the rules. Is possible to use a member property to define a rule?
    For example, my ENTITY dimension has a STATUS property. I want to ensure that the user cannot save data when this property is equal to "CLOSED".
    thanks for your help,
    Alex

    Hi,
    You can acheive this by using Use BADI implementation under Validation maintenance.
    hope it helps...
    regards,
    Raju

  • Data Validation Before Upload to BPC

    Hi All,
    We pump in trial balance data from our SAP system to BPC with some breakdown to match dimension combination in BPC. One of the required steps is that to have a checking procedure to see whether downloaded data is balanced or not, before we upload to BPC.
    Would you mind sharing with me how best to have this checking, or if you have some experience on how this validation works in your company, i would appreciate it very much if you can share it.
    Thanks a lot,
    Liam

    Hi Nilanjan,
    Thanks for replying.
    If we use Business Rule function, then we would have to upload it to BPC first and let Business Rule run the validation.
    Our objective is to make sure the figures in the flat file is correct (balance in accounting view), before we submit to BPC.
    Thanks,
    Liam

  • SAP BPC 5.1 Validation Tolerance in Validation Business Rules

    I am trying to use the the validation tolerance field in the validation business rules and I make it work
    This is how i understand it:
    For example, I am trying to create a control that check that net assets = equity in the balance sheet with a tolerance of 10.
    I have set up the following validation rule header and detail:
    Header: CTRL1 ;validation operand = ; validation tolerance 10; all other fields are blank
    Details: CTRL1; account1=netassets;flow1=F_CLO;SIign1=1;account2=equity;flow2=F_CLO;sign2=1
    After running the validation package:
    If my netassets-equity=9--> i should see CTRL1=0
    If my netassets-equity=-5--> i should see CTRL1=0
    If my netassets-equity=15--> I should see CTRL1=15
    Is my understanding correct? Has anyone been able to use the validation tolerance?
    Regards
    Lena

    In addition to James comments, I just wanted to add a few additional notes:
    1.  The Demo application that was presented contains the applications that you described in your question.  Historically, the consulting team would either use the ApShell or the demo as the foundation for developing a set of applications for the customer based on the design sessions held with the customer.  BAsed on the customer requirements and design, often we start with ApShell and pull in components from the Demo that would support functionality requirements that may go beyond what Apshell has out of the box.  Many of these components are covered in an Advanced Training for BPC, including the helpful and not so helpful components.
    2.  You can pull many of the Demo dimension files, logic scripts and rules from the Application Server file folders for use in an Application set design.  Unfortunately, BPF's can not be transfered, since they are built in to an application and reside in tables in SQL. In addition, many BPF's need to be defined to meet a customers requirements, file names, location, users, and dimension structure.
    3. Many of the dimensions utilize several supporting properties that may be added via the admin console to any dimension.  The properties are a key ingrediaent to a well running application set, supporting reporting, script logic, and business rules.
    4.  The Performance dashboard is no longer an option that is included out-of -the-box, howvere it is just a shell that was adjustable to the application set designed for the customer.

  • BPC - Submitted data did not pass validation

    Hi experts,
    I'm working with BPC 7 Microsoft.
    I've just copied an ApplicationSet and the new one doesn't work properly in reference to sending data.
    The issue is:
    I send data correctly. The system shows the result as successfully, n data submited, 0 data rejected. But, suddenly, the template doesn't show data. It seems as if the data was disappearing.
    If before sendind data, I click on "Validate submission before sending", the message is: "Submitted data did not pass validation; you may need to resubmit it"
    Any ideas about it? Do you know what I'm doing wrong? Any possible solution will be welcomed.
    Thanks and Regards

    Hi,
       It looks like your data is not passing the validation rules defined into Validation Account. Please verify the rules defined there. Please try to also to full process the Account dimension.
       If the data did not pass validation, select Yes to run the validation report. This report is creating by administrator and should show you why the data is not passing the validation.
    Best regards,
    Mihaela

Maybe you are looking for

  • Hold Tray HDD Bracket for Lenovo 3000 100K FRU 41R6064

    I want to install a second hard drive in my system, a drive I have taken out of an older box that I am responsibly scrapping. I need the plastic drive bracket. Part no. 41R6064. I assume that the plastic slide rails would be included with this. Lenov

  • Can't find photo browser icon in Mail, I've just installed Lion

    I have just successfully installed Lion and when setting the toolbar in Mail I noticed that there isn't an icon for 'photo browser or attachments? Has the big cat eaten them or is there a more cunning method to attach photos to emails?

  • Double records in BW

    Hi Gurus, I have done full repair load from source to target.which I am doing every month. and after that loading I used to get the exact result in BW. But this time after loading (full repair) the data I am getting the  double records as compare to

  • Where are my sync-ed photos?

    Where on my MBP can I find the photos sync-ed from my iPhone? I know they're sync-ed and backed up on my Mac, I can't seem to find it on the Mac itself, at least not on the Photos tab on the iTunes sync menu. Thanx for indulging my ignorance. Pat

  • Is canon EF 24-85mm F3.5-4.5 lens compatible with canon eos 6D ? is it work fully automatic ?

      Is canon EF 24-85mm F3.5-4.5 lens  compatible with canon eos 6D ? is it work fully automatic ?