Unknown Dimension Name in Keyword "0):    LOOKUP function

Hi,
I am doing Migration project. from BPC MS to NW 7.5 In this I have vallidated the logics in the NW version as per MS version.
I got only one error when I validate the LOOKUP function in the NW under the same application(Staff_Additions).
The error message: "Unknown Dimension Name in Keyword "0):"
Could you please help me in this and please find the code below.
*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
*IS = "BUDGET"
*WHEN INTCO
*IS = "Non_InterCo"
*WHEN JOB_TITLE.ID
*IS = "No_JobTitle"
*WHEN SALARY
*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
Thanks and Regards,
Krishna.

Hi,
My intension is multiple with  .06792 and make it round figure and store the value in 2010.MAR.
I have modified this logic in the NW Version,It shown below.
*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
*IS = "BUDGET"
*WHEN INTCO
*IS = "Non_InterCo"
*WHEN JOB_TITLE
*IS = "No_JobTitle"
*WHEN SALARY
*IS = "Salary_Redis"
*WHEN RPTCURRENCY
*IS = "LC"
*WHEN DATASRC
*IS = "INPUT"
REC(EXPRESSION=.07692(Staff_Additions),TIME=2010.APR,SALARY=Salary_MO)
*ENDWHEN
*ENDWHEN
*ENDWHEN
*ENDWHEN
*ENDWHEN
*ENDWHEN
*COMMIT
Let me know is this the right procedure to get the right result.
Could you please help me in this.
Thanks and Regards,
Krishna.

Similar Messages

  • OBIEEReports called through Office Plugin showing incorrect dimension names

    Hi
    I have a few reports created in Answers which are being displayed perfectly fine in OBIEE Portal. But when I am trying to fetch the same reports in a Power Point or an Excel using MS Office Plugin, I get saw_0, saw_1, ... in place of actual dimension names in some reports. Though it works fine in some other reports. I can see no difference in the properties or any other setting of the reports which are working fine and which are not.
    Any help will be highly appreciated.

    Looks like there is a bug in Office Plugin of OBIEE wherein if there is an underscore (_) in name of the dimension, Office Plugin ignores the part of the name which is before the underscore and thats why assigns the default names saw_0, saw_1 etc. to unknown dimension names.
    The problem doesn't come for reports which are coming out of those dimensions which are either having single word names or multiple word names with spaces (because in case of spaces, the OBIEE engine automatically assigns double quotes to the name of the dimension and makes it recognisable to Office plugin)

  • Is there a way of getting LOOKUP function to return the address of a cell rather than the value?

    Hi
    I am wondering if there is a way of converting the value found in a LOOKUP function into a reference for the cell in question.
    I have constructed the following formula:
    =OFFSET(LOOKUP(A2,August :: $A),2,2)
    In an attempt to return the value of a cell which is two rows and two columns away from the cell returned by a LOOKUP function.
    But I am getting the error Argument 1 of OFFSET expects a reference but found "Name."
    Could someone advise?
    Thanks,
    Nick

    nick_harambee wrote:
    Hi
    I am wondering if there is a way of converting the value found in a LOOKUP function into a reference for the cell in question.
    I have constructed the following formula:
    =OFFSET(LOOKUP(A2,August :: $A),2,2)
    In an attempt to return the value of a cell which is two rows and two columns away from the cell returned by a LOOKUP function.
    But I am getting the error Argument 1 of OFFSET expects a reference but found "Name."
    Could someone advise?
    Thanks,
    Nick
    Nick,
    To find the row that a searched-for value is in, use MATCH.
    Jerry

  • USING LOOKUP FUNCTION IN CHART

    Good Afternoon,
    I have created a simple chart in SSRS that is sourced from Analysis Services. The Grouping is by Month and the values are just attendances per month.
    I want to add a 2nd series to this chart using a stored procedure in SQL.
    Both share the field Month and could be linked on that field.
    Does anybody know how I can use the lookup function to add this field to my chart.
    Thank you

    You can lookup by month. In the chart values, add a new series by clicking the Plus icon and choosing Expression. You expression should look something like:
    =Lookup( Fields!AS_Month.Value, Fields!SP_Month.Value, Fields!SP_Value.Value, "SP_Dataset" )
    The abbreviation AS refers to your analysis services dataset, while the SP refers to your dataset using the stored procedure. The expression matches each month used in the chart (the category group) with the month in the other data set, and retrieves the
    SP_Value field to show on the chart.
    If the month numbers/names match exactly, then it will work fine.
    Regards,
    Andrew Borg Cardona

  • Group by Lookup function result

    I have a report that uses two datasets.
    The first one looks like this. It's the time members have recorded under a particular job title:
    ParentId TaskName ObjectiveId MemberId JobTitle TimeSpent Status
    3174ED19 TEST 3 42AA79F6 23179C0F NULL 0.00 01
    3174ED19 TEST 3 42AA79F6 596CA495 JobTitle1 9.00 01
    3174ED19 TEST 1 AEE18C46 23179C0F NULL 0.00 01
    3174ED19 TEST 1 AEE18C46 596CA495 JobTitle2 3.00 01
    3174ED19 TEST 2 AEE18C46 23179C0F NULL 0.00 01
    3174ED19 TEST 2 AEE18C46 596CA495 6.00 01
    I need to show the records which have JobTitle == null with a particular Job Title, the current one they have in Active Directory. So I use another dataset from a WCF service:
    MemberId Name JobTitle
    23179C0F Member1 JobTitle1
    Then I use a lookup function to show the correct Job Title:
    =IIF(IsNothing(Fields!JobTitle.Value) OR Fields!JobTitle.Value = "",lookup(Fields!MemberId.Value,Fields!MemberId.Value,Fields!JobTitle.Value,"Members"),Fields!JobTitle.Value)
    This works ok. The problem is that I need the data to be grouped by several fields, including the Job Title. It seems grouping happens before the lookup function is executed, so instead of grouping the NULL values along with the fields that contains the actual
    values, I end up with two groups with the same Job Title, one containing the null values and another with the actual values.
    Is there any workaround for this?
    Thanks.

    Hi EXR88,
    Per my understanding that you have add some row group in the report to group the result which include the JobTitle from the table1 and also group by the field which result comes from the lookup funtion, now the issue is the group by the Lookup function result
    isn't correct, right?
    I have tested on my local envoronment and can't reproduce the issue, please find the details information below to make sure you have done the correct setting:
    I tried to create the two tables like below:
    Table1:
     Have the same recores as you provided above.
    Table2:
    MemberId    Name      JobTitle
    23179C0F   Member1    JobTitle1
    596CA495   Member1      NULL
    After adding the LookUP function, i got the report like below:
    I add two row group base on the JobTitle(JobTitle) and the Lookup functiuon result(Lookupfunctiongroup), the Lookupfunctiongroup row group is the child group of the JobTitle like below, please make sure you have add the expression with the lookupfunction
    in the group on:
    If i have some misunderstanding, please try to provide the expectted group by  result you want to get and also the currectly result you have got.
    Any problem, please feel free to ask.
    Regards,
    Vicky Liu
    Vicky Liu
    TechNet Community Support

  • Error: sql.SQLError: [-4008] (at 1) Unknown user name/password combination

    Hello Experts,
    After a Test refresh for SCM system, we restored Livecache. The database has been changed and starts using database manager, during registration (Register LCApps) it gives the following error:
    Logical Command: DBMRFC
    Parameter: exec_lcinit register
    Name and Server     : LCQ - dusepierp12
    DBMRFC Function     : DBM_EXECUTE
    Command             : exec_lcinit register
    Error               : DBM Error
    Return Code         :     -24964
    Error Message       : ERR_EXECUTE: error in program execution#
    0,sap\lcinit LCQ  register -uDBM , -uDBA , -uSQL ,
    liveCache LCQ (register)
    The liveCache state is ONLINE
    DBMServer 7.6.04   Build 009-123-182-193
    Creating liveCache application procedures
    ERROR : liveCache LCQ not registered (see "s:\sapdb\data\wrk\LCQ\lcinit.log").
    START *****************************
    liveCache LCQ (register)
    Thu 07/30/2009
    10:26 PM
    installation path = S:\sapdb\LCQ\db
    OK
    DBMServer 7.6.04   Build 009-123-182-193
    Creating liveCache application procedures
    ERR
    -24964,ERR_EXECUTE: error in program execution
    1,""S:\sapdb\LCQ\db\bin\x_python" "S:\sapdb\LCQ\db\env\lapps.py" -R "S:\sapdb\LCQ\db" -d LCQ -u DBADMIN,*"
    Traceback----
    Error----
    sql.SQLError: [-4008] (at 1) Unknown user name/password combination
    Traceback (most recent call last):
      File "S:\sapdb\LCQ\db\env\lapps.py", line 38, in ?
        connectAndInstall (install, install.__doc__)
      File "S:\sapdb\LCQ\db\env\installib.py", line 398, in connectAndInstall
        session = connect (options)
      File "S:\sapdb\LCQ\db\env\installib.py", line 350, in connect
        alterUserNotExclusive(options)
      File "S:\sapdb\LCQ\db\env\installib.py", line 338, in alterUserNotExclusive
        session.release()
    AttributeError: 'NoneType' object has no attribute 'release'
    ERROR : liveCache LCQ not registered
    Thu 07/30/2009
    10:26 PM
    END ******************************
    Many Thanks,
    TIA,
    Nisch

    Nischal Mahakal wrote:>
    > Hello Experts,
    >
    > After a Test refresh for SCM system, we restored Livecache. The database has been changed and starts using database manager, during registration (Register LCApps) it gives the following error:
    > -24964,ERR_EXECUTE: error in program execution
    > 1,""S:\sapdb\LCQ\db\bin\x_python" "S:\sapdb\LCQ\db\env\lapps.py" -R "S:\sapdb\LCQ\db" -d LCQ -u DBADMIN,*"
    > -
    Traceback----
    Hi there,
    looks like you entered "DBADMIN" when you created the liveCache instance in DBMGUI as the DBM Operator.
    For SAP installations, this user is always named "CONTROL".
    So, drop the instance again, recreate it with "CONTROL" and re-do the recovery of the liveCache backup.
    regards,
    Lars

  • "Logon failure: unknown user name or bad password" even with correct Credentials

    I have networked PCs before many times successfully, so this is not my first time trying to network PCs in a home environment. Though I’m wondering if Windows 8.1 is part of the problem. 
    I would have thought that for sure, until one of the new laptops running W8.1 would not connect to any of the other three PCs/Laptops running W8.1. Yet these other three W8.1 PCs/Laptops CAN connect to this laptop. Then it gets a little more interesting:
    this same laptop that couldn’t connect to those three W8.1 PCs/Laptops, CAN connect to a Windows 7 desktop, and a XP Laptop, and those two can also connect back to it without issue. It’s almost like my network is divided in half, and only half can talk to
    each other. But then when I thought it couldn’t get any more interesting, I realized the first three W8.1 PCs/Laptops can talk to the others, it’s just that the others (W8.1 Laptop, W7 Desktop, XP Laptop) can’t talk back to them without getting the error,
    "Logon failure: unknown user name or bad password” even though the username and password are 100% correct.
    I don’t fully understand this error, because on the surface, it’s just WRONG! 
    My username and password are correct, but it appears something somewhere is interfering or hijacking the authentication process. Three of the computers (laptops) are brand new, just purchased last week and setup this week. The HostPC is also fairly new,
    just purchased last month.
    I am not using a HomeGroup, and have removed all computers that were part of a HomeGroup. I have enabled file sharing and network discovery and enabled “Use user accounts and passwords to connect to other computers” on all PCs.
    I have DSL and am using the wireless modem provided by my ISP which has router functionality built into it. It is a Sagemcom Model: F@ST 1704N.
    All computers are connected wirelessly. Time is correct on all PCs. I cannot use Group Policy, since they're all Standard or Home edition. DHCP is enabled and all computers are on the same subnet, using the 192.168.254.x range of ip addresses.
    The six computers are as follows: (I figured this may make is easier to visualize the layout)
    HostPC: HP Desktop W8.1           
    PC Name: DrsBlend
    U/N: DrsBlend  p/w: 123456 (not showing my real password)
    PC1: HP Laptop W8.1
    PC Name: DrsBlend-1
    U/N: DrsBlend    P/W: 123456
    PC2: HP Laptop W8.1
    PC Name: DrsBlend-2
    U/N: DrsBlend    P/W: 123456
    PC3: HP Laptop W8.1
    PC Name: DrsBlend-3
    U/N: DrsBlend    P/W: 123456
    PC4: HP Desktop W7 SP1
    PC Name: DrsBlend-4
    U/N: DrsBlend    P/W: 123456
    PC5: Dell Laptop XP SP3
    PC Name: DrsBlend-5
    U/N: DrsBlend    P/W: 123456
    Every PC stated above has the same user name and password and is logged-in with the username, DrsBlend and the password 123456. The "Logon failure: unknown user name or bad password” happens when trying to access HostPC, PC1, or PC2 from PC3, PC4, or
    PC5.
    The HostPC can see and connect to all the PCs, but only PC1 and PC2 can talk back or access the HostPC. 
    It’s like the HostPC and PC1, and PC2 are in their own little clique, and can talk back and forth to each other. Those three PCs can also talk to PC3, PC4, and PC5 as well, but PC3, PC4, and PC5 cannot talk back to them (HostPC, PC1, PC2).
    Profile corruption? I would have entertained that thought, but the fact the first three PCs can access and talk to one another kind of defeats that idea, and the fact the PCs were just recently setup.
    Firewall? Disabled, and disabled TrendMicro with no change. With them on/off, the first three PCs can still talk to each other and the rest of the PCs.
    Anyone have any additional suggestions?

    Hi,
    How did you connect to other PCs? Do you use RDP to connect to other PCs? If so, check the version of the RDP, as I know, some low version RDP can't connect to higher Windows like 8.1.
    And could you please tell us the detailed information about how the six PCs connect to the home network?
    Can PC1, PC2, PC3 ping back to host PC, PC1 and PC2?
    You can also run command " rundll32.exe keymgr.dll, KRShowKeyMgr " view the credentials stored in your PC,check whether this issue is related with some old credentials stored in your system.
    Yolanda Zhu
    TechNet Community Support

  • Script to insert file name into keywords field of same file

    Hello,
    search a solution, a Script or another, which writes the file name into keywords field of same file (Metadata: Description/Keywords) in "photoshop", "bridge" or better in "Lightroom" .
    I found this topic from Mike Hale http://www.ps-scripts.com/bb/viewtopic.php?t=1330
    It's possible this script to change this in such a way that it does this:
    "script to insert file name into keywords field of same file"
    Thanks and best greetings
    Wolfgang

    This works in CS2:-
    #target bridge
       if( BridgeTalk.appName == "bridge" ) {
    nameDescription = MenuElement.create("command", "AddName to Description", "at the beginning of Thumbnail");
    nameDescription .onSelect = function () {
         nameToDescription();
    function nameToDescription(){
    var items = app.document.selections;
          for (var i = 0; i < items.length; ++i) {
             var item = items[i];   
    var m = item.synchronousMetadata;
    filenameToDesc(m, item.name.slice(0,-4));
    function filenameToDesc(metadata, Description) {
    var strTmpl = "name2Desc";
    var strUser = Folder.userData.absoluteURI;
    var filTmpl = new File(strUser + "/Adobe/XMP/Metadata Templates/" + strTmpl + ".xmp");
    var fResult = false;
    try
    { if (filTmpl.exists)
    filTmpl.remove();
    fResult = filTmpl.open("w");
    if (fResult) {
    filTmpl.writeln("<x:xmpmeta xmlns:x=\"adobe:ns:meta/\" x:xmptk=\"3.1.2-113\">");
    filTmpl.writeln(" <rdf:RDF xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\">");
    filTmpl.writeln(" <rdf:Description rdf:about=\"\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\">");
    filTmpl.writeln("<dc:description>");
    filTmpl.writeln("<rdf:Alt>");
    filTmpl.writeln("<rdf:li xml:lang=\"x-default\">"+Description+"</rdf:li>");
    filTmpl.writeln("</rdf:Alt>");
    filTmpl.writeln("</dc:description>");
    filTmpl.writeln(" </rdf:Description>");
    filTmpl.writeln(" </rdf:RDF>");
    filTmpl.writeln("</x:xmpmeta>");
    fResult = filTmpl.close();
    metadata.applyMetadataTemplate(strTmpl, "replace");
    filTmpl.remove();
    catch(e)
    { fResult = false; }
    return fResult;

  • There is an error in the process of validating the lookup function in NW

    Hi,
    I got an error in the script logic validation.
    I  write a lookup function and validate the logic, In this one error occurred "Invalid lookup strecture: Invalid appl name"
    The logic code:
    *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
    Could you please send a solution for this as early as possible.
    Thanks and Regards,
    Krishna.

    Hi,
    I think you have confused in your syntax "Model" and "Lookup ID".
    The syntax of Lookup is this:
    *LOOKUP
    *DIM [:]="Value" | [.]
    So when you reference your lookup variable in the *REC statement it should look something like this:
    REC(Expression=ROUND(.07692 Lookup(<LOOKUP ID>),0),Time="2010.APR",SALARY="SALARY_MO")
    whereas now you have:
    REC(Expression=ROUND(.07692 Lookup(<MODEL>),0),Time="2010.APR",SALARY="SALARY_MO")
    HTH
    Matthias

  • Using lookup function but to show multiple returns?

    Okay so I have been talked through how to use a lookup function to show which student in my class has scored the highest grade.  The formula used displays there name in one column and the score they achieved in another column which I have set up in a small seperate table.  However as suggested in my intial lookup function search it was suggested that I would encounter a problem if two students both achieved the same highest score.  However in the results table I have created it only shows one student.  Is it possible to have a function or formula that will simply show the top scores and the students that scored it when they are tied? 
    Thanks
    Marcus

    The easiest way to accomplish this, Marcus, is by simply sorting all rows by grade.  Sure, you can click on the column tab and hit "sort ascending", but I'm guessing you want something a little more dynamic than that.
    So I've set up a class of 20 students and gave them all random grades btwn 40 - 99.  (That's how it was done when I was in high school.  )  I added a third column which takes that grade, multiplies it by 1000, and adds the row number of the student.  This creates a unique identifier based on a possibly-non-unique grade:
    Now it's simply a matter of using the LARGE function to rank these new identifiers, and then using LOOKUP to get the actual grade and name for that identifier.  (Note that the grades changed; changing the focus from one cell to another creates new random values for the grades.)
    The formula for columns b and c for this Ranking table are standard Lookup functions:
    =LOOKUP($A1,Grades :: $C,Grades :: $B) to get the grades  ($A2 for 2nd column, etc.), and
    =LOOKUP($A1,Grades :: $C,Grades :: $A) to get the names.
    I'd suggest hiding these identifier columns.
    Now, to limit this display to the "X" highest grades, I'm going to continue this into another reply.
    Vince

  • Getting Dimension Name or ID using custom JavaScript

    Hi,
    Is there any way to a dimension name or ID using JavaScript.
    I'm trying:
    var cell = getCell(r,c);
    var cellDim = cell.dimensionId
    alert(cell) ==> which is giving me an NULL value
    alert(cellDim) ==>doesn't return anything the code dies before it.
    I also tried:
    var cellDim = getCell(r,c).dimension
    alert(cellDim) ==> which is giving me an undefined value
    Please help... Thanks...

    I don't know what the code is or the functions to use in Javascript, but in VB use this to determine the dimensions' members used in the active cell in Excel:
    Sub DataPointsSub()
    Dim vt As Variant
    Dim cbItems As Variant
    Dim I As Integer
    Dim x As Variant
    Dim ActRange As Range
    Set ActRange = ActiveSheet.UsedRange
    sts = EssVConnect(ActiveSheet.Name, "user", "password", "server", "app", "db")
    hCtx = EssVGetHctxFromSheet(ActiveSheet.Name)
    vt = EssVGetDataPoint(ActiveSheet.Name, ActiveCell, ActRange, False)
    If IsArray(vt) Then
    cbItems = UBound(vt) - LBound(vt) + 1
    MsgBox ("Number of elements = " + str(cbItems))
    For I = LBound(vt) To UBound(vt)
    MsgBox ("Member = " + vt(I))
    Next
    x = EssVFreeDataPoint(vt)
    Else
    MsgBox ("Return Value = " + str(vt))
    End If
    End Sub
    There must be a java equivalent in the api.
    Edited by: dalew7777 on Aug 3, 2010 1:51 PM
    Edited by: dalew7777 on Aug 3, 2010 1:54 PM

  • What's user variable name using Smart View POV function (ex:HypGetActiveMember)?

    Hi,
    We want to use Smart View POV function (ex:HypGetActiveMember) to get the active member of user variables from HFM forms selected into Excel, but we don't know the user variable name in the following paragraph of Smart View developer guide:
    "To uniquely identify the user variable, provide the user variable name rather than the dimension name."
    For example, what's the user variable name of Year dimension? How to get the user variable name?
    Any information would be appreciated. Thank you!

    Hi,
    I guess user variable name is set by users/developers. I am not very clear on your question. If you have defined some variables to select any members from a dimension then it will be in HFM only. In planning we have two kinds of variables User Variables (we set it from Planning Preferences) and Substitution variable (we set it from Essbase Consol in the backend). Without looking into your application it is difficult to say the user variable name. Like for Year the user variables can be "PreviousYear", "CurrentYear", or "NextYear" etc.
    Soumya

  • Master/Detail/Lookup functionality - ApEx and AJAX vs Oracle Forms

    I'd like to build a master detail form with some lookup functionality and have some of the fields automatically populated. I come from an Oracle Forms and PL/SQL background so I was hoping for some guidance in ApEx and Javascript for how to achieve the same effect.
    If you look at the default Sample Application (DEMO_APP), page 29 has the master record and the corresponding details on the same page.
    The functionality I'd like is:
    1) when a new product is chosen from the Product Name select list, I'd like the Unit Price to be populated.
    2) when the Quantity is updated, I'd like
    a) the Extended Price to be recalculated and
    b) the Order Total to be recalculated
    all before submitting the page. This is pretty trivial in Oracle Forms but I've had limited success with ApEx.
    I've been able to achieve 1) in a single record form but not a tabular form using the techniques from Scott's AJAX generator http://htmldb.oracle.com/pls/otn/f?p=33867:2.
    I've been able to achieve 2a) in a tabular form using the techniques from Vikas in this thread Tabular form with Ajax
    I haven't had any luck getting 2b) to work.
    So, is my wish list possible?
    If it is, I'd appreciate some pointers and/or code. I don't speak Javascript but I can copy and paste ;)
    Cheers,
    Bryan.

    Hi Carl,
    Ok, thanks for the tip - take a look at http://htmldb.oracle.com/pls/otn/f?p=24745 login as demo/demo and edit one of the top orders. This will take you to page 29.
    I've changed the 2.0 Sample Application to allow both the unit_price and the quantity to be overtyped. Each column has the 'Element Attributes' property set to onChange="calcTotal(this)" to call the javascript code.
    This recalculates the extended_price (feature 2a above) but the order total (or the report total) is not affected (feature 2b) - how can I change the code to achieve this?
    If I change an existing line item and choose another product from the select list, I'd like the unit_price and the extended_price to change appropriately (feature 1 above) - having to wait until after the form is submitted is not acceptable to my users.
    Thanks for taking the time to look at this - I really appreciate it.
    Cheers,
    Bryan.

  • Unknown parameter name 'ENCRYPTION'

    Hi All,
    I've made a dmp file using expdp for a table containing encrypted coulums.
    But when I tried to use ENCRYPTION parameter to enable encryption of data in dump file sets the command pormpt gives this error:
    unknown parameter name 'ENCRYPTION'
    My DB Version: 10.2.1.0.1

    Dev. Musbah wrote:
    It stills giving the same error: unknown parameter name 'ENCRYPTION'
    Does this parameter can't be used in DB 10g Release 2?Please see the docs or the help with the command. There is no such parameter in data pump.
    C:\Documents and Settings\admin>expdp help=y
    Export: Release 10.2.0.1.0 - Production on Tuesday, 01 December, 2009 14:02:13
    Copyright (c) 2003, 2005, Oracle.  All rights reserved.
    The Data Pump export utility provides a mechanism for transferring data objects
    between Oracle databases. The utility is invoked with the following command:
       Example: expdp scott/tiger DIRECTORY=dmpdir DUMPFILE=scott.dmp
    You can control how Export runs by entering the 'expdp' command followed
    by various parameters. To specify parameters, you use keywords:
       Format:  expdp KEYWORD=value or KEYWORD=(value1,value2,...,valueN)
       Example: expdp scott/tiger DUMPFILE=scott.dmp DIRECTORY=dmpdir SCHEMAS=scott
                   or TABLES=(T1:P1,T1:P2), if T1 is partitioned table
    USERID must be the first parameter on the command line.
    Keyword               Description (Default)
    ATTACH                Attach to existing job, e.g. ATTACH [=job name].
    COMPRESSION           Reduce size of dumpfile contents where valid
                          keyword values are: (METADATA_ONLY) and NONE.
    CONTENT               Specifies data to unload where the valid keywords are:
                          (ALL), DATA_ONLY, and METADATA_ONLY.
    DIRECTORY             Directory object to be used for dumpfiles and logfiles.
    DUMPFILE              List of destination dump files (expdat.dmp),
                          e.g. DUMPFILE=scott1.dmp, scott2.dmp, dmpdir:scott3.dmp.
    ENCRYPTION_PASSWORD   Password key for creating encrypted column data.
    ESTIMATE              Calculate job estimates where the valid keywords are:
                          (BLOCKS) and STATISTICS.
    ESTIMATE_ONLY         Calculate job estimates without performing the export.
    EXCLUDE               Exclude specific object types, e.g. EXCLUDE=TABLE:EMP.
    FILESIZE              Specify the size of each dumpfile in units of bytes.
    FLASHBACK_SCN         SCN used to set session snapshot back to.
    FLASHBACK_TIME        Time used to get the SCN closest to the specified time.
    FULL                  Export entire database (N).
    HELP                  Display Help messages (N).
    INCLUDE               Include specific object types, e.g. INCLUDE=TABLE_DATA.
    JOB_NAME              Name of export job to create.
    LOGFILE               Log file name (export.log).
    NETWORK_LINK          Name of remote database link to the source system.
    NOLOGFILE             Do not write logfile (N).
    PARALLEL              Change the number of active workers for current job.
    PARFILE               Specify parameter file.
    QUERY                 Predicate clause used to export a subset of a table.
    SAMPLE                Percentage of data to be exported;
    SCHEMAS               List of schemas to export (login schema).
    STATUS                Frequency (secs) job status is to be monitored where
                          the default (0) will show new status when available.
    TABLES                Identifies a list of tables to export - one schema only.
    TABLESPACES           Identifies a list of tablespaces to export.
    TRANSPORT_FULL_CHECK  Verify storage segments of all tables (N).
    TRANSPORT_TABLESPACES List of tablespaces from which metadata will be unloaded.
    VERSION               Version of objects to export where valid keywords are:
                          (COMPATIBLE), LATEST, or any valid database version.
    The following commands are valid while in interactive mode.
    Note: abbreviations are allowed
    Command               Description
    ADD_FILE              Add dumpfile to dumpfile set.
    CONTINUE_CLIENT       Return to logging mode. Job will be re-started if idle.
    EXIT_CLIENT           Quit client session and leave job running.
    FILESIZE              Default filesize (bytes) for subsequent ADD_FILE commands
    HELP                  Summarize interactive commands.
    KILL_JOB              Detach and delete job.
    PARALLEL              Change the number of active workers for current job.
                          PARALLEL=<number of workers>.
    START_JOB             Start/resume current job.
    STATUS                Frequency (secs) job status is to be monitored where
                          the default (0) will show new status when available.
                          STATUS[=interval]
    STOP_JOB              Orderly shutdown of job execution and exits the client.
                          STOP_JOB=IMMEDIATE performs an immediate shutdown of the
                          Data Pump job.And AFAIK= As Far As I Know
    http://www.google.co.in/search?rlz=1C1GGLS_en-ININ355IN355&sourceid=chrome&ie=UTF-8&q=afaik
    HTH
    Aman....

  • Numbers help - maybe something about LOOKUP function

    Hi!
    I need help to somehow "expand" the LOOKUP function - I think...
    I have a sheet with data about music releases, let's call this main sheet DATA.
    DATA
    - Colomn A is the artists names
    - Colomn B is their respective releases
    Now, on my other sheet - STATEMENT - I wanna be able to just write the artist name in cell A1, and from there the STATEMENT sheet lists the artist 1, 2 or 3 times with 1, 2 or 3 different realease titles corresponding the DATA sheet. So when I write Beef Jerky Jam in cell A1 the STATEMENT sheet automatically lists the releases "Beef Jam", "Jerky Jam" and "Beef Jerky Jam", but when I change A1 it only lists "Xero Xerox".
    I don't mind if I'll have to use 3 rows in all 3 cases of artists - with Mayonaize Monster showing 1 N/A cell and Xero Band showing 2 N/A cells. As long as all I had to do was write the band name in A1.
    Does this make any sense, and is it somehow possible?
    Thanks in advance!

    Hi kippenberger,
    If you want a separate table which collects the data for the names artist, this should do the job.
    Data is your data table with one added column. The three smaller tables are a single table that has been duplicated twice. The band name in A1 is the only change made to the duplicates.
    Column C on the Data table uses a formula to create the index shown. I used a grey fill here as a reminder that this is a 'working' column, and may be hidden. It's for the formula, not for the viewer.
    C2: =A&COUNTIF($A$1:A2,A)
    Fill down to the end of the table. Placed in every body row of the table, the formula will automaticaly update as rows are added to the Data table.
    Translation: "Get the value in this row of column A and concatenate (attach) the count of this value from row 1 of column A to this row of column A."
    The Statement table contains the following formula, entered in B2, and filled down to the end of the column.
    B2: =IFERROR(OFFSET(Data :: $A$1,MATCH($A$1&ROW()-1,Data :: C,0)-1,1),"")
    $A$1$ROW()-1 recreates the index values in Data, column C that contain the name of the band entered in A1 of this table. Index values tagged with a number greater than the number of releases by that band will not be found, and will cause an error. The error is trapped by IFERROR, which returns a null string ( "" ) the the cell containing the formula, making it appear blank. If you want these rows to show N/A, replace "" in the formula with "N/A". My preference is for the cleaner appearance produced by using a null string.
    Note that the items on the Data table may be in any order. The Statement table's formula will pull them in in the order they appear on the Data table, and will ignore the other entries.
    Regards,
    Barry

Maybe you are looking for

  • I think I have a virus

    I'm not sure but I think my mac has a virus. I'm expecting a lot of die-hard replies saying there are no viruses for mac, I used to be the same until this happened. My mac (Powermac G5) slowed down - a lot - and applications stopped working in certai

  • Asset value for Calculation of Tax Depreciation

    We have been told that many of the assets created as of 1/1/2008 have a different (lower) tax value than their beginning book value.  Book value is correct for standard book depreciation.     Is there a process to update the tax value of assets creat

  • Share JVM on the client using ORACLE Forms on Oracle Application Server 10x

    Hi All, excuse the question, if it's wrong here: We have a problem running an Oracle Forms Application on an Oracle Application Server 10.1.2.3 Local requirements do not allow multiple JVMs to run on the Client where the Oracle Forms Application is s

  • Enhanced usb port replicator Windows 7 Driver

    I have a T400s and just upgraded to Windows 7 and have been unable to find a Windows 7 driver for my Lenovo Enhanced usb port replicator.  I have checked the list of beta Win 7 drivers and it does not seem to be listed.  Any help would be greatly app

  • FreeHand MX don't see Monitor Profiles in Windows 7

    It was working fine in XP. In Prefs-Color-Kodak Digital Science-Color Management System- under Monitor, only Default is available. In XP I have all instaled profiles available, also in Mac. How can I get FreeHand to see the monitor profiles? I need t