Calculated variable throwing #MULTIVALUE error

I have data of employees entering time by day and time can be billable and non-billable.
I want to show a column chart where I show the number of employees categorized as per following buckets based on their NB%
"75% and Above", "50-75%" and "0-50%"
To achieve this I created a variable (measure) first that calculates the NB% and then created another variable  called NB Group which basically is a set of If, ElseIf conditions that check NB% and assign value as "75% and Above", "50-75%" and "0-50%".
When I create a report with columns employee, NB% and NB Group, the NB Group value shows up fine. However when I just pull NB Group into a blank report I am getting #MULTIVALUE error.
I was expecting to see a distinct list of all the NB Groups just like it would for any other dimension and then wanted to add a new column with count of employees and convert that into a chart.
What am i doing wrong? Is there another approach I should follow?

Both [Hours] and [Non-Billable Hrs] are report level variables.
[Hours] = [Hours Entered] + [Hours Missing] (Both of these are coming from the DB/Universe)
[Non-Billable Hrs] =Sum([Hours]) In ([Employee]) Where ([Hrs Type] = "Non-Billable")
[NB Group] =If [Non-Billable Hrs]/ Sum([Hours]) > 0.5 Then "50% and Above" Else "0-50%"
Note: [NB Group] is getting converted to a measure automatically and i am not able to change it. Wondering if this is causing the problem?
Anyway, as you suggested I tried to take a small data set and get the results per Employee and that came out correctly (top table).
However, when I remove the employee and try to aggregate I am not getting the expected count.
Here, Employee =Count([Employee])

Similar Messages

  • Multivalue# Error in the count value

    Hi,
    Please help me on this. I am getting Multivalue# Error in the code below.
    =If (Count([Subclass ID]) <=5;"Subclass: " + [Subclass ID]; " No of Subclass Selected: " + Count(Subclass ID))
    Thanks you in advance.
    Rose

    Hi Rosemarie,
    WEBI aggregates only duplicate rows and when we try to aggregate non duplicate rows it throws #Multivalue error.
    The #Multivalue error comes for different reasons:
    1) If you are displaying output of formula in single cell then you will get #Multivalue error when formula returns multiple values.
    2) If your data contain non duplicate values and you are trying to aggregate the data using sum, count and removing the column that contain distinct value.
    I checked this with Island and resort marketing Demo universe.
    I Took country and Future Guests and applied formula similar to yours:
    =If(Count([Futureguests])<=5;"Subclass "[Futureguests];"No of subclass"Count([Futureguests]))
    When I removed the column Future Guests from the report I got #Multivalue error because this is the column that distinguishes the records.
    It you want to avoid this,
          1) Check the option u201Cavoid Duplicate row aggregationu201D  by selecting Block-> properties-> Display
                                       OR
          2) Add the column Subclass ID in the report
                                      OR
          3) Use Count(Subclass ID) like  this.
    =If (Count([Subclass ID]) <=5;"Subclass: " + count([Subclass ID]); " No of  Subclass Selected: " + Count(Subclass ID))
    I Hope this Helpsu2026.
    Thanksu2026
    Pratik

  • Variable Substituition throwing an error for empty payload

    Hi All,
    I am using variable substituition in the receiver file adapter...
    Everything is working fine and the variable substituion is working and creating a file whenever the payload in the mapping has the filenode field for variable substituition.
    Now  based on some condition the payload will be empty in the mapping then no file to be created...
    For this i used IGNORE in the receiver adapter BUT still an empty file is being created, this is because the payload will have the filenode field ...
    Now my question is how can we stop in creating an empty file...
    Even i tried using Dynamic Variable in the mapping but that to throws an error...
    Please suggest me on how to solve this...
    Regards,
    sridhar

    >
    sridhar reddy kondam wrote:
    > Now  based on some condition the payload will be empty in the mapping then no file to be created...
    > For this i used IGNORE in the receiver adapter BUT still an empty file is being created, this is because the payload will have the filenode field ...
    Make sure that the node is not created itself in the mapping so that you will not have the issue.
    IS that what you are looking for?
    Else give more details so that we can help

  • #Multivalue error in BO webi.

    Hi
    We are having a webi report based on two Bex queries. One query on top of a multiprovider and another on a DSO. The DSO contains rate category information and mutiprovide contains customer deatils. "Rate Category" is the common field between the two sources. So we have a merged dimension on top of Rate Category.
    In the report we need to display the winter and summer rates used for a particular customer based on his recent rate category in seperate cells outside the table. Based on the recent meter reading date, we are picking the value of rate category using the below formulas.
    [recent MR date] = max(meter reading date)  // measure variable
    [recent rate category] = if (meter reading date = recent MR date) then [customer].[rate category] //dimension variable.
    Once the recent rate category is got, using the below formula we are doing a look up on the another bex query(which is built on DSO)
    [recent winter rate] = if (recent rate category = [DSO].[rate category]) then [winter rate] //measure variable.
    Upon using these formulas we are getting #multivalue error.
    Please suggest some solution for the above issue.

    Hi Vinayak Gole,
    Check the following Property.
    Right click on the table and check the  “Avoid duplicate rows aggregation” option.
    Then save it and reopen the report .
    Regards,
    Anish

  • Editable ALV - how to throw an error message for a specific line & field

    Hi all,
    I've implemented an editable ALV and also the ON_DATA_CHECK event to check the values, entered in the ALV. So this works fine and I can check the values.
    But now, I want to throw an error message corresponding to the field in the ALV, where the error occured.
    How can I throw this error message corresponding to a specific line/field in the ALV?
    I was using REPORT_ATTRIBUTE_ERROR_MESSAGE and REPORT_ELEMENT_ERROR_MESSAGE but without success.
    I'm also using a loop over the "CHANGES" in the ALV and within this loop, I use
    elem_alv = node_alv->get_element( index = <change>-element_index ) 
    to get the element for the message.
    CALL METHOD lo_message_manager->REPORT_ELEMENT_ERROR_MESSAGE
      EXPORTING
        MESSAGE_TEXT              = 'my message'
        ELEMENT                   = elem_alv
    *    ATTRIBUTES                =
    *    PARAMS                    =
    *    MSG_USER_DATA             =
    *    IS_PERMANENT              = ABAP_FALSE
    *    SCOPE_PERMANENT_MSG       = CO_MSG_SCOPE_CTXT_ELEMENT
    *    MSG_INDEX                 =
    *    CANCEL_NAVIGATION         =
    *    IS_VALIDATION_INDEPENDENT = ABAP_FALSE.
    2.) is it right, that for an editable ALV, I can't use the WDDOBEFOREACTION to do the checks?
    If I try to use this, I can't get the values of my ALV table to check it.
    Thanks,
    Andreas

    Hi Andreas,
    I have tried to replicate your problem and I am getting the desired output. I have a row by name TEMP_NEW in my ALV and I want to throw an error message whenever the user enters a value of 4 for that particular field. Please find my coding as below. The important thing is where we perform the actual comparison between the r_value and 4. r_value is defined in SALV_WD_S_TABLE_MOD_CELL as reference to type DATA. So suppose the user enters a value of say 3 in the TEMP_NEW field of the ALV then r_value would contain 3 but if you observe its type in debugging mode it would be as TYPE REF TO I and not TYPE I. So you cannot directly say something like:
    "if ls_modified_cells-r_value = 3" as this would lead to a syntax error. Define a field-symbol say <temp> and then use it to get the actual value into it by saying like:
    ASSIGN ls_modified_cells-r_value->* TO <temp>.
    Then you can use this <temp> for comparison in your IF statement like:
    IF  <temp> = 3.
    Find the entire coding as below:
    METHOD check_data.
      DATA: lr_node TYPE REF TO if_wd_context_node,
            lr_element TYPE REF TO if_wd_context_element,
            ls_modified_cells TYPE salv_wd_s_table_mod_cell.
      FIELD-SYMBOLS <temp> TYPE data.
    " get message manager
      DATA lo_api_controller     TYPE REF TO if_wd_controller.
      DATA lo_message_manager    TYPE REF TO if_wd_message_manager.
      lo_api_controller ?= wd_this->wd_get_api( ).
      CALL METHOD lo_api_controller->get_message_manager
        RECEIVING
          message_manager = lo_message_manager.
      lr_node = wd_context->get_child_node( name = 'NODE' ).
      LOOP AT r_param->t_modified_cells INTO ls_modified_cells.
        lr_element = lr_node->get_element( index = ls_modified_cells-index ).
        IF ls_modified_cells-attribute = 'TEMP_NEW'.
    " Get the value extracted into the field symbol from the reference variable
          ASSIGN ls_modified_cells-r_value->* TO <temp>.
    " Use the value present in this field-symbol for your comparison
          IF  <temp> = 4.
    " report message
            CALL METHOD lo_message_manager->report_attribute_error_message
              EXPORTING
                message_text   = 'Sample message text'
                element        = lr_element
                attribute_name = ls_modified_cells-attribute.
          ENDIF.
        ENDIF.
      ENDLOOP.
    ENDMETHOD.
    Hope this helps resolve your problem.
    Regards,
    Uday

  • Sales Quantity  with Unit  . Multivalue Error.

    Dear  all,
    I  have  crosstab  with   sales qty  in  y axis  and  x axis  is structure.   when i  concatenate   salesqty   and unit    and drop it in    crosstab  it gives   error  with  multivalue  .please   suggest  solution .
        x axis  structure  have   actual  plan variance columns.   lets say  in actual   salesqty  is 1000mt   plan  1200box,  and    variance
    Thanks
    suresh.p

    Hi Suresh,
    Jus check it out where you are inserting this new variable.
    Multivalue occures only if you are getting more than 1 value from a result and inserting it into one cell.
    I hope you are inserting this new variable either in column or row not in a single cell.
    I could understand that you are concatenate 2 measure objects. So definatly it will return multivalue if you insert it in a cell. To avoids this jus add some aggregate function before it.
    This is what i could understand your scenario. Do let us know if this will work out for you.

  • Getting #multivalue error

    Hi All,
    several records i was done grouping(HC,Product,W materails,s parts,t goods),rest of the records are others.after the grouping material type others is showing #multivalue error.
    Material Type+ 
    Stock Quantity 
    HC 
    11,515,835 
    Product 
    3,400,014.42 
    Others 
    #MULTIVALUE 
    w materials 
    13,782,132.86 
    S Parts. 
    4,634 
    T Goods 
    119 
    Thanks in advance...

    Hi Govardhan,
    It seems like for "Others" Material Type, there are more than one "Stock Quantity" values.
    Is "Stock Quantity" a measure coming from the query or have you created it at report level? Seems like it is a report variable.
    If yes, please share the formula used. Try using max() function.
    Regards,
    Yuvraj.

  • #MULTIVALUE error in WEBI crosstab

    Hello Experts,
    I am using cross tab in a webi report and I get multivalue error in WEBI
    When I select the table property "Avoid Duplicate row aggregation", I get the below result
    As you can see, that in the first image, the Actual cost is calculated correctly, but the Quantity, is anot able to add up and gives multivalue error.
    Please help resolve.
    Thanks
    Shilpa

    Hi Shilpa,
    You can use any context In or Foreach.
    Ex. =Sum(<Revenue>) In <Year>
          =Sum(<Revenue> In (<Region>,<City>,<Year>) In <Year>)
    Use contexts with Aggregation functions like Sum, Count, Min, Max etc.
    For better understanding of Calculation Context you can go through following document :
    http://help.sap.com/businessobject/product_guides/boexir4/en/xi4sp5_ffc_en.pdf
    - Smart measures are the ones which have  projection aggregate set as "Database Delegated" which in turn results measure to be calculated by the database itself.
    To create a Smart measures you can use calculated key figure or restricted key figure.
    In IDT we can achive it by applying projection for measure object.
    Hope this will help....!!!
    Regards,
    Veer S.

  • #MULTIVALUE error when I add Text in a cell

    Hi,
    There is a funny error occurring in the report.
    I have build this report on Excel sheet. The sheet has ONLY 4 rows,(and it always will have 4 rows).
    Following is the format of the Excel sheet:
    Plant    Division           Comment1           Comment2   Week
    1            10                   A                        E                 4
    2            10                   B                        F                 4
    3            10                   C                        G                4
    1            20                   D                        H                 4
    In the report I have made a connection on the Excel sheet. I have made made the fields Plant,Division,Comment1 and Comment2 as Dimensions and Week as Measure.
    In 4 different cells, with 4 combinations on Plant and Division, I want the following output:
    - Comment1: A
    - Comment2: E
    When I put the formula: =([Comment1] where ([Plant]="1" and [Division]="10")) + ([Comment2] where ([Plant]="1" and [Division]="10"))
    it returns Correct Results.
    But when I add Text values in the formula it returns #MULTIVALUE error:
    Example:        ="- Comment1: "+ ([Comment1] where ([Plant]="1" and [Division]="10"))
    Where am I going wrong?
    Thanks,
    Amrita

    Hi Amrita,
    This is because when you are going only with the formula, it will provide you the value for one cell and blank for other.
    But when you are going with the comments as well, you will get 4 values for this. (one for each row)
    1. -Comment1:
    2. -Comment1:
    3. -Comment1:
    4. -Comment1: A
    So when you are selecting this in a single cell it will throw you #Multivalue error.
    Hope it is understood.
    Regards,
    Subrat

  • #MULTIVALUE error in some cells only

    I am getting #MULTIVALUE error in few cells in a cross-tab report whereas the rest of the cells show correct results. What can be the reason for this.
    My cross tab report consists of : Physician(Dimension) as a Section, Metrics(dimension) in the rows and Month(dimension) as columns.
    The body contains measures- Rate and Scale. Each Metric has got a defined scale of 0-4 based upon a range of the Rate.
    Scale ia a variable created by me as =[Rating Scale] In ([Provider] Where([Rate] Between([Lower Target Pct];[Upper Target Pct]))
    The report looks like:
                        Jan                   Feb                          Mar
                  Rate  Scale
    Metric1  
    Metric2
    When i try to include the Rate of YTD, the data in the Rate shows correct results wheares the Scale certain cells are appropriate but rest of them throughs #MULTIVALUE error.
    I am not able to comprehend whats going wrong in here.
    Can anyone pls resolve this issue.

    Actually , there is no formula for Scale. Its in-built dimension but to get the correct result in the cross-tab( No irregularities are found for teh results in the horizontal and the vertical report format), I created the variable for scale as follows:
    =Scale ForEach(Provider) Where(Rate Between Lower Target AND Upper Target). After using this variable, I got correct results for the monthly/quarterly data wheareas for the YTD it gives #MULTIVLAUE for few cells, where the scale is different for the every months./quarters. It gives correct result where the rate falls in teh same scale zone for all the months/quarters for a certain Metric.
    For .Ex.
    Metric                   Q1                           Q2                  Q3                      YTD
                         Rate     Scale  
    Tetanus        94         3                     92     3                91  3                 93       3
    BRC              71        2                      91      3               98    4               83       #MULTIVALUE
    I am not able to fathom that why its not taking the YTD into consideration even though I created a different variable for the scale of YTD in which I used the YTD(rate) instead of the actual(Rate).

  • Next / Previous button throwing an error. Please help

    I wrote this next previous button code and it is throwing an
    error. I don't understand why or what I am missing.
    I want it to show 4 records for a page. Here is my code and
    the error.
    Code:
    <cfset CurrentPage=GetFileFromPath(GetTemplatePath())>
    <cfquery name="feat" datasource="#sitedatasource#"
    username="#siteUserID#" password="#sitePassword#" maxRows=4>
    SELECT feature.title AS ViewField1, feature.MYFile AS
    ViewField2, feature.ID AS ID
    FROM feature
    </cfquery>
    <cflock timeout="2" scope="application"
    type="READONLY">
    <cfset application.feat=feat>
    </cflock>
    <cfset MaxRows_feat=4>
    <cfset
    StartRow_feat=Min((PageNum_feat-1)*MaxRows_feat+1,Max(feat.RecordCount,1))>
    <cfset
    EndRow_feat=Min(StartRow_feat+MaxRows_feat-1,feat.RecordCount)>
    <cfset
    TotalPages_feat=Ceiling(feat.RecordCount/MaxRows_feat)>
    <cfset QueryString_feat=Iif(CGI.QUERY_STRING NEQ
    "",DE("&"&CGI.QUERY_STRING),DE(""))>
    <cfset
    tempPos=ListContainsNoCase(QueryString_feat,"PageNum_feat=","&")>
    <cfif tempPos NEQ 0>
    <cfset
    QueryString_feat=ListDeleteAt(QueryString_feat,tempPos,"&")>
    </cfif>
    <cflock timeout="2" scope="application"
    type="READONLY"><cfoutput query="feat"
    maxrows="4">#ViewField1#</cfoutput></cflock>
    <cfif PageNum_feat GT 1>
    <a
    href="#CurrentPage#?PageNum_feat=#Max(DecrementValue(PageNum_feat),1)##QueryString_feat#"
    onmouseout="MM_swapImgRestore()"
    onmouseover="MM_swapImage('Previous','','../img/previous-over.gif',1)"><img
    src="../img/previous.gif" alt="Previous Records" name="Previous"
    width="96" height="27" border="0" id="Previous" /></a>
    <cfif PageNum_feat LT TotalPages_feat>
    <a
    href="#CurrentPage#?PageNum_feat=#Min(IncrementValue(PageNum_feat),TotalPages_feat)##Quer yString_feat#"
    onmouseout="MM_swapImgRestore()"
    onmouseover="MM_swapImage('next','','../img/next-over.gif',1)"><img
    src="../img/next.gif" alt="Next Record" name="next" width="96"
    height="27" border="0" id="next" /></a>
    The Error:
    Variable PAGENUM_FEAT is undefined.
    The error occurred in
    C:\Websites\x9vdzd\feature\featured.cfm: line 8
    6 : </cfquery>
    7 : <cfset MaxRows_feat=4>
    8 : <cfset
    StartRow_feat=Min((PageNum_feat-1)*MaxRows_feat+1,Max(feat.RecordCount,1))>
    9 : <cfset
    EndRow_feat=Min(StartRow_feat+MaxRows_feat-1,feat.RecordCount)>
    10 : <cfset
    TotalPages_feat=Ceiling(feat.RecordCount/MaxRows_feat)>
    I thought I had it defined! What am I missing?
    Thanks
    Phoenix

    that is strange... it should work fine - it does in my tests.
    here is somewhat updated & modified code to try. i have
    included
    comments to try and explain what is being done.
    basic logic is as follows:
    -form is submitted
    -check if file has been selected
    -try uploading new file
    -if new file upload succeeds, delete old file if it exists
    (as part of
    updating existing record, as new records obviously would not
    have any
    old image)
    -update/insert record data as necessary
    here's the code:
    <cfif isdefined("form.feat_OK")><!--- form submitted
    --->
    <!--- set file uploading vars --->
    <cfparam name="fileuploaded" type="boolean"
    default="false">
    <cfparam name="uploadedfile" default="">
    <cfset pathToFile = "c:\websites\x9vdzd\img\feature\">
    <!--- --->
    <cfif len(trim(form.MYFile))><!--- if a file has
    been selected --->
    <!--- try uploading new file --->
    <cftry>
    <cffile Action="upload" filefield="MYFile"
    accept="image/gif,
    image/jpg, image/jpeg, image/pjpeg"
    destination="#pathToFile" nameconflict="MAKEUNIQUE">
    <cfset fileuploaded = true>
    <cfset uploadedfile = cffile.serverfile>
    <cfcatch type="any">
    <!--- if upload did not suceed, reset file uploading vars
    --->
    <cfset fileuploaded = false>
    <cfset uploadedfile = "">
    <!--- this can be further enhanced by setting some var to
    hold error
    message and return it to user --->
    </cfcatch>
    </cftry>
    </cfif>
    <cfif form.id gt 0><!--- we are updating an
    existing record --->
    <!--- if new file upload was successful and the feature
    has an image
    associated with it - delete old image --->
    <cfif fileuploaded is true AND
    len(trim(form.oldimage))>
    <cfif FileExists(pathToFile & form.oldimage)>
    <cffile action="delete" file="#pathToFile &
    form.oldimage#">
    </cfif>
    </cfif>
    <cfquery datasource="#sitedatasource#"
    username="#siteUserID#"
    password="#sitePassword#">
    UPDATE feature
    SET
    feature.title=<cfqueryparam cfsqltype="cf_sql_varchar"
    value="#form.title#">,
    feature.Body=<cfqueryparam cfsqltype="cf_sql_longvarchar"
    value="#form.PDSeditor#">,
    feature.MYFile=<cfqueryparam cfsqltype="cf_sql_varchar"
    value="#uploadedfile#" null="#NOT fileuploaded#">
    WHERE ID = <cfqueryparam value="#form.ID#"
    cfsqlType="CF_SQL_INTEGER">
    </cfquery>
    <cfelse><!--- we are inserting a new record --->
    <cfquery datasource="#sitedatasource#"
    username="#siteUserID#"
    password="#sitePassword#">
    INSERT INTO feature
    (title, body, MYFile)
    VALUES
    (<cfqueryparam cfsqltype="cf_sql_varchar"
    value="#form.title#">,
    <cfqueryparam cfsqltype="cf_sql_longvarchar"
    value="#form.PDSeditor#">,
    <cfqueryparam cfsqltype="cf_sql_varchar"
    value="#uploadedfile#"
    null="#NOT fileuploaded#">)
    </cfquery>
    </cfif>
    <!--- relocate user to previous page after insert/update
    --->
    <cflocation url="feature-manager.cfm">
    </cfif>
    hth
    Azadi Saryev
    Sabai-dee.com
    http://www.sabai-dee.com

  • Optional Parameter - Oracle Package Throws an Error

    Hi there,
    I have an Oracle Package & it has a stored procedure with optional parameter. The calling code is in ColdFusion.
    When I run my webpage the Oracle throws below error.
    " [Macromedia][Oracle JDBC Driver][Oracle]ORA-06550: line 1, column 7: PLS-00306: wrong number or types of arguments in call to 'GET_CONTRACT_BY_DYN_SQL' ORA-06550: line 1, column 7: PL/SQL: Statement ignored "
    Calling Code (ColdFusion)
    <cfstoredproc procedure="CONTRACTS_PKG.GET_CONTRACT_BY_DYN_SQL" datasource="#REQUEST.dsn#">
         <cfprocparam cfsqltype="CF_SQL_INTEGER" type="in" value="1" variable="P_CONTRACTID">     
         <cfprocresult name="qDataDynSQL" resultset="1">
    </cfstoredproc>
    <br>Dynamic SQL Query:
    <cfdump var="#qDataDynSQL#" label="Dynamic SQL Query">
    Oracle Package
    create or replace
    PACKAGE CONTRACTS_PKG AS
    TYPE T_CURSOR IS REF CURSOR;
    PROCEDURE GET_CONTRACT_BY_DYN_SQL(P_CONTRACTID IN NUMBER, P_COLS IN VARCHAR2 DEFAULT '*', IO_CURSOR IN OUT T_CURSOR);
    END CONTRACTS_PKG;
    create or replace
    PACKAGE BODY CONTRACTS_PKG AS
    -- Get Contract Using Dynamic SQL
    PROCEDURE GET_CONTRACT_BY_DYN_SQL(P_CONTRACTID IN NUMBER, P_COLS IN VARCHAR2 DEFAULT '*', IO_CURSOR IN OUT T_CURSOR)
    IS
    V_CURSOR T_CURSOR;
    V_SQL VARCHAR2(200);
    BEGIN
    IF p_contractid > 0 THEN
    V_SQL := 'SELECT '|| P_COLS || ' FROM CONTRACTS WHERE contract_id = ' || P_CONTRACTID ;
    ELSE
    V_SQL := 'SELECT '|| P_COLS || ' FROM CONTRACTS';
    END IF;
    OPEN V_CURSOR FOR V_SQL;
    IO_CURSOR := V_CURSOR;
    END GET_CONTRACT_BY_DYN_SQL;
    END CONTRACTS_PKG;
    Does anyone knows why it throws an error? As you can see in the package header & body the parameter P_COLS has the default value as '*'.
    Looking forward to hear from someone.
    Thanks,
    Hitesh Patel

    931198 wrote:
    I have an Oracle Package & it has a stored procedure with optional parameter. The calling code is in ColdFusion.
    When I run my webpage the Oracle throws below error.Never mind the error - your approach is most definitely a candidate for Oracle WTF.
    Nothing sane about this approach. Especially the decision not to use bind variables and slowing down cursor processing significantly by burning a lot more CPU cycles on hard parsing and fragmenting the SQL Shared Pool in the process.
    Why not used MS Access instead? It is far more suited as a mickey mouse database for a goofy application?
    Why am I badmouthing your approach to Oracle? Because that is exactly the primary cause, the #1 reason, for poor Oracle performance and run-time problems dealing with Shared Pool fragmentation. It is something that many Oracle experts blog about, talk about, write about. It is addressed in numerous books, Oracle documentation, and even Oracle Support Notes.
    And despite the amount of information available on how to get the basics rights in using Oracle... this approach you are pursuing still refuses to die. So it deserves to be beaten with a lead pipe when it rears its ugly head here in this forum..

  • DB Look up error: Column/global variable not found-Error in EDO-ExecSearch

    Hi all..
    In my application I am usind database look up with DB2 database..
    As soon as I click on Database Look up button,it throws an error that [[IBM] [System i access ODBC driver] [DB2 for i5/OS]SQL0206 - column or global variable not found. [Error in in EDO-ExecSearch]].
    Please anyone tell me where the problem is????
    Thanks in advance.

    I never realized this myself, but you can have more than one alias in your hosts file.  I found that some programs look for <code>localhost</code> and others look for whatever your server name is.  To satisfy both of those situations, just put your server's name after <code>localhost</code> so you'll have something like this:
    #<ip-address> <hostname.domain.org> <hostname>
    127.0.0.1 home.matrix.dk localhost matrix

  • Shared Services URL throws 404 Error

    Hi,
    I've newly installed and configured EPM on a test server. I seem to be able to start the Hyperion Foundation Services (port 28080 is listening), but when accessing the Shared Services URL, I get a 404 error.
    One note: I installed the product at G:\Oracle\Middleware\..., but when starting the Foundation Services, a "product" folder is created under G:\ root folder. It contains the same folder structure as G:\Oracle\Middleware\EPMSystem11R1\products\ but there is no content in the folders. I did not make any conscious update to any config file, so I have no clue why Foundation Services is behaving this way. The diagnostic log seems to point to this as the cause of deployment failure, because it's looking for ear files which don't exist in G:\products.
    I've restarted the machine, re-ran the configurator many times, re-installed the EPM product suite, double checked environment variables and registry keys, yet this issue still persists. Can someone give me some help on this? Many thanks!!!
    The EPM version is 11.1.2.2 and we are using SQL Server 2008R2.
    ===========ERROR LOG==================
    <May 29, 2013 10:05:49 AM EDT> <Error> <Deployer> <BEA-149205> <Failed to initialize the application 'SHAREDSERVICES [Version=11.1.2.0]' due to error weblogic.management.DeploymentException: File not found with : G:\products\Foundation\AppServer\InstallableApps\common\interop.ear.
    weblogic.management.DeploymentException: File not found with : G:\products\Foundation\AppServer\InstallableApps\common\interop.ear
         at weblogic.application.internal.EarDeploymentFactory.findOrCreateComponentMBeans(EarDeploymentFactory.java:193)
         at weblogic.application.internal.MBeanFactoryImpl.findOrCreateComponentMBeans(MBeanFactoryImpl.java:48)
         at weblogic.application.internal.MBeanFactoryImpl.createComponentMBeans(MBeanFactoryImpl.java:110)
         at weblogic.application.internal.MBeanFactoryImpl.initializeMBeans(MBeanFactoryImpl.java:76)
         at weblogic.management.deploy.internal.MBeanConverter.createApplicationMBean(MBeanConverter.java:91)
         Truncated. see log file for complete stacktrace
    Caused By: java.io.IOException: File not found with : G:\products\Foundation\AppServer\InstallableApps\common\interop.ear
         at java.util.zip.ZipFile.open(Native Method)
         at java.util.zip.ZipFile.<init>(ZipFile.java:117)
         at java.util.jar.JarFile.<init>(JarFile.java:135)
         at java.util.jar.JarFile.<init>(JarFile.java:99)
         at weblogic.utils.jars.JarFileDelegate.<init>(JarFileDelegate.java:32)
         Truncated. see log file for complete stacktrace
    >
    <May 29, 2013 10:05:57 AM EDT> <Emergency> <Deployer> <BEA-149259> <Server 'FoundationServices0' in cluster 'FoundationServices' is being brought up in administration state due to failed deployments.>

    I am able to start the Weblogic Administration Console.
    In Deployment, I can find the SharedServices listed. When clicking on it, it throws an error about no ear found in path.
    In Lock & Edit mode, when Updating the SharedServices deployment, I can see that the Path is indeed pointing to the wrong G:\Products\... folder.
    I thought I could update it to point to the right one, but I get an error upon saving: [Deployer:149082]You cannot distribute application <SHAREDSERVICES> without version...
    So frustrated :(

  • Doing VF01 Invoice third party  system is throwing below error message.

    Hi All,
    After creating Standard PO for third party.
    Doing VF01 Invoice system is throwing below error message.
    Error Log
               5005000511 000010 No open billing quantity has been determined
              Technical data
                  Tech. data details
                   Client                                 200
                   Group Number
                   Sales Document Number                  5005000511
                   Item Number of the SD Document         000010
                   Schedule Line Number                   0147
                   Counter in Control Tables              00
                   Message Identification                 VF
                   System Message Number                  147
                   Output Type                            I
                   Message Variable 01
                   Message Variable 02
                   Message Variable 03
                   Message Variable 04
                   Group Type                             F
    Aditya.

    Hello,
    Please, I have the same issue but in my case it's a Purchase Requisition. First I created a Purchasing info-record for Vendor, Material, Purchasing organization and Plant.
    After I set a Source List Master Data for Material, Plant, Vendor and Purchasing Organization.
    Like this I have the Purchase Requisition created automatically when I create the Sales Order. I am testing a Third Party Handling scenario in Brazil...
    But now I can not create the Billing Document.
    The following error happens:
    "No open billing quantity has been determined"
    Tech. data details
    Client                                 210
    Group Number
    Sales Document Number                  0000000179
    Item Number of the SD Document         000010
    Schedule Line Number                   0147
    Counter in Control Tables              00
    Message Identification                 VF
    System Message Number                  147
    Output Type                            I
    Message Variable 01
    Message Variable 02
    Message Variable 03
    Message Variable 04
    Group Type                             F
    I tried what you suggested but they didn't work. I don't know if I have to create a MIRO for my Purchase Requisition. I tried to release it but it didn't work as well.
    Please, can you help me?
    Thank you,

Maybe you are looking for

  • Basic Report Run from a PL/SQL Procedure

    I am hosed trying to start a BI Publisher report from a PL/SQL procedure. Basically, I have a procedure with a local variable defined as an XMLType. I need to call an RTF source, pass the xmlfile in and tell the RTF Engine where to send the output. T

  • Email notifications from Verification and Validation routines

    I am trying to generate an email notification after we run a Verification or Validation routine once we make some changes in the DRM? Is it possibe? If so how can it be implemented and what versions of DRM supports the same?

  • How can I change the value in a stepper cell

    In Numbers 2.3 I was able to change the value in a stepper cell by highlighting the value and using the arrow keys to increase or decrease the value. This was a very easy way to input data. Numbers 3.0 when I do this is moves to another cell Is there

  • Header file entry for Text Channel

    I have taken an ASCII Text Data file, read the file, and created a Header File, then saved the data into a binary file. This is my attempt to speed up the loading of the text file. One of the columns is a text column, containing a flag for the state

  • AP not joining WLC 2504

    Hi all my customer has a 2504 WLC, and has problems to join APs (There are no aps joined to the controller at this moment). What are the Bold lines tell me? in the debug I see the following: *spamApTask0: Oct 10 09:20:06.019: 58:f3:9c:78:d1:10 Discov