How to change infoobject descriptions in a query after change the infoobjec

Hi all,
Imagine that you have 200 queries in production and need to change some descriptions in 2 infoobjects. eg:
Infooject 1 = "Customer Sales View"
Changed to    "Cust.View of New MKT"
Infooject 2 = "Material for sales"
Changed to    "Material"
Is there any way to change all queries automatically ? Via Report or Function or Transaction ?
Suggestions ?
Best Regards,
Mauro.

Hello Madhukar,
We recently had upgraded to NW2004s and in few queries even when I login with different language for instance Portugese the infoobject descriptions still show up in english and are not changed.
Can you please let me know if I need to update the RSZELTXT table along with other tables. If so can you please forward me the ABAP Code in order to do the same.
Your help would be really appreciated if you can reply promptly as our UAT is pending on this issue.
Let me know.
Thanks
Dharma.

Similar Messages

  • How to search in BI 7.1 query designer for the required key figures & chars

    Hi All,
         Can anyone plz tell me how to search in BI 7.1 query designer for the required key figures & characteristics. I have the query being built on a multiprovider which has many cubes.
    So, i have a huge list of key figures and characteristics. I am not able to search for the required one by the name or the technical name.
    How can we search and pick the required object from the enormous list of the Mutliprovider in the Bex Query Designer??
    Thanks
    Phani

    There is not a search feature available. You have to do an educated guess under what dimension your infoobject could be and select.

  • How can I change my original security questions? After changing my AppleID and password, I am not given an opportunity to change my security questions, which I cannot remember the answers to, so I cannot purchase any music.

    How can I change my original security questions? After changing my AppleID and password, I am not given an opportunity to change my security questions, which I cannot remember the answers to, so I cannot purchase any music.

    See my User Tip for some help: Some Solutions for Resetting Forgotten Security Questions: Apple Support Communities.
    Send Apple an email request for help at: Apple - Support - iTunes Store - Contact Us
    Call Apple Support in your country: Customer Service: Contacting Apple for support and service

  • How can I get my safari to open after installing the new Mavericks operating system?

    How can I get my safari to open after installing the new Mavericks operating system?

    Thanks Carolyn. Unfortunately, this didn't work. It turned out to be in my display monitor as I have my computer wired to my tv for streaming. Once I changed the monitor display it worked fine. Go figure

  • How do I get back into my iPad after updating the iOS?

    how do I get back into my iPad after updating the iOS?

    What do you mean? Why can you not access the iPad?

  • How can I make my wireless keyboard "discoverable" after replacing the batteries?

    How can I make my wireless keyboard "discoverable" after replacing the batteries? Bluetooth keyboard setup said my  "keyboard is not connected" when I turned it on today.....assuming the problem was batteries, I replaced them.

    I've got it working now.....

  • Unable to open the BI Query after change in ODS structure

    Dear All,
    I have a query which is based on some ODS. I have added one more InfoObject to the data part of this ODS and deleted one of the existing one. Now when I try to open the existing query (so that I can include this new field) based on this ODS, it is not allowing me to go to the 'Change' mode.
    Ultimately I end up closing my session.
    Is there any other method to go to the 'Change' mode or else I need to design the query from the scratch again ?
    Thanks,
    Srinivas

    Thanks All.

  • HT5622 how can i update my existing apple game after changing the apple ID?

    can somebody help me? i have an existing apple games which i installed using my old apple ID. After my first apple ID has been compromised i changed it into a new one. now everytime there's an update to my games its still asking for my old apple ID. I try to delete the games and install once again but during updates its still asking for the old apple id and password. I get sick of it because i spend a lot o money and time for that games which i cannot play anymore because i cant update them. Please HELP...

    Are you logged into iTunes with the same Apple ID on both devices? After deleting the game on the iPhone, did you also delete it from your iTunes on the computer that you might be syncing with? Did you delete it from the iPad before purchasing/reinstalling on the iPad? This could be where your issues start.

  • Develop changes not reflected in Exported files after changing PCs?

    Hi,
    I recently upgraded to a new laptop so installed LR3 on the new laptop. I them imported the Catalog etc.
    When I browse of a folder of my library (that I developed on the old laptop just before the upgrade) I initially see the undeveloped picture but after a second or so it updates the picture to reflect my develop changes made previously. So, it appears the import has worked succesfully etc.
    However, I then tried to export a selection of these pictures to a new location so that I could isolate and upload to a photo printing site. Once the export was complete I noticed that the jpg files exported to the new folder do NOT contain the develop changes I made.
    I am a bit stumped now - I know that before changing Laptops I had exported some of these photos from the same folder (to burn to cd and send to a friend) the exported files definitely reflected the develop changes.
    Can someone please help me understand what has gone wrong?
    Many Thanks in advance for any replies

    Thanks for the response and apologies for my late reply - been away for a few days.
    I checked the output format and it was set to JPG - not Original.
    But I think the problem was down to my mixing up my catalogs - I normally have my catalog on a NAS drive with a SUBST drive letter and with a backup on the local drive every now and then.
    I think I may have opened the wrong catalog (the local one) - still dont understand how the changes I made were still refelected when viewing the file in LR3 - weird!
    Thanks again!

  • How to Direct control to application's window after closing the popup?

    Hi,
    I am using 10.1.3. In my application I am unable to direct control to application's window after closing the popup, if I open any other window at the same time.
    For more info see the below step:-
    -> Open any popup in my application.
    -> Open any new window (lets say Google.com).
    -> Now restore popup on Google window.
    -> Now close popup
              - control goes to Google window but not the parent application window.
    How to direct control to the parent window?
    Can anybody help me regarding this?
    Thanx...Abhijit

    Hi Abhijit,
    You can do this using Javascript alone. Below are the two sample files I created.
    main.html_
    <html>
    <head>
      <title>Testing popup</title>
      <script type="text/javascript">
      function openPopup() {
        window.open("popup.html");
      </script>
    </head>
    <body>
      <a hr_ef="javascript:openPopup()">Open popup</a>
      <input id="something" name="something" type="text" value="something">
    </body>
    </html>
    Note: hr_ef should be href. The code tags are messing with the link.
    popup.html_
    <html>
    <head>
      <title>This is the popup window</title>
      <script type="text/javascript">
      function goToMain() {
        window.opener.something.focus();
      </script>
    </head>
    <body onunload="goToMain()">
      This is the popup window. Close this window to return to main window.
    </body>
    </html>The idea is to call a javascript function in the popup window that tries to focus on an object (eg. InputText) in the main html.
    Although, one point to take note is the naming of html objects by by these ADF UI Components. If you named your form id as "*form1*" and input text id as "*something*", your input text id will end up as "*form1:something*".
    Therefore, you will have to tweak the code above to the following:
    <script type="text/javascript">
    function goToMain() {
      window.opener.form1['form1:something'].focus();
    </script>Regards,
    Chan Kelwin

  • CHANGING IP ADDRESS OF A LAPTOP AFTER CHANGING IP ADDRESS OF WIRELESS ROUTER CONNECTED TO DSL MODEM

    DO YOU HAVE TO CHANGE TO CHANGE THE IP ADDRESS OF THE LAPTOP CONNECTED WIRELESS AFTER CHANGING THE WIRELESS  ROUTER'S IP ADDRESS TO 192.168,2,1 BECAUSE DSL MODEM USES 192.168.1.1, THE WIRELESS ROUTER IS IN A DIFFERENT SUBNET FROM THE DSL MODEM

    Your laptop will find the correct IP address automatically.
    Greetings from Northern Ontario, Canada

  • How can i refresh view on query after changing the query?

    Hi,
    i built few view's on 1 query in BI7. after i made a change in the query i haven't seen it in the view, why?
    it's not refreshing automaticly from the query? and if it's not, how can i refresh the view?
    thanks
    Meirav
    Edited by: Meirava on Apr 2, 2009 11:43 AM

    Hi,
        You need to refresh that view and once again save the view with changed settings. Then it will brings according to the query changes.Once check the variables also.
    Regards
    Pcrao.

  • How to Change Sold to using BDC transaction after perform the order

    After creating an auto new sales order how will i change the sold to and ship to a new order before saving.
    Here sample code:
    perform load_orders.
        CALL TRANSACTION  'VA41' USING itab_bdc
         MODE p_mode UPDATE 'S'
         MESSAGES INTO bdcmsg
    thanks,
    Mary

    Hi,
    Why don't you try to make the Partner Function for Sold to Party as Modifible (Don't select Non Modifible) for the Sales Order Header in partner determination determintaion setting in customizing.
    You have to check with the partner determination procedure assigned to your sales order type and check accordingly.
    Reward points if it helps.
    Regards,
    Harsh

  • How to access iTunes library in time machine after changing corrupt HD_

    Hi,
    have a mini with 2.66GHz Intel Core Duo where several months after installing Mavericks it seemed not to be able to handle it anz longer. Whatever the szmptoms and mz attempts to save the thing, I brought it to the Service Center which finally said the hard drive needed changing.They copied the content onto a new 750GB one, but then found that thez couldnt move the itunes folder. They said I should just retrieve it from my time capsule.
    Back home, time machine says it doesnt have a location set up for time machine, kind of telling me that my mini is not being recognised as my old computer.
    There s threads and sites that tell you how to avoid a full new backup after hd change when you ve managed to copy the data directly. I couldnt find anything about retrieving specific data from the time machine that were not successfully migrated when changing the hd.
    Any pointers, please?
    Thanks,
    H

    Hey,
    no I have not. I was kind of afraid that if I set up time machine, it'll create a new "account" and won't let me access the old backups in time machine. While user name hasn't changed, nor password, it seems that the service center has not copied my "preferences" or "profile" for the lack of a better word. It looks to me that time machine doesn't recognise the mini being the old one.
    i just linked up itunes again and at least through  itunes match I can see my library in icloud. But I don't want to download 130GB from icloud if I have them on my time capsule 10 feet away from the mini...
    H

  • How do i pass a url with query string using the jsp:forward tag

    This snippet of code gives a 403 error
    <jsp:forward page="testpage.jsp?test=1" />
    How do i rectify it?

    Well better way to go about for the job is to use
    setAttribute("name","value");method in the first page
    and then in next page use method
    String s=getAttribute("name");to retreive the value.
    Url rewritting or using Query String has some disadvantages ,which are handled by above mentioned approach.
    Ashish

Maybe you are looking for

  • Can date be included in the fact table as a measure?

    Dear All, I have to migrate a database form relational model to dimensional model. It a kind of human resource database. I don't know what MEASURES should I keep in the fact table. There are only dates, like date the employee joined the institution a

  • Confusion on SP's and EHP1

    Can someone please clear this up for me: I am trying to get Xcelcius to be able to connect direct to our bi system using BICS Web Services.  I read that I need 7.0.2 to do this. When I went looking for 7.0.2 all I can find is EHP's when I look at the

  • Airport just stopped connecting - bizarre!

    Hi Everyone I really hope someone can help on this one. My MacBookPro 2.4 (the latest one) has just decided to stop connecting to our home wireless network. It has been working just fine on this network for weeks. It has always connected just fine to

  • IPhoto update out now - 6.0.1

    A new update is out for iPhoto 6.0.1 Seems to be OK on my iMac. Ian

  • ACE SSL offloading troubleshooting

    Hi All, I need a help on trobleshooting ACE SSL offloading. Can anybody post the link to know about the commands for troubleshooting? Regards, Thiyagu