<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>Question Re: How to write a URL path to an iView in Technology Q&amp;A</title>
    <link>https://community.sap.com/t5/technology-q-a/how-to-write-a-url-path-to-an-iview/qaa-p/1108255#M451539</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Peter,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I will try to implement this code and check the results.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 21 Nov 2005 17:34:27 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-11-21T17:34:27Z</dc:date>
    <item>
      <title>How to write a URL path to an iView</title>
      <link>https://community.sap.com/t5/technology-q-a/how-to-write-a-url-path-to-an-iview/qaq-p/1108252</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to check this possibility. I have an third party application and this application will have to call our SAP EP Portal SP14. Looks easy? Maybe not...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The third-party application will have a button which you can click. Once that button is clicked, the Portal's logon page should be called. After the user enters its userID and Password, he should go straight to an iView that is not the default one for those users which access the Portal directly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Lets consider the following:&lt;/P&gt;&lt;P&gt;- Portal server URL -&amp;gt; &lt;A href="http://&amp;lt;server&amp;gt;:50000/irj/portal" target="test_blank"&gt;http://&amp;lt;server&amp;gt;:50000/irj/portal&lt;/A&gt;&lt;/P&gt;&lt;P&gt;- iView ID that should be accessed: com.mycompany.myiview&lt;/P&gt;&lt;P&gt;- Folder ID containing the iView: com.mycompany.myfolder&lt;/P&gt;&lt;P&gt;- The parent folder for this sctructure is pcd:portal_content&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The question is: what is the logic to build the URL used by the button within the third-party application (this button should call Portal's logon page and after the authentication, the correct iView (com.mycompany.myiview) be displayed)?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Fernando Urzedo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Nov 2005 16:09:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-to-write-a-url-path-to-an-iview/qaq-p/1108252</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-21T16:09:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to write a URL path to an iView</title>
      <link>https://community.sap.com/t5/technology-q-a/how-to-write-a-url-path-to-an-iview/qaa-p/1108253#M451537</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can build url of an iview something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IPortalComponentRequest request =(IPortalComponentRequest) this.getRequest();&lt;/P&gt;&lt;P&gt;IPortalComponentURI componentURI = request.createPortalComponentURI();&lt;/P&gt;&lt;P&gt;//set the context name of your java component&lt;/P&gt;&lt;P&gt;componentURI.setContextName("pcd path of the iview");&lt;/P&gt;&lt;P&gt;String url = componentURI.toString();&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When u build this url n call it from a click of a button, it goes to authentication page of Portal.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know, if it worked or helped!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;P.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Nov 2005 16:31:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-to-write-a-url-path-to-an-iview/qaa-p/1108253#M451537</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-21T16:31:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to write a URL path to an iView</title>
      <link>https://community.sap.com/t5/technology-q-a/how-to-write-a-url-path-to-an-iview/qaa-p/1108254#M451538</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Fernando,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you have content administrative access to portal log in as the content administrator. Then go to Content Administration -&amp;gt; Portal Content. Then select the folder where your iview is present. Right click the iview and say Preview. A new window opens with just the iview and the url in the window should be the url for the button in your third party application. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are not already logged in and you try to execute the url then it will ask for a username and password.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try the following URL if you don't have content administrator privileges.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://&amp;lt;server&amp;gt;:50000/irj/servlet/prt/portal/prtroot/pcd!3aportal_content!2fcom.mycompany.myfolder!2fcom.mycompany.myiview" target="test_blank"&gt;http://&amp;lt;server&amp;gt;:50000/irj/servlet/prt/portal/prtroot/pcd!3aportal_content!2fcom.mycompany.myfolder!2fcom.mycompany.myiview&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Sowmini&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note: If you find my answer helpful try awarding points.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Nov 2005 16:32:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-to-write-a-url-path-to-an-iview/qaa-p/1108254#M451538</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-21T16:32:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to write a URL path to an iView</title>
      <link>https://community.sap.com/t5/technology-q-a/how-to-write-a-url-path-to-an-iview/qaa-p/1108255#M451539</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Peter,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I will try to implement this code and check the results.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Nov 2005 17:34:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-to-write-a-url-path-to-an-iview/qaa-p/1108255#M451539</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-21T17:34:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to write a URL path to an iView</title>
      <link>https://community.sap.com/t5/technology-q-a/how-to-write-a-url-path-to-an-iview/qaa-p/1108256#M451540</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sowmini,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unfortunatelly your siggestion did not work as expected. I got an Access Denied error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any other suggestion?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Fernando Urzedo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Nov 2005 17:42:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-to-write-a-url-path-to-an-iview/qaa-p/1108256#M451540</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-21T17:42:10Z</dc:date>
    </item>
    <item>
      <title>Re: How to write a URL path to an iView</title>
      <link>https://community.sap.com/t5/technology-q-a/how-to-write-a-url-path-to-an-iview/qaa-p/1108257#M451541</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Fernando,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;as far as I understand, you are &lt;STRONG&gt;not&lt;/STRONG&gt; looking for a development solution (how to create the String by Java) but for a general rule how to build the string?!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you really want to call an iView outside a Role definition?!?! Don't you want to call this iView which has been set under a ceratin role? In this case, creating the URL is quite easy: Go to the desired iView/page from within the portal, using navigation, then use "Add to browser favorites" from the tray; you can check then the browsers favorite link directly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or use this official URL build rule: Anyhow, the official solution is as follows: &lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/2d/91e33edd37de63e10000000a11405a/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/2d/91e33edd37de63e10000000a11405a/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps&lt;/P&gt;&lt;P&gt;Detlev&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Nov 2005 18:10:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-to-write-a-url-path-to-an-iview/qaa-p/1108257#M451541</guid>
      <dc:creator>detlev_beutner</dc:creator>
      <dc:date>2005-11-21T18:10:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to write a URL path to an iView</title>
      <link>https://community.sap.com/t5/technology-q-a/how-to-write-a-url-path-to-an-iview/qaa-p/1108258#M451542</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Detlev,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the info!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Fernando Urzedo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Nov 2005 22:51:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-to-write-a-url-path-to-an-iview/qaa-p/1108258#M451542</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-21T22:51:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to write a URL path to an iView</title>
      <link>https://community.sap.com/t5/technology-q-a/how-to-write-a-url-path-to-an-iview/qaa-p/1108259#M451543</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a way to link directly to an iview without displaying the masthead, navigation levels, etc? I'd like to have a URL that goes directly to the iview and displays it as if you were to click Preview when you have an iview open in Content Administration.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Matt&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Feb 2006 21:57:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-to-write-a-url-path-to-an-iview/qaa-p/1108259#M451543</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-13T21:57:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to write a URL path to an iView</title>
      <link>https://community.sap.com/t5/technology-q-a/how-to-write-a-url-path-to-an-iview/qaa-p/1108260#M451544</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Matthew,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;yes, of course, &lt;A href="http://your.server.com/irj/servlet/prt/portal/prtroot/your.app.name.yourcomponent" target="test_blank"&gt;http://your.server.com/irj/servlet/prt/portal/prtroot/your.app.name.yourcomponent&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps&lt;/P&gt;&lt;P&gt;Detlev&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Feb 2006 00:49:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-to-write-a-url-path-to-an-iview/qaa-p/1108260#M451544</guid>
      <dc:creator>detlev_beutner</dc:creator>
      <dc:date>2006-02-14T00:49:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to write a URL path to an iView</title>
      <link>https://community.sap.com/t5/technology-q-a/how-to-write-a-url-path-to-an-iview/qaa-p/1108261#M451545</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Fernando,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The URL to a portal application is described at &lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/2f/60b942dc2eb611e10000000a155106/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/2f/60b942dc2eb611e10000000a155106/frameset.htm&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The URL for a navigation node is described at &lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/43/014421d21d6fade10000000a11466f/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/43/014421d21d6fade10000000a11466f/frameset.htm&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Both are in the portal develoepr gudie at &lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/19/4554426dd13555e10000000a1550b0/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/19/4554426dd13555e10000000a1550b0/frameset.htm&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Daniel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Feb 2006 13:59:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-to-write-a-url-path-to-an-iview/qaa-p/1108261#M451545</guid>
      <dc:creator>Dan_Wroblewski</dc:creator>
      <dc:date>2006-02-14T13:59:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to write a URL path to an iView</title>
      <link>https://community.sap.com/t5/technology-q-a/how-to-write-a-url-path-to-an-iview/qaa-p/1108262#M451546</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Detlev,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to give the URL for displaying the iview only? you have mentioned the URL but its for an application.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but i want to get the iview or page to be displayed without TLN,masthead,toolarea,etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Purushothaman.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Feb 2006 08:05:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-to-write-a-url-path-to-an-iview/qaa-p/1108262#M451546</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-15T08:05:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to write a URL path to an iView</title>
      <link>https://community.sap.com/t5/technology-q-a/how-to-write-a-url-path-to-an-iview/qaa-p/1108263#M451547</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Purushothaman,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can combine the two: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;http://your.server.com/irj/servlet/prt/portal/prtroot/&amp;lt;PCDaddress of your iView&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PCD address is like: pcd!3aportal_content!2fDanielContent!2fDanRole!2fdanWS!2fhello&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Daniel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Feb 2006 08:35:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-to-write-a-url-path-to-an-iview/qaa-p/1108263#M451547</guid>
      <dc:creator>Dan_Wroblewski</dc:creator>
      <dc:date>2006-02-15T08:35:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to write a URL path to an iView</title>
      <link>https://community.sap.com/t5/technology-q-a/how-to-write-a-url-path-to-an-iview/qaa-p/1108264#M451548</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Daniel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot for your reply. &lt;/P&gt;&lt;P&gt;Yeah, I tried that but it gives me a exception &amp;lt;b&amp;gt;Access denied.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;Kindly Help me in this regard.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Purushothaman.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Feb 2006 08:49:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-to-write-a-url-path-to-an-iview/qaa-p/1108264#M451548</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-15T08:49:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to write a URL path to an iView</title>
      <link>https://community.sap.com/t5/technology-q-a/how-to-write-a-url-path-to-an-iview/qaa-p/1108265#M451549</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the iView is not anonymous authentication, then you would have to sign in.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You should get the log in screen, though.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can switch to anonymous authentication. For more information on why you get access denied, maybe described the exact steps you followed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Daniel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Feb 2006 10:21:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-to-write-a-url-path-to-an-iview/qaa-p/1108265#M451549</guid>
      <dc:creator>Dan_Wroblewski</dc:creator>
      <dc:date>2006-02-15T10:21:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to write a URL path to an iView</title>
      <link>https://community.sap.com/t5/technology-q-a/how-to-write-a-url-path-to-an-iview/qaa-p/1108266#M451550</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Daniel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But when I give my URL as &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://serverA:80/irj/portal??NavigationTarget=ROLES://portal_content/crm-practice/14-Feb/Test_Page" target="test_blank"&gt;http://serverA:80/irj/portal??NavigationTarget=ROLES://portal_content/crm-practice/14-Feb/Test_Page&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am able to access the iview but the thing is I am getting TLN,Toolarea,Masthead,etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I will tell my requirement,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ServerA (EP 7.0) has some iviews,pages...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to access these iviews from serverB(EP 6.0)....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In ServerB only the iviews has to be displayed in the content area but not TLN,Toolarea,etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly help me in this regard.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and regards,&lt;/P&gt;&lt;P&gt;Purushothaman.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Purushothaman Vyasarao&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Feb 2006 10:36:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-to-write-a-url-path-to-an-iview/qaa-p/1108266#M451550</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-15T10:36:10Z</dc:date>
    </item>
    <item>
      <title>Re: How to write a URL path to an iView</title>
      <link>https://community.sap.com/t5/technology-q-a/how-to-write-a-url-path-to-an-iview/qaa-p/1108267#M451551</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Purushothaman,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Don't call the iView via the navigation target, call it via the PRT but with the PCD address of the iView, like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://serverA:80/irj/servlet/prt/portal/prtroot/pcd!3aportal_content!2fcrm-practice!2f14-Feb!2fTest_Page" target="test_blank"&gt;http://serverA:80/irj/servlet/prt/portal/prtroot/pcd!3aportal_content!2fcrm-practice!2f14-Feb!2fTest_Page&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This brings the iView/page with personalization but without the framework page.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Daniel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Feb 2006 12:49:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-to-write-a-url-path-to-an-iview/qaa-p/1108267#M451551</guid>
      <dc:creator>Dan_Wroblewski</dc:creator>
      <dc:date>2006-02-15T12:49:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to write a URL path to an iView</title>
      <link>https://community.sap.com/t5/technology-q-a/how-to-write-a-url-path-to-an-iview/qaa-p/1108268#M451552</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Daniel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot for your reply. Ok I tried as you said but its give an exception as &lt;/P&gt;&lt;P&gt;Access Denied (Object pcd:/...test_page).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there anything that I have to change, to display the Iview or page??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly help me in this regard.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Purushothaman.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Purushothaman Vyasarao&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Feb 2006 12:58:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-to-write-a-url-path-to-an-iview/qaa-p/1108268#M451552</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-15T12:58:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to write a URL path to an iView</title>
      <link>https://community.sap.com/t5/technology-q-a/how-to-write-a-url-path-to-an-iview/qaa-p/1108269#M451553</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Purushothaman,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This, naturally, sounds like a permission issue. Two steps:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;You must give the Everyone group end-user permission to the iView. This will eliminate the error and cause a login screen to display.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;If you want to eliminate the login screen, you must set the iView property Authentication Scheme to anonymous.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Daniel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Feb 2006 15:01:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-to-write-a-url-path-to-an-iview/qaa-p/1108269#M451553</guid>
      <dc:creator>Dan_Wroblewski</dc:creator>
      <dc:date>2006-02-15T15:01:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to write a URL path to an iView</title>
      <link>https://community.sap.com/t5/technology-q-a/how-to-write-a-url-path-to-an-iview/qaa-p/1108270#M451554</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Purushothaman,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Were you able to get it working?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Daniel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Feb 2006 16:59:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-to-write-a-url-path-to-an-iview/qaa-p/1108270#M451554</guid>
      <dc:creator>Dan_Wroblewski</dc:creator>
      <dc:date>2006-02-20T16:59:47Z</dc:date>
    </item>
  </channel>
</rss>

