Cube attribute shows data in capital letters

I have a strange issue. I am using SQL Server 2000 analysis services cube. The backend is in in Oracle. For one of the cube attribute, the data in backend are "Centro", "Lima", "Norte" and "Sur".
But in cube, the "Lima" is appearing as "LIMA" while other data are showing correct as "Centro", "Norte" and "Sur". The strange part is "Lima" is shown as "LIMA" in cube. The datatype
of this attribute is Char.

SQL Server 2000 was out of support since April,2013. I suggest you can try to install SQL Server 2005 or later version.

Similar Messages

  • Changing the small letters to capital letters

    Hai,
    Experts,
      I retrieved the data from ADRC table into the Smartform. Then it displayed the data in small letters. How should i Change that Data in Capital letters.
    Thanks & Regards,
    Rathnam.

    Hi..
    use translate stmt..
    <b>translate <fld > to UPPERCASE</b>.
    The TRANSLATE statement converts characters into upper or lower case, or uses substitution rules to convert all occurrences of one character to another character.
    Converting to Upper or Lower Case
    TRANSLATE <c> TO UPPER CASE.
    TRANSLATE <c> TO LOWER CASE.
    These statements convert all lower case letters in the field <c> to upper case or vice versa.
    Substituting Characters
    TRANSLATE <c> USING <r>.
    This statement replaces all characters in field <c> according to the substitution rule stored in field <r> . <r> contains pairs of letters, where the first letter of each pair is replaced by the second letter. <r> can be a variable.
    For more variants of the TRANSLATE statement with more complex substitution rules, see the keyword documentation in the ABAP Editor.
    DATA: T(10) VALUE 'AbCdEfGhIj',
    STRING LIKE T,
    RULE(20) VALUE 'AxbXCydYEzfZ'.
    STRING = T.
    WRITE STRING.
    TRANSLATE STRING TO UPPER CASE.
    WRITE / STRING.
    STRING = T.
    TRANSLATE STRING TO LOWER CASE.
    WRITE / STRING.
    STRING = T.
    TRANSLATE STRING USING RULE.
    WRITE / STRING.

  • 11g Cube not showing any data with no Rejected records

    Hi David ,
    Strangely one of my 11g Cube is not showing data from today as it is showing all records rejected . However when I lookup Rejected records table I didn't find any records .Not sure what is happening . When I want to peep out the AWM queries from CUBE_BUILD_LOG and ran to the database in the AWM schema the records are retruning perfectly fine . I wonder same query is firing during Cube load but without any data ? My Cube build script has only LOAD and Aggregate .
    after maintain My dimensions data are looking fine but no data populated after Cube maintenance . My MV switch off across all dimensions and cubes .
    I navigate to CUBE_OPERATION_LOG and not able to comprehend about the content.
    Any advice ?
    Thanks and Regards,
    DxP

    Hi David ,
    To be very frank today is very bad day ... Please see below my observation:
    Executed below to make sure that no key values in dimension is missing but present in fact . All below query returns no row.
    select distinct owner_postn_wid from w_synm_rx_t_f
    minus
    select distinct row_wid from postn_dh
    select distinct payer_type_Wid from w_synm_rx_t_f
    minus
    select distinct row_wid from wc_ins_plan_dh
    select distinct market_wid from w_synm_rx_t_f
    minus
    select distinct row_wid from w_product_dh
    select distinct period_day_wid from w_synm_rx_t_f
    minus
    select distinct row_wid from w_daytime_D
    select distinct contact_wid from w_synm_rx_t_f
    intersect
    select distinct row_wid from w_person_d
    select distinct X_TERR_TYPE_WID from w_synm_rx_t_f
    minus
    select distinct row_wid from W_LOV_D
    ============================
    Below returns count of 0 rows : ensure no NULL present
    select count(1) from w_synm_rx_t_f where contact_wid is null;
    select count(1) from w_synm_rx_t_f where owner_postn_wid is null;
    select count(1) from w_synm_rx_t_f where payer_type_Wid is null;
    select count(1) from w_synm_rx_t_f where period_day_wid is null;
    select count(1) from w_synm_rx_t_f where X_TERR_TYPE_WID is null;
    select count(1) from w_synm_rx_t_f where market_wid is null;
    +++++++++++++++++++++++++++++++++
    Cube Build Log has below entry:
    796     0     STARTED     CLEAR VALUES     MKT_SLS_CUBE     CUBE          NNOLAP     NN_OLAP_POC     P14:JAN2010          17-AUG-11 07.12.08.267000000 PM +05:30          JAVA     1          C     47141     67     0     1     
    796     0     COMPLETED     CLEAR VALUES     MKT_SLS_CUBE     CUBE          NNOLAP     NN_OLAP_POC     P14:JAN2010          17-AUG-11 07.12.08.267000000 PM +05:30          JAVA     1          C     47141     67     0     2     
    796     0     STARTED     LOAD     MKT_SLS_CUBE     CUBE          NNOLAP     NN_OLAP_POC     P14:JAN2010          17-AUG-11 07.12.08.283000000 PM +05:30          JAVA     1          C     47142     68     0     1     
    796     0     SQL     LOAD     MKT_SLS_CUBE     CUBE     "<SQL>
    <![CDATA[
    SELECT /*+ bypass_recursive_check cursor_sharing_exact no_expand no_rewrite */
    T16_ROW_WID ALIAS_127,
    T13_ROW_WID ALIAS_128,
    T10_ROW_WID ALIAS_129,
    T7_ROW_WID ALIAS_130,
    T4_ROW_WID ALIAS_131,
    T1_ROW_WID ALIAS_132,
    SUM(T20_MKT_TRX) ALIAS_133,
    SUM(T20_MKT_NRX) ALIAS_134
    FROM
    SELECT /*+ no_rewrite */
    T1."CONTACT_WID" T20_CONTACT_WID,
    T1."MARKET_WID" T20_MARKET_WID,
    T1."OWNER_POSTN_WID" T20_OWNER_POSTN_WID,
    T1."PAYER_TYPE_WID" T20_PAYER_TYPE_WID,
    T1."PERIOD_DAY_WID" T20_PERIOD_DAY_WID,
    T1."MKT_NRX" T20_MKT_NRX,
    T1."MKT_TRX" T20_MKT_TRX,
    T1."X_TERR_TYPE_WID" T20_X_TERR_TYPE_WID
    FROM
    NN_OLAP_POC."W_SYNM_RX_T_F" T1 )
    T20,
    SELECT /*+ no_rewrite */
    T1."ROW_WID" T16_ROW_WID
    FROM
    NN_OLAP_POC."W_DAYTIME_D" T1 )
    T16,
    SELECT /*+ no_rewrite */
    T1."ROW_WID" T13_ROW_WID
    FROM
    NN_OLAP_POC."W_PERSON_D" T1 )
    T13,
    SELECT /*+ no_rewrite */
    T1."ROW_WID" T10_ROW_WID
    FROM
    NN_OLAP_POC."WC_INS_PLAN_DH" T1 )
    T10,
    SELECT /*+ no_rewrite */
    T1."ROW_WID" T7_ROW_WID
    FROM
    NN_OLAP_POC."W_LOV_D" T1 )
    T7,
    SELECT /*+ no_rewrite */
    T1."ROW_WID" T4_ROW_WID
    FROM
    NN_OLAP_POC."POSTN_DH" T1 )
    T4,
    SELECT /*+ no_rewrite */
    T1."ROW_WID" T1_ROW_WID
    FROM
    NN_OLAP_POC."W_PRODUCT_DH" T1 )
    T1
    WHERE
    ((T20_PERIOD_DAY_WID = T16_ROW_WID)
    AND (T16_ROW_WID = 20100101)
    AND (T20_CONTACT_WID = T13_ROW_WID)
    AND (T20_PAYER_TYPE_WID = T10_ROW_WID)
    AND (T7_ROW_WID = T20_X_TERR_TYPE_WID)
    AND (T20_OWNER_POSTN_WID = T4_ROW_WID)
    AND (T20_MARKET_WID = T1_ROW_WID)
    AND ((T20_PERIOD_DAY_WID) IN ((20100107.000000) , (20100106.000000) , (20100128.000000) , (20100124.000000) , (20100121.000000) , (20100118.000000) , (20100115.000000) , (20100109.000000) , (20100125.000000) , (20100114.000000) , (20100111.000000) , (20100110.000000) , (20100104.000000) , (20100101.000000) , (20100129.000000) , (20100123.000000) , (20100117.000000) , (20100113.000000) , (20100108.000000) , (20100131.000000) , (20100120.000000) , (20100116.000000) , (20100119.000000) , (20100105.000000) , (20100102.000000) ,
    (20100130.000000) , (20100127.000000) , (20100122.000000) , (20100112.000000) , (20100103.000000) , (20100126.000000) ) ) )
    GROUP BY
    (T1_ROW_WID, T4_ROW_WID, T7_ROW_WID, T10_ROW_WID, T13_ROW_WID, T16_ROW_WID)
    ORDER BY
    T1_ROW_WID ASC NULLS LAST ,
    T4_ROW_WID ASC NULLS LAST ,
    T7_ROW_WID ASC NULLS LAST ,
    T10_ROW_WID ASC NULLS LAST ,
    T13_ROW_WID ASC NULLS LAST ,
    T16_ROW_WID ASC NULLS LAST ]]>/>
    </SQL>"     NNOLAP     NN_OLAP_POC     P14:JAN2010          17-AUG-11 07.12.08.627000000 PM +05:30          JAVA     1     MAP1     C     47142     68     0     2     
    796     0     COMPLETED     LOAD     MKT_SLS_CUBE     CUBE     "<CubeLoad
    LOADED="0"
    REJECTED="4148617"/>"     NNOLAP     NN_OLAP_POC     P14:JAN2010          17-AUG-11 07.12.40.486000000 PM +05:30          JAVA     1          C     47142     68     0     3     
    796     0     STARTED     UPDATE     MKT_SLS_CUBE     CUBE          NNOLAP     NN_OLAP_POC     P14:JAN2010          17-AUG-11 07.12.40.501000000 PM +05:30          JAVA     1          C     47143     69     0     1     
    796     0     COMPLETED     UPDATE     MKT_SLS_CUBE     CUBE          NNOLAP     NN_OLAP_POC     P14:JAN2010          17-AUG-11 07.12.40.548000000 PM +05:30          JAVA     1          C     47143     69     0     2     
    +++++++++++++++++
    You can observer clear rejection of 4 million rows ... Ran the above query which returns my data successfully.
    Look out to CUBE_REJECTED records take the sample record and put into the above query it is returning the data fine with my measures and dimension WID's :(PLEASE SEE BELOW THE FILTERS on ROW_WID)
    =========================
    SELECT /*+ bypass_recursive_check cursor_sharing_exact no_expand no_rewrite */
    T16_ROW_WID ALIAS_127,
    T13_ROW_WID ALIAS_128,
    T10_ROW_WID ALIAS_129,
    T7_ROW_WID ALIAS_130,
    T4_ROW_WID ALIAS_131,
    T1_ROW_WID ALIAS_132,
    SUM(T20_MKT_TRX) ALIAS_133,
    SUM(T20_MKT_NRX) ALIAS_134
    FROM
    SELECT /*+ no_rewrite */
    T1."CONTACT_WID" T20_CONTACT_WID,
    T1."MARKET_WID" T20_MARKET_WID,
    T1."OWNER_POSTN_WID" T20_OWNER_POSTN_WID,
    T1."PAYER_TYPE_WID" T20_PAYER_TYPE_WID,
    T1."PERIOD_DAY_WID" T20_PERIOD_DAY_WID,
    T1."MKT_NRX" T20_MKT_NRX,
    T1."MKT_TRX" T20_MKT_TRX,
    T1."X_TERR_TYPE_WID" T20_X_TERR_TYPE_WID
    FROM
    NN_OLAP_POC."W_SYNM_RX_T_F" T1 )
    T20,
    SELECT /*+ no_rewrite */
    T1."ROW_WID" T16_ROW_WID
    FROM
    NN_OLAP_POC."W_DAYTIME_D" T1 )
    T16,
    SELECT /*+ no_rewrite */
    T1."ROW_WID" T13_ROW_WID
    FROM
    NN_OLAP_POC."W_PERSON_D" T1 )
    T13,
    SELECT /*+ no_rewrite */
    T1."ROW_WID" T10_ROW_WID
    FROM
    NN_OLAP_POC."WC_INS_PLAN_DH" T1 )
    T10,
    SELECT /*+ no_rewrite */
    T1."ROW_WID" T7_ROW_WID
    FROM
    NN_OLAP_POC."W_LOV_D" T1 )
    T7,
    SELECT /*+ no_rewrite */
    T1."ROW_WID" T4_ROW_WID
    FROM
    NN_OLAP_POC."POSTN_DH" T1 )
    T4,
    SELECT /*+ no_rewrite */
    T1."ROW_WID" T1_ROW_WID
    FROM
    NN_OLAP_POC."W_PRODUCT_DH" T1 )
    T1
    WHERE
    ((T20_PERIOD_DAY_WID = T16_ROW_WID)
    AND (T16_ROW_WID = 20100101)
    AND (T20_CONTACT_WID = T13_ROW_WID)
    AND (T20_PAYER_TYPE_WID = T10_ROW_WID)
    AND (T7_ROW_WID = T20_X_TERR_TYPE_WID)
    AND (T20_OWNER_POSTN_WID = T4_ROW_WID)
    AND (T20_MARKET_WID = T1_ROW_WID)
    AND T13_ROW_WID = 255811
    AND T7_ROW_WID = 122
    AND T4_ROW_WID =3
    AND T1_ROW_WID=230
    AND T10_ROW_WID = 26
    AND ((T20_PERIOD_DAY_WID) IN ((20100107.000000) , (20100106.000000) , (20100128.000000) , (20100124.000000) , (20100121.000000) , (20100118.000000) , (20100115.000000) , (20100109.000000) , (20100125.000000) , (20100114.000000) , (20100111.000000) , (20100110.000000) , (20100104.000000) , (20100101.000000) , (20100129.000000) , (20100123.000000) , (20100117.000000) , (20100113.000000) , (20100108.000000) , (20100131.000000) , (20100120.000000) , (20100116.000000) , (20100119.000000) , (20100105.000000) , (20100102.000000) ,
    (20100130.000000) , (20100127.000000) , (20100122.000000) , (20100112.000000) , (20100103.000000) , (20100126.000000) ) ) )
    GROUP BY
    (T1_ROW_WID, T4_ROW_WID, T7_ROW_WID, T10_ROW_WID, T13_ROW_WID, T16_ROW_WID)
    ORDER BY
    T1_ROW_WID ASC NULLS LAST ,
    T4_ROW_WID ASC NULLS LAST ,
    T7_ROW_WID ASC NULLS LAST ,
    T10_ROW_WID ASC NULLS LAST ,
    T13_ROW_WID ASC NULLS LAST ,
    T16_ROW_WID ASC NULLS LAST
    =================================
    THE XML export of CUBE as below:
    <!DOCTYPE Metadata [
    <!ENTITY % BIND_VALUES PUBLIC "OLAP BIND VALUES" "OLAP METADATA">
    %BIND_VALUES;
    ]>
    <Metadata
    Version="1.2"
    MinimumDatabaseVersion="11.2.0.1">
    <Cube
    ETViewName="MKT_SLS_CUBE_VIEW"
    Name="MKT_SLS_CUBE">
    <Measure>
    <BaseMeasure
    SQLDataType="NUMBER"
    ETMeasureColumnName="TRX"
    Name="TRX">
    <Description
    Type="LongDescription"
    Language="AMERICAN"
    Value="TRX">
    </Description>
    <Description
    Type="ShortDescription"
    Language="AMERICAN"
    Value="TRX">
    </Description>
    <Description
    Type="Description"
    Language="AMERICAN"
    Value="TRX">
    </Description>
    </BaseMeasure>
    </Measure>
    <Measure>
    <BaseMeasure
    SQLDataType="NUMBER"
    ETMeasureColumnName="NRX"
    Name="NRX">
    <Description
    Type="LongDescription"
    Language="AMERICAN"
    Value="NRX">
    </Description>
    <Description
    Type="ShortDescription"
    Language="AMERICAN"
    Value="NRX">
    </Description>
    <Description
    Type="Description"
    Language="AMERICAN"
    Value="NRX">
    </Description>
    </BaseMeasure>
    </Measure>
    <CubeMap
    Name="MAP1"
    IsSolved="False"
    Query="W_SYNM_RX_T_F"
    WhereClause="W_DAYTIME_D.ROW_WID = 20100101">
    <MeasureMap
    Name="TRX"
    Measure="TRX"
    Expression="W_SYNM_RX_T_F.MKT_TRX">
    </MeasureMap>
    <MeasureMap
    Name="NRX"
    Measure="NRX"
    Expression="W_SYNM_RX_T_F.MKT_NRX">
    </MeasureMap>
    <CubeDimensionalityMap
    Name="TIME"
    Dimensionality="TIME"
    MappedDimension="TIME.CALENDER.MONTHLY"
    JoinCondition="W_SYNM_RX_T_F.PERIOD_DAY_WID = W_DAYTIME_D.ROW_WID"
    Expression="W_DAYTIME_D.ROW_WID">
    </CubeDimensionalityMap>
    <CubeDimensionalityMap
    Name="CUSTOMER"
    Dimensionality="CUSTOMER"
    MappedDimension="CUSTOMER.CUSTOMER_HIERARCHY.DETAIL_LEVEL"
    JoinCondition="W_SYNM_RX_T_F.CONTACT_WID = W_PERSON_D.ROW_WID"
    Expression="W_PERSON_D.ROW_WID">
    </CubeDimensionalityMap>
    <CubeDimensionalityMap
    Name="INS_PLAN_DH"
    Dimensionality="INS_PLAN_DH"
    MappedDimension="INS_PLAN_DH.INS_PLAN.DETAIL"
    JoinCondition="W_SYNM_RX_T_F.PAYER_TYPE_WID = WC_INS_PLAN_DH.ROW_WID"
    Expression="WC_INS_PLAN_DH.ROW_WID">
    </CubeDimensionalityMap>
    <CubeDimensionalityMap
    Name="LIST_OF_VALUES"
    Dimensionality="LIST_OF_VALUES"
    MappedDimension="LIST_OF_VALUES.LOV_HIERARCHY.DETAIL_LEVEL"
    JoinCondition="W_LOV_D.ROW_WID = W_SYNM_RX_T_F.X_TERR_TYPE_WID"
    Expression="W_LOV_D.ROW_WID">
    </CubeDimensionalityMap>
    <CubeDimensionalityMap
    Name="POSITIONDH"
    Dimensionality="POSITIONDH"
    MappedDimension="POSITIONDH.POST_HIER.DETAIL"
    JoinCondition="W_SYNM_RX_T_F.OWNER_POSTN_WID = POSTN_DH.ROW_WID"
    Expression="POSTN_DH.ROW_WID">
    </CubeDimensionalityMap>
    <CubeDimensionalityMap
    Name="PRODH"
    Dimensionality="PRODH"
    MappedDimension="PRODH.PRODHIER.DETAILLVL"
    JoinCondition="W_SYNM_RX_T_F.MARKET_WID = W_PRODUCT_DH.ROW_WID"
    Expression="W_PRODUCT_DH.ROW_WID">
    </CubeDimensionalityMap>
    </CubeMap>
    <Organization>
    <AWCubeOrganization
    MVOption="NONE"
    SparseType="COMPRESSED"
    MeasureStorage="SHARED"
    NullStorage="MV_READY"
    CubeStorageType="NUMBER"
    PrecomputePercent="35"
    PrecomputePercentTop="0"
    PartitionLevel="TIME.CALENDER.MONTHLY"
    AW="&AW_NAME;">
    <SparseDimension
    Name="TIME"/>
    <SparseDimension
    Name="CUSTOMER"/>
    <SparseDimension
    Name="INS_PLAN_DH"/>
    <SparseDimension
    Name="LIST_OF_VALUES"/>
    <SparseDimension
    Name="POSITIONDH"/>
    <SparseDimension
    Name="PRODH"/>
    <DefaultBuild>
    <![CDATA[BUILD SPEC LOAD_AND_AGGREGATE
      LOAD NO SYNCH,
      SOLVE
    )]]>
    </DefaultBuild>
    </AWCubeOrganization>
    </Organization>
    <Dimensionality
    Name="TIME"
    ETKeyColumnName="TIME"
    Dimension="TIME">
    </Dimensionality>
    <Dimensionality
    Name="CUSTOMER"
    ETKeyColumnName="CUSTOMER"
    Dimension="CUSTOMER">
    </Dimensionality>
    <Dimensionality
    Name="INS_PLAN_DH"
    ETKeyColumnName="INS_PLAN_DH"
    Dimension="INS_PLAN_DH">
    </Dimensionality>
    <Dimensionality
    Name="LIST_OF_VALUES"
    ETKeyColumnName="LIST_OF_VALUES"
    Dimension="LIST_OF_VALUES">
    </Dimensionality>
    <Dimensionality
    Name="POSITIONDH"
    ETKeyColumnName="POSITIONDH"
    Dimension="POSITIONDH">
    </Dimensionality>
    <Dimensionality
    Name="PRODH"
    ETKeyColumnName="PRODH"
    Dimension="PRODH">
    </Dimensionality>
    <Description
    Type="LongDescription"
    Language="AMERICAN"
    Value="MKT SLS CUBE">
    </Description>
    <Description
    Type="ShortDescription"
    Language="AMERICAN"
    Value="MKT SLS CUBE">
    </Description>
    <Description
    Type="Description"
    Language="AMERICAN"
    Value="MKT SLS CUBE">
    </Description>
    <ConsistentSolve>
    <![CDATA[SOLVE
      SUM
        MAINTAIN COUNT
         OVER ALL
    )]]>
    </ConsistentSolve>
    </Cube>
    </Metadata>
    +++++++++++++++++++++++
    I dropped the AW and create new from exported XML and maintain all dimensions and then rebuild . Still have the issue :(
    Any thing you can hightlight from above ?
    Thanks,
    DxP
    Also I sustpect whethere it is a issue due to below error caused when I click on one of my Position_Hier view from AWM : even if I select that view it is throwing the error in SQL developer after displaying first couple of rows (while page down)
    java.sql.SQLException: ORA-33674: Data block size 63 exceeds the maximum size of 60 bytes.
    at oracle.olap.awm.util.jdbc.SQLWrapper.execute(Unknown Source)
    at oracle.olap.awm.querydialog.PagedQueryDialog$1.construct(Unknown Source)
    at oracle.olap.awm.ui.SwingWorker$2.run(Unknown Source)
    at java.lang.Thread.run(Thread.java:595)
    Edited by: e_**** on Aug 17, 2011 8:41 PM

  • SSAS cube is not showing data

    Hi All,
    I have build a cube in ssas 2008. The cube processes successfully. but wheni browse the cube it does not show data.
    I check it in dsv Fact table--> Explore data --> it displays data. But i cannot see the data when i browse the cube.
    I have 3 cubes in one solution, there i also processed the complete solution. There is no problem with other cubes except for this one.
    I have only dragged the measure and not the dimension. hence i do not think there can be any relationship issue.
    Can anybody please suggest??
    Thanks & Regards, Chaitali Thaker

    Hi Chaitali,
    Check if the CALCULATE; command is present in the Scripts/Calculations tab.
    Ensure that you specify the relationship between dimensions and measure groups.
    Set any related dimension UnknownMember properties to Visible.
    thank you,
    Radhakishan

  • Iphoto shows two photo libraries with the same name, one in small letters the other in all capital letters. they both open the same library and the only one in my computer. How do delete the capital letrs one as the one in the pictures folder is in

    In my  iPhoto application when I select switch libraries It shows 2 libraries with the same name, but one has the name is in Capital letters.
    They both open the same library which is in the Pictures folder. This is the only library I can see and the name is not in capital letters?
    How do I get rid of the one in capital letters

    What is your iPhoto version?
    when I select switch libraries It shows 2 libraries with the same name, but one has the name is in Capital letters.
    In the Library Chooser Panel look for the pathes to the two duplicate libraries. You will see the location of the libraries in the path bar at the bottom of the window when you select one of the libraries. Does it show both libraries in the same folder?

  • Why is my keyboard only typint CAPITAL LETTERS?

    My keyboard only types CAPITAL LETTERS. When I restart the computer it is taking ages to boot and words "Boot Safe" appears in red on the screen. Mail search is not working and nor is spotlight

    vicentelou,
    if you made a backup of your system before installing 10.9.4, you can restore from the backup. If you didn’t make such a backup, you can do it manually by booting into Recovery mode, completely erasing your internal disk, letting OS X Internet Recovery redownload and reïnstall your MacBook Pro’s original version of OS X, running Software Update to get it up to date in-version, and if necessary redownloading Mavericks from the Mac App Store and reïnstalling Mavericks — that should get you back to 10.9.3.

  • Table entries only with capital letters

    Hi
    I have created a table with some entries.One of these is type char length 65.My problem appears when i try to add entries to my table in this field,it will automatically transform them in capital letters.Even if i write with small letters,when saving,it will save my text with capital letters.How can i change this?
    thank you.

    Hi Seba,
    Make below change in the DOMAIN for that field
    Domain
    Defination Tab
    Tick Lower Case Checkbox of Output Characteristics..
    Use
    When this attribute is activated, you can enter both upper and lower
    case letters; conversion to upper case does not then take place. Use of
    this attribute only makes sense with character formats.
    Hope it will solve your problem..
    Thanks & Regards
    ilesh 24x7
    ilesh Nandaniya

  • Showing Data in Oracle Discoverer Desktop

    Dear ALL,
    I am facing an issue in development of Relational reports in Oracle Discoverer Desktop.
    Following are the details of my warehouse (Data Mart) database:
    There are 2 Dimensions and 1 cube in the Data Mart. All the 2 dimensions and Cube are based on tables Currency, Accounts and Fact_Data respectively in our Data Mart.
    Fact table contains 2 facts (CLOSING_BALANCE,MAX_BALANCE) and and the values are stored in USD currency.
    The fact table contains 100,000 rows with all values/facts in USD currency.
    Details of EUL(End User Layer):
    I have derived all 2 dimensions and cube from OWB, which generates all the "Business Definitions" and "Business Areas".
    Issue:
    I need to show the end user a report (from discoverer) which shows all the values/facts in PKR currency.
    What is the best way to get this report?
    I have tried many methods, including "Creating a Materialized View (MV) on fact table which contains converted values in PKR and then making a view (Union of fact table and MV) which gives me 200,000 rows." But this solution has an issue that i can not join the View with other dimensions in Discoverer because View contains dimension keys (same as fact table) and dimension tables contain Surrogate Ids.
    Thanks in advance for your help and suggestions.
    Best Regards

    Hi,
    You cannot schedule and email using Discoverer scheduling. You have to use a third party scheduler and Discoverer Desktop. This article (http://ascbi.com/downloads/Third%20Party%20Documents/Scheduling%20through%20Concurrent%20Manager.pdf) may give you some ideas on how you can use third party scheduling with apps. A bit of extra development will also give you emailing of the scheduled output.
    Rod West

  • Using views to show data in discoverer desktop

    Dear ALL,
    I am facing an issue in development of Relational reports in Oracle Discoverer Desktop.
    Following are the details of my warehouse (Data Mart) database:
    There are 2 Dimensions and 1 cube in the Data Mart. All the 2 dimensions and Cube are based on tables Currency, Accounts and Fact_Data respectively in our Data Mart.
    Fact table contains 2 facts (CLOSING_BALANCE,MAX_BALANCE) and and the values are stored in USD currency.
    The fact table contains 100,000 rows with all values/facts in USD currency.
    Details of EUL(End User Layer):
    I have derived all 2 dimensions and cube from OWB, which generates all the "Business Definitions" and "Business Areas".
    Issue:
    I need to show the end user a report (from discoverer) which shows all the values/facts in PKR currency.
    What is the best way to get this report?
    I have tried many methods, including "Creating a Materialized View (MV) on fact table which contains converted values in PKR and then making a view (Union of fact table and MV) which gives me 200,000 rows." But this solution has an issue that i can not join the View with other dimensions in Discoverer because View contains dimension keys (same as fact table) and dimension tables contain Surrogate Ids.
    Thanks in advance for your help and suggestions.
    Best Regards

    Hi,
    Then you should be able to import your exchange rate table as a new folder in the EUL, join this folder to your fact table using date and create a calculation for the converted currency.
    Rod West

  • Show Data as percent of Column with static table

    Hello,
    I have a problem calculating a % in a table. I have two columns in criteria tab:
    Departments and measure
    I need an extra column that calc % of total departments for each department. I know that I can do it with pivot table creating a new column and put: Show Data --> as Percent of --> Column but I need to do with static table.
    Is possible to do it??
    Thanks!!!

    Alex,
    You could try the following example here :
    http://www.biconsultinggroup.com/knowledgebase.asp?CategoryID=198&SubCategoryID=364
    using sum( measure by dimension attribute)
    This should give you access to the grand total in the report as a column, from which you can derive % of.
    HTH, if correct please mark answered / award points as you see fit to do so!!
    Alastair

  • Query doesnot show data

    Hi experts
    we have one data validation query where I am trying to see data according to Request numbers...For every year we have two requests...one Base data request and other Restated data request...
    Like that for 2009..its showing data for Base data request but not Restated data request
    ITS same problem with 2010 data requests...
    Do you know how to fix this problem?
    Thanks in advance.
    S Hayward.

    Couple of things:
    1. Are both the request kept in same cube?
       If yes, browse the cube data and see if you are able to see the request ID there.
       If no, then check the filter in the query and make sure that result is not filtered by infoprovider.
    2. Is your query running on cube directly or running on multiprovider?
       If not, check the multiprovider definition. You can try browing the data from multiprovider and see if you are getting desired result.
    - Danny

  • Laptop show shapes instead of letters and numbes

    showing a bunch of symbols instead of letters. I swiped my finger for login. It's going through its process. Shifted to blank screen, waiting.......ctrl/ale/delete same symbols. Task manager is the last one on list. Click, screen is blank same symbols, expanded box. Click bottom left opens box to more symbols. Did restore to a previous point still the same. Shows symbols instead of letters

    @juan0215 ,
    Hello and thank you for posting on the HP support forums.  The first thing you are going to have to do is find a way of backing up your data from your hard drive.
    Once you have done that then you will want to do a full system recovery.  This is only if this problem exist in safe mode as well as in normal operations.
    Here is a link to help you boot into safe mode.
    Windows 8 Safe Mode
    If you are still having the problem in Safe Mode then you will have to back up your data the best you can and do the system recovery.  This will take you back to the systems original configuration.
    Performing an HP system recovery (Windows 8)
    If after the recovery you still have the same issue then you will need a repair.  For this you will have to contact HP phone support.
    Please call our technical support at 800-474-6836. If you live outside the US/Canada Region, please click the link below to get the support number for your region. http://www8.hp.com/us/en/contact-hp/ww-phone-assist.html
    Thank you again for posting and have a great day.
    Please click the "Thumbs Up" on the bottom right of this post to say thank you if you appreciate the support I provide!
    Also be sure to mark my post as “Accept as Solution" if you feel my post solved your issue, it will help others who face the same challenge find the same solution.
    D5GR
    I work on behalf of HP

  • Issue with capital letters

    Hi folks!
    I usually make translations of video materials in my language (italian), so I usually open Word for Mac and Quick Time Pro together.
    Since I write these translations in capital letters, to make them easier to read by voice talents, I noticed that, in last Quick Time updates, with caps Lock inserted the transport keys J, K, L don't work, and the keys I and O (to loop a sequence) either.
    Have you ever heard about it?
    Is anybody able to suggest a work-out?
    Thanx in advance!

    Not really a workaround or a solution, but two things to consider...
    1) DOING SCRIPTS IN ALL CAPS IS AN ARCHAIC PRACTICE WHICH DATES BACK TO THE STONE AGES WHEN THE ONLY WAY TO GET LARGE TEXT WAS TO USE A PRIMARY TYPEWRITER WHICH WAS INCAPABLE OF PRODUCING LOWER CASE TEXT. I STILL DO NOT UNDERSTAND WHY MIXED CASE IN A LARGE FONT SIZE, WHICH IS ACTUALLY MUCH EASIER TO READ THAN ALL-CAPS, HAS STILL NOT BECOME THE WORLDWIDE STANDARD. THIS PARAGRAPH IS IN CAPS NOT BECAUSE I AM TRYING TO SHOUT, WHICH IS THE USUAL INTERPRETATION ON THE INTERNET, BUT TO DEMONSTRATE A POINT: READING THIS PARAGRAPH IS ACTUALLY MADE MORE DIFFICULT BECAUSE OF THE CAPS AS THEY OBSCURE THE SYMBOLS, THE SENTENCE ENDINGS, AND ANY OTHER METHODS WHICH MIGHT BE USEFUL FOR EMPHASIS.
    THAT SAID, IT MAY NOT REALLY BE YOUR CHOICE. OBVIOUSLY YOU HAVE TO LIVE WITH WHATEVER STANDARDS ARE ESTABLISHED BY YOUR CLIENT, EVEN IF THOSE STANDARDS DON'T REALLY MAKE SENSE.
    2) Have you considered getting yourself a Shuttle Express or Shuttle Pro controller? I'm trying to remember the manuf...I think it's Contour Design or something like that. Yeah, here it is: http://www.contourdesign.com It's a multimedia controller which plugs into the USB port and emulates a jog/shuttle control found on a professional VCR. The neat thing about it is that all of the buttons and functions are completely programmable, and you can even use it to fire off AppleScripts. I've got the Shuttle Express which has five buttons (the Shuttle Pro has "a whole bunch"), and the really cool thing about it is that because you can program it on a per-application basis or on a global basis. Even cooler is that the device focus does not necessarily follow the application focus, but it does follow the mouse pointer.
    (Okay, Dave, what the heck does all that mean?)
    What that means is that not only can you use it as a bi-directional jog/shuttle controller for QuickTime, not only can you program the buttons for, say, set-in, set-out, play-forward, loop, stop...but I'm pretty certain that you can set it up so that while you are TYPING MERRILY AWAY IN ALL CAPS IN MICROSOFT WEIRD, it can still control QuickTime Player *even though QuickTime Player is not the foreground application*.
    It isn't really a solution or a workaround to your problem, but it's a tool that might be beneficial to your workflow.
    Disclaimer: That's an unsolicited endorsement. I don't sell hardware, I have no connection whatsoever to Contour Design, and can't think of any possible way to benefit financially from giving this advice. I do own a Shuttle Express and think it's a cool little gadget.
    --Dave Althoff, Jr.

  • Entering numbers and capital letters using T-Mobile G2

    This could be device specific, but whenever I press the alt key on my phone's keyboard to enter a number, the number will not show, only the letter that is on that key. i have to hold alt plus the key to get the number. Same issue for capital letters.
    Figured this out when I tried entering my sync information.

    Thanks for the report. We are working on fixing this bug. For details, see https://bugzilla.mozilla.org/show_bug.cgi?id=599811

  • Edit PSA results in CAPITAL letters

    We import data from non-SAP systems and occasionally they contain erroneous data.  We edit the PSA to make the correction and then reload.  Unfortunately we have encountered a side-effect - the character string fields are all converted to capital letters (even though lowercase is allowed).
    Any suggestions on preventing this would be appreciated.
    Ian.

    Hi Ian,
    you can try the following in the start routine of your transfer rules:
    data: l_allowedchar type rsallowchar,
          l_allchar(200) type c,
          l_uppercase type syabcde,
          l_lowercase(26) type c,
          l_strlen type i,
          l_replchar type c value space,
          l_count type i,
          l_index type i.
    select single allowchar into l_allowchar
    from rsallowedchar.
    l_uppercase = sy-abcde.
    translate l_uppercase to upper case.
    l_lowercase = sy-abcde.
    translate l_lowercase to lower case.
    concatenate l_allowedchar l_uppercase l_lowercase '0123456789' into l_allchar.
    loop at datapak into l_s_datapak_line.
    l_index = sy-tabix.
    now, for each field you want to check
    if l_s_datapak_line-<field name> cn l_allchar.
    the field doesn't contain only allowed chars
    l_strlen = strlen(l_s_datapak_line-<field name>.
    l_count = 0.
    do l_strlen times.
    l_count = l_count + 1.
    if l_s_datapak_line-<field name>+l_count(1) na l_allchar.
      l_s_datapak_line-<field name>+l_count(1) = l_replchar.
    endif.
    enddo.
    endif.
    modify datapak from l_s_datapak_line index l_index.
    endloop.
    Please check it carefully, I was writing this just from memory without any abab syntax check ....
    But in general it will replace not allowed characters with space.
    Hope this helps!
    regards
    Siggi

Maybe you are looking for

  • System Profiler will not recognize installed hard drive if drive is in use by VMWare

    System Information will not recognize installed Hard Drive (Boot Camp) when in use by VMWare. I work in IT for a School District and I am creating a Script that system information about the computer. I am testing this on a Mac Pro with two internal h

  • IPod touch TV OUT (no video/only audio)

    I got a McAlly AV Cable (composite cable: Yellow,White,Red) and connected my iPod touch to my TV (4:3 not widescreen) directly. But, I can only get audio and no video. My setting on iPod touch ... WideScreen: off TV signal: NTSC (I'm in the US). Has

  • DB 11g unzip fails

    Hi, I downloaded DB 11g (win32_11gR1_database.zip) from the Oracle download page and now the unzipping fails. I get "invalid format" error both with PowerArchiver and WinRAR. I downloaded three times, always the same issue. I saw some other posts wit

  • Two pop accounts in mail

    hello all, i want to set up 2 diff pop accounts in mail. they both have diff smtp addresses and im not sure how to do it. thanks wayne

  • Data weirdness

    I've run into a very strange problem. I'm developing an app using SQLExpress using VC 2010. I also have SQL Management Studio installed. If I add information to the db with the application I am writing it shows up in vc2010 but not SQL Management Stu