Bex Hierarchy showing just the key with Attributes ????

Hierarchy showing just the key with Attributes ????  I want the Text without attribute!
I had created a Hierarchy manually on 0companycode characteristic, but I have some problems.
1 u2013 Itu2019s showing just the KEY (On query Design is marked to show the text , and Iu2019m on the proper language).
2 u2013 On the last lever that is the company code, is showing the key with all attributes like this.
->     CONTRY_BR
                -> KW11 Contry Canada Chart of account 0001 Currency 01
I want just the Text without the attributes.
Regards
Edited by: Marcus Coufal on Mar 4, 2011 1:53 PM

On the caracteristic -> attribute put 0 on  "Order For"

Similar Messages

  • Yahoo is my home page and News, Sports, Business links now shows a few sentences after each main URL link. How do I put it back to show just the URL links?

    Yahoo is my home page and News, Sports, Business categories/links changed and now shows a few sentences after each main URL link/topic. How do I put it back to show just the URL links/topics without having to scroll down and down the page. All the extra sentences after the links causes too much scrolling to view the topics.

    Those steps did not solve my problem. Here is an example of what I see although it's not exact copy/paste. All I want to see are the links but I get all the verbiage after the links
    Firefox 17.0.1 version
    ''' '''Ask Stacy: How Can I Rebuild My Credit?''''''
    Here’s a question familiar to millions of Americans… Stacy, My wife and I recently filed for bankruptcy due to high medical bills we were unable to pay. We purposefully didn’t add our Wells Fargo credit ...
    Money Talks News
    '''Analysis: High stakes for Cuba in Chavez's cancer battle'''
    HAVANA (Reuters) - As Venezuelan President Hugo Chavez recovers in Havana from his fourth cancer operation, Cubans face renewed worries about their economic future if the country's top ally dies or has to step down from office. Cuba has staked its economic well-being on the success - and generosity…
    41 mins agoReuters
    [$$] Playing FICC or Treat With Bank Investors
    '''Playing FICC or Treat With Bank Investors'''
    The Wall Street Journal
    AdChoices
    '''Cybergeddon
    A digital crime thriller from Anthony E. Zuicker, the creator of CSI. Only on Yahoo!
    And here is what Internet Explore shows: All LINKS below
    '''Molten gold signals mining's return to Calif.'s Mother Lode'''
    '''Century-old fight for Budweiser name hits new snag'''
    '''NRA goes silent after Connecticut school shooting'''
    '''.Authorities: Kansas man who killed 2 cops dies'''

  • How to get just the key from a database ?

    Hello, the sample at FAQs was not enought to me...
    My code to retrieve just the key (Exists this record ?).
    //     Checks if the ticket exists in the database.
    BOOL     CDSDBBD::TicExist(     char     *pcaTicCod)
         int          iResult;
         int          iLen;
         Dbt          dbtKey;
         Dbt          dbtData;
         char     caError[256];
         iLen     =     strlen(pcaTicCod);
         dbtKey     .set_data((void*) pcaTicCod);
         dbtKey     .set_size(iLen);
         dbtData     .set_flags(DB_DBT_PARTIAL);
         dbtData     .set_dlen(0);
    //     dbtData     .set_size(0);
    //     dbtData     .set_doff(0);
    //     dbtData     .set_data(NULL);
         try
              iResult     =     m_pdbTic->get(NULL, &dbtKey, &dbtData, 0);
         catch(DbException &e)
              m_pdbRafCal->err(e.get_errno(), "Error!");
              sprintf(caError,     e.what());
         catch(std::exception &e)
              m_pdbRafCal->errx("Error! %s", e.what());
              sprintf(caError,     e.what());
         if(iResult != 0)
              return     FALSE;
         return     TRUE;
    all times i got "Db::get: Invalid argument".
    Thanks,
    DelNeto

    Thanks Alexander.Gorrod, the return value, from get, was "-858993460", but the error code at exception was "-30999", that is DB_BUFFER_SMALL. The final code look like this:
    memset(&dbtData, 0, sizeof(dbtData));
    dbtData.set_flags(DB_DBT_USERMEM);
    dbtData.set_ulen(0);
    try
    // You can then call get as you would normally:
    iResult = m_pdbTic->get(NULL, &dbtKey, &dbtData, 0);
    catch(DbException &e)
    if(e.get_errno() == DB_BUFFER_SMALL)
    return TRUE;
    catch(std::exception &e)
    sprintf(caError,     e.what());
    return FALSE;
    Thanks for the tip,
    DelNeto

  • Sending the key with Socket

    Hello!
    I have made an application that encrypts a byte[], sends it to a server.
    And after that i am trying to decrypt it. But that gives me problem.
    The exception i get is:
    BadPaddingException: javax.crypto.BadPaddingException: Given final block not properly padded.
    This is my code.
    The client
    import java.net.*;
    import java.io.*;
    import javax.crypto.*;
    import javax.crypto.spec.*;
    import java.security.*;
    import java.security.spec.*;
    import java.util.*;
    class Client
      public static void main(String a[])
        Socket socket = null;
        try
          // Create Key
          KeyGenerator kg = KeyGenerator.getInstance("DES");
          SecretKey secretKey = kg.generateKey();
          // Create Cipher
          Cipher desCipher = Cipher.getInstance("DES/ECB/PKCS5Padding");
          desCipher.init(Cipher.ENCRYPT_MODE, secretKey);
          socket = new Socket("localhost", 3000);
          DataOutputStream dataOutputStream = new DataOutputStream(socket.getOutputStream());
          ObjectOutputStream out = new ObjectOutputStream(socket.getOutputStream());
          File file = new File("Mattias.jpg");
          FileInputStream fileInputStream = new FileInputStream(file);
          byte[] bytes = new byte[(int)file.length()];
          fileInputStream.read(bytes);
          fileInputStream.close();
          byte[] encryptedBytes = new byte[(int)file.length()];
          encryptedBytes = desCipher.doFinal(bytes);
          out.writeInt((int)file.length());
          out.writeObject((Object)secretKey);
          dataOutputStream.write(encryptedBytes);
          out.flush();
          dataOutputStream.flush();
          out.close();
          dataOutputStream.close();
        catch(IOException e)
          e.printStackTrace();
        catch (NoSuchPaddingException e)
          System.err.println("Padding problem: " + e);
        catch (NoSuchAlgorithmException e)
          System.err.println("Invalid algorithm: " + e);
        catch (InvalidKeyException e)
          System.err.println("Invalid key: " + e);
        catch (IllegalBlockSizeException e)
          System.err.println("IllegalBlockSizeException: " + e);
        catch (BadPaddingException e)
          System.err.println("BadPaddingException: " + e);
        finally
          try
            socket.close();
          catch(IOException e)
            e.printStackTrace();   
    The server
    import java.net.*;
    import java.io.*;
    import javax.crypto.*;
    import javax.crypto.spec.*;
    import java.security.*;
    import java.security.spec.*;
    import java.util.*;
    class Server
      public static void main(String a[]) throws IOException
        new Server().listen(3000);
      public void listen(int port) throws IOException
        ServerSocket serverSocket = new ServerSocket(port);
        new SocketHandler(serverSocket.accept()).start();
      class SocketHandler extends Thread
        Socket socket = null;
        SocketHandler(Socket socket)
          this.socket = socket;
        public void run()
          try
            SecretKey secretKey = null;
            File file = new File("file.jpg");
            OutputStream fileOutputStream = new FileOutputStream(file);
            BufferedInputStream bufferedInputStream = new BufferedInputStream(socket.getInputStream());
            ObjectInputStream in = new ObjectInputStream(socket.getInputStream());
            int fileSize = in.readInt();
            byte[] encryptedBytes = new byte[fileSize * 8];
            byte[] bytes = new byte[fileSize];
            secretKey = (SecretKey)in.readObject();
            // Create Cipher
            Cipher desCipher = Cipher.getInstance("DES/ECB/PKCS5Padding");
            desCipher.init(Cipher.DECRYPT_MODE, secretKey);
            int i = -1;
            while (true)
              i = bufferedInputStream.read(encryptedBytes, 0, encryptedBytes.length);
              bytes = desCipher.doFinal(encryptedBytes);
              if (i == -1)
                break;
              fileOutputStream.write(bytes, 0, i);
            bufferedInputStream.close();
            fileOutputStream.flush();
            fileOutputStream.close();
          catch (IOException ioe)
            ioe.printStackTrace();
            catch(ClassNotFoundException cnfe)
            cnfe.printStackTrace();
          catch (NoSuchPaddingException e)
            System.err.println("Padding problem: " + e);
          catch (NoSuchAlgorithmException e)
            System.err.println("Invalid algorithm: " + e);
          catch (InvalidKeyException e)
            System.err.println("Invalid key: " + e);
          catch (IllegalBlockSizeException e)
            System.err.println("IllegalBlockSizeException: " + e);
          catch (BadPaddingException e)
            System.err.println("BadPaddingException: " + e);
          finally
            try
              socket.close();
            catch (IOException ioe)
              ioe.printStackTrace();
    }What am i doing wrong? How should i solve it?

    This looks suspect -DataOutputStream dataOutputStream = new DataOutputStream(socket.getOutputStream());
          ObjectOutputStream out = new ObjectOutputStream(socket.getOutputStream());It is normally a bad idea to attach a single OutputStream to 2 or more 'filter' streams.
    You could always sent the data as an object i.e.out.writeObject(encryptedBytes);Also, you make the assumption that the encrypted length is the same as the file length. With PKCS5Padding this is never the case since it pads with 1 to 8 bytes to make up to the block size. This is probably the cause of the BadPaddingException. If you send the encrpted data over as an object then you don't need to send the length.
    Your stream uses in the client and server differ. You have no DataInputStream in the server to match the DataOuputStream in the client. To be safe, stick to Object streams or Data streams but don't mix.
    P.S. Isn't sending the key with the cipher text a litte insecure!!!

  • Substr function? extracting just the records with 4 digits?

    have a column like this in a table
    SZSCAPD_SEC_SCHOOL_CEEB
    364775
    460460
    460240
    2562
    164625
    460240
    230969I need to be able to retrieve just the values with 4 digits like 2562 and add 00 at the front, so it will ended like 002562
    I am thinking in the substr function, but it won't work, because I will be extracting the first 4 digits of each number.
    How I will do this? I want to only retrieve the numbers with 4 digits Then I will concatenate the 00 in front.
    Thank you

    Hi,
    peace4all wrote:
    ... How I will do this? I want to only retrieve the numbers with 4 digits One way to do that is
    WHERE   TRANSLATE ( szscapd_sec_school_ceeb
                , '123456789'
                , '000000000'
                ) = '0000'
    Then I will concatenate the 00 in front.
    '00' || szscapd_sec_school_ceebThis assumes that szscapd_sec_school_ceeb is a string.
    If szscapd_sec_school_ceeb is a positive number, and you want to ignore any fractional part, use
    WHERE   szscapd_sec_school_ceeb     >=  1000
    AND     szscapd_sec_school_ceeb <  10000to find the numbers and
    TO_CHAR (szscapd_sec_school_ceeb, 'FM000000')to display them as 6 digits, with leading 0's.
    Edited by: Frank Kulash on Aug 20, 2010 11:01 AM
    Added NUMBER alternative.

  • My iPod is stuck on the startup screen, showing just the apple logo. Has anyone had this problem before? If yes, then how did you solve it?

    My iPod is stuck on the startup screen, showing just the apple logo. Has anyone had this problem before? If yes, then how did you solve it?

    Try:
    - iOS: Not responding or does not turn on
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - Try on another computer
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
    Apple Retail Store - Genius Bar       

  • Apple Charger Plugged In PC, but now Charging or Showing on the Devices with Removable Storage

    when i plugged my ipod touch to the computer it makes a sound and it never charges or show on the device with removable storage

    A few things you could try:
    1.Use a different port and recheck the issue.
    2. You may try the same on a different computer.
    3.If the above doesn't help then get the device checked by an authorised service centre.
    S.Sengupta, Windows Entertainment and Connected Home MVP

  • I just got my new iphone. I successfully signed in my apple account by i have an issue with my icloud. It took my email but the password is incorrect. is the apple account email just the same with the icloud email?

    I just got my new iphone. I successfully signed in my apple account by i have an issue with my icloud. It took my email but the password is incorrect. is the apple account email just the same with the icloud email?

    ckuan is right.
    also you can check you Apple ID in this website, https://appleid.apple.com/cgi-bin/WebObjects/MyAppleId.woa/

  • Reset PRAM, now monitor shows just a circle with a slash through it

    Big problem. My iBook clamshell has a battery that just started sometimes charging and sometimes uncharging while computer was plugged into power adapter. Then the computer just "blacked out" a few times while plugged into power adapter.
    I bought a new power adapter, but still had the problem with the uncharging battery. One time the percentage amount of a charge would go down when it was being used while plugged into power adapter, the next time I used it the percentage amount might go back up to 100%. Money's really tight (I'm working part time & paying for emergency medical expenses) so instead of buying a new battery I dug out some instructions that helped my other clamshell that started "blacking out" a couple of years ago. At that time I was given a link to an article on resetting PRAM, and I'd printed out and kept the article.
    While the iBook was starting up I held down the keys: Command, Option, P and R. You're supposed to hold down the keys until you heard the start up sound a 2nd time. Well, I messed up and held them down until I heard the start up sound 3 times. Maybe that was a fatal error - something screwed things up.
    The monitor went from black to pale blue, but instead of getting the Apple icon as start up began I got a circle with a slash line through it. Nothing else happened. I had that circle mark for about 15 minutes - the computer never went into sleep mood and finally I improperly turned it off by using the power button.
    I turned the computer on again, hoping the problem had gone away. I got the pale blue screen showing the circle with a slash mark. I waited awhile, thinking something might start happening after a delay. And once again I improperly turned the computer off using the power key. I won't turn it on again unless I'm given a possible solution.
    I bought this 2nd iBook because it had an Airport card, and I take it to the library to use free WiFi. I've been entering an important manuscript that I don't want to use.
    Is this fixable? This has me big-time frightened.

    Hi Karen,
    If your computer is back from the dead, then possibly your kernel panic issue has been resolved. Maybe there were software or directory issues that are now fixed.
    It wouldn't hurt to go ahead and open Disk Utility and repair permissions. Disk Utility should be in the Utilities folder in your applications folder.
    Repairing permissions is something you should do after every software download because permissions are changed for the download process. You repair permissions on the First Aid tab, and you want to repair them several times until there is nothing left to repair. While in Disk utility, you can also verify your hard drive and check the SMART status and make sure it doesn't have any problems. I would recommend you leave Disk Utility in the Dock so it will be handy next time you need it.
    As long as your hard drive is in good shape, it won't have hurt anything to have skipped the step of verifying the drive. However, it is prudent to check on the hard drive before downloading software, because if the hard drive is failing or something, your priority will be to save the data off of it. A failing drive is unpredictable, and puts you at risk of losing everything. If you elect to keep Disk Utility in your Dock, you can check your drive anytime you like.
    You can also do a Safe Boot as a maintenance item every so often:
    http://support.apple.com/kb/HT1564?viewlocale=en_US
    http://support.apple.com/kb/HT1455?viewlocale=en_US
    http://support.apple.com/kb/TS1884?viewlocale=en_US
    It sounds like maybe you reinstalled the OS by doing an Archive and Install, which would have installed a fresh copy of the OS while preserving all your settings and data.
    Not sure why you can't connect to the internet. First check to be sure your airport card is plugged in and recognized. If it is, you should be able to go to System Preferences>Network and use the assistant to help you to reconnect. It may be you'd have to set up a new location or something like that.
    One thing you should do is to put in place a backup strategy. If an external hard drive is beyond your means right now, at least try to find a USB flash drive. Office depot has 4 GB drives on sale for around $10 every so often, and you can find even better deals on line. You can store a lot of documents in 4 GB flash drive, and you would not have the worry of potentially losing everything if your computer dies. I am really glad you got your document back after all the hundreds of hours it took to create it, but there was a real danger that you could have lost it and all your other data.
    Once you get your flash drive, use Disk Utility to format it (they usually come pre-formatted for Windows). You want to do this on the Partition tab--select Mac OS X Extended (Journaled) for the format and "Apple Partition Map" for the partition map scheme. You can also give your flash drive a name. Once you have it set up, you can mount it on your desktop and copy your documents etc. by dragging and dropping.
    Good luck, and happy computing!

  • Vertical lines showing in the dispaly with pink colours in the full screen.

    Hi,
     I have a problem with my HP  laptop screen from nearly two days...... there is a vertical lines showing in the screen all of a sudden with pink colur in full screen..... i have updated the BIOS and Graphic...... but still screen problem remains the same...... I am worried...... i can perform any kind of  work in the laptop.... but the screen and pink colour almost spoil my work...... Please kindly help me up for this problem

    Hi there @MajorKh 
    I understand that you are getting full screen colour distortion, and lines on the display of your notebook.
    From how you describe the display it sounds like a hardware problem. Please see the following, just to verify as there is a section that matches what you describe.
    Troubleshooting problems with notebook displays (Windows 8, Windows 7)
    Assuming that it matches, then 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-assis​t.html
    Malygris1
    I work on behalf of HP
    Please click Accept as Solution if you feel my post solved your issue, it will help others find the solution.
    Click Kudos Thumbs Up on the right to say “Thanks” for helping!

  • A report that shows all the elements with their setting

    Hi
    Is there a way to write a report in discoverer which will show all the elements set up in Oracle with there settings e.g. are they taxable or niable etc.
    Alternatively is there a standard report in HRMS which would give the same results.
    Thanks in advance

    Not really as such. Taxable and Niable elements feed to the appropriate taxable or niable balances therefore, you will need to run a report against what elements are fed into these balances. I doubt that there will be anything as standard in teh pre shipped EUL's that will enable you to do this, however, for simple one of why don't you just call up teh balances in teh application and see what elemenst feed into them.
    Cheers
    Scott

  • Ability to show just the pics you want to in ios?

    Hi!
    Isn't that annoying when you show 1 pic to somebody and that person begins to flip pics and see other pics that maybe you don't want them to see? I think IOS should have the ability to mark just the pic you want to show a person in a particular moment.  Let's say, in camera roll, click edit, mark the pics, click on "share" and in the pop up window it should say also "show only this" or something like that.
    Don't you think guys

    I have included the view I am looking at in the left hand box in Organizer.  It is a folders list that sems to match the file structure on my computer.  I can right click on any of the folders in this list and I get a pop-up menu with te option to "Reveil in Explorer" .  The photo files I see when viewing in Explore do not match the thumbnail photos I see in the center panel of Organizer.  I have moved some files around as i organized things and some of that movement does not seem to be recognized in Organizer.
    I have included an example.  As you can see Explorer has two photos that are not appearing in Organizer.  Those picturtes do exist somewhere in anothe "folder" of the tree.  So they are in the cataloge, just not where I want them.

  • Had to reinstall iTunes after bad virus and now when I drag and drop song into custom playlist it won't added.  No green   appears, instead just the circle with slash.  What's going on?  a fix? Michael

    I had to reformat after a bad virus and reinstall iTunes.  Now when I try to drag and drop a song into a custom playlist, it won't add the song.  Instead of the green + that is supposed to appear, it just shows the circle with cross slash.  I created numerous playlist before and never ran into this problem.  Any suggestions on how to fix it?  Thanks 1ngiri

    OK, so I have now found that this is apparently normal for iTunes, to only accept mpeg 4 movie files, all the searching I did before I must have worded it wrong because I couldn't find anything about this, incredibly. Had been looking for why iTunes won't take all the files it previously did, like if it had been changed, and it hasn't, it's allegedly always taken only mpeg 4 files. Also I had been searching for why iTunes crashes every time I try and add/import anything but mpeg 4 files, and even sometimes with mpeg 4 files. That isn't normal, it's supposed to just do nothing apparently as I've just found out. So for these reasons I didn't find the answer despite my searching all over the web.
    So I guess that answers my own question now, but I'm still perplexed as to why I absolutely, definitely, without any doubt, had several hundred movies of a few different video file types loaded, accessible and playable in my iTunes library that everything here claims iTunes never accepted. It apparently shouldn't have been possible for me to have done this, but for probably 10 years it's been this way.
    Perhaps since I don't remember adding these files to iTunes anymore recently than maybe 6 or 7 years ago, the iTunes back then did accept all kinds of file types? Or could I have somehow had some video codecs or software that expanded the capability of my movie players like Quicktime Player that unwittingly also allowed iTunes to take those files as well? All I know is somehow it worked! So now my question is how did I have it working before, so that maybe I can make it work again.

  • Is there a schematic which shows what the keys are on a mac book pro.

    I have not used a mac laptop for a number of years. I have been using windows stuff and have got used to thier shortcuts etc. I require a schematic that shows what the basic keys are and what combinations are for the shortcuts for basic stuff ie word processing, web use etc. there are various differences in the layout from the US to the UK. This has probably been asked before so there are bound to be some simplified diagrams with all the details to keep me happy.

    This may help:
    http://docs.info.apple.com/article.html?path=Keynote/5.0/en/kyntc6568cef.html
    http://support.apple.com/kb/HT1343
    Ciao.

  • When I connect my ipad to itunes, my device doesnt show. just the store

    When I connect my ipad to itunes, the devices do not show on the side as previously. All I get is the store. I want to sync my items to my ipad and cannot do it. Help!

    Judie
    I had this issue yesterday with an iPAD mini so if Skydivers suggestion (which I do as well) doesn't work, just shut down the iPad and reconnect to your computer/iTunes.
    Best

Maybe you are looking for