OLAPLOOKUP in BPC 7.5 M

Heys guys,
does anyone of you guys know, if it's still possible to use OLAPLOOKUP in BPC 7.5 for Microsoft? We tried to use a very simple statement, but we always get an error for the ENDLOOKUP.
Example:
*OLAPLOOKUP Test
*DIM Region: EntityDetail = "WELTW"
*ENDLOOKUP
Error message:
Validation status of syntax: Failed
- Invalid syntax found; see statements in red *(red is the ENDLOOKUP)
Best regards
Karsten

Karsten,
Please try LOOKUP instead of OLAPLOOKUP.
I think help file needs to be fixed.
*LOOKUP Test
*DIM Region: EntityDetail = "WELTW"
*ENDLOOKUP
Also, I recommend using Logic Assistant in the admin console, it will help you a lot
I hope it will help you.
James Lim

Similar Messages

  • *OLAPLOOKUP Filter

    Hi experts
    is there a way to filter an OLAPLOOKUP within a script logic, like the suppress function in EvDRE schedule?
    The problem is the OVERFLOW of the execution of the package, we have already used the XDIM_MAXMEMBERSET for two dimensions, but the OVERFLOW still exists.
    thanks in advance.

    Hi John, thanks primarily
    below there is the code where i've replaced the OLAPLOOKUP function with the *CALC_DUMMY_ORG.
    My goal is to copy the value between two accounts. In particular, i must to copy from a source account to a destination account where the destination id is a member of a property of the source member.
    Example:
    Before:
    ID             DES            Value
    01             D_01           5000
    D_01                              0
    After:
    ID             DES            Value
    01             D_01           5000
    D_01                            5000
    Source account could be a parent member, and the number of records involved is very high due to the profit center and trading partners.
    Large number of members causes delays in the execution of the package or overflow.
    *XDIM_MEMBERSET CATEGORY=%CATEGORY_SET%
    *XDIM_MEMBERSET TIME=%TIME_SET%
    SOURCE ACCOUNT
    *SELECT(%MYACC%, ID, ACCOUNT, "[CPM]='BPC' AND [CPMREF]<>''")
    DESTINATION ACCOUNT
    *SELECT(%MYCPMACC%, ID, ACCOUNT, [CPM]='EAP') 
    *XDIM_MEMBERSET ACCOUNT=%MYACC%
    *XDIM_MEMBERSET DATASOURCE=descendants([DATASOURCE].[H1].[TOT_DS],9999,leaves)
    *XDIM_MEMBERSET DATATYPE=DT_V
    *MEMBERSET(%MYTP%,descendants([TRADING].[H1].[TP_ALL],9999,leaves))
    *XDIM_MEMBERSET TRADING=%MYTP%
    *XDIM_MEMBERSET PRODUCT=descendants([PRODUCT].[H1].[ALL],9999,leaves)
    *XDIM_MEMBERSET ENTITY=descendants([ENTITY].[H1].[TOT_ENTITY],9999,leaves)
    *XDIM_MEMBERSET RPTCURRENCY=LC,EUR
    *CALC_DUMMY_ORG ACCOUNT=ID
    *WHEN ACCOUNT.CPMREF
    *IS <> ""
    *REC(PRODUCT="ZZZZZZZ",DATATYPE="DT_V_EAP",ACCOUNT=ACCOUNT.CPMREF)
    *ENDWHEN
    *COMMIT
    Edited by: SAP_Mattia_SAP on Nov 3, 2011 11:19 AM

  • How to use the RateEntity dimension in SAP BPC?

    Hello everbody,
    I am implementing a consolidation process using SAP BPC. I want to use the RateEntity dimension, to translate a same currency into different exchange rates depending on the company.
    I want the company which ID is GFU (which is from Brazil) in LegalEntity dimension is converted using a special exchange rate. I have added a GFU member in RateEntity dimension, and I have entered the exchange rates for the member GFU and for the member Global in RateEntity dimension.
    But the problem is that after I run the FX Restatement package, converted data for this company is not the proper one, because Global exchange rates have been used instead of GFU exchange rates. Does anybody know why? Do I have to do anything else? 
    Thank you very much for your time

    Do you see the search functionality in the upper left of the screen?
    Okay, now type in ecatt, press enter and in the next screen filter on blogs.

  • How to hide member Account dimension from BPC Administrator for Reporting

    Hi experts, i need to hide some members of the Account dimension for reporting, because those members dont use it anymore, but i dont want delete them.
    The question is: Does it exist any propierties for this dimension type that allows hiding members in reporting without set members in the BPC for Excel?
    I can create a report which contain the members i want to show, but if any change occurs (client desire) the report is outdated.
    Thank you in advance
    Ignacio Vazquez

    Ignacio,
    There is no function like that.
    You can choose below two options.
    1. Create a property like  'NOUSE'  and set a value 'Y' for unused member
         When you create EVDRE report, set a filter against that property that has value 'N'
         then those members will not be shown at the report.
    2. Create 'NOUSE' parent member and put members under this parent member.
    Maybe option 1 is more easier to do that.
    I hope it will help you
    James Lim

  • Using a variable in an allocation routine in SAP BPC 7.5NW

    Below is a very simple BPC allocation routine I wrote.  The data originally sits on a dummy profit center and needs to be allocated to all itu2019s relevant profit centers. These relevant profit centers can be derived from the profit center hierarchy (BPC_ + ID of entity).
    When I hardcode the Profitcenter and the entity, the routine works (as below). But what I really want is that it works variable as in the line that I commented out. Any idea whether this could work (BPC 7.5NW)  ? If not, I am afraid I need to go to ABAP, which is really a pitty
    //ALLOCATION PROCEDURE CONVERSION RATE
    //=====================================
    *RUNALLOCATION
    *FACTOR=1
    *DIM SEBACCOUNT WHAT=CONV_RATE; WHERE=<<<; USING=<<< ; TOTAL=<<<
    //*DIM PROFCENT WHAT=DUMPC; WHERE=BAS(BPC_"%ENTITY_SET%");USING=<<<; TOTAL=<<<
    *DIM PROFCENT WHAT=DUMPC; WHERE=BAS(BPC_OKB);USING=<<<; TOTAL=<<<
    *DIM ENTITY WHAT=OKB; WHERE=<<<; USING=<<< ; TOTAL=<<<
    *ENDALLOCATION
    Thanks
    Nico

    Gersh,
    It works now. I have implemented the below code (ENTITY needed to contain the variable as well). The relationship profitcenter and entity is very important as it derives the relevant profitcenters from the profit center hierarchy (e.g. all profitcenters under the legalentity node).
    //ALLOCATION PROCEDURE CONVERSION RATE
    //=====================================
    *FOR %ENT% = %ENTITY_SET%
    *RUNALLOCATION
    *FACTOR=1
    *DIM SEBACCOUNT WHAT=CONV_RATE; WHERE=<<<; USING=<<< ; TOTAL=<<<
    *DIM PROFCENT WHAT=DUMPC; WHERE=BAS(BPC_%ENT%);USING=<<<; TOTAL=<<<
    *DIM CATEGORY WHAT=FCSTCUR; WHERE=<<<; USING=<<< ; TOTAL=<<<
    *DIM ENTITY WHAT=%ENT%; WHERE=<<<; USING=<<<; TOTAL=<<<
    *ENDALLOCATION
    *NEXT
    Thanks
    Nico

  • Error while creating a new Dimension/Model in BPC 10.0 NW

    Hello Experts,
    I am using BPC 10.0 NW system.
    When I try to create new Dimensions or Models I get the following Error Message.
    "Error in Admin module or a component used by Admin module.
    Failed to create SAP NetWeaver BI InfoObject for dimension."
    I am assigned to all the needed task profiles to create Dimensions and Models.
    Please assist me to resolve this issue.
    Thanks & Regards,
    Archana

    Thanks Roberto.
    The error was coming because while creating the user id "SAP_ALL" Profile was not assigned. So I was not able to create Dimensions and models.
    Now the issue is solved.

  • Type Mismatch error while saving a BPC Report using eTools

    Hi,
    Iam getting a 'type mismatch' error when trying to save a BPC Excel  workbook using eTools>Save Dynamic Template >Company>eExcel. I am saving it as an .xlsx file.
    Can anyone please help out and let me know why I am getting this error.
    Thanks
    Arvind

    Hi,
    You need to save the file as .xls extension.

  • Help needed in BPC 10 Member Formula

    Hello Experts,
    We are in BPC 10 NW SP 11.
    Facing below error in report for Ratios hierarchy after
    member formula is built.
    Formulas is related to ratio
    IIF([ACCOUNT_GL].[RE_IREV]=0, NULL, [ACCOUNT_GL].[RE_IAADJ]/[ACCOUNT_GL].[RE_IREV]);SOLVE_ORDER=10
    RE_IREV is Income node
    RE_IAADJ is expense node.
    I have tried formula by removing square brockets for ACCOUNT
    DIM member. Still no success.
    Surprisingly, same formula, same hierarchy works fine in
    another Model.
    I have also compared measures in both the models, both are
    identical.
    Error in the report as below.
    Server message:
    code: UJO_READ_EXCEPTION_018
    severity: error
    description: MDX statement error: Value RE_IREV
    /CPMB/WADNXJI for characteristic /CPMB/WADNXJI unknown
    log id: KoFXP08mHM3X08002fJHZW
    DATAVALUE: Value RE_IREV /CPMB/WADNXJI for characteristic
    /CPMB/WADNXJI unknown
    MDX: WITH  MEMBER
    [Measures].[PERIODIC] AS 'IIF([/CPMB/WADNXJI               
    PARENTH2].[2/CPMB/ACCTYPE]="INC",-[Measures].[/CPMB/SDATA],IIF([/CPMB/WADNXJI                 PARENTH2].[2/CPMB/ACCTYPE]="EXP",[Measures].[/CPMB/SDATA],IIF([/CPMB/WADNXJI               
    PARENTH2].[2/CPMB/ACCTYPE]="AST",([Measures].[/CPMB/SDATA],
    CLOSINGPERIOD([/CPMB/WADBQQD               
    PARENTH1].[LEVEL02])),IIF([/CPMB/WADNXJI                 PARENTH2].[2/CPMB/ACCTYPE]="LEQ",-([Measures].[/CPMB/SDATA],
    CLOSINGPERIOD([/CPMB/WADBQQD               
    PARENTH1].[LEVEL02])),-[Measures].[/CPMB/SDATA]))))' SOLVE_ORDER=3  MEMBER [/CPMB/WADNXJI                 PARENTH2].[RE_ALAE_RATIO] AS
    'IIF([/CPMB/WADNXJI               
    PARENTH2].[RE_IREV                         /CPMB/WADNXJI]=0,
    NULL, [/CPMB/WADNXJI               
    PARENTH2].[RE_IAADJ                      
    /CPMB/WADNXJI]/[/CPMB/WADNXJI                 PARENTH2].[RE_IREV                         /CPMB/WADNXJI])'
    SOLVE_ORDER=10  SELECT NON EMPTY  {[/CPMB/WADBQQD                 PARENTH1].[2013.Q1                         /CPMB/WADBQQD]
    ,[/CPMB/WADBQQD               
    PARENTH1].[2013.Q2                         /CPMB/WADBQQD]
    ,[/CPMB/WADBQQD                 PARENTH1].[2013.Q3                         /CPMB/WADBQQD]
    ,[/CPMB/WADBQQD               
    PARENTH1].[2013.Q4                         /CPMB/WADBQQD]
    ,[/CPMB/WADBQQD               
    PARENTH1].[2013.TOTAL                      /CPMB/WADBQQD] } * {[/CPMB/WADNXJI                 PARENTH2].[RE_ALAE_RATIO]
    ,[/CPMB/WADNXJI               
    PARENTH2].[RE_ALL_RATIOS                   /CPMB/WADNXJI] ,[/CPMB/WADNXJI                 PARENTH2].[RE_COMBINED_RATIO]
    ,[/CPMB/WADNXJI               
    PARENTH2].[RE_EXPCOMM_RATIO] ,[/CPMB/WADNXJI                 PARENTH2].[RE_LOSS_RATIO]
    ,[/CPMB/WADNXJI               
    PARENTH2].[RE_OTHERCOMM_RATIO] ,[/CPMB/WADNXJI                 PARENTH2].[RE_STAT_COMB_RATIO]
    ,[/CPMB/WADNXJI               
    PARENTH2].[RE_STAT_EXP_RATIO] ,[/CPMB/WADNXJI                 PARENTH2].[RE_TOT_EXP_RATIO]
    ,[/CPMB/WADNXJI               
    PARENTH2].[RE_TOT_LOSS_RATIO] ,[/CPMB/WADNXJI                 PARENTH2].[RE_ULAE_RATIO] } ON
    0  from
    [/CPMB/WAMSZKS/!!O/CPMB/WAMSZKS]
    WHERE ( [Measures].[PERIODIC] ,[/CPMB/WAD3OFZ                 PARENTH1].[ACTUAL]
    ,[/CPMB/WAD0VHV               
    PARENTH1].[ALL_CHANNELS                    /CPMB/WAD0VHV] ,[/CPMB/WAD021F                 PARENTH1].[LEGAL                           /CPMB/WAD021F]
    ,[/CPMB/WADME7W                 PARENTH1].[ALL_DATASRC                     /CPMB/WADME7W]
    ,[/CPMB/WAD0DZ0               
    PARENTH1].[FGI                           
    /CPMB/WAD0DZ0] )
    V1:Value RE_IREV /CPMB/WADNXJI for characteristic /CP
    V2:MB/WADNXJI unknown
    V3:
    V4:
    Thanks,
    Senoy

    Hello Vadim,
    Thanks for the reply.
    I am able to process ACCOUNT_GL dimension.
    Also, I am using standard TIME dimension.
    I found that the virtual provider(created by using source of data for my model) too is showing the error, when I place above member formula.
    I am attaching the error messae when I try to do list records in the virtual provider.
    When I remove the member formula, everything is fine
    Thanks

  • Can we enter data in multiple currencies in BPC

    Hi all,
    In BPC, is it possible to enter data in transaction currencies other than in local currency?  For example, if the local currency of an entity is USD, but I need to enter data for the same Accounts in EUR, MYR and SGD as well and not have the system translate the amount in local currency to EUR, MYR and SGD.
    Thanks.

    Hi Tara,
    Thanks for your response.
    There are several reasons why we might need to enter the data in various currencies other than the local currency.
    Firstly, like you have mentioned, we need to enter the local as well as the translated currency amounts for accounts that have to be translated at historical rates.  Examples of such accounts will be equity account as you have pointed out.  If I understand you correctly, you are saying that it is possible to enter an amount in translated currency in addition to entering the amount in local currency?
    Secondly, due to requirements of a relatively new accounting standard, companies need to quantify the sensitivity of any exposures to a foreign currency to foreign exchange rates changes. 
    For example, the local currency Entity A is USD and it has a bank deposit in SGD 200.  If the exchange rate at report date is USD 1 to SGD 2, the SGD bank deposit will be translated and reported as USD 100.  Accounting standard requires the company to quantify how much the company will stand to gain or lose if the foreign exchange goes up by 10% or goes down by 10%.
    Thirdly, accounting standard also dictates that company discloses exposures to all currencies for financial instruments not denominated in the functional currency of the entity.
    Regards

  • Not able to refresh data in Xcelsius from BPC

    Hi,
    I have created a simple xcelsius dashboard with refresh button and data grid.
    When I click reload in the preview mode am getting the log on screen where I am trying to connect to the address  http://servername in the EPM connection.
    But I am not able to log on with BPC user id and password.
    am using BPC MS 7.5
    please give me your expert advice.
    thanks,
    Bala
    Edited by: Bala on Jun 15, 2011 3:08 PM

    Hi Bala,
    Please review the How To Guide for this topic (note that this is for BPC 7.5 NetWeaver):
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/8034121d-8419-2e10-229a-99ec678b64c5
    Regards,
    Zane

  • SAP Server Manager Error after BPC installation on domain controller

    Hi, I have installed BPC on a domain controller with windows 2003 server (english version). When I launch diagnostic in the "SAP Server Manager"  I have the following error message " Current user Name does not have permission for Adminitrators group" . I think that the application it's taking the local user (the diagnistic show that de current user is "server name\user name" instead of "domain name\user name" but I login with the domain Administrator ( this server is a domain controller don't have local users).
    Thanks

    Hi
    I have the same issue that you had.
    "I have installed BPC on a domain controller with windows 2003 server (english version). When I launch diagnostic in the "SAP Server Manager" I have the following error message " Current user Name does not have permission for Adminitrators group" . The application it's taking the local user (the diagnistic show that de current user is "server name\user name" instead of "domain name\user name" but I login with the domain Administrator ( this server is a domain controller don't have local users)."
    Can you please let me know how you solved this ?
    thanks & regards
    Lokesh

  • Not able to see the result in particular column of BPC report

    Dear All,
    I have problem in one of the BPC report where I am not able to see the result into one column but rest of the users are able to see the result for same column in same report without any issues.
    Generally, I used this report frequently but having such problem from last few days. Excel has created any logs which I need to clear? Please advice.
    Request your help to resolve such problem please.
    If you need any information, please let me know.
    Thank You
    Kind Regards
    Anukul

    Hello Anukul,
    In the report what type of data you are trying to check in that column. can you please brief about report.
    And also please check the excel cell format (right click and check it is a numeric or character), which may help to resolve this issue.
    Regards,
    Rajesh.K

  • BPC 7.5 Unable to add user

    Hi All,
    After installation of SAP BPC 7.5 for Netweaver I am facing an issue while adding a new user. I am getting the following error whenever I click on 'Add new user' in BPC:
    "Could not find function module UJE_API_GET_ALL_TEAMS_DATA"
    I have checked in SE37 and UJE_API_GET_ALL_TEAMS_DATA does not exist. What should I do to resolve this error?
    Thanks in advance
    Regards
    Abhik Ray

    Hi Abhik,
    Have you verified that your Netweaver BPC (ABAP) component, .NET component, and client component are all on the same support package level? It sounds like your .NET/Web server might be on a different level than the ABAP component.
    Ethan

  • How to collect the BPC parameters into a transport

    Hi All
    We are in process of transporting out environment for the first time. How are we going to collect all the entries of the BPC parameters in a transport request.
    I want to collect all the entries of the UJ0_PARAM_APP table to a transport request.  is this we need to do or It has to be manually done when the system is installed in higher environments.
    Please advise.
    Thanks in advance
    AK

    Hi AK,
    First of all, not all BPC parameters are transportable. Main reason is that they don't always have to have same value across the landscape. For example, you might want having LOG and STATS set to ON in Dev, but not in Prod. Another reason is that some of them will be generated during first write-back.
    Most of the parameters are included in transport if you check Configuration check mark in BPC transport collection.
    If you still have some parameters that didn't come over you can manually include them in the transport as Type "Table Entry".
    Regards,
    Gersh

  • Unable to wirte data in BPC NW

    Hi
    I get the following error when trying to wirte data to my RATE application, in an input schedule or running a copy data package (from one category to another)
    Could not perform write (NOT_TRANSACTIONAL)
    Any suggestions why and how to fix it.
    Jesper

    Hi Jesper -
    Please logon into the Netweaver backend system and run tcode RSA1.  Find the BPC cube associated with your BPC application.  Right Click on the cube and select "change real time load behavior".  Select the radio button corresponding to "Real time data target can be planned, Loading not allowed".
    You should be able to successfully save data from a BPC input template.
    Regards,
    Sheldon.

Maybe you are looking for

  • TRANSFERRING IMAGES FROM OTHER SOFTWARE

    All of the images downloaded onto my computer (which is running Windows XP) have been catalogued and tagged in the software that came with my camera - HP Photosmart Essential Version 2.01 and HP Photo + Imaging. (There are later versions of HP Photos

  • Carlo Scala rider Q2: problems with iPhone 3G under IPhone OS 3.O ?

    Hi, My Carlo scala rider Q2 Headset was working fine with my iPhone 3G, until this latter was upgraded to iPhone 3.0 OS. Since that day, the microphone of my headset is no more active and I've check it was the same with a brand-new Carlo Scala Rider

  • Condition in Select Query

    Hi,Please help to get the output. Thanks. create table #Real (R1 numeric, R2 numeric, R3 char(10), R4 numeric, R5 char(10)) Insert into #real values (111,900,'PN-UFT',10, 'PN')  --R2 and R3 are same for this group Insert into #real values (112,900,'P

  • ORA- 12154 Error: while php connect to oracle?

    While I use OCILogon connect to Oracle9i,show error message as follow: Warning: ociopen_server: Error while trying to retrieve text for error ORA-12154 in /var/www/html/inc/sev.inc.php on line 57 most of people think of its tnsname' problem,but I mod

  • I can't isntall the weblogic for solarsi x86

    when I input the command :sh weblogic600sp2.bin; the system display some error messages: error:can't find libjava.so. pls tell me how to setup the environment for isntallation weblogic. thanks