Char displaying only the first three characters in the cube

Hi Experts
I have a char  with lenth 60 and it's active.I am updating this char via the update routine whereby i am reading data from an active table of an ODS as i update in the update rules.
But surprisingly,once the load is succesful and complete,upon checking the data in the active table it's displayin the way it should be the problem comes in when I view the data on the cube which displays only the first three chars even if the descriptionis a 60 character field.
Please help

Hi Herbert,
Have you checked in the infosource or transfer rules, what is the length of the infoobject, if you are loading the data to PSA, please check there it self, whether it is displaying 60 characters or only 3 characters.
Thanks
Sat

Similar Messages

  • When I add a file already on my computer to the iTunes Library, why does it only copy over the first 30 characters of the title?

    I noticed that when I tried importing songs to iTunes (unprotected) either via "Add File to Library" or "Automatically add to iTunes", only the first 30 characters of the song title is copied over to iTunes. Is there a way to change this? Is this a default setting?
    Thanks!
    -Oscar

    Just a guess about something to look at - check the color settings in your After Effects project.  If you increase the bit depth to 16 or 32 bits per channel and check your color management settings, you may have a better result.  I'm a bit clueless about the various options under Color Settings, but maybe you will hit upon something that works.

  • How to get the first 3 characters from the previous month?

    Hi,
    I need to get in a View Column only the first 3 characters of the previous month of data from the bellow query.
    SELECT ID, Department, Capital_Project_Number, 
    Capital_Site_Number, 
    Funding_Source, Milestone, 
    Account, Year, Month, Data
    FROM  Table
    Where Month = DATENAME(Month, DATEADD(Month, - 1, GETDATE())) and (Year = YEAR(GETDATE()));
    Go

     Left(DATENAME(Month, DATEADD(Month, - 1, GETDATE())),3)
    --Or
     convert( varchar(3), DATEADD(Month, - 1, GETDATE()),100)

  • Thunderbird is removing the first 5 characters of the username, causing an error.

    I seem to be having some issues trying to set up the email for a website I recently started on GoDaddy through Thunderbird.
    I am using Thunderbird 24.4.0 on Windows 8
    Server Settings:
    email address: [email protected]
    pop3: pop.secureserver.net / 995 / SSL / normal password
    smtp: smtpout.secureserver.net / 465 / SSL / normal password
    username: [email protected]
    I have repeatedly verified the username and password are correct as are the server settings. I have tried changing the security settings, ports and password transmission to all available choices to no avail.
    After entering the settings and clicking "Done" I get the following message: "Configuration could not be verified -- is the username or password wrong?" They aren't.
    Clicking "Advanced Config" takes me out of the creation window into the server settings option window. The email shows up in the sidebar now as an available email and the server setting options window shows all the info as I entered it and it is all correct.
    Here is where I spotted something that may be the issue but I have no idea why it's happening or how to fix it: When I click "Get Mail", I get an error message: "Sending of password did not succeed. Mail server pop.secureserver.net responded: [email protected] not found in the auth database"
    However, the username is wrong: it is missing the first 5 characters. For example, if I use "[email protected]" the error message says "[email protected] not found in the auth database". If I use "[email protected]", the error message says "@xxx.com not found in the auth database". (These were all different attempts with different emails: I wasn't just randomly changing the username.)
    Any clues on how to fix this so I can get the email working?
    Thanks in advance.

    Have you tried with email scanning disabled in your anti virus? Your using SSL and anti virus companies are using hacking techniques to hack into the encrypted data stream to scan for a virus. For years they warn us Hackers break in and corrupt your data. Well now the A/V vendors are doing it.

  • Apparently I inadverdently clicked on something that changed my address book listings to showing only the first three letters of each name -

    the column showing my address book now shows only the first three characters of each name
    it's like they have all been abbreviated
    I have to try and decipher the name from those three characters before clicking
    to see the
    person's address window with the full information
    I would like to be able to read the entire name- first & last like before
    Thank you in advance

    try dragging the column heading to make the column wider

  • Selecting the first 4000 characters from a tag in an xml file

    Oracle Enterprise Edition 11.1.0.7 64 bit (Jan 2012 CPU applied)
    Windows 2003 64 bit
    We have an XML file with the following sample format.
    <?xml version="1.0"?>
    <HR>
    <EMP>
    <FNAME>JOHN</FNAME>
    <LNAME>DOE</LNAME>
    <COMMENT>Comment with less than 4000 characters</COMMENT>
    </EMP>
    <EMP>
    <FNAME>JANE</FNAME>
    <LNAME>DOE</LNAME>
    <COMMENT>Comment with more than 4000 characters</COMMENT>
    </EMP>
    </HR>
    The query below
    (full disclosure: which I took from odie_63's response in Creating External Table using Xml Dataset - how to include null values? and added the CURSOR_SHARING_EXACT hint on the top)
    works when the contents of the <Comment> tag are smaller than 4000 characters. If it is more than 4000 I get
    ORA-01706: user function result value was too large
    SELECT /*+ CURSOR_SHARING_EXACT */
    FROM XMLTable(
    '/HR/EMP'
    passing xmltype( bfilename('DATA_PUMP_DIR','emp.xml'), nls_charset_id('CHAR_CS') )
    columns
    first_name varchar2(30) path 'FNAME',
    last_name varchar2(30) path 'LNAME',
    comments varchar2(4000) path 'COMMENT'
    I found another query where someone was doing a substring (I think to get only the first 4000 characters from the tag) here.
    http://www.ibm.com/developerworks/forums/thread.jspa?messageID=14638197 (See OP's post)
    TERMINATION_DATE VARCHAR(32) path 'TerminateDate/substring(text(), 1, 32)',
    So I updated my query to be
    SELECT /*+ CURSOR_SHARING_EXACT */
    FROM XMLTable(
    '/HR/EMP'
    passing xmltype( bfilename('DATA_PUMP_DIR','emp.xml'), nls_charset_id('CHAR_CS') )
    columns
    first_name varchar2(30) path 'FNAME',
    last_name varchar2(30) path 'LNAME',
    comments varchar2(4000) path 'COMMENT/substring(text(),1,4000)'
    The query runs without an error when the <comment> tag has 4000 or less characters but still errors out with it is more than 4000.
    I found an alternative method to do the SUBSTRING here in Herald ten Dam's reponse in Re: A view over XML that is not 1:1
    code varchar2(30) path 'substring(code,1,3)',
    so I tried this:
    SELECT /*+ CURSOR_SHARING_EXACT */
    FROM XMLTable(
    '/HR/EMP'
    passing xmltype( bfilename('DATA_PUMP_DIR','emp.xml'), nls_charset_id('CHAR_CS') )
    columns
    first_name varchar2(30) path 'FNAME',
    last_name varchar2(30) path 'LNAME',
    comments varchar2(4000) path 'substring(COMMENT,1,4000)'
    but that doesn't work either.
    How can I extract the first 4000 characters of the <COMMENT> tag so that the query doesn't fail.
    We are not using any other XMLDB features at this time. This is the first we've started looking into using Oracle built in XML features, so we might not have setup something that other's might know to specifically setup to start using the XML features in Oracle 11.1
    Thanks in advance,
    Wally

    walls99 wrote:
    This is regardless of the COMMENTS tag being 4000 characters or more and the same with the ideas from Odie.
    WallyNo idea if it is an issue with your version. I don't have your version to test but following works for me. Does this simple test work?
    SQL> select * from v$version ;
    BANNER
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production
    PL/SQL Release 11.2.0.1.0 - Production
    CORE    11.2.0.1.0      Production
    TNS for Linux: Version 11.2.0.1.0 - Production
    NLSRTL Version 11.2.0.1.0 - Production
    SQL> set define off
    SQL> select dbms_xmlgen.convert(xmlserialize(content xmltype('<brand>Ben &amp; Jerry</brand>') as clob), 1) from dual ;
    DBMS_XMLGEN.CONVERT(XMLSERIALIZE(CONTENTXMLTYPE('<BRAND>BEN&AMP;JERRY</BRAND>')A
    <brand>Ben & Jerry</brand>

  • How To: Extract first three characters of a text field

    Greetings --
    What is the best method for extracting the first three
    letters of a text field?
    I need to extract the first three letters of a text field (in
    this case Last Name),
    so I add it to other components so as to create an
    identification number for
    a person.
    This identification number that needs to be created is
    comprised of the
    person's date of birth, last 4 numbers of the social security
    number and
    the the first three letters of the person's last name.
    Example:
    ==> Birthdate: 11/15/45
    ==> Last 4 SSN: 6654
    ==> Last Name: Smith
    ID Number would be:
    ==> 1115456654SMI
    Leonard B

    That should do the trick:
    I put your values in variable, just replace the names, as
    needed
    <cfset birthdate = "11/15/45">
    <cfset ssn = "41646562121216654">
    <cfset lastname = "Smith">
    This deletes all the / from your birthday string (if it is a
    string!) and puts it into the id variable:
    <cfset id = replace(birthdate, "/", "", "All")>
    This takes the last 4 letters/digits of your social security
    number string and adds it to the id:
    <cfset id = id & right(ssn,4)>
    This takes the first thre letters/digits from your last name
    variable, puts it in upper case and adds it to the id string
    <cfset id = id & ucase(left(lastname,3))>
    Hope it helps.

  • Since syncing my Ipod classic three days ago, the songs will only play the first three minutes and five seconds. Then it just stops. After a little while, it moves on to the next song.

    I have an old iPod Classic, 5th generation with video 30 GB. I sync via a pc. Since syncing it three days ago, the songs will only play the first three minutes and five seconds. Then it moves on to the next song or if it's the last song, it goes back to the menu. I just synced again and it it still doing it.It also has a small group of dots near the middle of the screen that weren't there before.Has anyone else had this problem or know how to fix it?  Thanks.

    Please disregard this question. I have a better worded version coming up.

  • Printing the First 14 Characters of Every Line in a Text File

    My text file looks like the following:
    1111097116274, H0101C58F8110C005, 1, 16:48:03
    1111097116274, H0100058F8110C006, 2, 16:48:10
    1111097116274, H00F0458F8110C006, 3, 16:48:12I want my java program to print the first 14 characters of every line. Here's what I have:
    import java.awt.*;
    import javax.swing.JOptionPane;
    import java.io.*;
    public class Read {
         public static void main( String args[] ) {
        try {
            BufferedReader in = new BufferedReader(new FileReader("aFile.txt"));
            String line;;
            /*String tagid;*/
            while ((line = in.readLine()) != null) {
                 char[] tagid = line.toCharArray();
                 line.getChars(0, 14, tagid, 0); 
                 System.out.println(tagid);
            in.close();
        } catch (IOException e) {
             JOptionPane.showMessageDialog( null, "Error" );
             System.exit(0);
         Instead of printing the first 14 characters of every line to output, it prints the whole text file.
    Any ideas of what's wrong?
    Thanks.

    Well, that's the thing with a highly tuned, precision engine like your mind, JosAH. Adding a little alchohol to the fuel mix provides a performance boost, but as the alcohol/fuel ration increases, the performance improvement peaks and then degrades, until the performance is actually reduced. Now, I understand that in the case of the magic Grolsch, this performance curve is shifted farther to the right (graphed with Grolsch count as the independent variable, and performance improvement as the dependent variable), but it still occurs.
    I recommend nitrous oxide. You may need to get your piston heads hardened, though.
    � {�                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • How can I pull info into a report using just the first two characters of that field?

    I am trying to pull a total cost based upon locations in a particular area(s). Can I get the formula to just do this based on the first two characters of that field?
    Here is what I have so far:
    if {PACKED.LOCATIONS.NEXT OPERATION} = ["xx"] THEN {Job.Total_Price}
    Packed locations is a table I'm pulling from and the column I want just the first two digits is the the Next operation. Once this meets the "xx" (whatever location) then give me the total price from the Job table.
    This works for one or two orders, but then blows up when I do 10 or so.

    Hi Steve, assuming that Next Operation is a string field...
    Create a new formula and place it in the field where you see the {Job.Total_Price} field (Detail or Group depending on your report) with the formula:
    whileprintingrecords;
    global numbervar TotalValue;
    if len({? Replace me}) <= len({PACKED.LOCATIONS.NEXT OPERATION}) then(
    if left(ucase({PACKED.LOCATIONS.NEXT OPERATION}),len({? Replace me})) = ucase({? Replace me}) then
    TotalValue := TotalValue + {Job.Total_Price}
    TotalValue;
    You can go ahead and suppress that field.
    Create a new formula to place where you want to view the summary using the formula:
    whileprintingrecords;
    global numbervar TotalValue;
    This method allows for a higher degree of flexibility and you can search for the first x characters of that field instead of only the first 2 characters

  • To skip the first two Digits of the Char in Query

    Iam using County code which is the attribute of Vendor in free-chars of my query. In back-end iam doing some enhancements for this county code and populating the county codes values with region. (For example if the country code value is 021 in back end iam populating by concatenating with region value. so the value in the back-end is 05021.)
    When i run the query the key of county code value i see is 05021. But i need to skip the first two digits in county code and should display in the result. Is there any way to skip the first two digits for the county code values.
    Thanks in Advance
    Sudhakar

    Hi Sudhakar,
    Pls go through the link:
    Remove the last two charecters from right
    Thanks and Regards,
    Ramki

  • Where are the first three Back Sabbath studio Albums? All the store has is their LIVE album crap.

    It's frustrating that they have the lousy live albums of Black Sabbath and none of their original studio albums.
    Specifically, their first three albums. The best music they ever did. Why aren't they available?
    Also, where are all the Blues Brothers Albums. Again, only one of their Albums. Is there someplace to put in music requests to iTunes?

    The itunes store can ONLY sell what the owners of the distribution rights allow them to sell.
    Whomever owns the distribution rights to these albums has not reached an agreement with itunes that would allow them to sell the albums.
    You can make requests here:
    http://www.apple.com/feedback/itunes.html

  • I bought a new album off of iTunes the wifi wasn't strong so I left my computer on as it was downloading and went to sleep. This morning I went to listen to the songs and some of the songs will only play the first 50 sec or the first minute? How do i fix?

    I bought a new album off of iTunes the wifi wasn't strong so I left my computer on as it was downloading and went to sleep. This morning I went to listen to the songs and some of the songs will only play the first 50 sec or the first minute? How do i fix it or refresh them so i can listen to them fully?
    How do I get the songs to fully play? Or can i refresh the songs and redownload them?

    See Repair security permissions for iTunes for Windows.
    tt2

  • I have a 3rd gen iPod touch and I downloaded the most recent itunes, ever since I did, only the first song syncs to the ipod. As soon as it gets to the second, it xtill says its syncing. However, nothing happens. How do I fix this?

    I have a 3rd gen iPod touch and I downloaded the most recent itunes, ever since I did, only the first song syncs to the ipod. As soon as it gets to the second, it still says its syncing. However, nothing happens. How do I fix this? I have restored and updated the ipod. I have the new iTunes. I have restarted my computer checked the connection and everything.

    Try:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Unsync all music and resync
    - Reset all settings
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:                                 
    iOS: How to back up           
    - Restore to factory settings/new iOS device.

  • Since last update anything on the first three lines of a web page if it has a a button to click on to go to another page does not work. use Google Crome for fo

    Loging onto my bank I go to the barclays pege there on the top line is "log in" it used to work when I click on it but has stoped, any button on the first three lines of a web page does not work.
    I now use Google crome but would like to stay with Firefox if this coruption can be sorted.
    Rod

    Please reload the webpage while bypassing the cache using '''one''' of the following steps:
    *Hold down the ''Shift'' key and click the ''Reload'' button with the left mouse key.
    OR
    *Press ''Ctrl'' + ''F5'' or ''Ctrl'' + ''Shift'' + ''R'' (Windows and Linux)
    *Press ''Command'' + ''Shift'' + ''R'' (Mac)
    See if this helps solve the issues you had and please report back to us!

Maybe you are looking for

  • PsMpPIA Install failed

    Hi, I am unable to deploy the PIA on PT 8.52 version. Any help on this is highly appreciated. Downloaded the Oracle WebLogic Server 11gR1 (10.3.4) Generic and Coherence (V24338-01) from Oracle e-delivery. (During PIA installation I receive error as t

  • Plz explain - IMPORT GS_MATNR_CTRL FROM MEMORY ID 'ZMEM' ?

    Hello, Very good evening! Can any one please explain me what this satement do. Please explain me....... IMPORT GS_MATNR_CTRL FROM MEMORY ID 'ZMEM'. Any suggestions or information will be appreciated. Regadrs, KIttu

  • Can you set the Tax Code value in the Product Import File to "Tax Never Applies"?

    We have taxable and non-taxable items in our store and I need to be able to set all non-taxable food items to "Tax Never Applies" in the Product Import document. Does anyone know a work around for this? Applying this setting to hundreds of items is n

  • Changing size of books (from Large to Medium) ?

    Hi all, I've made my first Book in Aperture. Theme: Modern lines; Size: 44 pages, Large Softcover (11"x 8 1/2") I want to buy a large version of this book for myself and some medium version of the same book for my friends, but I don't understand how

  • Why is Share to media browser grayed out?

    can't figure out why this option is grayed out.  Anyone have any insight?