How to disable the "Back To SRM Application" link.in SRM7.0 Catalog Screen

Hi
We have strange issue, about  ""Back To SRM Application" button when you open MDM Catalog thru Shop (SRM 7.0).
This Hyperlink i never seen in any other Environments like Dev, IT1, IT2, UAT,Training, Only in Production it is appearing in German Language, which i converted into English for better appearance to Users rather than German.  
Since it is not appearing in any of our landscape, we don't need to keep the same in Prod System.
Appreciate if anyone could give me some suggestions on the same.
Same Call Structure is across the all the Systems
Same UI (Standard)  across the all the Systems
Regards
SHIVA

Hi
Thanks for you inputs, the Issue is we have maintained the same call structure across landscape. None of system is showing "Back to SRM Application" except the Production System . The following call structure we have maintained for all the system.
10     URL                    sapsna04.XXxXX.com     0 URL
20     User Name          Master                             Fixed
30     password           xxxxxxxxxx                    Fixed
40    Server Name        sapsna04.xxxxxx.com   Fixed
50    Catalog                 SRMMDMCATALOG        Fixed
60     Port                      2005                                Fixed
70     repository type   M                                       Fixed
75     name search      GB                                     Fixed
80    uilanguage           SY-LANGU                       SAP Field
90    datalanguage       EN                                     Fixed
100  HOOK_URL           Blank                                4Return URL
110  returntarget          _parent                             Fixed
120  ~Caller                   CTLG                               Fixed
130  `OKCode               ADDI                                Fixed
Regards
SHIVA

Similar Messages

  • How to disable the back button when displaying a form

    Hi ,
    i have form A calling form B, when form B is displayed i want to disable the
    back button in the explorer so as not to allow the user from going back to
    form A.
    thanks.

    When you open a new window, call following javascript function also to disable the "back" button.
    window.history.forward(1);
    It will work.

  • How to disable the blue highlight fields around links in a PDF in Adobe Reader 10.2?

    I've created a document in InDesign CS5, and when viewed on Adobe Reader 10.2 (on an iPad) all the table of contents links within the document, and all links to external websites have a blue highlight field around them. While I appreciate the fact that it makes it obvious where links are, it looks remarkably ugly to have huge blue highlights all over the document. There must be a way to turn these highlights off, right? Either from the source document within InDesign before the PDF is created, or from within Adobe Reader or Acrobat after the PDF is made? I have all the links within InDesign set to "Invisible Rectangle", and it looks great when viewed on older versions of Adobe Reader or in iBooks. Unfortunately, older versions of Adobe Reader don't support hyperlinks on tablets. So somebody using Reader 10.2, however, is now forced to view this document with ugly blue highlights. Is the only option to avoid the highlights to recommend everyone use iBooks to view the document, or is there a way in Reader 10.2 to disable these?

    Might be better to post this in the Acrobat or Indesign forums.

  • How to disable the blue highlight boxes around links?

    I've created a document in InDesign CS5, and when viewed on Adobe Reader 10.2 (on an iPad) all the table of contents links within the document, and all links to external websites have a blue highlight field around them. While I appreciate the fact that it makes it obvious where links are, it looks remarkably ugly to have huge blue highlights all over the document. There must be a way to turn these highlights off, right? Either from the source document within InDesign before the PDF is created, or from within Adobe Reader or Acrobat after the PDF is made? I have all the links within InDesign set to "Invisible Rectangle", and it looks great when viewed on older versions of Adobe Reader or in iBooks. Unfortunately, older versions of Adobe Reader don't support hyperlinks on tablets. So somebody using Reader 10.2, however, is now forced to view this document with ugly blue highlights. Is the only option to avoid the highlights to recommend everyone use iBooks to view the document, or is there a way in Reader 10.2 to disable these?

    Thanks, but I already have all the hyperlinks set to "Invisible Rectangle", and there are still blue highlight fields around the links in Reader 10.2. If I view the PDF in other programs (iBooks, older versions of Reader) the links appear without the blue highlights. All the research I've done on this seems to point to the blue highlight fields being a "feature" of Reader 10.2, but I can't imagine that Adobe would create a feature with such a visual impact on documents without offering the option to turn that feature off? In a lot of print, online, and interactive docs both text and images are used as links (icons, buttons, etc) and having an automatic blue highlight around them really takes away from the visual impact that graphics provide. There must be an option somewhere to disable or turn these off, but I haven't been able to find it yet. Any other suggestions/ideas?

  • Disabling the Back button

    Hi
    How to disable the back button in the Internet Explorer in Java or Jsp or Servelts.
    Thanks in advance

    Why are you repeating the question? You posted the
    same question two days ago:Well, that was a long time ago. Technology has
    advanced since then and might have provided a
    solution.:)

  • How to disable the starting application on the MPB

    hi guys,
    Please help me on how to disable the automaic starting application on my MPB

    System Preferences / Users & Groups / Startup items button.
    Delete those you don't want to launch at start up.

  • How can I disable the Keychain for an application?

    How can I disable the Keychain for an application? A window pops up every time I open a page in Safari asking me for a password. I'm using a student laptop, so while I'm an administrator I lack access to a few things, such as the Keychain Access application. Is there any way to deal with this?

    It's possible you may be able to trick it by creating an Applications folder in your Home directory and moving Safari to it.
    I can't test this but it might work. The problem is that you would miss Safari updates, so you'd have to keep an eye out for them. Another solution may be to download another Safari and install in yourname/Applications.

  • How to disable the button in application toolbar in report pgm

    Can anyone help with How to disable the button in application toolbar in report pgm

    Hi,
    You can use it_excluding to disable button on the tool bar.You have to find the function code for the required button and append that function code to the it_excluding .The optional IMPORTING parameter IT_EXCLUDING is an internal table. It is only needed if the caller uses the list tool standard interface but wants to deactivate interface functions which he or she does not need.You can have your defined pf-status using I_CALLBACK_PF_STATUS_SET.
    SAMPLE PROGRAM
    tables spfli.
    type-pools: slis.
    DATA W_FCODE TYPE SLIS_EXTAB-FCODE.
    data: t_spfli TYPE SPFLI OCCURS 0 WITH HEADER LINE.
    select * from spfli into table t_spfli.
    data : t_excluding TYPE SLIS_T_EXTAB .
    W_fcode = '&OUP'.
    append w_fcode to t_excluding.
    W_fcode = '&ODN'.
    append w_fcode to t_excluding.
    call function 'REUSE_ALV_LIST_DISPLAY'
    EXPORTING
    I_STRUCTURE_NAME = 'SPFLI'
    IS_LAYOUT =
    IT_FIELDCAT =
    IT_EXCLUDING = T_EXCLUDING
    tables
    t_outtab = T_SPFLI
    EXCEPTIONS
    PROGRAM_ERROR = 1
    OTHERS = 2.
    if sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    endif.
    http://help.sap.com/saphelp_nw2004s/helpdata/en/99/49b844d61911d2b469006094192fe3/frameset.htm
    Regards,
    Priyanka.

  • How can I get back into my application aftermath invoking Start up page of index.htm ?

    Gorgeous Hello All,
    If anyone of you can please provide me a solution for the following, will help me in plentious and galore.
    Am using Adobe RoboHelp, Version 10 and IE version being 10.
    A hurdle :-
    I have a application which has been developed in ASP .NET, Version 4.0. Help link has been created in this application wherein here the Start up page of index.htm has been linked to be read from the RoboHelp local project folder\!SSL!\Multiscreen_HTML5\desktop. All are working absolutely fine except when
    I login into the above-said application -> click on the Help page -> the index.htm opens with Contents, Index, Glossary -> Am able to successfully perform any task by respective clickings
    -> But I am not able to get back into my application when I click on the IE provided Back button (Alt+Left) -> Any amount of invoking Back button makes the system getting looped into this Start up page of index.htm only -> When I Close Tab (Ctrl + W) or Close ( X ) -> The window session gets closed and I have to repeat all by relogin once again.
    How can I get back into my application aftermath invoking Start up page of index.htm ?
    (I can always get back into the application easily by erasing those parts in the url which refers to this RoboHelp linkages – but this certainly looks non-polished work)
    Help Please
    Cheese – Vipin Nambiar, Bangalore

    Hey Jeff, I used Internet Explorer 10.0.9200 and Google Chrome 26.0.1410. Alas - it is the same behavior.
    (But Jeff : When I used Microsoft HTML Help as primary layout to generate chm file , My Help when launched from my Application opened in a new browser window and when I closed this Help browser window did not close my application. Looks like need to write few liner code to get this issue settled )
    Thanks Indeed of lots for your concerns Jeff !!!

  • I have changed the apple ID (email, but on my iphone , the icloud is stil asking me to log in whit the old email.And it is poping-up on every 10 seconds.I never used icloud, and i dont want to use it.I just dont know how to disable the icloud.

    i have changed the apple ID (email) but on my iphone , the icloud is stil asking me to log in whit the old email.And it is poping-up on every 10 seconds.I never used icloud, and i dont want to use it.I just dont know how to disable the icloud.

    If you see that pop up you enabled icloud. Whether you want or do not want now to use it irrelevant until you actually disable activation lock.
    In order to do that you have to change your apple id back to do that just long enough to sign in and back out. System will ask you to verify, don't.
    Just sign in on the prompt you getting and then logout. Once done, change apple id to what you have now and verify. Then decide if you want to
    use icloud (who does not want to be able to track their phone if lost or stolen).

  • How to disable the status icon in Skype 4 for Andr...

    Dear Skypers,
    How to disable the status icon in Skype 4 for Android phones?
    The guide on this following support page not working anymore: https://support.skype.com/en/faq/FA12359/how-do-i-enable-or-disable-the-status-icon-in-skype-4-for-a...
    Older version has the option to disable Skype Status and get rid of the Skype icon on Android status bar. But latest 4.4.0.31835 could not disable Skype Status in notifications settings. :/
    Device: Google Nexus 4
    Android: 4.3 JWR66Y
    Skype: 4.4.0.31835
    Please bring back the option to disable the Skype icon on Android status bar. This is the main reason I uninstall Skype. :/
    Kudos to the team, the apps is really smooth and fluid to use. Would be nice if you guys are following the Android Design Principles and using Google Cloud Messaging for push notification to improve User Experience and battery life.
    Kind regards,
    /chrone
    everytime i get ahead, i feel more dead.
    Solved!
    Go to Solution.
    Attachments:
    how to get rid of skype icon on android status bar.png ‏46 KB

    Long click on this notification a sub menu having field "App info" would appear goto App Info. You can goto there by "Manage Apps">"Skype" also. 
    Uncheck Option "Show Notifications" A dialog will open. Don't worry about notifications for now just click OK. Now the notification icon skype has also been removed. 
    Now simply check "Show notification again". After doing this you would get notifications but skype icon would not be shown in the status bar anymore.
    Issue: this is just a trick you need to repeat this every time sign out and sign in again. Mostly you don't do that so no need to worry.

  • How to disable the EO cache in AM ?

    My customer share AM defination codes between two applications,and let EO coexist in multi AMs.And they have build a lot of codes.I wonder if this will exist trouble.
    from the support documents, I know the AM has an EO cache. after one client update an EO,if second client get the EO from the same AM,It will get it from the cache. What I want to know:
    1.if the EO also exists in another AM2 in same Application,can the AM2 cache refresh data according to the AM1 update?
    2.if AM2 can't be refreshed,how to disable the AM2 EO cache,then let all query directly to database ?

    I need to clearify the scenario,this is really happening in a customer project,I just have a chance to review the codes today.
    A team develops a system, they use AM1 to IUD data,B team also want to use the data,they have a separate app,and dont' want to define from EO to VO again,but A team don't want B team take the insert and update ability to A database, so they develop a simplify AM2,and give the source codes to B team.
    I feel what they do is not right,but they must put it online and have no time to listen to me.Currently I want to find some fast way to avoid the data unconsistency risk.
    But I dont know if am2 alone in an app,what the app should do to get refreshing data which is updated by another app.
    BTW, from the customer concern,they could not create AM2 from AM1.because the AM1 and AM2 will not coexist in same app.

  • How to Disable the Lead selection Action on aTable n How to Refreh a Page

    HI....
    1)How to Disable the Lead selection Action on aTable n How to Refreh a Page r web dynpro application.
    In my case i have a table n user enters data on multiple rows in table , n i have some input fields outside of table for those Inputs fields am settiing the data  at the screen initilization(in Init() moethod by hard code).the problem is whenever the is clicking in th 2nd row of a table the Lead Selection is triggerig and the data in the Input Fields outside the table is not displayinig.
    So by removing the lead Selection Action of a table i thought i can reslove this,
    2) How to refresha page(like we click F5 on key board),is it can be done thru code in web dynpro application
    Regards
    Rajesh

    Hi,
    You did not explained what is your functionality or coding in leadselection. Is that action on leadselection is necessary for you?.
    1)If you just want to remove the action then go to table properties and remove the action for leadselection.
    2)If you still want to continue with your leadselect action, then what you can do is.. write the code in leadselection action to again set the input fields which are out from table.  That is what you did in your init method.
    Page Refreshing
    3) What do you mean by page refreshing? is that refreshing your table only or both the table and input fields. 
         What I understood is you are allowing the user to enter values in table and soon after pressing a button the values should be saved and the data in input fields shld be deleted.  For this if you only invalidate the node then the user entered data will be lost. 
    So what you do is after getting the input data from the user add it to a ArrayList and then invalidate the node which clears the data in input field. Finally bind the Arraylist to your node.  see the following code. This is a concept make changes according to your requirement
    ArrayList list1=new ArrayList();
    wdContext.nodeAbc().bind(list1);
    IPrivateExcelviw.IAbcElement ele = wdContext.createAbcElement();
      ele.setNo(wdContext.currentAbcElement().getNo());
      ele.setName(wdContext.currentAbcElement().getName());
      ele.setMarks(wdContext.currentAbcElement().getMarks());
      list1.add(ele);
      wdContext.nodeAbc().invalidate();
    wdContext.nodeAbc().bind(list1);
    Revert me if you have any doubts
    Regards
    Raghu
    Edited by: Raghunandan Madarikuruva on Oct 16, 2008 8:07 AM

  • How to disable the context menu

    Hi folks,
    we have an application running in EP. We want to disable the context menu (right click hand). Any help is welcome.

    Hi!
    I have the same problem because we want to run WDA applications in th internet and there it is "not allowed" to "overwrite" the user's normal browser context menu.
    Additionally we are interested in how to disable the F1 and Ctrl.-F1 help features for the whole WDA application. We do not want to present technical details in the internet.
    Any help very welcome!!!!
    Regards,
    Volker

  • UCM - WEBDAV - How to Disable the New Folder option in the action popup

    I am trying to implement WebDav functionality. I don't want the users to create folders in the folder mapped to a security group. As long as the user has privilege to contribute to the security group he/she can checkin documents but they should not be able to create folder under it. I did not find documentation as to how to disable the new folder option in the context action menu that pops up on mouse right click. Is there any way we can do that?
    Thanx.
    Edited by: user10991492 on Nov 1, 2010 11:24 AM

    This is the boilerplate text often used in connection to networks in general. It is impossible to troubleshoot someone else's network remotely, and that's why it's not supported by Adobe:
    If you are opening files over a network or saving them to a network server, please cease and desist immediately in the event you are currently experiencing problems with one or more files.
    Working across a network in general is not supported by Adobe.
    See: 
    http://kb2.adobe.com/cps/406/kb406793.html
      Copy the CLOSED file from your server to your local hard disk, work on it, save it again to your local hard disk, close it, and copy the closed file back to the server.
        Of course, the fact that Adobe does not support working across a network does not necessarily mean it won't work.  It should.
        Adobe's position is that there are too many variables in a network environment for them to guarantee that everything will work correctly in every network, especially given the fact that if something does not work properly, it's probably the network's fault, and Adobe has no way of troubleshooting your network.
      If you can't work locally, you are on your own, and if something happens, you're on your own. If you must work from a server, make sure your network administrator is a competent professional.

Maybe you are looking for

  • How to stop sleep/hibernation with external display & lid down

    What is the proper way to get my MBA to not sleep, hibernate, etc. when I have an external display attached and lid closed while watching a movie or webcast. In such a case I am not touching the mouse, trackpad, or keyboard. I have bluetooth keyboard

  • Shitshitshit /dev/sda4 has errors?

    First thing it does, Arch checks my filesystem (/dev/sda4) and it has errors...Filesystem check fails, and it tells put password to log in as root or Ctrl+D to continue...I really need this HD because it has tons of family pictures, etc. no backup (T

  • Why is Macbook air 2014 used 15 days, the battery is lost 2,5% ?

    Dear Sir or Madam, I just bought a new macbook air Early 2014 and the first time charging  and calibrated 3 times. Every it time i try charging 8 hours right , but now my battery is only 97,5%, so I was really disappointed in the quality of products.

  • Mobile Safari as full desktop safari browser in ipad

    Mobile Safari as full desktop safari browser in iPad I am having a curiosity which i need to solve with the help of yours. Actually as per my knowledge is concerned i know that the iPad is working with the mixture of mobile Safari as regular one. Wha

  • Student Version of Premiere Elements/Photoshop Elements

    Can I load the student version of Premiere Elements/Photoshop Elements onto multiple computers?