I need lookup syntax to run the logic in BPC NW7.5

Hi,
I am doing Migration project from BPC MS7.0 to BPC NW7.5. In this I faced one problem.
I write one Script logic using Lookup syntax. Here one error message displayed when I validate the logic "Invalid Lookup strecture: Invalid application name".I am giving the right name of the application.
Please find attached logic,Let me know is there any error syntatically. But it is working in the MS version.
Please correct the code and let me know any prerequisites to run the Lookup syntax.
*Lookup Staff_Additions
*DIM Salary="Salary_redis"     
*DIM Category="Budget"     
*DIM Client_Group="1010"     
*DIM DataSrc="Input"     
*DIM Intco="Non_Interco"     
*DIM RptCurrency="LC"     
*DIM Time="2011.MAR"
*DIM Account="41000"
*ENDLOOKUP
*When Category.ID
*Is = "Budget"
*WHEN INTCO.ID
*Is = "NON_INTERCO"
*When JOB_TITLE.ID
*Is = "NO_JOBTITLE"
*When SALARY.ID
*Is = "SALARY_REDIS"
*When RptCurrency
*Is = "LC"
*When DATASRC
*Is = "INPUT"
REC(Expression=ROUND(.07692 Lookup(STAFF_ADDITIONS),0),Time="2010.APR",SALARY="SALARY_MO")
*ENDWHEN
*ENDWHEN
*ENDWHEN
*ENDWHEN
*ENDWHEN
*ENDWHEN
*COMMIT

Hi,
I think your question got answered when you asked it the first time:
Re: There is an error in the process of validating the lookup function in NW
Try to apply these ...
Kind regards
Matthias

Similar Messages

  • I have purchased a mac mini only to find I am unable to run Logic pro 9 , is there any way this can be achieved? It has been suggested that I partition the drive and install a copy of an older operating system to run the Logic Pro, is this feasible?

    I have purchased a mac mini only to find I am unable to run Logic pro 9 , is there any way this can be achieved? It has been suggested that I partition the drive and install a copy of an older operating system to run the Logic Pro, is this feasible?

    BDAqua wrote:
    ....but some other new Macs will boot frome a clone of 10.6.8...
    Only with a whole lot of effort and instability.  As the new Minis have
    hardware (HD4000, USB 3.0, etc.) that is totally unsupported in old OSes.
    The only option would be to see if it would work by installing in a virtual machine
    running 10.6.8.  I'm sure there will be some performance hit but whether it would
    be enough to be unusable is the question.

  • I have logic pro studio 8 and the upgrade, however it will not upload on my mac book pro. It says i need a product key for the logic 9 and it come with one.

    I have logic pro studio 8 and the upgrade (logic pro 9) and it will not load up to my new mac book pro.  Its asking for a product key for the logic pro 9 upgrade and there wasn't one in the box.  i need some help

    Contact AppleCare... Explain you are a Logic User and you should be transfered to a Product Specialist to assist you with your Issue.

  • Need a Help to Run the EJB client

    Hello Friends,
    I'm using EJB3.0. while running my client side bean I got a Exception like this " javax.naming.NameNotFoundException: maheshwaran.count not bound." I'm new to EJB so i couldn't find specifically what is the mistake in my files.
    I created the following files. It are listed below
    FileName: count.java
    "package maheshwaran;
    public interface count {
    public int count();
    public void set(int val);
    public void remove();
    FileName2 : countBean.java
    "package maheshwaran;
    import javax.ejb.*;
    import javax.interceptor.Interceptors;
    @Stateful
    @Remote(count.class)
    @Interceptors(countCallBacks.class)
    public class countBean implements count{
    private int val;
    public int count(){
    System.out.println("count()");
    return ++val;
    public void set(int val){
    this.val=val;
    System.out.println("set()");
    @Remove
    public void remove(){
    System.out.println("remove()");
    FileName3: countCallBacks.java
    " package maheshwaran;
    import javax.annotation.PostConstruct;
    import javax.annotation.PreDestroy;
    import javax.ejb.*;
    import javax.interceptor.InvocationContext;
    public class countCallBacks {
    @PostConstruct
    public void construct(InvocationContext ctx){
    System.out.println("cb:construct()");
    @PostActivate
    public void activate(InvocationContext ctx){
    System.out.println("cb:activate()");
    @PrePassivate
    public void passivate(InvocationContext ctx){
    System.out.println("cb:passivate()");
    @PreDestroy
    public void destroy(){
    System.out.println("cb:destroy()");
    The client side class is following: countClient.java
    "package maheshwaran;
    import javax.naming.*;
    public class countClient {
    public static final int noofClients=3;
    public static void main(String args[]){
    try{
    Context ctx=new InitialContext(System.getProperties());
    count count[]=new count[noofClients];
    int countval=0;
    System.out.println("Instatntiating Beans");
    for(int i=0;i<noofClients;i++){
    count=(count) ctx.lookup(count.class.getName());
    count.set(countval);
    countval=count.count();
    System.out.println(countval);
    Thread.sleep(100);
    System.out.println("Calling count on Beans");
    for(int i=0;i<noofClients;i++){
    countval=count.count();
    System.out.println(countval);
    count.remove();
    Thread.sleep(50);
    }catch(Exception e){e.printStackTrace();}
    The Deployment Descriptor file is following: ejb-jar.xml
    "><?xml version="1.0" encoding="UTF-8?>
    <ejb-jar xmlns="http://java.sun.com/xml/ns/javaee" version="3.0"
    xmlns:xsi="http://www.w3.org/2001/XMLschema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
    http://java.sun.com/xml/ns/javaee/ejb-jar_3_0.xsd">
    <description>Stateful Session Bean Example</description>
    <display-name>Stateful Session Bean Example</display-name>
    <enterprise-beans>
    <session>
    <ejb-name>countBean</ejb-name>
    <business-remote>maheshwaran_dd.count</business-remote>
    </business-remote>
    <ejb-class>maheshwaran_dd.countBean</ejb-class>
    <session-type>Stateful</session-type>
    <transaction-type>Container</transaction-type>
    </session>
    </enterprise-beans>
    <interceptors>
    <interceptor>
    <interceptor-class>maheshwaran_dd.countCallBacks</interceptor-class>
    <post-construct>
    <lifecycle-callback-method>construct</lifecycle-clallback-method>
    </post-construct>
    <post-activate>
    <lifecycle-callback-method>activate</lifecycle-callback-method>
    </post-activate>
    <pre-passivate>
    <lifecycle-callback-method>passivate</lifecycle-callback-method>
    </pre-passivate>
    </interceptor>
    </interceptors>
    <assembly-descriptor>
    <interceptor-binding>
    <ejb-name>countBean</ejb-name>
    <interceptor-class>maheshwaran_dd.countCallBacks</interceptor-class>
    </interceptor-binding>
    </assembly-descriptor>
    </ejb-jar> "
    please help me to rectify this problem.
    Thanks & regards,
    Maheshwaran Devaraj

    Hi,
    user586 wrote:
    i want to write the query to select the coupon whose Expiry date in the table is NOT within 30 days.If you mean expirationdate (datatype: DATE) is not within 30 days (past or future) of run time, then:
    SELECT  coupon          -- or whatever columns you want
    FROM    table_x
    WHERE   expirationdate  NOT BETWEEN  SYSDATE - 30
                                AND      SYSDATE + 30
    ;

  • Things needed to do before running the Answer File of the forest

    All of the following need or will be generated from the Answer File of the forest "mysite.com" but I am getting an error on NTDS. Working in Windows Server 2008 R2 SP1. 
    I have a file for NTDS without a file extension but it does not work:
    BUILTIN\Users: Special Access [RX]
    BUILTIN\Power Users: Special Access [RWXD]
    BUILTIN\Administrators: Special Access [A]
    NT AUTHORITY\SYSTEM: Special Access [A]
    CREATOR OWNER: Special Access [A]
    Also one for Drop without a file extension:
    BUILTIN\Users: Special Access [RX]
    BUILTIN\Power Users: Special Access [RWXD]
    BUILTIN\Administrators: Special Access [A]
    NT AUTHORITY\SYSTEM: Special Access [A]
    CREATOR OWNER: Special Access [A]
    Answer File of the forest:
    [DCInstall]
    ReplicaOrNewDomain="Domain"
    NewDomain=Forest
    NewDomainDNSName="mysite.com"
    ForestLevel="4"
    DomainNetbiosName="MYSITE"
    DomainLevel="4"
    InstallDNS="Yes"
    ConfirmGc="Yes"
    CreateDNSDelegation="No"
    DatabasePath="C:\Windows\NTDS"
    LogPath="C:\Windows\NTDS"
    SYSVOLPath="C:\Windows\SYSVOL"
    SafeModeAdminPassword="pass1"
    RebootOnCompletion="Yes
    The rest of the needed directories
    C:\Windows\NTDS.  File extension?
    C:\Windows\NTDS\Drop.  File extension?
    C:\Windows\System32\NTDS.dit
    C:\Windows\SYSVOL\
    C:\Windows\SYSVOL\domain\
    C:\Windows\SYSVOL\domain\DfsrPrivate\
    C:\Windows\SYSVOL\domain\Policies\
    C:\Windows\SYSVOL\domain\scripts\
    C:\Windows\SYSVOL\staging\
    C:\Windows\SYSVOL\staging\domain
    C:\Windows\SYSVOL\staging areas\
    C:\Windows\SYSVOL\staging areas\mysite.com\
    C:\Windows\SYSVOL\sysvol\
    C:\Windows\SYSVOL\sysvol\mysite.com\

    Yes. The Drop folder is not really used unless SMTP based replication is used.
    Enfo Zipper
    Christoffer Andersson – Principal Advisor
    http://blogs.chrisse.se - Directory Services Blog

  • How do we backup the Appsets in BPC NW7.5

    Hi Experts,
    I know that BPC data will be stored on the Database but I am confused that how to backup the Appsets and the data on the .NET Server.
    If possible can anyone please share the views on this.
    Thanks,
    Bobby

    Hi,
    Sorry but right now this functionality is not available in BPC 7.5 NW current version. But we can expect in future versions.
    Thanks
    Edited by: Sushma Sandepogu on Jun 23, 2010 3:36 PM

  • Cron job help- Need to run the Autobuddy command every night...

    I have not written anything in the form of a Unix script for YEARS and YEARS. Our XServe was built in Advanced mode, currently running 10.5.4 Server. On this box, we are running Wiki and iChat. Since we built this box as an Advanced box the "Autobuddy" option was not available.
    I have since enabled it at the command line, but I am told by Apple that there still needs to be a command run after every time a user logs in if you want others to Autobuddy. That command is this:
    "sudo /usr/bin/jabber_autobuddy -m"
    Now I think this would be pretty easy to setup as an automatic cron script, but like I said, I have not written something like this in forever. Not to mention, I am not 100% sure what needs to happen since running the script with an sudo command will prompt for the root password.
    I was wondering if anyone would be able to help me write the script up, and give me some instructions on how to install it. I just want it run everyday, midnight is fine, I don't really care. All I know is that we have a dept of 150 people, and it grows and shrinks all the time. They can deal with a new user not being seen for 24-48 hours, I just want to get this automated.
    Any helps would be GREATLY appreciated!
    Thanks
    Tom

    If you want to keep it simple try [CronniX|http://www.abstracture.de/projects-en/cronnix] a graphical tool for setting up CRON jobs on OSX. Whilst I have not actually done an autobuuddy in this way, I cannot see any reason why it will not run as a Cron Job.
    The proper way ideally would be to use the launchd service.
    Something like this should work:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
    <plist version="1.0">
    <dict>
    <key>Label</key>
    <string>org.jabber.dailyautobuddy</string>
    <key>ProgramArguments</key>
    <array>
    <string>/usr/bin/jabber_autobuddy</string>
    <string>-m</string>
    </array>
    <key>LowPriorityIO</key>
    <true/>
    <key><UserName></key>
    <string>admin</string>
    <key>StartCalendarInterval</key>
    <dict>
    <key>Hour</key>
    <integer>0</integer>
    <key>Minute</key>
    <integer>05</integer>
    </dict>
    </dict>
    </plist>
    (not sure why, but tabs are not showing up, making this hard to read)
    Message was edited by: Tim Harris

  • Change of sign when running the data management package

    Hi All,
    I have written a script logic for copying my Budget member under category dimension to say another member say "XYZ" under category dimension and this is for my Member Sales under ACcount dimension having acctype as inc.
    When i run the logic thru default i am getting the correct value. however if i run the same thru data manager package- my sign changes.
    Eg. 100000 is copied as -100000 and -50000 is copied as 50000.
    Please help me out
    Regards
    Navin

    Hi Navin,
    CREDITPOSITIVE= YES | NO
    Default: YES
    If No, all amounts referring to an ACCOUNT type (LEQ, INC) will have their signs reversed.
    Since you are referring to the member account sales as INC the default logic considers the sign as reversed.
    Please look at this link which helps you to understand
    Significance of Account Type EXP,LEQ,INC,AST in BPC- Need some valid reason
    Hope this helps.
    Regards,
    Sanjeev

  • Run Script Logic/Package from a different Application

    Hi Experts,
    I have a scenario here that I need to run a package from a different application. For example, I'm in Finance application and I need to run a package which is in the LegalApp application, is it possible to call that package or perhaps run the logic it was calling without having switch back to LegalApp.
    Thanks,
    Marvin

    To run a package that runs logic on another application, you could copy a package such as "Default Formulas" and put the name of the target application in the new package's name.  Then go to Modify Package --> Advanced.  Edit the package to set the application as below.  The LegalApp (for example) is set on the third Task command.  Default logic is called on fifth.
    PROMPT(RADIOBUTTON,%CHECKLCK%,"Select whether to check work status settings when running logic.",1,{"Yes, check for work status settings before running logic","No, do not check work status settings"},{"1","0"})
    PROMPT(SELECTINPUT,,,,%CATEGORY_DIM%%ENTITY_DIM%%TIME_DIM%)
    TASK(Execute formulas,USER,%USER%)
    TASK(Execute formulas,APPSET,%APPSET%)
    TASK(Execute formulas,APP,LegalApp)
    TASK(Execute formulas,SELECTION,%SELECTIONFILE%)
    TASK(Execute formulas,LOGICFILE,)
    TASK(Execute formulas,CHECKLCK,%CHECKLCK%)

  • How to run the Servlet program?

    hi, all, I am new to servlet, and I want to know how to run the servlet program. I got the TomCat and Java JDK install in my computer, something else I need for create and run the servlet program?

    no that is all u need to run servlets. u can try few of the servlets that come with tomcat

  • Why does the logic pro 9 upgrade not work on OS X 10.8.4 ?

    Just decided to upgrade to logic 9 from my 8 (an upgrade from 6!) but I also have Protools on my computer (dont hate). Tools 11 needs 10.8.4 but the logic 9 update refuses to work with 10.8.4 ...BTW pro 8 is still working well on my system, but 9 has some additional cool featurs etc
    Additionally an upate to Logic X loses all my 32bit plugins so...I am  staying with 8/9 for a while ..any help to get 9 functional??

    It is the installer that's quitting, or Logic Pro when you try to launch it? If the latter, download all the available updates, either through Software Update or the standalone downloaders;
    http://support.apple.com/downloads/#logic%20pro%209
    and apply them before attempting to launch Logic. That might work better.
    Regards.

  • Need to run the report in different languages

    Hi All,
    i need to run the Bex report in different languages (SAP-BI). to maintain the Language plase give me the tables name.
    To maintain Query Description :Table?
    To maintain Desription of Key fig and CKF and RKF : Tables
    Regards
    Srinu

    thanks for replying, but i tried this option too, it did not work for me, neither isnull nor coalesce. I mean, the solution work for single value but when i pass multiple values then separated by a comma then it doesn't work and shows me an error like "Incorrect Syntax ','". I am using SQL server as DB and bip is 10.1.3.4.1
    also please share the SR number, so i can also check the same.
    can there be any other work around to this?
    thanks,
    ronny

  • How 2 Set the logic for report 2 run 1st of everymonth......

    Hi Experts,
    i ve developd a HR-ABAP report in that Some part of code will Mon-Fri, Excluding Public holidays and sat & sundays...( i.e no public holidays and no sat & sundays)
       and some part of should Run on 1st of everymonth.... but 2 parts of code should be in same report..
    How can set the logic to run the report respective times....
    Thanks in Advance....
    sudeer.

    you can code this but need some good expertise on fm's  , date handling techniques and subroutine call coding.
    1.
    to make the code run only on 1st of every month
    capture the rundate of ur prog .. take value of  sy-datum
    ex.. 01.xx.yyyy
    or date std will be yyyymmdd so check for dd = 01 ..
    so per logic first two chars show that its first of any month in any year ..
    if yes
    execute the logic for the first of every month ..
    endif.
    2.
    where the code needs to be run on mon-fri and not on public holidays / sun / sat ..
    first fetch the day based on date .. like mon or tue or wed .. except sat and sun..
    second check whether if m-t-w-th-fr if any of them is  a holiday or not
    u need to check the date in the calender list like tholi thoc and .. to check whether that is a holiday or not ..
    coming to sat and sundays .. u need to check the day for date using function modules and build the logic ...
    br,
    vijay..

  • Run the monitor on an iMac with a dead logic board?

    Can a Mac mini be used to run the monitor on an iMac with a dead logic board?

    Apparently my iMac was just dirty. When the tech tried to start it today it started even though when the tech tried to start it yesterday nothing happened. So no need to fix anything.

  • My 2011 MacBook Pro does not start and stop after the apple appear, they said that the problem is a video problem and need to change the logic board. Cost almost same to buy a new one. Somebody have the same problem?

    I have a MacBook Pro early 2011. Does not start. After the apple show, a blank screen appear. The service said that the problem is with the video plaquue in the logic board. Need to change. Cost lmmost the same than a new MacBook Pro. Somebody has the same problem? What we can do?

    I hate to break this to you, but life isn't fair. If your job is that critically in need of a computer, then you should have a spare to use for just this kind of situation or have your employer provide you with a computer to use.
    Computers break down, just like cars. If your car breaks down do you curse the car maker or get it fixed? Surely, you paid more for your car than the computer.
    This is reality. Best get used to it because it won't get any better.

Maybe you are looking for