Case (Sensitivity) changes between Data Mart and Tabular Model

DM.Team.TeamName = "testTeam"
Run Full Process to Tabular DataModel
Tabular.Team.TeamName = "Testteam" (or sometimes "TestTeam")
Notice that the case on the first T is changing from lower case to upper case between the DM and the tabular model.  Why?  I've searched for an answer on this forum and elsewhere but other users problems are with duplicate entries with different
casing, but in my situation, I DON'T have duplicate entries in the tabular model.  It's the same entry from the DM but the case has changed.  Why?  It's almost as if it's trying to "fix" the casing.  After several more tests I've
found that if I have a mixture of upper & lower case characters, the tabular load changes the case to either all lower or camel case.  What is causing this behavior?
I've checked the language collation on both the DM Server and the SSAS Tabular Server and they are identical: SQL_Latin1_General_CP1_CI_AS
I also checked the columns in the DM, specifically - the TeamName column contains the same language collation as the servers  
This is occurring on one of our lab servers, but the same scenario works fine on my dev box - I've compared the 4 machines and they all appear identical.  Only difference is my dev box has sql server 2012 sp2 developer edition and the lab box has sql
server 2012 enterprise.  Also my dev box contains windows 8.1 and the lab box windows server 2012 R2 Standard.  
Any help would be most appreciated.  Thanks.

Thanks.  I did look at the above post prior to submitting my question but my problem is different:
Notice that the case on the first T is changing from lower case to upper case between the DM and the tabular model.  Why?  I've searched for an answer on this forum and elsewhere but other users problems are with duplicate entries with different
casing, but in my situation, I DON'T have duplicate entries in the tabular model.  It's the same entry from the DM but the case has changed.  Why?  I've checked all the other solutions to the duplicate problem and my configuration (as explained
in original post) appears to be correct to avoid duplicates due to case.  So, I'm stumped.

Similar Messages

  • Database changes between data records of PSA

    Hi all,
    Does anybody know a way, how to flush or commit database change between processing each data record from PSA by transfer rules?
    I have some routines in transfer rules (updating attributes of master data from datasource), where I need values from exactly previously processed data record. But SELECT from /BIC/Q... table gives me no changes of these values
    Command of selection is written correctly, because it gives me new values in next run of DTP process.
    And little explanation, what I'm trying to achieve:
    In PSA  I have account, date and value and I need count, how this value changed for a concrete day and store this value to time-dependent attribute of master data. All data records with the same key (duplicate record) overwrite the result of previously one, so only last one is stored in master data.
    Shortly, I need something like aggregation ADDING of routine in transfer rule detail, but able to catch duplicate records.
    Thank you for any idea.
    Regards, Filip

    Some note about investigation process.
    I tried change my data flow and made the same transfer rules from data source to ODS, if it will behave in different way.
    I have found data records correctly collected (agregated) in New data of ODS, but EMPTY in active data! So I think, the something similar happend in case of updating master data, and that's why I didn't saw any agregation.
    There is no need to call-out database changes, but this problem is kind od anythink else
    This shoud be for a new thread, but how can keyfigures become empty after activation?? I've searched forum and found only a case, when End routines are implemented and they skip update rules, whitch are initial. This is not my case.
    Nice to hear from you any ideas. Thankx for reading.
    Filip

  • Difference between Data staging and Dimension Table ?

    Difference between Data staging  and Dimension Table ?

    Data Staging:
    Data extraction and transformation is done here.
    Meaning that, if we have source data in flat file, we extract it and load into staging tables, we take care of nulls, we change datetime format etc.. and after such cleansing/transformation at then end, load it to Dim/Fact tables
    Pros: Makes process simpler and easy and also we can keep track of data as we have data in staging
    Cons: Staging tables need space hence need memory space
    Dimension Table:
    tables which describes/stores the attribute about specific objects
    Below is star schema which has dimension storing information related to Product, Customer etc..
    -Vaibhav Chaudhari

  • Connection between data services and BWA

    Hi,
    I want to make a connection between Data Services 3.2 and BWA. Since we use RFC connection in between in order to have them talk with eachother but i wonder if there is any documentation that describes the RFC connection and configuration required particularly in this scenario. I have gone through the documentation that explains RFC connection between Data Services and BW and what configuration we have to do, so i wonder if there are any functions we have to export to BWA from Data Services like we do in case of BW connection to Data Services or some specific configuration we have to do. If someone help who has done connection between Data Services and BWA can help or if somebody can provide documentaton on it.

    Hi,
    You should ask this question over here: http://scn.sap.com/community/data-services
    Regards,
    H

  • Difference Between Data Type and Data Object

    Difference Between Data Type and Data Object

    hi magesh
    <u><b>Data types</b></u> can be divided into
    elementary,
    reference, and
    complex types.
    <u><b>Elementary Types</b></u>
    Elementary types are the smallest indivisible unit of types. They can be grouped as those with fixed length and those with variable length.
    <u><b>Fixed-Length Elementary Types</b></u>
    There are eight predefined types in ABAP with fixed length:
    <u><b>Four character types:</b></u>
    Character (C),
    Numeric character (N),
    Date (D),
    and Time (T).
    <b>One hexadecimal type:</b>
    Byte field (X).
    <b>Three numeric types:</b>
    Integer (I),
    Floating-point number (F)
    and Packed number (P).
    <u><b>Variable-Length Elementary Types</b></u>
    There are two predefined types in ABAP with variable length:
    STRING for character strings
    XSTRING for byte strings
    Reference Types
    <b>Reference types</b>
    describe data objects that contain references (pointers) to other objects (data objects and objects in ABAP Objects).
    <u><b>Data Types</b></u>
    1) As well as occurring as attributes of a data object, data types can also be defined independently.
    2)You can then use them later on in conjunction with a data object.
    3) The definition of a user-defined data type is based on a <b>set of predefined elementary data types.</b>
    4) You can define data types <b>either locally in the declaration part of a program</b> using the TYPESstatement) or <b>globally in the ABAP</b> Dictionary.
    5) You can use your own data types to declare data objects or to check the types of parameters in generic operations.
    <u><b>Data Objects</b></u>
    1)<b>Data objects</b> are the physical units with which ABAP statements work at runtime.
    2) The contents of a data object occupy memory space in the program.
    3) <b>ABAP statements access these contents by addressing the name of the data object</b> and interpret them according to the data type..
    4) For example, statements can write the contents of data objects in lists or in the database, they can pass them to and receive them from routines, they can change them by assigning new values, and they can compare them in logical expressions.
    5) Each <b>ABAP data object has a set of technical attributes</b>, which are fully defined at all times when an ABAP program is running (field length, number of decimal places, and data type).
    6) You <b>declare data objects</b> either <b>statically in the declaration part</b> of an ABAP program (the most important statement for this is DATA), or <b>dynamically at runtime</b> (for example, when you call procedures).
    7) As well as fields in the memory area of the program, the program also treats literals like data objects.
    hope this helps u,
    reward points if useful
    Ginni

  • Changing of data class and size category for keyfigures .

    Hi,
    I am not able to change the data class and size category for keyfigures .
    can you please let me know how to enable the changing of data class and size category for keyfigure under Maintain DB storage parameters.

    Ok then it sounds like your primary key of 8 fields and secondary index of 3 non-unique fields appear somewhat similar to the database and it wrongly uses the secondary index. Perhaps you can try to declare the table as a SORTED table with index fields as key. I doubt this will do any good, but you can try.
    You can try to deactivate the sec. index if it is not being used.
    Or by far the best but also debatable, try to pass hints to the SQL parser by %_hints statement. Please refer to SAP note 129385 for details on hints in general and note 772497 for various hints statements for  ORACLE DB. This will surely make the DB interface use the primary index and the update would be faster. But with 1 million records, hopefully you are not looking at response time in micro seconds, are you?
    rgds,
    Prabhu

  • Color changes between Safari 3x and 4x

    Does anyone have any info about color handling changes in 4.0.2?
    I have a friend who upgraded from Safari 3x to Safari 4.0.2 and now the color is off on all her web pages. All the color on all parts of the page are desaturated. It certainly looks like a color profile problem but I can't seem to find any info about what might have changed between Safari 3x and 4.0.2.
    I put an old copy of Safari on her machine, it is 2.0.4, and the colors are completely normal in it.
    The machine in question is a macbook running 10.4.11.
    Thank you.

    I have the same problem!!
    Apple has apparently decided that unless a color profile is assigned, it will make images in its new browser look like garbage. Meanwhile they still look great on Firefox.
    I'm an artist and this is terrible. It means that to please Apple, I need to go resave and reupload all my images with an sRGB profile assigned.
    In Firefox, the images look identical to how they were saved originally in Photoshop, without a profile. Yet they look washed out and terrible in Safari.
    Gee, thanks Apple!!

  • Passing variables between data tag and Java

    Hello all,
    I have a question about using variables between data tag and java.
    Let me explain.
    I would like to populate variable "Test" with
    the information returned by jbo data tag library.
    <code>
    <% String Test = "%><jbo:ShowValue datasource="ds" dataitem="Cod" /><%";%>
    or
    <% String Test = "<jbo:ShowValue datasource="ds" dataitem="Cod" />";%>
    </code>
    This code did not work.
    Some suggestions
    Thanks
    Humberto
    null

    Humberto,
    I'm afraid I do not know the specific answer
    to your question (perhaps Juan the Data Tag
    Wizard will reply ;-). I vaguely recall
    struggling with teh same issue when I was
    playing with the tags for a demo. Here
    is a hack-around lifted from my demo
    that might help:
    <jbo:Row id="privRow" action="CURRENT" datasource="privileges" />
    <%
    String privName = (String)privRow.getAttribute("Privilegename");
    %>
    In other words, I ended up using the Row
    tag to get a local Java variable bound to the
    row instance and then used its methods
    to extract the value. I presume the class
    of the row instance is oracle.jbo.Row
    and you can lookup its supported methods
    in the reference doc.
    I'd be interested to hear if their is a more
    elegant way - the one suggested above is
    pretty tedious.
    Regards,
    Bill
    ----

  • How can I change my data plan and backdate to beginning of this billing cycle

    How can I change my data plan and backdate to beginning of this billing cycle

        That's a great question GregTho! If you change your plan online, you can select the option to backdate, future date or on demand, (meaning, today). Please let us know if this works.
    Thank you,
    VanessaS_VZW
    Follow us on Twitter @VZWSupport

  • Difference between Data Class and Delivery Class

    What is the Difference between Data Class and Delivery Class , what happens Phisically to the Data .
    Moderator message: what is the difference between your question and a question that we'd welcome here in the forums?
    [Rules of engagement|http://wiki.sdn.sap.com/wiki/display/HOME/RulesofEngagement]
    Edited by: Thomas Zloch on Nov 22, 2010 1:17 PM

    What is the Difference between Data Class and Delivery Class , what happens Phisically to the Data .
    Moderator message: what is the difference between your question and a question that we'd welcome here in the forums?
    [Rules of engagement|http://wiki.sdn.sap.com/wiki/display/HOME/RulesofEngagement]
    Edited by: Thomas Zloch on Nov 22, 2010 1:17 PM

  • Difference between Data Provider and extractor.

    Hi
    Can someone help me in understanding difference between data providers and data extractor.
    I have gone through some documents but not able to get the exact difference between them.
    What is the exact role of data provider and extractor with respect to sap solution manager.
    Is data provider== Data extractor?
    Thanks,
    Vijay

    Hello Vijaya,
    From my perspective the Data Providers are responsible for collecting metric values from the monitored objects on the managed sources systems and sending these to the Solution Manager Monitoring and Alerting Infrastrucure.
    Data extractors on the other hand are the reporting objects which are defined on the BW part of Solution Manager and can be enabled by configuring some monitoring scenario's. Once these data extractors are enabled, they will use the data from the "Data Providers" (see above) to setup nice BW reportings on the Solution Manager monitoring dashboards.
    I hope this answer helps you.

  • Difference Between data target and infoprovider

    Hi Experts,
    I am new to BW
    What is the difference between data target and  infoprovider
    Thanks and Regards,
    saveen

    Hi Saveen,
    InfoProvider is an object on which BEx queries are created. It provides information (data) to the queries when they are executed. InfoProviders may contain data (like cube) or may not contain data (like multiproivder and InfoSet).
    Data Target is an object to which you will load the data, like cube, ODS or InfoObject. But it is not necessary that each data target is an InfoProvider...like you may have ODS objects that are not enabled for reporting, but you are loading data to them for staging purpose.
    Hope this helps...

  • Difference between Data-centric and Document-centric use

    Hi,
    Can someone suggest what exactly is the difference between Data-centric and Document-centric use and examples if any.
    Thanks in advance.
    Chaitanya

    Maybe it helps if you look at it this way...
    Document centric: document centric use of xml data is data that you always use in its complete form. If you want to use the data, then you always will retrieve it as one entity or you save it as one entity. You are not interested in the xml data / information inside this "package" / document, you are only interested in its total form. Lets say, you have an invoice which can be printed on one sheet of paper. This paper that contains you data, will always be treated in a document driven way, that is, in its total representation: information containted on a sheet of paper (document).
    Data centric. data centric use of xml, is usage of data were the main interest point is focused on only pieces of the total set of xml data within a document. So instead of being interested in the whole invoice, you only are interested in information like "amount of money to be payed" or "invoicenumber".
    Handling of XML data comes with (hidden) costs. Knowing how your data will be used, has to be used, is one of the first steps in designing you environment (and will have an big impact if you choose poorly). For instance, if you know that your data will always be handled (and must be stored) in a document driven way, then it will make sense to store it based on CLOB based XMLType storage. This will garantee best performance retrieval for your xml document. If you now that your xml data has to be stored so that it can be handled in a data centric way, then Object Relational XMLType storage. If conditions are setup properly data retrieval, inserts and updates will be more cost efficient then when based on CLOB XMLType storage.
    There are more differences and "cost markers" when or when not to use CLOB, OR or for instance Binary XML. The first two chapters of the XMLDB Developers Guide for Oracle 11g will give you a good head start making some of those decisions. Be also aware that you probably will have to make compromises. The current state of XML, for example, doesn't have the final solution yet for a uniform storage method.
    Message was edited by:
    Marco Gralike

  • Difference Between Data type and message type

    Hi,
        i have doubt on data type and message type.why we are mapping the message type why not data type?wht is the difference between data type and message type?

    Hi Narayanana,
    Data type defines the structure of your xml message.Message type is the wrapper of data type.You will be using your message type while mapping and not the data type.Its the abstraction concept used in oops
    kanan thiyam  
    Posts: 28
    Questions: 7
    Registered: 1/8/07
    Forum points: 24 
       Re: What is deffernce b/w Data type and message type  
    Posted: Jun 13, 2007 8:05 AM    in response to: suresh k         Reply      E-mail this post 
    Hi Suresh,
    Data Type defines the structure of the message and it will be wrapped under Message Type.
    Hope the details below will clearify your doubts.
    A data type in a programming language is a set of data with values having predefined characteristics. Examples of data types are: integer, floating point unit number, character, string, and pointer.
    The characteristic of columns and variables that defines what types of data values they can store.
    Check out the details:
    http://en.wikipedia.org/wiki/Data_type
    A message type comprises a data type that describes the structure of a message. At the following points in SAP Exchange Infrastructure you can refer to the message to be exchanged at runtime by using the message type:
    Details:
    http://help.sap.com/saphelp_nw04/helpdata/en/2d/c0633c3a892251e10000000a114084/content.htm
    kanan

  • Difference between Data Dictionay and ABAP/4 dictionary

    Hi all,
      can any body please say me the difference between Data Dictionay and ABAP/4 dictionary
                                                                                    Ranjith

    Check this PDF:
    http://www.sappoint.com/faq/faqabdic.pdf#search=%22Data%20Dictionary%20and%20ABAP%2F4%20dictionary%22
    Regards,
    Prakash.

Maybe you are looking for

  • IP address and android devices - blondie needing h...

    Hi all, totally new to this and im not very technically minded woman Basically my 2 sons got asus nexus 7 tablets end of march.set up and both worked fine until 5/6 weeks later when one lost connection for no reason to Internet. Could still obtain si

  • Can't change bank details in fi02

    Hello, We have a requirement to change a swift code for a vendor bank account. I changed  the details of the swift code field for the relevant bank account in FI02. Saved the changes. I get a message that indicates that changes have been made. When I

  • AdobePDF Pack - why can I not convert to jpg

    I have adobe - can create pdfs to my hearts content.  I got a pdf and need to convert it to Word and jpgs.  So I bought the monthly adobe pdf.  But it's like basic adobe as far as I can tell on line.  Why is it not talking to my program on my machine

  • Authentification over Win NT User

    I've a Question about authentification in a Oracle over a windows NT Domain User. I tried it with user identified EXERNALLY option, but when I use this, i must be loged on at the NT Client and have to be a local USER on this NT Client. Must The Oracl

  • Resoution problem in Adobe photoshop

    Hi All Im working in Photoshop CS4 an image, image is 300 dpi with four color and tiff format, whille exporting through 3B2 software after converring PDF Format figure is downsampling automatcally. It is showing 171 DPI, How this happening. Please ad