Problem with number datatype dimension in BIB

Hi,
I've got a problem. When I create dimension with number datatype and I assign it to my cube, I cannot use my cube with my BIB presentation object - such as Crosstab. Is this possible only with varchar dimensions?

It should work, but it would be helpful if you could specify more information, for example which errormessage you are seeing and where.

Similar Messages

  • Problem with a multisourced dimension

    Hi Guru's
    I have a problem with a multisourced dimension. Some of the values that are in the tables are not visible when I create a filter and choose all choices, but when facts are set against the dimension these values do show.
    This is the situation: In my physical layer I've got 3 tables that are all pretty similar, structure is like year, quarter, amount. From these three tables I create 3 fact tables and 1 dimension, where the dimension is YearQuarter with two columns (year and quarter) and 3 sources. One of these tables has a quarter 0 (zero). The DimYearQuarter table is innerjoined in the BMM wit all 3 facttables. Changing to right or left outer doesn't change the results.
    In answers when i create a report just with the dimension columns , quarter 0 is not visible. When the measure (where the quarter 0 associated to) is added to my request it shows the values for quarter 0. When applying a filter, the quarter 0 is not visible with "all choices", but a filtercondition works with Quarter is equal to 0.
    Any suggestions are kindly appreciated. If more info is needed, I'm very willing to provide.
    I'm on 10.1.3.4.1 on windows server 2003 (server side) and XP professional as a client.
    Kind regards,
    Gilles

    You should alias the physical tables such that you can then physically join the aliases one to another. Then you should be able to use the dimension table on it's own - for prompting purposes and such.
    (Aliasing of physical tables is an OBI best practice)

  • Problem with number-fields in csv-Export-Files

    Hello,
    the export with the csv option works fine and our users like this export-function.
    But Unfortunatelly we have some problems with the exported number fields. In my region I defined the field with a format mask.
    On the screen it looks fine but when I change to csv the values are exported as text-values.
    So in excel the columns are shown with left alignment.
    When I try to change the format in excel to number, excel change the column type but not the value inside.
    On this account we cannot use the sum-function and the display of the value is wrong (alignment).
    Which possibilities do I have to resolve that problem?
    Thanks in advance
    Ulrike

    I have the same issue - Anyone any ideas on how to export currency values in a report to excel as numbers?

  • Problem with "Number Generation Program'

    Can someone please help me with my Number Generation Program. I am new to java and I am at a sticking point. I want to develop a program that will do the following:
    1. Accept a set of numbers (6 numbers per set).
    2. Remove duplicate numbers.
    3. Generate unique set of numbers (6 numbers per set) using only the numbers that were originally entered.
    example: -> numbers entered: 12 33 45 51 7 10
    5 34 33 8 11 21
    5 6 13 9 10 51
    duplicate numbers removed: -> unique numbers
    12 33 45 51 7 10
    5 34 8 11 21 6
    13 9
    Final result: -> generate unique set of numbers only using the above unique 14 numbers
    5 6 7 8 9 10
    5 6 7 8 9 11
    5 6 7 8 9 12
    5 6 7 8 9 13

    I am having a problem with the following:
    1. accepting the numbers
    2. removing duplicate numbers
    3. generating the number sequence sets
    As I mentioned earlier, I am new to java. I just completed my first java class and I wanted to develop this program.

  • A problem with inconsistent datatypes

    Whenever I try inserting a new record of type t_cliente_societa in my Cliente table, I get ORA-00932 inconsistent datatypes error and I'm not able to find the reason.
    Could anyone help me? Thanks in advance.
    I'll post my SQL code here. please ignore member functions for I havent' included the code necessary to create the needed tables.
    I defined some types useful for storing informations about the entities I have to deal with.
    The main type is t_cliente and its subtypes are t_cliente_pers and t_cliente_soc.
    I use polymorphism to insert records based on subtypes instancies into a table based on supertype.
    When I would add a new t_cliente_pers record, first I add it into Persona table and then into Cliente table.
    The latter contains a REF to Persona for I have several "persons" who aren't "clients" and I use a single table to store them all.
    create or replace TYPE t_indirizzo AS OBJECT (
    via VARCHAR(45),
    numero NUMBER(4),
    cap INTEGER(5),
    citta VARCHAR(30),
    provincia VARCHAR(30),
    regione VARCHAR(30),
    MEMBER FUNCTION indirizzoCompleto RETURN VARCHAR
    create or replace TYPE t_telefono AS OBJECT (
    num_tel NUMBER(15)
    create or replace TYPE t_telefono_array IS VARRAY(3) OF t_telefono
    create or replace TYPE t_anagrafica AS OBJECT (
    nome VARCHAR(45),
    cognome VARCHAR(45),
    sesso CHAR(1),
    cod_fiscale VARCHAR(16),
    data_nascita DATE
    create or replace TYPE t_ragioneSociale AS OBJECT (
    nome_soc VARCHAR(45),
    data_cost DATE,
    part_iva NUMBER(11)
    create or replace TYPE t_persona AS OBJECT (
    dati_anagrafici t_anagrafica,
    indirizzo t_indirizzo,
    email VARCHAR(45),
    telefono t_telefono_array
    create or replace TYPE t_societa AS OBJECT (
    ragione_sociale t_ragioneSociale,
    indirizzo t_indirizzo,
    email VARCHAR(45),
    telefono t_telefono_array,
    persona_rif t_persona
    create or replace TYPE t_cliente AS OBJECT (
    cod_cliente NUMBER(8),
    MEMBER FUNCTION incFatti RETURN NUMBER,
    MEMBER FUNCTION incSubiti RETURN NUMBER,
    MEMBER FUNCTION incFattiPeriodo RETURN NUMBER,
    MEMBER FUNCTION incSubitiPeriodo RETURN NUMBER,
    MEMBER FUNCTION nomeCliente RETURN VARCHAR,
    MEMBER FUNCTION tipoCliente RETURN VARCHAR
    ) NOT FINAL
    CREATE OR REPLACE TYPE BODY t_cliente AS
    MEMBER FUNCTION incFatti RETURN NUMBER
    IS incidenti NUMBER;
    BEGIN
    SELECT count(i. cod_incidente) INTO incidenti
    FROM Incidenti i, Mezzi m
    WHERE SELF.cod_cliente = m.possessore.cod_cliente AND m.num_targa = i.mezzo. num_targa AND i. responsabilita = ‘c’;
    RETURN (incidenti);
    END;
    MEMBER FUNCTION incSubiti RETURN NUMBER
    IS incidenti NUMBER;
    BEGIN
    SELECT count(i. cod_incidente) INTO incidenti
    FROM Incidenti i, Mezzi m
    WHERE SELF.cod_cliente = m.possessore.cod_cliente AND m.num_targa = i.mezzo. num_targa AND i. responsabilita = ‘s’;
    RETURN (incidenti);
    END;
    MEMBER FUNCTION incFattiPeriodo (da DATE, a DATE) RETURN NUMBER
    IS incidenti NUMBER;
    BEGIN
    SELECT count(i. cod_incidente) INTO incidenti
    FROM Incidenti i ,Mezzi m
    WHERE SELF. cod_cliente = m.possessore.cod_cliente AND m. num_targa = i.mezzo. num_targa AND i. responsabilita = ‘c’ AND (i.data BETWEEN da and a);
    RETURN (incidenti);
    END;
    MEMBER FUNCTION incSubitiPeriodo (da DATE, a DATE) RETURN NUMBER
    IS incidenti NUMBER;
    BEGIN
    SELECT count(i. cod_incidente) INTO incidenti
    FROM Incidenti i ,Mezzi m
    WHERE SELF. cod_cliente = m.possessore.cod_cliente AND m. num_targa = i.mezzo. num_targa AND i. responsabilita = ‘s’ AND (i.data BETWEEN da and a);
    RETURN (incidenti);
    END;
    MEMBER FUNCTION nomeCliente RETURN VARCHAR
    IS
    BEGIN
    RETURN TO_CHAR(cod_cliente);
    END;
    MEMBER FUNCTION tipoCliente RETURN VARCHAR
    IS
    BEGIN
    RETURN (‘u’);
    END;
    END ;
    create or replace TYPE t_cliente_pers UNDER t_cliente (
    persona REF t_persona,
    OVERRIDING MEMBER FUNCTION nomeCliente RETURN VARCHAR,
    OVERRIDING MEMBER FUNCTION tipoCliente RETURN VARCHAR
    ) NOT FINAL
    CREATE OR REPLACE TYPE BODY t_cliente_pers AS
    MEMBER FUNCTION nomeCliente RETURN VARCHAR
    IS nc VARCHAR(90) ;
    BEGIN
    SELECT concat(p.dati_anagrafici.nome, concat(' ',p.dati_anagrafici.cognome)) INTO nc
    FROM d;
    RETURN (nc);
    END;
    MEMBER FUNCTION tipoCliente RETURN VARCHAR
    IS
    BEGIN
    RETURN (‘p’);
    END;
    END ;
    create or replace TYPE t_cliente_soc UNDER t_cliente (
    societa t_societa,
    OVERRIDING MEMBER FUNCTION nomeCliente RETURN VARCHAR,
    OVERRIDING MEMBER FUNCTION tipoCliente RETURN VARCHAR
    ) NOT FINAL
    CREATE OR REPLACE TYPE BODY t_cliente_soc AS
    MEMBER FUNCTION nomeCliente RETURN VARCHAR
    IS
    BEGIN
    RETURN (ragione_sociale.nome_soc);
    END;
    MEMBER FUNCTION tipoCliente RETURN VARCHAR
    IS
    BEGIN
    RETURN (‘s’);
    END;
    END ;
    CREATE TABLE persona OF t_persona(
    dati_anagrafici NOT NULL,
    indirizzo NOT NULL,
    email NOT NULL,
    telefono NOT NULL,
    PRIMARY KEY (dati_anagrafici.cod_fiscale)
    CREATE TABLE cliente OF t_cliente(
    PRIMARY KEY (cod_cliente)
    CREATE SEQUENCE seqCliente
    START WITH 1
    INCREMENT BY 1
    MINVALUE 1
    NOMAXVALUE
    NOCYCLE;
    And finally this is the instruction that gives me problems.*
    INSERT INTO cliente VALUES(
    t_cliente_soc(
    seqCliente.NEXTVAL,
    t_societa(
    t_ragioneSociale('Adecco', '01-gen-1999', '12345678901'),
    t_indirizzo('Milano', '18', '21100', 'Varese', 'Varese', 'Lombardia'),
    '[email protected]',
    t_telefono_array(t_telefono('0332563214')),
    t_persona(
    t_anagrafica('Giulia', 'Macchi', 'f', 'MCCGLA80C23L682L', '23-gen-1980'),
    t_indirizzo('Tofane', '2', '23026', 'Arona', 'Novara', 'Piemonte'),
    '[email protected]',
    t_telefono_array(t_telefono('0322123456'), t_telefono('3337894561'))
    /

    I eliminated the entire database and recreated everything. Now it works... Thanks anyway.

  • Problems with multiple Attribute Dimensions

    Hello Guys,
    when i try to get data from an Essbase database using the Grid API with more then one Attribute Dimension,
    the server needs a very long time to response or doesn't response at all.
    I encounter the same behaviour when i perform a query using the Excel Query Designer.
    Here is a sample query log output:
    <subquery>
    <cluster size="1">
    <dim size="1"><member>MEASURE</member></dim>
    <dim size="1"><member>PERIOD</member></dim>
    <dim size="1"><member>YEAR</member></dim>
    <dim size="1"><member>CATEGORY</member></dim>
    <dim size="1"><member>CURRENCY</member></dim>
    <dim size="1"><member>CUSTOMER</member></dim>
    <dim size="1"><member>PRODUCT</member></dim>
    <dim size="1"><member>Business</member></dim>
    <dim size="1"><member>black</member></dim>
    <dim size="1"><member>Attribute Calculations</member></dim>
    </cluster>
    </subquery>
    <elapsedtime>94.217 seconds
    Any help would be appreciated.
    Regards,
    Martin Brandl

    Thanks for the swift response. Always ideas are useful.
    As of now , Middleware cannot split the file.
    Thing is SAP is creating two Idocs with different message types. Problem is First IDoc contains ORDERS message type but also DELIVERY segments as well. Second IDoc with DELIVERY message tyoe but ORDERS segments as well... This is the problem... I think we are missing some field activation in file for EDIDC record.
    As far as I know file port supports the number of IDocs in one file.. Hope TRFC port also supports that

  • Problem with number field

    Hi,
    I'm using ADO (Oracle Provider for OLEDB) to connect Oracle 9. If the type of any field in table is Number(9) and I open query with this field, all negative values are displayed as positive values. For example: If I write -1 value to this field and then post the dataSet (Delphi7 - TADOQuery) value is refreshed to 1. Real value in database is -1.
    Could anybody help me with this problem?
    Regards Jan.

    Once again :)
    I finally foud out that Deplhi does support (varDecimal), but delphi TCustomADODataSet (ADO recordSet wrapper) component incorrecltly treats such field type. It regards Decimal(<9,0) as integer (TIntegerField) but when it gets value from underlying ADO recordset it expects integer variant. So it's delphi problem. I hat to fix this problem in source code of this component.
    Regards Jan.

  • Journal Problem with Replicating another dimension on User Defined

    Hi experts,
    A curious thing is happing on development, I follow the HTG "SAP Business Planning and Consolidation for NetWeaver - Journals.pdf"; and this generate fine the journal, but when I was testing, doing a simple journal entry, a trouble occurred, the template has the structure below:
    Header:
    Category
    Time
    Group
    Row:
    DataSrc
    Entity
    Account
    Intco
    Flow - SubTable
    CLucro - User Defined
    CCusto - User Defined
    So when I fill all the information to every dimension and put the amount, I save, and don't get any error message, but on CLucro and CCusto appears the value of flow, and if I consult the Infocube on listcube I get this dimensions in blank.
    Fonte Empresa Conta        TipMov CLucro CCusto IntCo Remark Debit     Credit
    AJUSTE 1161 PC011101010001 BLK BLK BLK C1161                      100
    AJUSTE 1161 PC013604030001 BLK BLK BLK C1161       100
    Does anybody know what could be ? Journal can't has user defined dimension ?
    Best Regards
    Alexandre Mendoza Collepicolo

    Hi Ethan,
    I'm on BPC version NW 7.5 SP04. The HTG is on this link:
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/00497d6a-0f38-2d10-bfb5-d50b91c9c0e5
    I'm with the same problem related by M. Weisheit on this thread
    Re: Journal entry disappear
    Someone knows what could be ?
    Best regards

  • Problem with Number conversion!

    Hi all
    I am reading data from a msSQL Database. One value is a decimal format 9(10,3)(means 10 digits in total (including the ',' ; 3 decimal afer the comma)
    I am receiving for instance the value 567.200 from the DB.
    To do an RFC to a SAP System I have to convert with FormatNum to 567,200
    This works well when I am using ######.### and ',' in the FormatNum function of the mapping
    Later on, I have to convert it back to write the value into a so call history table. If I am now using ######,### and '.' in the FormatNum function I am getting every time a java exception!!
    If you suggest me to use an own java function please give me a concret code, because I am not a programmer. Only basics ;->
    Regards Oliver

    java.lang.NumberFormatException: For input string: "123,567"
    An arithmetic function requires a Java conform number.
    Regards
    Stefan

  • Problem with number fields using ASP

    Hello all,
    I am running IIS 5.0 on Windows 2000 SP 2. I have Oracle 8.1.5 installed on this machine. I am currently only using the sample database that with Oracle. When I run a simple select statement from the ASP page, I see everything correctly, except the number fields. In SQL Plus, the same query works fine. The query only has three types of fields --> varchar, date and number. Varchar and date fields show up fine but the number doesnt. It shows up as 0. I am giving the code I used below. Please let me know if I am missing something or if there is a bug that needs to be patched. If it is a bug, then please let me know where I can find the patch for it.
    Thanks a lot,
    Prateek
    <!-- Begin code -->
    <html>
    <head><title>My first ASP page</title></head>
    <body>
    <%
    Set db = Server.CreateObject("ADODB.Connection")
    db.Open "dsn=oracle_conn;uid=scott;pwd=tiger"
    set rs = Server.CreateObject("ADODB.recordset")
    //set rs=db.execute("SELECT * FROM emp")
    rs.Open "SELECT * FROM emp", db
    rs.MoveFirst
    response.write("<table border=1>")
    response.write("<tr>")
    for each x in rs.Fields
    response.write "<th>" & x.name & "</th>"
    next
    response.write("</tr>")
    Do While Not rs.EOF
    response.write("<tr>")
    For I = 0 To rs.Fields.Count - 1
    response.write "<td>" & rs(I) & "</td>"
    Next
    response.write("</tr>")
    rs.MoveNext
    LOOP
    response.write "</table>"
    rs.Close
    db.Close
    %>
    </body>
    </html>
    <!-- End code -->

    Hi all:
    It seems like the above mentioned case is a bug. Supposedly it has been fixed in newer versions of Oracle but I am not sure about it as I dont have the time or resources to test and find out. But here is the fix for it in 8.1.5.
    It seems only the fields that have a size defined along with the number field dont show up properly. If you leave the number field as it is (without specifying the size), then it seems to work fine.
    Thanks a lot for all your help,
    Prateek

  • Problem with Number of Columns in XML Report

    Hi,
    I am trying to make a XML report with more than 64 columns. When i am trying to load the data into MS Word , it is giving me error saying a table cannot have more than 63 columns. If i reduce the no.of columns , then i am able to create the report.Can any one advise me how to overcome the error.
    Thanks and Regards
    Raj

    >
    Balaram naidu Bankuru wrote:
    > Hello Bhaskaran,
    >
    > I tried that approach as well,but still issue exists.I am using Generic user id for executing Web Dynpro ABAP application in portal via iView.Does it anything do with generic user id.We also observed one more issue where table columns are getting disappeared..
    >
    > Thanks,
    > Balaram
    Hallo Balaram,
    Appearance of the column order we have had this problem and i thought that we have solved by position method. Looks like that we have tried that method and didnt work seems now.
    As far as i know it is nothing to do with Generic user id except that there are no personalization involved.
    Table column disappearing might be a personalization issue.

  • Impact of table columns with number datatype but has no precision in Forms

    Hi.
    Currently, I have table columns that have a data type of number but has no precision declared (e.g. AGREEMENT_CODE NUMBER). I would just like to ask if there's anyone out there who knows if this has a negative impact on Oracle's forms and reports...with the way buffer memories are allocated or other things on performance. I am still putting in maximum length values for base table items. I don't know if this will affect buffer memory allocation as well.
    Thank you.

    I don't know this for fact, but I would think that numbers with a large number of significant figures might affect buffer sizes, but I'll bet your example AGREEMENT_CODE values would never have a large number of figures. In fact, whether or not you limit the size of a number in the database or your form probably does not affect the way the actual data values are transmitted or stored.
    If someone is telling you to worry about this, I think they are barking up the wrong tree someplace way out in left field.
    There are so many other things that can seriously affect processing speed and data transfer speed, starting with query plans and index usage. I have never heard this one causing concern anywhere before.

  • Problems with root ( / ) partititon dimension

    Everything is on the subject, using conky as a system monitor or scanning my file system with baobab (gnome utility) i see that my / partition has 7.8 GB of files but if i try to search "phisically" these files i can find only 5.5 GB...where are the remaining 2.3 GB?
    The partition is formatted with XFS filesystem...
    thanks
    p.s. Baobab sees 7.8 GB but when i look at the files detail below this number i can find only 5.5 GB like i said before

    Filesystem blocchi di 1K Usati Disponib. Uso% Montato su
    /dev/sda1 15347840 8182668 7165172 54% /
    /dev/sda2 125205652 17447956 107757696 14% /home
    There are some words in italiana but i believe you know the layout of the output so it won't be too difficult to understand it.
    However it seems that i'm using 54% of my root partition and this is 7.8 GB, 8.182.688 KB
    Last edited by Demind (2008-01-20 13:54:20)

  • Problem with number of rows per page ....

    Hi,
    I have a updatable report .This is a dynamic report which can have more than 100 columns depending on the table name .I have set number of rows =15 in layout and pagination .Its displaying 15 rows per page .My requirement is 50 rows per page .So i changed to 50 in layout and pagination .Its displaying 50 rows per page .But when i select some button in that page or move to other tab i get "page not found "error .If i replace back to 15 rows per page ,everything works fine ...Dont know why this is happening ..Please help..
    Thanks in advance ....

    Hello,
    You can use Maximum Records per page property of Repeating
    Frame.
    Adi

  • Problem with number of bits........

    Hello every one here........
    I have a problem while converting a string of bits into characters...........my method is something like this......I am giving a string on client side....converting that string into string of bits and sending the bits to server side....now my problem is how to convert this string of bits into string which i originally gave at client side......
    I used a method as shown below:
    while(str.length()>0)
              i=7;
              System.out.print((char)Integer.parseInt(str.substring(0,i),2));
              str=str.substring(i);
    here "str" is the string of bits which i received from client.......now coming to original problemEach character in the string which i gave on client side are converted to string of bits having 7 bits except the "space character" which is taking only 6 bits...... in my method as i am grouping 7 characters and printing the output i am getting wrong result after "space character"........
    can anyone solve my problem.....
    thanks in advance....
    Deepika

    class BitStuff
         public static void main(String args[])
              try{
              String str=JOptionPane.showInputDialog("Enter ur code");
              char ch[]=str.toCharArray();
              String bitString="";
              String stuffedBits[]=new String[10000];     
              String stuffedString="";
              String counts;
    /*here i am ensuring dat each character generates 7 bits*/
              for(int i=0;i<ch.length;i++)
                   counts=(Integer.toBinaryString(ch));
                   if(counts.length()<7)
                        for(int j=counts.length();j<7;j++)     
                        counts="0".concat(counts);
                   bitString=bitString.concat(counts);
              String bitsArray[]=bitString.split("11111");
              for(int i=0;i<bitsArray.length;i++)
                   stuffedBits[i]="111110".concat(bitsArray[i]);
                   stuffedString=stuffedString.concat(stuffedBits[i]);
              stuffedString=stuffedString.replaceFirst("111110","");
              stuffedString="01111110".concat(stuffedString);
              stuffedString=stuffedString.concat("01111110");
              System.out.println(stuffedString);
              Socket s=new Socket("localhost",8280);
              OutputStream os=s.getOutputStream();
              byte b[]=stuffedString.getBytes();
              os.write(b,0,b.length);}
              catch(Exception e)
              {System.out.println(e);}
    as the ascii of space is 32 it is 100000 here the method returns as 100000 instead of 0100000......

Maybe you are looking for

  • Did the macbook white 2010 MC516LL/have a  keyboard problem

    did their or not ans which did not have them MC516LL/A ?

  • Number range transport request

    Hi, pls tell me are number range intervals  not transported using transport request, if yes then how are number ranges appear in prod. server. thanks Kavita

  • Start-msg: could not get server configuration in ldap

    Hello, I am trying to get iPlanet Messaging Server 5.2 Patch 1 running, but when I run start-msg I get the following error message: General Warning: could not get server configuration in ldap, using cached configuration information Note: I created th

  • Invoice verification for multiple plants

    Dear Gurus I have two PO for the same for two different plant,Grn is done.Miro for these two plant has to be done together.so by refering the two POS of different plant i tried to do miro.But the business area for the two plants are different.when i

  • Stop search from finding words in document

    Many of the docs I have in my SharePoint 2013 are pdfs which are poorly scanned and not searchable.  However, a requirement is to have search center working, but limited to return only a search where the results are based off of metadata tags (ie no