How to find the URL address of portal page ?

Hello All,
How to access a page from Portal Content Directory without logging into Portals ?
Can we know the URL address for a Portal page so tht it can be called from another page via href object.
Pls, provide me with an alternate solution that works better.
Thank you for your time and valuable inputs. Looking forward to your responses.
Regards,
Anil Kumar.

Hi,
It is quite simple to find out the URL of a page, Check this for more:
/thread/426798 [original link is broken]
http://help.sap.com/saphelp_nw70/helpdata/en/43/014421d21d6fade10000000a11466f/frameset.htm
Greetings,
Praveen Gudapati

Similar Messages

  • How to get the Url(address) of Next Page in Sequence of Pages in OAF

    Dear All,
    My requirement is to get the next page Url dynamically .
    i have created 2 pages ,first page have button to navigate to the next page ,when i click on first page button ,
    i want to store the url of the next page in column of the database table.
    This is urgent requirement .
    Please suggest .
    Thanks
    Maheswara Raju

    > Is there any way to get the memory address of a
    variable (like int ,float and all) in java.
    No. Chances are excellent that there's a way to do what you want without needing the variable's address, however.
    ~

  • How to find the URL of precalculated query

    Hello,
    I would enter into a precalculated query direclty the URL; is it possible?  How to find the URL ?
    Thanks.

    Hello Arvin,
    I have created a Web Template, and through the Reporting Agent, I run the query.
    Regards,
    Laura

  • How to find the MAC address of iPod Shuffle?

    Hi,
    I need to add MAC address of iPod shuffle to the wireless router. Does anyone know how to find the MAC address of iPod shuffle? I would appreciate your help! Thanks.

    Thanks for reply. So then I am not sure why my laptop is not recognizing iPod shuffle when it is connected through USB cable. I don't see DEVICES option under iTunes..so can't sync the music.

  • TS1702 how to find the serial number, after purchase Pages online?

    how to find the serial number, after purchase Pages online?

    If you downloaded the standalone trial version of Lightroom, it will be necessary for you to uninstall that version. Then you will be able to install Lightroom through the creative cloud application manager. After you install Lightroom that way, just double-click on the catalog that you have already started.

  • I just purchased my Mac and trying to set it up with my office network.  Need to know how to find the airport address

    How do I find the Airport address on my MAC

    The first time you set up the iPad you must do it by connecting the iPad to a computer, which needs to be running the latest version of iTunes, using the provided USB cable that came with it.  It cannot be done wirelessly initially.

  • How to find the urls that are longer than 260 characters

    Hi
    I'm getting an error using Restore-SPSite thats most likely caused by URL's longer than 260 characters. How can I find out which URL's are too long? It's a huge site collection so it's not an option to search manually.
    Regards
    Jakob

    check this blog, allows you to take an inventory of all files in your web application and flag those files where the path (or URL) is longer than 260 characters.
    Locating files and pages with URLs that are too long for SharePoint
    Also check this: http://social.technet.microsoft.com/Forums/en-US/881d62e6-08c3-43b6-a9f1-96161ffa0201/how-to-write-a-powershell-script-to-find-the-url-path-length-of-all-the-files-and-folders-in?forum=sharepointdevelopmentprevious
    Please remember to mark your question as answered &Vote helpful,if this solves/helps your problem. ****************************************************************************************** Thanks -WS MCITP(SharePoint 2010, 2013) Blog: http://wscheema.com/blog

  • How to find the URL of website

    HI,
    My Web hosting company have created the instance of Web Tools in the web server but they are not sure on the URL part when creating the instance. I also do not have privileges to look into the IIS. 
    Does web tools stores the URL information any where? How do I find the URL for that website?
    Thanks in advance for any Suggestions!
    Regards,
    Mohan

    Hi Bryce,
    Thanks for the suggestion!
    I have tried the domain name with folder name ‘WebDemoUK’ created during the website instance creation. The installation path is correct as in the error message. What might be reason for this error?
    Domainname/B1webtools seems to point to old web site.
    Server Error in '/WebDemoUK' Application.
    Configuration Error
    Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately.
    Parser Error Message: The entry 'connString' has already been added.
    Source Error:
    Line 4:      <add key="PrivateKey" value="OZMwWiKEqv3G1" />
    Line 5:    </appSettings>
    Line 6:    <connectionStrings configProtectionProvider="DataProtectionConfigurationProvider">
    Line 7:      <EncryptedData>
    Line 8:        <CipherData>
    Source File: C:\home\13597\algeosftp\www.foothealthcare.com\WebDemoUK\web.config    Line: 6
    Version Information: Microsoft .NET Framework Version:2.0.50727.832; ASP.NET Version:2.0.50727.832
    Regards,
    Mohan
    Edited by: Rui Pereira on Dec 29, 2008 6:38 PM

  • How to find the MAC address of my iPad2?

    My WiFi hot spot has MAC address filter for better security.
    But I cannot find the MAC address of my new iPad2.

    If you need to setup wifi to start the MAC address with iPad, try  the http://www.ipad-tablet-help.com/2010/03/how-to-find-ipad-mac-address.html   to find it out.  Works for iOS5.

  • How to find the URL of deployed Web services?

    Hi,guys. I have created a Web service, and deployed to WAS.But where is the accessing URL? WAS has created several WSDLs for the serviece, but I can not find the URL in the files.
    I think that the URL looks like "http://localhost:50000/XISOAPAdapter/MessageServlet?channel=:WAS2:CC_GIS_Equipment_Create_SOAPOUT&version=3.0&Sender.Service=WAS2&Interface=urn%3Azpepc%3Agis%3Aequipment%3Amaintenance%5EMI_GIS_Equipment_Create"

    my accessing code is:
    public class VacationClient {
         public static void main(String[] args) throws Exception {
              System.out.println("SOAP call start");
              VacationClient helloSOAPClient = new VacationClient();
              String resultValue = helloSOAPClient.doSOAPRequest(
                        "VacationCheckerService", "getVacationDays",
                        "employed_years", 20);
         public String doSOAPRequest(String _strURI, String _strMethodName,
                   String _strName, int _strValue) throws Exception {
              Call call = new Call();
              call.setTargetObjectURI("urn:" + _strURI);
              call.setMethodName(_strMethodName);
              call.setEncodingStyleURI(Constants.NS_URI_SOAP_ENC);
              Vector params = new Vector();
              params.addElement(new Parameter(_strName, Integer.class, new Integer(
                        _strValue), null));
              call.setParams(params);
              System.out.println("&#24320;&#22987;");
              Response resp = call
                        .invoke(
                                  new URL(
                                            "http://10.136.31.121:50000/TestWeb_Config1_SoapServlet"),
              if (resp.generatedFault()) {
                   Fault fault = resp.getFault();
                   System.out.println("failed&#65281;");
                   return "failed&#65281;";
              } else {
                   Parameter result = resp.getReturnValue();
                   System.out.println("sucessful&#65281;"+result.getValue().toString());
                   return result.getValue().toString();
    But the URL is not correct ,and an exception is throwed:
    Exception in thread "main" [SOAPException: faultCode=SOAP-ENV:Client; msg=Software caused connection abort: recv failed; targetException=java.net.SocketException: Software caused connection abort: recv failed]
         at org.apache.soap.transport.http.SOAPHTTPConnection.send(SOAPHTTPConnection.java:358)
         at org.apache.soap.rpc.Call.invoke(Call.java:248)
         at test.VacationClient.doSOAPRequest(VacationClient.java:44)
         at test.VacationClient.main(VacationClient.java:18)

  • How to find the base address of a pci device in register programming?

    Hello Everyone
     I am making a register program to pci-7344.
     At this link http://digital.ni.com/public.nsf/3efedde4322fef19862567740067f3cc/15f094f65a17e3af8625660d0018a20a?O... I find a method that finds the correct address in the register programming a pci device,but I am confused with some details.
    It says BAR0 is assigned to the miniMITE ASIC,while BAR1 is used to program the PCI device itself.So the address mapped from BAR0 is
    supposed to be the base-address of the registers on the miniMITE,but why 0x300 is added to the base-address? What 0x300 means?
    I wonder if the address mapped from the BAR1 is not the valid baseadress for the pci board and a initial offset should be added to
    it.If so what is the initial offset?
    Thank you!!

    Thank you for your reply !!
     I am developing pci-7344`s driver under venturecom`s rtx,now I have found the baseadresses[0] and baseadresses[1] . baseaddresses[0] is the base-address of the miniMITE and I can get the vendor ID, device ID by directly reading from baseaddresses[0] +offset,but  baseaddresses[1]  does not like to be the base address of the 7344 registers,because I can not get the correct status information when I read from the csr(baseaddresses[1]+0x04)(all the value read back is 1).According to your advice I add the following codes to the program.
     window_data_value = ( (0xffffff00 & (ULONG)BAR1.LowPart) | (0x00000080) );
            *((PLONG)(vMemAddr[0]+0xc0)) = window_data_value;
      vMemAddr[0] is the virtual address that is mapped from BAR0 into the user`s program ,which gives us access to physical memory locations on the system.
      After adding these codes I still can read the correct information from BAR0,but I still can not read back the correct value from BAR1(all the value read back is 0).
     It says in ddk that the csr(a read-only register) is located at cardlogicaddress+4(8byte offset),so I wonder what  the cardlogicaddress is . What is relationship between baseaddresses[1] and cardlogicaddress?
    Thank you!!!!!

  • How to find the email address by display name

    as title,
    i can get the display name from the to, cc, bc edit box,
    then i need to get the email address,
    current i use object API to query: GWAccount->GWAddressBook->GWAddressBookEntrie->get_EmailAddress,get_DisplayName
    but i find it is really slow when there are many contacts, example 10000.
    so is there any other effective method to get the email address?

    First off, you are not really doing:
    GWAccount->GWAddressBook->GWAddressBookEntrie->
    get_EmailAddress,get_DisplayName()
    are you?
    If you enter the full line, it will read in all
    of the entries each time it is called.
    You should break each part into an object:
    gwAccount
    gwBook
    gwEntries
    I'm not sure what you are doing.
    Are you trying to compose an email?
    If so, why are you not using Recipients.Resolve()?
    Are you trying to get the recipients from an email?
    Preston
    >>> On Friday, April 16, 2010 at 1:26 AM,
    hillp<[email protected]>
    wrote:
    > as title,
    > i can get the display name from the to, cc, bc edit box,
    > then i need to get the email address,
    > current i use object API to query:
    >
    GWAccount‑>GWAddressBook‑>GWAddressBookEntrie >get_EmailAddress,get_Di
    splayName
    > but i find it is really slow when there are many contacts, example
    > 10000.
    >
    > so is there any other effective method to get the email address?

  • How to find the email address for my deskjet 2540 printer?

    I have just bought a deskjet 2540 printer and I cannot find the email adress for it so I can print from my blackberry.Also I can not find the claim code for it as well. Any suggestion on how to do this would be helpful.

    dompiemonte wrote:
    C159 wrote:
    I have just bought a deskjet 2540 printer and I cannot find the email adress for it so I can print from my blackberry.Also I can not find the claim code for it as well. Any suggestion on how to do this would be helpful.Just help me to make my printer work. I just need the printer email ad.As I explained above, the printer is not an ePrint-capable model.  The specifications for the printer can be found here.  They clearly state the printer is not able to print via ePrint. This is why you cannot find the claim code.  It does have "Wireless Direct" built into it - this can enable you to print wirelessly.  How to set up the DJ 2540 for wireless connections. WyreNut

  • How to find the mac address

    I am trying to connect my iPad to my Netgear router and activate the user list. Amazingly the router status does not show the iPad although it is connected. I used the mac address which I found under settings --> general --> info. I used the WLAN address to add it to the routers user list. Unfortunately it did not work. Any idea which other address I could use and where to find it on the iPad. Thanks for the help.

    Does it show under Options | Status as a WLAN Mac Address?
    If someone has been helpful please consider giving them kudos by clicking the star to the left of their post.
    Remember to resolve your thread by clicking Accepted Solution.

  • How to find the backend system in portals

    Hi Gurus,
    How to determine the number of backend systems referred in portals.
    Higher points will be rewarded for useful inputs.
    Thanks in Advance,
    Dharani

    Hi Dharani,
    if u have the system Administration role,
    u navigate thro System administration -> System configuration -> System landscape Overview.
    this iview will list all the system created for connection.
    If u want further clarification , feel free to raise q in forum

Maybe you are looking for

  • ITunes 12 incompatible with Windows Vista Data Execution Prevention FIX

    I have been getting a "Vista Data Execution Prevention" error message whenever I closed iTunes for months now, and after reading through a few forums, I have found a solution that works.  It only takes two minutes.  Long story short: 1) Start iTunes

  • TS1398 Since I upgraded to iOS 7.0.2 my phone will not auto-connect to the home WiFi network.

    I upgraded my iPhone 4S to iOS 7.0.2 and now my phone will not auto-connect to the home wifi network.  Each time I leave and return to within range of the network I have to remember to manually connect, otherwise it continues to use 4G for data.  The

  • Error when running a report writer

    Hi, I am getting an error ("Internal error: More than 999 GREP blocks were requested") when running a report writer. The error diagnosis is: Internal error: More than 999 GREP blocks were requested                                                     

  • Need pl/sql stmnts. for this simple logic

    Hi, I need PL/SQL program for this simple logic i am doing mistake somewhere unbale to trace out .. select * from GSR03_PO_DTL; PO_NUM L53177000 -- > no changes reqd (only one entry with new format) L00041677 --> to be updated to L41677000(only one e

  • Moving music folders without loosing covers and information

    I am using iTunes mainly to manage music on my iPhone and to edit album covers/song information of my MP3s. However, I am managing my music and music folders manually in a folder system that is not part of "iTunes Preferences -> Advanced -> iTunes Mu