Missing "Generate URL" button

Hi folks.
We have recently upgraded our SolMan installation (3.20) to Support Package Level 16 in hopes of getting the "Generate URL" button under document attributes.
The strange thing is that the button doesn't show.
Do we have to do some configuration in SolMan for the button to be shown?
Thanks in advance.
Best regards
Søren Bessermann

Hi Søren,
I know this feature only from release SolMan 4.0. There you had to activate three services in SICF:
/default_host/sap/bc/solman/SolManDocuments
/default_host/sap/bc/solman/defaultUser (and all activities below)
/default_host/sap/bc/contentserver
Then I could at least see the button. To access the documents you have to assign two profile parameters in addition:
login/accept_sso2_ticket = 1 (from default 0)
login/create_sso2_ticket = 2 (from default 0)
Did you try this?
Regards, Alexander

Similar Messages

  • Survey - Generate URL button is grayed out

    Hi,
    I have created survey in UI but when I click on Generate URL and enter Get file/send file, I get Generate URL button grayed out.
    Please suggest. I could able to generate URL for GUI but not in UI.
    Regards,
    Nikhil

    Hi Nikhil,
    did you solved your problem ??
    best regards
    Pedro

  • Jquery + json generate html buttons with condition

    Hi all,
    My need is to generate buttons with conditions described in json. Help me please, I’m newbie.
    Here is my json code (it is valid, but does not work with html code below) :
        "Caption": "Module caption",
        "IconsDirectory": "C://Images/",
        "Buttons": [
                "Conditions": [
                        "ConditionText": "1 == 1",
                        "ButtonText": "Text1",
                        "Visible": true,
                        "Colors": {
                            "FontColor": "#FFFFFF",
                            "BGColor": "#00FF00"
                        "Size": {
                            "Width": 200,
                            "Height": 50
                        "Icon": {
                            "FileName": "Smile.png",
                            "Width": 16,
                            "Height": 16
                        "Url": {
                            "UrlAddress": "http://www.google.com",
                            "OpenNewWindow": true
                        "JavaScriptAction": {
                            "Text": "alert('ok');"
                        "ConditionText": "2 == 2",
                        "ButtonText": "Text2",
                        "Visible": true,
                        "Colors": {
                            "FontColor": "#FFFFFF",
                            "BGColor": "#00FF00"
                        "Size": {
                            "Width": 200,
                            "Height": 50
                        "Icon": {
                            "FileName": "Smile.png",
                            "Width": 16,
                            "Height": 16
                        "Url": {
                            "UrlAddress": "http://www.google.com",
                            "OpenNewWindow": true
                        "JavaScriptAction": {
                            "Text": "alert('ok');"
    html code:
    <html>
    <head>
    <title>SMButtons</title>
    [removed][removed]
    [removed]        
    //When document loaded.
    $(document).ready(function(){  
    // Get data from file as JSON
                $.getJSON('weekendtask.json', function(data) {
            var buttons = data.Buttons;
               $.each(buttons, function(key, val)
                        $('<li><input type="button" value="'+ val.ButtonText +'"/></li>').appendTo('#ulObj');
       [removed]
    </head>
    <body>
    <br>
    <br>
    <div>
    <ul id='ulObj'>
    <li>1</li>
    <li>2</li>
    <li>3</li>
    </ul>
    </div>
    </body>
    </html>
    Also I would like to show here my working code (generating html buttons from json without condition).
    json code (it works) :
        "Caption": "Module caption",
        "IconsDirectory": "C://Images/",
        "Buttons": [
                "TText": "google",
                "JavaScriptAction": "alert('google')"
                "TText": "microsoft",
                "JavaScriptAction": "alert('microsoft')"
                "TText": "yahoo",
                "JavaScriptAction": "alert('yahoo')"
    html code (it works) :
    <html>
    <head>
    <title>SMButtons</title>
    <script src="jquery/jquery-1.4.2.js"></script>
    <script type="text/javascript">                 
    //When document loaded.
    $(document).ready(function(){  
    // Get data from file as JSON
                $.getJSON('Module.json', function(data) {
                // Set json data from file to variable 'persons'
        var buttons = data.Buttons;
        var icondir = data.IconsDirectory;
        // For each item of variable person append to ul list
               $.each(buttons, function(key, val)
                        //$("<li><input type='button' onClick='"+ val.Url +"' value='"+ val.Text +"'/></li>").appendTo('#aaa');
    //$("<li><input type='button' style='"+ val.Style +"' onClick='"+ val.Url +"' value='"+ val.Text +"'/></li>").appendTo('#aaa');
    //$("<li><input type='button' value='"+ val.TText +"'/></li>").appendTo('#bbb');
                        //style="height: 25px; width: 100px"
                        //$('<li><input type="button" onClick="'+ val.action +'" value="'+ val.Text +'"/></li>').appendTo('#aaa');
                        $('<li><input type="button" onClick="'+ val.JavaScriptAction +'" value="'+ val.TText +'"/></li>').appendTo('#ulObj');
        //var knop = data.Knop;
        // For each item of variable person append to ul list
               //$.each(buttons, function(key, val)
                        //$("<li><input type='button' onClick='"+ val.Url +"' value='"+ val.Text +"'/></li>").appendTo('#aaa');
    //$("<li><input type='button' style='"+ val.Style +"' onClick='"+ val.Url +"' value='"+ val.Text +"'/></li>").appendTo('#bbb');
                        //style="height: 25px; width: 100px"
                        //$('<li><input type="button" onClick="'+ val.action +'" value="'+ val.Text +'"/></li>').appendTo('#aaa');
                        //$('<li><input type="button" onClick="'+ val.action +'" value="'+ val.Text +'"/></li>').appendTo('#aaa');
       </script>
    </head>
    <body>
    <br>
    <br>
    <div>
    <ul id='ulObj'>
    <li>1</li>
    </ul>
    </div>
    <br>
    <div>
    <ul id='aaa'>
    <!--<li>1</li>-->
    </ul>
    </div>
    <!--<button type="submit" style="height: 95px; width: 550px"> </button>-->
    <!--background: url('img/submit_button.jpg'); background-position: center; background-repeat: no-repeat;  background-color:Transparent;-->
    <div>
    <ul id='bbb'>
    <!--<li><img src="img/submit_button.jpg"/></li>-->
    <!--<li>Button caption</li>-->
    </ul>
    </div>
    </body>
    </html>

    What you are saying makes great sense. It's just the mechanics behind what you've said that I'm unclear about.
    <p>
    Are you saying to create another button within the same region with the same attributes/position, so they overlay each other? Then set the conditions on both buttons?
    <p>
    If I understand the above correctly, then how do I set the conditions? I guess I'm asking where do I place the SQL statement and how does the results relate to the button conditions?
    <p>
    Thanks for the help,
    David

  • Error in uploading BDC Models (Server name missing from URL in Property wcfmexURL)

    Hi,
    We are using multiple Dialogue Instances in DUET Enterprise.
    Problem: Before we did the Reverse Proxy Configuration for App Servers, Our BDC Models got imported in SharePoint Successfully (Correct WSS Setup and STS Urls) but After doing the Reverse Proxy Configurations, when we regenerated the BDC Models, apparently Server Name is missing from URL of the Propoerty "wcfmexurl".
    Below is the Error Text:
    [ERROR] The LobSystem (External System) / LobSystemInstance (External System Ins
    tance) Property with Name 'WcfMexDocumentUrl' has an invalid value 'https/sap/bc
    /srt/wsdl/bndg_CF37C550B825080AE1000000AC1F18FD/soap12/wsdl11/allinone/ws_policy
    /document?sap-client=400'.
        Error was encountered at or just before Line: '65' and Position: '20'.
    Failed to import model: Role
    [ERROR] The LobSystem (External System) / LobSystemInstance (External System Ins
    tance) Property with Name 'WcfMexDocumentUrl' has an invalid value 'https/sap/bc
    /srt/wsdl/bndg_CE38C550B825080AE1000000AC1F18FD/soap12/wsdl11/allinone/ws_policy
    /document?sap-client=400'.
        Error was encountered at or just before Line: '42' and Position: '20'.
    Failed to import model: UserRoles

    Hi Holger,
    Thanks a lot!
    This Error is gone after implementing the Note. Now the generated BDC Models have the correct URL for wcfmexURL property.
    now we have the Following Error:
    [ERROR] Error loading URL 'https://sapbwX.srv.XXX.com/sap/bc/srt/wsdl/bndg_92
    38C550B825080AE1000000AC1F18FD/soap12/wsdl11/allinone/ws_policy/document?sap-cli
    ent=XXX'. This normally happens when URL does not point to a valid discovery doc
    ument, service description, or XSD schema.
        Error was encountered at or just before Line: '48' and Position: '20'.
    Failed to import model: Account
    For this Error, our SharePoint Administrator is checking below Steps.
    1.    1) Open “wcfmexDocumentUrl” URL in the browser and copy all SSL certificates (including Root Certificates) to a file. Then import these certificates in the Trust Relationships section. Then try the import of the BDC Models
    2.   
    2) 2) Verifying Your server uses a virtual hostname and all the configuration (e.g. SSL certificate) is done for this virtual hostname. Also the URLs that are created and used in the BDC model are Same virtual hostnames, but not the ones from the physical server.
    3.  3)Re-verify SAML Authentication type and transport security at SAP.
    4) 4) Browse WSDL at SharePoint Server and verify “WSP:Policy”  and in WSDL make sure that it contains an entry:
    <sp:RequestSecurityTokenTemplate>
    <wst:KeyType>http://docs.oasis-open.org/ws-sx/ws-trust/200512/PublicKey</wst:KeyType>
    <wst:TokenType>http://docs.oasis-open.org/wss/oasis-wss-saml-token-profile-1.1#SAMLV1.1</wst:TokenType>
    </sp:RequestSecurityTokenTemplate>
    I will update the Results after these checks!
    Thanks,
    Saumil

  • How do I generate URL with multiple variables from input fields?

    I'm creating an ad with four input text fields labels fname, lname, city and prov, and I wanted to know how to generate URLs based on information entered into the fields. The text fields default to display "First Name," "Last Name," "City" and "State," respectively, but if a user does not enter information in those fields, I want the URL to behave as if those were empty, if that makes sense. The text fields are in a movie clip called "input_text" and the button is labeled "send". If any of you can provide insight, I would be greatly appreciative. Thank you.

    1. use if-statements to see if the text properties of your textfields meets your requirements for creating that url.
    2. you can use the flash string methods and properties to create your url.
    p.s.  the plus sign + can be used to concatenate strings.

  • Create pop up box when URL button is clicked?

    I would like to have a pop up box appear when a URL button is clicked. The URL button links to a Web Intelligence report that takes more than a minute to run. The pop up box will tell the user that the report will take more than one minute to run, and will give the user the option of running the report or cancelling the request. This functionality doesn't seem to exist, but am I missing something?

    Thomas,
    You may wish to refer the link below...
    http://xcelsiusandme.blogspot.com/2009/07/xm-sample-2-pop-up-with-url-button.html
    -Anil

  • Error - In generating URL for a Excel File in WebDynpro Project

    Hi,
    In my WebDynpro Application, i have a EXCEL file ("Test.xls") and it is kept in the below mentioned location.
    Project->src->mimes->Components-><my component>
    This is the code i have used to generate URL.
    IWDWebResource webRes = WDWebResource.getWebResource(wdComponentAPI.getDeployableObjectPart(), WDWebResourceType.XLS,     "Test.xls");
    String excelFileURL = webRes.getAbsoluteURL();          
    wdContext.currentContextElement().setExcelFileURL(excelFileURL);
    i have assigned the URL to context element which in turn is assigned to LinkToURL UI element.
    I always get this error "Invalid URL=/webdynpro/resources/local/RigsOnMove/Components/ndc.maintain_rigmove.MaintainRigMoveComp/Test.xls".
    Please let me know your solution(s) to the above mentioned issue/problem.
    Thanks
    Senthil

    Hi Senthil,
    your code seems to be correct! Probabily your file is test.xls (NOT Test.xls with the first letter in uppercase).
    Try to write:
    IWDWebResource webRes = WDWebResource.getWebResource(wdComponentAPI.getDeployableObjectPart(), WDWebResourceType.XLS,     "test.xls");
    Hope this help,
    Vito

  • URL buttons not working in Powerpoint

    Hi
    I have just created an Xcelsuis report and exported this to Powerpoint. 
    Now it opens up fine in Powerpoint, but my URL buttons do not work (they do not open the excel files i want, i.e. My button is URL: C:\Test\Test.xls)
    When exporting to a pdf format this URL button works fine.
    Please can you advise how I can get this working for my Powerpoint.
    Thanks!

    When you export the SWF to your desktop or into a PPT it will not have permission to access external data by default (or call a URL).
    You need to add C:\Program Files\...\PowerPoint.exe as to the list of trusted items using the Adobe Global Security Settings Manager, see the Xcelsius Release notes for more information about the Flash Player Security...
    Regards
    Matt

  • Web dynpro Abap generated URLs - Namespace vs Alias

    Hi,
    We have developped web dynpro abap applications on two systems that both have to be exposed to our external users in production. We would like to provide a unique host for the two systems by using an appliance in front dispatching the request to the correct system based on differences in URL.
    As all generated URLS are in the following format:
    /sap/bc/webdynpro/sap/z_test
    /sap/public/bc/ur/nw7/js/domainrelax.js
    /sap/public/bc/ur/nw7/js/autorelax.js
    We would like to be able to modify the first tag (/sap) for something else either by renaming it or by adding some other layer in front of it in order to get:
    /nwa/sap/bc/webdynpro/sap/z_test
    /nwa/sap/public/bc/ur/nw7/js/domainrelax.js
    /nwa/sap/public/bc/ur/nw7/js/autorelax.js
    We thought we could use an external alias on one of our systems in order to change the generated url of that system but it does not work as we expected. When we call our web dynpro application using the external alias, it correctly renames the application bath but all other urls stay the same:
    /nwa/sap/bc/webdynpro/sap/z_test
    /sap/public/bc/ur/nw7/js/domainrelax.js
    /sap/public/bc/ur/nw7/js/autorelax.js
    What could we do in order to have all URLs generated by an ABAP system either renamed or prefixed by something else?
    Thank you very much for your help!
    Regards,
    Renaud

    hi Xiaoming Yang  ,
    i am facing the same error . can you please tell me how you have solved this ??
    regards
    Sujay Kulkarni

  • Suddenly, my custom url buttons disappeared from the navigation bar and I can no longer add new ones. FF22

    I am using Firefox 22 (I like its features and do not want the features added in later version.) I have added a handful of custom URL buttons to the navigation bar that allow me to go instantly to websites I visit frequently. There was/is a function in Firefox for adding such buttons. This morning, after leaving my computer on all night, I found that the custom buttons had disappeared and I could no longer find the function for adding new ones. Can you tell me what has happened and how I can add custom URL buttons? I will appreciate your help. Thank you.

    I solved my own problem. This function was added by Google Shortcuts, which somehow became disabled. After fussing ariound for a few minutes. I was able to restore it.

  • URL button doesn't work after export into ppt/word/pdf

    Hi,
    I am working in Xcelsius.
    Lets say I have placed a URL button in the Canvas and mapped that to a path of the file(which is not actualy an URL),but any path of the file which is present in the local system
    After exporting this dashboard into ppt(or word/pdf),when i click the button,its not redirecting me to a target.
    But during Preview of dashboard,it works fine.But after exporting,the URL button not redirects me to the path specified.
    Rgds,
    Murali

    Hi
    U got any solution for the above problem?
    Thanks
    Kothai

  • Safari copy url button doesn't work

    I just upgraded from an ipad2 to an iPad air 2. Before, if I wanted to copy and paste a url I'd use the copy button. Now,on the new iPad air 2, the copy button just wipes out whatever I've previously copied, and doesn't copy the url.

    You tap and hold down in the URL field until you get the option to select all. Then you choose the option to select all. An option to Copy appears and you select that and then you should be able to paste that URL into a text field.
    Safari copy url button doesn't work
    I Realize that you must know the steps but I am just double checking. If that is not working for you, and you are not having copy and paste issues elsewhere in other apps, I would try clearing Safari, force close it and then reset your iPad.
    Go to Settings>Safari>Clear History and Website Data
    Now force close Safari. In order to close apps, you have to drag the app up from the multitasking display. Double tap the home button and you will see apps lined up going left to right across the screen. Swipe to get to the app that you want to close and then swipe "up" on the app preview thumbnail to close it.
    Next, reset the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider if it appears on the screen - let go of the buttons. Let the iPad start up.

  • Customize option is missing under menu button. It is missing under View Toolbars as well. Please help!

    Customize option is missing under menu button. It is missing under View > Toolbars as well. Please help!

    Screenshot:

  • Generate URL in PDF made with Smartforms

    Hallo,
    i wanted Generate URL in PDF made with Smartforms, i have done everything necessary with cuastmizing and programing, the PDF ist working good, but afer clicking on the link in my PDF , it doesnt work, and with debbaging , the FM HR_RCF_SF_URL_CALLBACK it was not generated,
    thank you for your help

    Hi,
    Post your thread in Form Printing forum for better response , here is the link
    Output Management
    Cheers
    bhavana

  • Generating URL in Survey Suite

    Dear friends,
    When i am using Survey Suite functionality in CRM Marketing configured step by step by SAP Best practice document C22 . Under Generating URL step i am getting URL.While testing URL a blank screen appears with no error. Plz suggest in detail reward points will be awarded.
    with regards
    Sachin Sonkar

    hi sindhu
    this is sachin's workmate.as per ur suggestion we have tested the url with the mail form.but still its generating a blank screen
    moreover i wud like to add that when we tested it at backup with crm server where u can test the surveysuite url
    we are getting this error
    "BSP Exception: Das Objekt default.htm in der URL /sap/bc/bsp/sap/crm_svy_server/default.htm?sap-client=100&sap-sessioncmd=open ist nicht gültig."
    please suggest sumthin if u know.
    help will definitely be appreciated
    regards
    ashish

Maybe you are looking for

  • Withholding tax code and Withholding tax type relation

    Hi All, Here is my requirement: I need to get the WT code description for the tax codes I get in BSIS (BSIS-QSSKZ). The problem is when I try to get the same from T059ZT, I need to have the two key fields WITHT (Indicator for withholding tax type) &

  • Privileged Locations

    Why is my transform applying all the correct setting except the one I specified in Privileged Locations? Here is what I've done... Loaded AdbeRdr1000_en_US.msi in Adobe Customization Wizard. Customized several settings... including adding a host in t

  • Problem with a subfolder

    I have been using iWeb to create and maintain fairly simple web sites.  One of them is http://www.getalifesports.com and up until recently everything has been working fine.  Recently I noticed that if I type the website name into the Safari address b

  • TimeStampDiff Function

    Hi Guys, I have an function that says calculate the difference in Months between the opportunity expected close date and Today's date Timestampdiff(SQL_TSI_MONTH,Current_Date,"Close Date".Date) Today is the 8th December. My report shows: Close Date:.

  • Problem during add my podcast to iTunes directory

    I have created an video podcast and this is the RSS: http://feeds.feedburner.com/saggiamente-videoguide Feed result a valid RSS, but during propose my URL feed podcast to iTunes, the result is: "We are currently experiencing technical difficulties. P