It is possible to open CRM using URL like EPand XI

it is possible to open CRM using URL like EPand XI.IF IT IS POSSIBLE GIVE ME PROCEDURE FOR THAT

Not possible. CRM online can only be accessed via SAP GUI. Parts of the CRM can be accessed via enterprise portal, if the CRM business package is installed on portal.
Paul.

Similar Messages

  • TREX Query Using URL

    Hi,
    i am trying to run queries on our TREX using URLS like this:
    http://xyz.abc.net:50000/irj/servlet/prt/portal/prtroot/com.sap.km.cm.service?startpage=searchpage&configfilename=navigation.xml&layoutsetmode=exclusive&resourcelisttype=com.sapportals.wcm.searchresultlist&searchtype=quick&selectedsearchin=1&selectedsearchfolder=/room_extensions/cm_stores/pm_news_storage/workspaces/[Room_ID]&SelectedSearchFromHere=/documents&QueryString=test&SelectedSearchIndices=[INDEX_NAME]&EnableSearchOptions=False
    Is there any documentation on the parameters, their functionality and values, that are contained in this URLS.
    For example i´m wondering what SelectedSearchFromHere would do?
    Any hints, links, etc. are appreciated.
    Best Regards
    Christopher Höfele

    Hi Christopher,
    We are doing something very similar in EP5 SP6.
    To build our URL, we used the 'save search as iView' option on our 'test' search.  That allowed us to select the options in the advanced search screen that we wanted to search on.  Then, we exported the resulting iView which generated an XML document with the required search options.
    We then took those node names (ex:SelectedCustomProps) and built an HTML document to allow for the selected search URL to be built dynamically.
    See this as an example:
    function callURL(){
    document.getElementById('searchResult').src = host"/irj/servlet/prt/portal/prtroot/!2fglobal!2fservices!2finstalled!2fcom.sapportals.km.service?StartPage=NavigationPage&ConfigFileName=Navigation.xml&SelectedMatchesPerPage=8&rndLayoutSet=z_SunnetSearchResultLayoutSet&layoutSetMode=exclusive&ResourceListType=com.sapportals.wcm.SearchResultList&SearchType=ctrlpers&SelectedSearchIn=1&SelectedSearchFolder=/SunNet_News_Repositorys/Articles&SelectedSearchFromHere=/SunNet_News_Repository/Articles"termprosort;
    where 'term' = Query entered by user (defaults to '*')
          'pro'  = Selected custom properties (from dropdown)
          'sort' = Selected "SortBy" choice (from dropdown)
    Hope this helps give you some more ideas
    Regards,
    Graham.

  • PROBLEM while using URL in order to open a file from a servlet

    Hi,
    I am having a problem while trying to open a file from my servlet by using URL connection. Following is my code sample. what happens is when I first run my project it opens the file but after that when I rerun it again and again it sometimes opens it and sometimes not. if it can't open it it gives an error saying "the file is damaged and couldn't be repaired". I don't get any exceptions. if you guys can help me I will appreciate it so much... thanks.
    here is my code :
    URL url = new URL("http://demobcs.ibm.com:81/test.pdf");
    resp.setContentType(getContentType("http://demobcs.ibm.com:81/test.pdf"));
              ServletOutputStream sos = null;
              BufferedInputStream bis = null;
              try {
                   sos = resp.getOutputStream();
              } catch (Exception e) {
                   System.out.println("exception !!!!");
                   e.printStackTrace();
              System.out.println("burada2");
              try {
                   byte[] bytes = new byte[4096];
                   //bis = new BufferedInputStream(conn.getInputStream());
                   DataInputStream in = new DataInputStream(url.openStream());
                   //DataInputStream in = new DataInputStream(conn.getInputStream());
                   bis = new BufferedInputStream(in);
                   int j;
                   while ((j = bis.read(bytes, 0, 4096)) != -1) {
                        try {
                             sos.write(bytes, 0, 4096);
                             System.out.println("file is being read ...:");
                        } catch (Exception e) {
                             e.printStackTrace();
                   in.close();
                   bis.close();          
                   //sos.close();
              } catch (Exception e) {
                   System.out.println("exception :"+e.toString());
                   e.printStackTrace();
              }

    You are writing (<filesize> mod 4096) bytes of crap at the end of the file. Use your variable j instead for the number of bytes to write in your loop.

  • How do I move from one website to another using Safari, while still allowing Pandora to provide music in the background? It seems that when ever I open a new URL, I lose Pandora.

    How do I move from one website to another using Safari, while still allowing Pandora to provide music in the background? It seems that when ever I open a new URL, I lose Pandora.

    Try running Pandora in its own tab and leaving that tab open (Safari 7.1.5, OS 10.9.5).  I don't have Pandora to try this, but it works for me otherwise.
    Good luck
    srb

  • Using Maverick, how is it possible to open more than one calendar window?

    Hi, I'm using Maverick 10.9.1
    My question is: how is it possible to open more than one calendar window? i would like to have on the right my personnal calendar dates and on the left, my company calendar.
    Many thanks in advance for your help!
    ph

    See if the section on group calendar helps.
    http://www.dummies.com/how-to/content/basics-of-calendar-in-os-x-mavericks.html

  • Opening a long URL on click of button in CRM Web UI

    Hi Experts,
    I am facing an issue while opening a long URL (length greater than 255 char) on the click of a button in CRM Web UI.
    I have declared an attribute zv_url type string and populated the variable in event handler.
    Thereafter I have written below logic in .htm:
    <script type="text/javascript" language="javascript">
    window.open("<%=controller->zv_url%>").focus();
    </script>
    But the logic is not opening my URL, it is just opening a web window 'res://ieframe.dll/http_400.htm' with error page HTTP 400 Bad Request.
    If I try to modify the variable zv_url in debugging with a short url say 'http://www.google.com', it works correcly but due to the length of url, the logic is opening error page.
    Can you please help me out with this issue?
    Thanks in advance,
    Nitin Karamchandani.

    Hi Nitin,
    i will give you one suggestion when you click on button this url you need to open right.
    i have faced same problem last time. so at that moment i have done my code in do_prepare_output.
    when ever your declare your button properties there is one property onclientclick.
    CONCATENATE 'javascript:window.open( "http://YOURLINK.com:8000/sap/bc/gui/sap/its/webgui/!?~transaction=TCODE&~okcode=ICEXECUTE&sap-user=crm_remote&sap-password=sap_user&sap-client=300&IP_VBELV=' zvbeln '&~okcode=/00&");' INTO
    lv_string.
       ls_button-type     = cl_thtmlb_util=>gc_icon_print.
       ls_button-text     = 'PRINT'.
       ls_button-enabled  = me->view_group_context->is_view_in_display_mode( me ).
       ls_button-on_click = 'PRINT'.                             "#EC NOTEXT
       ls_button-on_client_click = lv_string.
       APPEND ls_button TO gt_button.
       CLEAR ls_button.
    try this..
    Thanks & Regards,
    Srinivask.

  • How to use url to open report and refresh report's data,but the report's toolbar haven't "refresh data" button

    Post Author: madbird
    CA Forum: WebIntelligence Reporting
    HI,
    scenario is
    I hope use url to open the report,and refresh the report data,but I didn't the user use the "refresh data" button to refresh the report's data.How to do that?
    regards

    Post Author: madbird
    CA Forum: WebIntelligence Reporting
    Thank you for your attention, amr_foci .
    I created a Web Intelligence report,there will be more than 30 companies use.The company only allowed to see the Company Data. I want to use the url of the way, from my company in the development of the system to open report, and refresh reported Table data.but do not want users to use the toolbar of "data refresh" button to refresh the data .
    Now the question of identity authentication system, as well as statements by url open the question of Has been resolved, but it can not shield statements through the pages of "data refresh" button.
    In addition, I now used by the business object XI system is posted on the JAVA environment.
    Regards,

  • Is it possible to hide Tabs by using Url in FPM_OIF

    Hi All.
    I am calling one Standard Application from my custom application.
    Standard Application has 8 tabs. There i want to hide some tabs by using URL.
    Is it possible to hide through url.?
    Regards,
    Jack.

    Issue Solved.
    Implemented Enhancement for Standard Component and Hiding tabs based on Custom URL Parameter.
    Regards
    Jack.

  • Can anyone please help? Every time I start up my imac OSX 10.6 desktop my Aperture 3 programme opens up without being requested. Is it possible to stop this from happening and only open by using the desktop icon? Thank you for any assistance.

    Can anyone please help? Every time I start up my imac OSX 10.6 desktop my Aperture 3 programme opens up without being requested. Is it possible to stop this happening and only allow Aperture to open by using the desktop icon? Thank you for any assistance anyone may be able to give.
    Best regards, John.

    because there is absolutely no mention in my System Preferences of either Users & Groups nor Start Up Items.
    John,
    William's solution was much easier - just for completeness sake: The preferences panes to edit your startup items moved between the Mac OS X updates: I forgot that the "Users&Groups" preference pane used to be called "Users" in Mac OS X 10.6; it is the panel that you use to create new User accounts; and earlier systems had a separate preferences panel "Login" to enable and to disable the applications that are launched at login. Both are now combined in "Users&Groups". Sorry for sending you on a wild goose chase with the wrong Preferences panel.
    Regards
    Léonie

  • Pl help ! ! Opening a servlet URL using stand aline java application

    Hi Guys, I have a standalone java application. This application will get executed after some by some thread. What I want to do is when this java application is executed, automatically open a URL in internet explorer which is of my servler/jsp and pass the parameters to this servlet/jsp. This servler jsp will intern use EJB and other services to get the data and display it.
    How should I automatically open a IE window and pass parameters using this standalone application.
    Pl help ! ! !
    thanks , Ava

    do you want to open internet explorer, or just access the servlet without internet explorer?
    if you want to use internet explorer, you'd want to use
    Runtime.exec,
    if you want to access the Servlet w/o ie, you would use
    URL, and HttpURLConnection classes

  • Is it possible to micro step using the Pci7314 (open loop) controller and umi7764 and Labview.

    Is it possible to micro step using the Pci7314 (open loop) controller, umi7764 and Labview. if so how would this be set up. i have searched the valuemotion vi libraries and found no microstepping functions. Please could you offer any advice. cheers JON ROGERS

    Hi Jon,
    Micro-stepping is a property of the motor amplifier (motor drive) rather than the controller. It sounds like you are using a 3rd party drive, since you have a UMI. You want to check with your motor amplifier documentation to see if it's supported. Usually, there will be dip-switches on the drive that sets the microstep factor.
    Hope this helps. Please let me know if you have any questions.
    Thanks,
    Ken Sun
    Applications Engineering
    National Instruments

  • Opening a webpage using url.getConnection and populating?

    Hi
    I want to write a tool that opens a webpage given the URL and populates the page with provided information and clicks the button i.e. want a tool that automates this workflow.
    I understand I can tweak with url.getConnection and get the page populated but I am clueless about populating the page automatically with the data. Is there any way to do it?
    Thanks
    Raja

    Hi
    Thanks for your immediate knowledge sharing, ya right JSP can be accessed as it resides in the server also I understand the HTML coding is more than enough for me to understand the values I need to pass to given the input type of fields with the FORM tag.
    Having understood thus far, you people mention getting the HTML code but how do I get that programatically, it is that I can load the JSP/page using URL.getConnection and open the page in the browser, one way is doing VIEW SOURCE manually and getting the code, can you educate me on how to do it programatically to view source of the displaying page on a browser?
    Thanks
    Raja

  • Using Sansung S3, not yet possible to share all the open tabs (using NFC) with another NFC phone. But only the one main tab I am currently browsing is possible.

    Using Sansung S3, Android 4.1.2, Firefox 24.0; not yet possible to share all the open tabs (using NFC) with another NFC phone. But only the one main tab I am currently browsing is possible to share. Is this the feature of current NFC feature of Firefox?
    If so, when will there be feature to share all the tabs?
    Thanks.

    I'm not sure if we will implement this. Sharing all the tabs you have open have many more security and privacy issues. Someone forgets that they had a tab open they did not want to share or miss-clicks on the share all option.
    We are looking into better ways to share tabs with devices that are nearby. Especially if they are on the same WiFi network.

  • I have a VI A. I want A to call another VI B and execute. After B executes, I want it to close automatically and go back to A. Is this possible ? I tried using open reference and those methods, but I am not able to do it. Can someone help me ? Thanks !

    Thanks !
    Kudos always welcome for helpful posts

    Re: I have a VI A. I want A to call another VI B and execute. After B executes, I want it to close automatically and go back to A. Is this possible ? I tried using open reference and those methods, but I am not able to do it. Can someone help me ? Thanks !Hi Stephan ! Thanks ! I guess I explained my question not so right. I've created a customized menu and at the instance of me selecting a menu, a VI should load itself dynamically. I am using call by reference. Sometimes it works and sometimes it won't. In short, what I want to achieve is load VIs dynamically and close them dynamically once they finish executing. Thanks !
    Kudos always welcome for helpful posts

  • Open Internet Explorer URL using MII Transaction

    Hello All,
    I wanted to know if there is a way to open internet explorer URL using MII transaction. I know how to do it using irpt but was wondering if there is a way of doing it using MII transaction action blocks. I was planning to provide access to provide path for iexplorer.exe and then open url like "http://www.google.com" on it.
    I appreciate your help with it.
    Thanks,
    Kiran

    Hi Kiran,
    You want to load a page into a transaction? for this you can use the action block called HTML_Loader and link www.google.com with HTML_Loader_0.SourceUrl.
    Danilo Santos

Maybe you are looking for

  • TV Shows disappeared on multiple Apple Tv's

    I have 2 Apple Tv's in different parts of the house on a wired gigabit CAT 6 network. Everything has been fine until a couple days ago when all of my TV Shows older than a couple days disappeared off both Apple TVs. I have over 300 movies and almost

  • Help I can't get rid of the beach ball in system preferences!

    Hi, I have an iMac OS X 10.8.3.  Every time I go to system preferences to change my screen saver I immediatley get the beach ball and the enire thing freezes up.  I can't do ANYTHING within system referneces and I can only get out by 'force quit'. We

  • Infoview prompts for database logon screen when updating dynamic parameter

    I have already set up initial database ID/PW for the report in CMS, but when I I tried to update my parameter to schedule the report, it is requiring the user to enter database ID/PW again........Is there a way to set this up so that the user can byp

  • Does Photoshop Express change image quality of original file?

    I use Photoshop Express (currently version is 3.4196) on my iPhone 5s to work on 24 megapixel files from my Nikon D7100 DSLR. Does anyone know if saving the file reduces the image quality? what is the equivalent JPEG level to the Desktop Photoshop? T

  • Coldfusion-out.log

    Does anyone know how to set up the CFAdmin to archive and create a new coldfusion-out.log file after it reaches a certain size? Our log file gets very large fairly quickly, and I believe is causing the server to slow down. In order to rename and crea