WDURLGenerator + link to URL via Button

hi,
i was searching this forum about the possibilities of the  WDURLGenerator.
I need to link to a webpage via Button-Click.
I set up an Button and corresponding action. In this action I simply want to call an URL (nice would also be a new window.
Now I set up:
WDURLGenerator.getWebResourceURL("http://www.<url>.de")
do i have to also set up something like: wdThis.wdFirePlugUrl(url) ???
thanx for help,
matthias

Matthias,
No offence, here but:
On the main WD forum screen just type your question in search box:
open AND window AND url
All the rest left as default.
The very first hit!
VS

Similar Messages

  • Link box do not have url parameters button

    I start learn Dreamweaver with this lessons How to Build a Content Management System Using Dreamweaver - YouTube, but have a problem.
    I do not have in the link box the parameters button for URL. Is it some extension?

    If you are using Dreamweaver CC or CC2014 they dropped the default support for server behaviours/database connection that's probably why you have no 'parameter' button because it uses the built in behaviours.
    It's now only available via an extension - see the thread below and read post number 1:
    OT: Bindings panel, Databases, and Server behaviors in Dreamweaver CC
    The real question is how is it that you have gotten that far in the tutorial if you have no server behaviours? Maybe you have installed the server behaviour extention for DW CC or CC2014 but the 'parameter' button was not restored.
    You can always hand code that part of the tutorial by adding the code to the end of the file - Update.php?ID=<?php echo $row_Results['ID']; ?>

  • How to add an outside url link to a navagation button in Dreamweaver Cs5.5

    How or can I add an outside url link to a navagation button in Dreamweaver Cs5.5. If I try the properties/link it says that the link is an html and not a css.....
    Thank you

    Linking is done in HTML, not CSS (with the exception of a link to a background picture)
    So, if your navigation is a list, you'd have the following in your HTML:
    <nav>
         <ul>
              <li><a href="index.html">Home</a></li>
              <li><a href="about.html">About</a></li>
              <li><a href="books.html">Books</a></li>
              <li><a href="http://www.myexternalwebsitelink.com/inboundfromotherwebsite.html">External Link</a></li>
              <li><a href="contact.php">Contact</a></li>
            </ul>
    </nav>
    Here, in the example above, I'm using the HTML5 <nav>, but that could be an HTML4 <div class="nav"> and you will see a link to an internal page on the same website server for Home, About, Books and Contact with "External Link" pointing to another website external to the one we're on.
    Make sense?

  • Link to URL -- How to use it?

    Hi Experts,
    I have created LinktoURL UI element in my WD program1. I have to call WD program2 from WD program1 using this LinktoURL UI element. I had earlier written code like as below. The code was working fine. Now my problem is that code is not working any more. Can you please provide me some guidelines. What is the generaic method to call one WD program using other WD program using LinktoURL. I had created context called URL and wrote the code in wdDoModify. Problem is earlier code was working fine. Its not working now !!!
    Thanks
    Gary
    public static void wdDoModifyView(IPrivateAutoSettlementAppView wdThis, IPrivateAutoSettlementAppView.IContextNode wdContext, com.sap.tc.webdynpro.progmodel.api.IWDView view, boolean firstTime)
    if(!"".equals(wdContext.currentContextElement().getTripNumber())&&null!=wdContext.currentContextElement().getTripNumber())
          wdContext.currentContextElement().
          setUrl("https://ruepd.mycompany.com:50001/irj/portal?" +
                      "NavigationTarget=ROLES%3A%2F%2Fportal_content%2Fcom.sap.pct%2Fevery_user%2Fcom.sap.pct.erp.ess.bp_folder%2Fcom.sap.pct.erp.ess.roles%2Fcom.sap.pct.erp.ess.employee_self_service%2Fcom.sap.pct.erp.ess.employee_self_service%2Fcom.sap.pct.erp.ess.area_travel_expenses%2Fcom.mycompany.portal.page.create_expense_report&DynamicParameter=trip_number%3D"+
                   wdContext.currentContextElement().getTripNumber() +
                   "%26mode%3Dcreate&TarTitle=Create%20Expense%20Report");
          else
               wdContext.currentContextElement().setTripNumber(wdContext.currentSettlement_DetailsElement().getReinr());
               wdContext.currentContextElement().
                    setUrl("https://ruepd.mycompany.com:50001/irj/portal?" +
                             "NavigationTarget=ROLES%3A%2F%2Fportal_content%2Fcom.sap.pct%2Fevery_user%2Fcom.sap.pct.erp.ess.bp_folder%2Fcom.sap.pct.erp.ess.roles%2Fcom.sap.pct.erp.ess.employee_self_service%2Fcom.sap.pct.erp.ess.employee_self_service%2Fcom.sap.pct.erp.ess.area_travel_expenses%2Fcom.mycompany.portal.page.create_expense_report&DynamicParameter=trip_number%3D"+
                             wdContext.currentContextElement().getTripNumber() +
                             "%26mode%3Dcreate&TarTitle=Create%20Expense%20Report");  

    Gary 
    I have the same scenario and this code works very well:
    change "BBAprovacoesPendentes" for your target application name.
      public void onActionAprovacoesPendentes(com.sap.tc.webdynpro.progmodel.api.IWDCustomEvent wdEvent )
        //@@begin onActionAprovacoesPendentes(ServerEvent)
           //Get component's message manager
           IWDMessageManager messageMgr = wdComponentAPI.getMessageManager();
           // Get name of deployable object this component belongs to
           String deployableObjectName = wdComponentAPI.getDeployableObjectPart().getDeployableObjectName();
           Map urlParameters = new HashMap();
           // get URL parameter value entered by user, stored in context attribute
           // u2018UrlParamValueu2019. Put parameter u2018hugou2019 in the sneak preview version.
           try {
           // Get deployable object part of target application.
           // Precondition: assume, that other application belongs to the same
           // Web Dynpro Project (Deployable Object)
           WDDeployableObjectPart deployableObjectPart =
           WDDeployableObject.getDeployableObjectPart(
           deployableObjectName,
           "BBAprovacoesPendentes",
           WDDeployableObjectPartType.APPLICATION);
           // Get target URL based on deployable object part and URL parameters 8
           String urlToTargetApp = WDURLGenerator.getApplicationURL(deployableObjectPart, urlParameters);
           // Fire exit plug to target URL via IPublic-API of used interface view
           // controller
           wdThis.wdGetRequisicaoCompraWindowController().wdFirePlugExitPlug( urlToTargetApp );
           } catch (WDURLException e) {
                messageMgr.reportException(e.getLocalizedMessage());
           } catch (WDDeploymentException ex) {
                messageMgr.reportException(ex.getLocalizedMessage());
        //@@end

  • Link to Url properties problem

    Hello all,
    i am working on link to url UI element.
    the url that i have is larger than that i can put in reference property of link to url UI Element.
    How may i put whole of the url in reference properties of  link to url UI Element without length problem.
    Thanks & Regards.
    Vikash

    workaround:
    create an action and open the link via WINDOW API or with an exit plug
    http://help.sap.com/saphelp_nw04s/helpdata/en/45/1bc575ba064574e10000000a114a6b/content.htm
    regards
    stefan

  • Links to URLs don't work in published file - Captivate 4

    In Captivate 4, my links to URLs do not work in my published file.  I am rolling this out via email to a small number of people.

    Hi there
    Likely you will need to ask each user to configure their list of Trusted Locations for the Flash Player to allow your Captivate to operate the URLs.
    Here is a small tutorial on configuring the trusted locations:
    Click here to view
    Cheers... Rick

  • Can't open web links in emails via Safari 6.1.6

    Hello...
    I'm working on a Macpro computer with OSX 10.7.5.
    In Safari 6.1.6 I can't open ANY links that are in emails.  Links to other web sites, links to file via you send it, nothing.  I've disabled the block "pop ups" tab in preferences and still nothing.  I don't want to upgrade to the new OSX, as everything else on my computer is running fine.
    Can someone tell me what to do to get this working again….

    I encountered the same problem.  In my case, the culprit was a plug-in in the Internet Plug-Ins sub-folder of my User Account's Library folder.
    Here's how I proceeded, based on a suggestion by Carolyn Samit here:
    <https://discussions.apple.com/thread/5117605?start=0&tstart=0>
    1. Open the Finder.
    2. In the Finder menu bar, click on the heading Go.  Scroll down to "Go to Folder," and then click the mouse button again.
    3. Copy the following phrase:
    /Library/Internet Plug-Ins
    and then paste that phrase into the field in the navigation window that appeared at the end of Step 2.
    3. Click Go.
    4.  If you find a plug-in named AdobePDFViewer.plugin, drag it to the Trash.
    5. Quit and then relaunch Safari.  Then try to load in Safari a PDF from a web site.  Then try saving it.  Once saved/downloaded, try opening the PDF.
    When I followed this procedure, the corrupted-PDF problem went away, thanks to Ms. Samit's suggestion.

  • Open website url with buttons in flash

    i have a header built in a big flash file that i am using at
    the top of a website. i would like the buttons i put on the flash
    document to be able to open different pages of the document, if
    there is any codes in its simplest form to link a button to an
    outside link or url, out there please help me out. i am new to cs3
    and not really familiar with it but need to finish this
    asap.

    See:
    http://livedocs.adobe.com/flex/2/langref/flash/net/package.html#navigateToURL()

  • URGENT: pass parameters from report to report without usting a link or URL

    HI.
    I want to send an ID field from a report to a report (like master-detail) and that should be done by pressing the next or previous button. So, not with a LINK or URL link.
    Is that possible? I used the wwsto_api_session package in several ways, but no luck so far.
    Thanks,
    Paul.

    If your requirement is to provide buttons that take the users to another report, you have to do the following:
    In your source report (report A), create a form containing a button. Use hidden fields for the parameters you have to pass to the target report (report B).
    You'd need to base your report A on a SELECT statement. One of the columns in the SELECT statement can be a string where you actually construct the entire HTML form, something like:
    SELECT ...., '<form action=... method=post> ... ' FROM ...Hope this helps.

  • Issue linking external URL's in task list

    When I link a URL to a task list, a pop-up at the bottom of the screen saying "Only secure content is displayed" with a button saying "Show all content"
    When I select "Show all content" an Internet Explorer pop-up appears asking to either "Leave this page" or "Stay on this page."
    Selecting "Stay on this page" does nothing, but selecting "Leave this page" logs me out of Planning. When I log back in, the web page appears when I click on the task list.
    When I log off and close my browser, I have to go through the same steps.
    Is there any way to have the URL task list work without having to go through those steps? Is this an IE security setting?
    Thank you in advance for any input.
    Tiffany

    What URL are you using, is that an FR or WA report? If so check this Oracle - Hyperion Labs......: Generate Smartcuts for all objects under a folder
    Regards
    Celvin

  • Setting different reporting services url via IReportServerConnection

    y report. I have problem using more than one reporting services urls via IReportServerConnection.
    Specifically, I need to display report from different report services url on different page via IReportServerConnection. Each page uses report viewer web forms control. The problem is that how to assign different report services url for different page.
    Below is the settings related to IReportServerConnection:
    <appSettings>
    <add key="ReportViewerServerConnection" value="ReportServer.ReportServerConnection" />
    </appSettings>
    public class ReportServerConnection : IReportServerConnection {
    public Uri ReportServerUrl { get; set;}
    Below shows report viewer control that is used on different page that needs different reporting services urls:
    <rsweb:ReportViewer ID="reportViewer" runat="server"
    ProcessingMode="Remote">
    <ServerReport />
    </rsweb:ReportViewer>
    Thanks in advance.        

    See the following links:
    http://msdn.microsoft.com/en-us/beginner/microsoft.reporting.webforms.ireportserverconnection.reportserverurl.aspx
    http://msdn.microsoft.com/en-us/library/ms251671.aspx

  • When curser is on hyper link the url will diplay on the bottom of the screen in the background.(where done is located when site is loaded) How do you control this function?

    When curser is on hyper link the URL will display on the bottom of the screen in the background.(where done is located when site is loaded) How do you control this function?

    Do you want to control that via code on a web page to prevent visitors from seeing the link or do you ask as a Firefox user?<br />
    Tools > Options > Content : JavaScript > Advanced > Allow Scripts to:
    [ ] "Hide the status bar"
    [ ] "Change the status bar text"
    The Status Bar will be gone in Firefox 4.0 and is replaced by the (View > Toolbars) Add-on bar that extensions can use.

  • Why my url is completely linked to url of other person - how to solve it

    my url: http://slideshare.net/cheongmankeong and http://my.linkedin.com/in/cheongmankeong are COMPLETELY linked to url of other person? why this happen and how to solve this problem?

    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    *Firefox/Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Firefox/Tools > Options > Privacy > Cookies: "Show Cookies"
    You can remove all data stored in Firefox from a specific domain via "Forget About This Site" in the right-click context menu of an history entry ("History > Show All History" or "View > Sidebar > History") or via the about:permissions page.
    Using "Forget About This Site" will remove all data stored in Firefox from that domain like bookmarks, cookies, passwords, cache, history, and exceptions, so be cautious and if you have a password or other data from that domain that you do not want to lose then make a note of those passwords and bookmarks.
    You can't recover from this 'forget' unless you have a backup of the affected files.
    It doesn't have any lasting effect, so if you revisit such a 'forgotten' website then data from that website will be saved once again.

  • Link to URL -- pdf should open in new window - Error

    Hi experts,
    I have a Web Dynpro Application with an ALV and a link to url in one column. The code is ok. It works fine. When I click on the URL a new browser window opens with the correct URL, but I get an Error --> "The requested URL could not be retrieved".
    It should be a pdf. But Acrobat Reader does not open. If I put the URL in Firefox Browser, it works perfect. Acrobat Reader opens and shows the pdf.
    The same happens when I use Windows 2000 System with Internet Explorer version 6.0.2800.1106.
    I have normally Windows XP with Internet Explorer version 6.0.2900.2180 with sp2.
    What can that be? On both computers I have the same version of Acrobat Reader with the same configuration.
    Had someone of you this problem, too? Who can help?
    Thanks a lot.
    Best regards,
    Ingmar

    I answered it myself. I had to look that for the called server no proxyserver will be used...

  • Regarding Link to URL UI Element in a table

    Hi All,
    I am using "link to url" UI Element in a table column. I have mapped the column (i mean the "reference" property of "link to url" UI to a bapi node). Now, when I am populating the table, for some rows the bapi is not returning the url links. So, the column is getting disabled and not even showing the links for the rows which are getting the url link from the bapi.
    Is there any way to set the mapping row wise, so that the rows which have data get enabled with the link and which do not have data will be disabled.
    Also, can I make the whole table readonly, except for one column.
    Please help me in this regard.
    Regards,
    Murthy.

    Hi Armin,
    Thank you very much. The problem is solved. 10 points for you.
    Another Question.......
    Can we make the table readonly, leaving just one column to select.(that is the column with link to url). Is it possible? If so, please tell me how....
    Also, can you tell me the reason for the following exception.....
    <b>com.sap.tc.webdynpro.progmodel.context.ContextConfigurationException: DataNodeInfo(CreateTemplateComp.Zad_Bapi_Get_Template_Details_Input.Output.T_Template_Details): structure field Ad_Height not found
        at com.sap.tc.webdynpro.progmodel.context.DataAttributeInfo.init(DataAttributeInfo.java:299)
        at com.sap.tc.webdynpro.progmodel.context.NodeInfo.initUnmappedAttributes(NodeInfo.java:687)
        at com.sap.tc.webdynpro.progmodel.context.DataNodeInfo.doInit(DataNodeInfo.java:238)
        at com.sap.tc.webdynpro.progmodel.context.NodeInfo.init(NodeInfo.java:671)
        at com.sap.tc.webdynpro.progmodel.context.NodeInfo.init(NodeInfo.java:674)
        ... 49 more</b>

Maybe you are looking for

  • How to get the read input file name in bpel process using File Adapter.

    Hi, I am reading a .txt file from configured directory using File Adapter. I had configured file adapter to read file with naming pattern "SalesOrder.*\.txt". Now I had requirement to access the actual file name in bpel process eg: "SalesOrder123.txt

  • Using native2ascii

    Hi, we are using Oracle 8 db.Our application uses XML and while inserting data , somehow illegal XML characters are being inserted in the records. And when the records are reterieved, the XML is throwing exception as Illegal XML characters. I have re

  • API Files for Visual Basic Program?

     

  • Country list in Connect Admin tool (dropdown)

    Dear all, It's me or the Nigeria is missed in the country list ? (In the dropdown when you create a Connect account) Please add it (and the country code for phone +234 ) Muchas gracias

  • Customer CUKY / UNIT fields?

    Hi! I'm developing several customer tables in which I need currency as well as quantity fields. Unfortunately, I can't use the standard-tables T006 / TCURC for the units and currency keys, because the entries needed for the new application differ so