E-Recruiting - URL of PINST is not working

Hi all,
in our E-Recruiting we send correspondence to persons which are no candidates (e.g. manager). To do that we create a simple activity where the responsible person is the one who should get the correspondence. This activity triggers a workflow which writes the PINST_GUID to a customer table. A Report (planned as a Job) reads that PINST_GUID and sends a Smart Form via Mail to that Person. Now we have the following problem. In our Smart Form we create an URL to the data overview of the posting instance. In ECC 5.0 everything worked fine. Now in ECC 6.0 the URL doesn't show the data overview and we get the same error which is solved by SAP Note 1342091. This Note solves some kind of a PDF-Caching problem. For that it uses method cl_hrrcf_global_context=>get_script_req_overview to get the URL. I tried to use that method in our report. Unfortunately it dumps, because some object is not assigned. It seems that this Method only works within a BSP context.
So here's my question:
How to construct an URL to a PDF data overview (posting instance) within a report?
or
Is there another (maybe better) way to send another person than the candidate an correspondence with URL?
Thanks in advance
Mark André

Hi,
i've found a solution for my problem. I've replaced the URL within my Smart Form to the data overview with an URL to a BSP, which i've written. This BSP calls the standard methods of the SAP note to open the data overview.
Regards
Mark André

Similar Messages

  • OAM 11g "Failure URL" in Authoriztion policy not working?

    Hi,
    Per the subject, I am running OAM server 11g (11.1.1.3), with an OAM 10g Apache webgate.
    In the OAM Authorization policy (protected), I have specified a full URL for the "Failure URL", to get the browser to redirect when an authorization failure occurs.
    However, when I test with a user that does not have access (user authenticates ok, but doesn't have right to access the protected resource), instead of the browser being redirected, I am getting an "Oracle Access Manager Operations Error" page.
    I've been trying to figure this out, and have found several threads about this, e.g.:
    OAM 11g authz redirect URL not working?
    But, as I said, I am using OAM 11g server, and there is no "Inconclusive URL" in the policy settings (I guess there was in 10g, but not in 11g).
    I have trace logging enabled on the OAM server, and I can clearly see that the request is getting "results DENY", but there's no indication in the logs that OAM server is aware of any failure redirection URL.
    I've also got a header trace, and I can see that the browser is simply being re-directed to the "/oberr.cgi...." URL, so it' not going "somewhere else".
    So, does anyone know why the "Failure URL" is not working in OAM 11g in Authorization policies?
    Thanks,
    Jim
    P.S. The URL that it's suppose to be re-directing the browser to is in the Public resources under Authorization, and as I said, I don't see the browser even attempting to go to the failure URL, either via header traces or the OAM server logs.
    Edited by: jimcpl on Nov 5, 2011 8:53 PM

    Hi,
    Per the subject, I am running OAM server 11g (11.1.1.3), with an OAM 10g Apache webgate.
    In the OAM Authorization policy (protected), I have specified a full URL for the "Failure URL", to get the browser to redirect when an authorization failure occurs.
    However, when I test with a user that does not have access (user authenticates ok, but doesn't have right to access the protected resource), instead of the browser being redirected, I am getting an "Oracle Access Manager Operations Error" page.
    I've been trying to figure this out, and have found several threads about this, e.g.:
    OAM 11g authz redirect URL not working?
    But, as I said, I am using OAM 11g server, and there is no "Inconclusive URL" in the policy settings (I guess there was in 10g, but not in 11g).
    I have trace logging enabled on the OAM server, and I can clearly see that the request is getting "results DENY", but there's no indication in the logs that OAM server is aware of any failure redirection URL.
    I've also got a header trace, and I can see that the browser is simply being re-directed to the "/oberr.cgi...." URL, so it' not going "somewhere else".
    So, does anyone know why the "Failure URL" is not working in OAM 11g in Authorization policies?
    Thanks,
    Jim
    P.S. The URL that it's suppose to be re-directing the browser to is in the Public resources under Authorization, and as I said, I don't see the browser even attempting to go to the failure URL, either via header traces or the OAM server logs.
    Edited by: jimcpl on Nov 5, 2011 8:53 PM

  • Click to URL on RSS text not working on node variable.

    Hi.
    I have a RSS feed parsed into one text box and am using imported CSS to format the text in one Textfield that was created with as3.
    Problem is my roll over and click handler functions for making each text variable a link to the XML URL link will not work unless I point the function at the entire text field. I just want the individual text variables made from the RSS Title nodes, to be set to react to my handleFHTClicked, rollOutHandler and rollOverHandler functions. The movie runs Ok parsing the nodes and picking up the CSS, but I get this error in the output window when it reaches the aformentioned functions...
    TypeError: Error #1006: value is not a function.
         at AS3_CSS_external_file2_fla::MainTimeline/onLoaded()
         at flash.events::EventDispatcher/dispatchEventFunction()
         at flash.events::EventDispatcher/dispatchEvent()
         at flash.net::URLLoader/onComplete()
    Here is the code....
    var cssLoader:URLLoader;
    //load the fake preloader
    var preLoader = new loading_mc();
    preLoader.x = 170;
    preLoader.y = 50;
    preLoader.scaleX = .7;
    preLoader.scaleY = .7;
    addChild(preLoader);
    //This code loads and Parses the RSS feed
    var loader:URLLoader = new URLLoader();
    loader.addEventListener(Event.COMPLETE, onLoaded);
    var dotExtension:String = "...";
    var maxLength:Number = 0;
    var xml:XML;
    function onLoaded(e:Event):void {
         removeChild(preLoader);
         xml = new XML(e.target.data);
         var firstheadtext = xml.channel.item[0].title;
         var firstbodytext = xml.channel.item[0].description;
         var secondheadtext = xml.channel.item[1].title;
         trace(firstheadtext);
         trace(firstbodytext);
         trace(secondheadtext);
         //dtfa.htmlText = "<p align='left'>"+firstheadtext+"</p>"+"</br>"+ "<p align='left'>"+firstbodytext+"</p>";
         var myText:String = "<p>"+firstheadtext+"</p>"
         +"<span class='myTextStyle1'>"+firstbodytext+"</span><br/>"
         +"<br/>"
         +"______________________________________________________________________________<br/>"
         +"<br/>"
         +"<span class='myTextStyle2'>"+secondheadtext+"</span><br/>";
         function cssLoadComplete(event:Event):void {
              var sheet:StyleSheet = new StyleSheet();
              sheet.parseCSS(cssLoader.data);
              myTextField.styleSheet=sheet;
              myTextField.htmlText=myText;
         var myTextField:TextField = new TextField();
         myTextField.width = 500;
         myTextField.height = 240;
         myTextField.multiline = true;
         myTextField.wordWrap = true;
         addChild(myTextField);
         var req:URLRequest = new URLRequest("myStyleSheet.css");
         cssLoader = new URLLoader();
         cssLoader.addEventListener(Event.COMPLETE, cssLoadComplete);
         cssLoader.load(req);
         //This code handels the click through
         firstheadtext.addEventListener(MouseEvent.CLICK, handleFHTClicked);
         function handleFHTClicked(e:MouseEvent):void {
              navigateToURL(new URLRequest(xml.channel.item[0].link));
           firstheadtext.addEventListener(MouseEvent.MOUSE_OVER , rollOverHandler);
           firstheadtext.addEventListener(MouseEvent.MOUSE_OUT, rollOutHandler);
           import flash.text.TextFormat;
              // create the text format objects
              var overTextFormat:TextFormat = new TextFormat();
              overTextFormat.underline = true;
              var defaultTextFormat:TextFormat = new TextFormat();
              defaultTextFormat.underline = false;
         // add the event handlers
              function rollOverHandler(e:MouseEvent):void
               TextField(e.target).setTextFormat(overTextFormat);
              function rollOutHandler(e:MouseEvent):void
              TextField(e.target).setTextFormat(defaultTextFormat);
    loader.load(new URLRequest("http://www.calgaryheraldonline.com/rss_echo.php"));
    Any assistance would be appreciated.
    Cheers
    Forrest

    If I un-nest the functions from the RSS loader, I get many more errors.
    Here is my un-nested code;
    import flash.text.TextFormat;
    var cssLoader:URLLoader;
    //load the fake preloader
    var preLoader = new loading_mc();
    preLoader.x = 170;
    preLoader.y = 50;
    preLoader.scaleX = .7;
    preLoader.scaleY = .7;
    addChild(preLoader);
    //This code loads and Parses the RSS feed
    var loader:URLLoader = new URLLoader();
    loader.addEventListener(Event.COMPLETE, onLoaded);
    var xml:XML;
    function onLoaded(e:Event):void {
         removeChild(preLoader);
         xml = new XML(e.target.data);
         var firstheadtext = xml.channel.item[0].title;
         var firstbodytext = xml.channel.item[0].description;
         var secondheadtext = xml.channel.item[1].title;
         trace(firstheadtext);
         trace(firstbodytext);
         trace(secondheadtext);
         //dtfa.htmlText = "<p align='left'>"+firstheadtext+"</p>"+"</br>"+ "<p align='left'>"+firstbodytext+"</p>";
         var myText:String = "<p>"+firstheadtext+"</p>"
         +"<span class='myTextStyle1'>"+firstbodytext+"</span><br/>"
         +"<br/>"
         +"______________________________________________________________________________<br/>"
         +"<br/>"
         +"<span class='myTextStyle2'>"+secondheadtext+"</span><br/>";
    function handleFHTClicked(e:MouseEvent):void {
         navigateToURL(new URLRequest(xml.channel.item[0].link));
    firstheadtext.addEventListener(MouseEvent.MOUSE_OVER , rollOverHandler);
    firstheadtext.addEventListener(MouseEvent.MOUSE_OUT, rollOutHandler);
    // create the text format objects
    var overTextFormat:TextFormat = new TextFormat();
    overTextFormat.underline = true;
    var defaultTextFormat:TextFormat = new TextFormat();
    defaultTextFormat.underline = false;
    //This code handels the click through
    firstheadtext.addEventListener(MouseEvent.CLICK, handleFHTClicked);
    // add the event handlers
    // you only need these two functions
    function rollOverHandler(e:MouseEvent):void {
         TextField(e.target).setTextFormat(overTextFormat);
    function rollOutHandler(e:MouseEvent):void {
         TextField(e.target).setTextFormat(defaultTextFormat);
    function cssLoadComplete(event:Event):void {
         var sheet:StyleSheet = new StyleSheet();
         sheet.parseCSS(cssLoader.data);
         myTextField.styleSheet=sheet;
         myTextField.htmlText=myText;
    var myTextField:TextField = new TextField();
    myTextField.width = 500;
    myTextField.height = 240;
    myTextField.multiline = true;
    myTextField.wordWrap = true;
    addChild(myTextField);
    var req:URLRequest = new URLRequest("myStyleSheet.css");
    cssLoader = new URLLoader();
    cssLoader.addEventListener(Event.COMPLETE, cssLoadComplete);
    cssLoader.load(req);
    loader.load(new URLRequest("http://www.calgaryheraldonline.com/rss_echo.php"));
    And now the errors are telling me it cannot access the undefined property of myText and firstheadtext.
    I just don't understand what needs to be inside the onLoaded function and what has to be outside.

  • URL redirect over is not working..

    Redirecting URL appended with querystring parameters for community is not working on SSO? We have SSO set up using Intergrated Windows Authetication.
    When I launch new browser and request portal over SSO , works. Then I go to a community and copy the URL from browser. When I open new window and paste the URL extracting UserID from it, it gives me login screen and sso won't work.
    If I do the same action twice in same window(for which I got the login screen firsttime), it works second time. How can I resolve this? Is anybody had this problem before?
    Thanks!!
    Sanjay

    CaptureDeviceInfo di=null;
                   Vector deviceList = CaptureDeviceManager.getDeviceList(new VideoFormat(VideoFormat.RGB));
                   if (deviceList.size() > 0)
                             di = (CaptureDeviceInfo)deviceList.elementAt(0);
                             if(di==null) System.exit(-1);
                                  System.out.println("devicelist2");
                        else
                             System.out.println("exit");
                             System.exit(-1);
                   MediaLocator mediaURL = di.getLocator();
    create medialocator by using datasouce object's mehtod getLocator();
    anoop

  • Search Google from the URL bar in safari not working, Help...

    Hi to everyone,
    im stuck here trying to find out why i can't search more in the url bar in safari. Just happened few weeks ago and i most use bing or yahoo.
    I did try to delete cache and plist etc, everything i read in the net but still not working. I have mac pro 2011, and I'm not sure but i think this happened after i open a second account for my girlfriend in my mac, so she can have her own account. I check and in the other account happen the same...some ideas?

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It’s unlikely to solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of the test is to determine whether the problem is caused by third-party software that loads automatically at startup or login, by a peripheral device, by a font conflict, or by corruption of the file system or of certain system caches.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards, if applicable. Start up in safe mode and log in to the account with the problem. You must hold down the shift key twice: once when you turn on the computer, and again when you log in.
    Note: If FileVault is enabled, or if a firmware password is set, or if the startup volume is a Fusion Drive or a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to start up and run than normal, with limited graphics performance, and some things won’t work at all, including sound output and Wi-Fi on certain models. The next normal startup may also be somewhat slow.
    The login screen appears even if you usually login automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. Same problem?
    After testing, restart as usual (not in safe mode) and verify that you still have the problem. Post the results of the test.

  • URL from MediaLocator is not working

    Hi!
    I try to get a URL from a MediaLocator, but iI get allways the java.net.MalformedURLException: unknown protocol: rtp.
    The Medialocator looks like this:
    MediaLocator ml = new MediaLocator("rtp://192.168.0.1:5000/audio");
    MadiaLocator has a method getURL() but it seems not working. What I need is just the Port and the IP address.
    Any suggestions?
    Thaks Adam

    CaptureDeviceInfo di=null;
                   Vector deviceList = CaptureDeviceManager.getDeviceList(new VideoFormat(VideoFormat.RGB));
                   if (deviceList.size() > 0)
                             di = (CaptureDeviceInfo)deviceList.elementAt(0);
                             if(di==null) System.exit(-1);
                                  System.out.println("devicelist2");
                        else
                             System.out.println("exit");
                             System.exit(-1);
                   MediaLocator mediaURL = di.getLocator();
    create medialocator by using datasouce object's mehtod getLocator();
    anoop

  • Captivate 4 Open url from a button not working?

    Hi All,
    I have published a scorm course from captivate 4 and have installed to our servers. I would like to have a link to a document that is online (.doc) but whenever I click the transparent button it starts to load, opens a window (which has the correct title name) but then disappears with no warning or error message.
    The link resides behind a transparent button, and has the settings On Success open url or file in a new window.  I know the problem is not specific to this document because I have had the same problem with a completly different online file location in the past.
    Please Help!!
    Many thanks in advance.
    Chris Maile

    Hi there
    Please send me a private E-Mail message to rstone75 (at) kc (dot) rr (dot) com and advise of the exact file name of the file you are linking to.
    I'll send you back a file that you can use to test and see if the link works.
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • Open URL or File Action not working (Captivate 7)

    I have written dozens of training courses using Captivate that employ buttons to open PDF documents (supporting documentation). I am currently coding smart shapes as buttons, specifying the Open URL or File action, or by executing an advanced action to do the same. The documents are found in a subfolder (documents), so the URL/File target is: \documents\<file name>. Same syntax that I have used for several years. However, once published using Captivate 7, these buttons no longer work. I have exhausted my methods for opening files without success. Any ideas?
    BTW, I am publishing as .exe, so the SWF security snafu should not be the issue.
    Thanks
    Jack L

    The issue has been fixed in the patch released in November. The latest version is 7.0.1.237.
    http://helpx.adobe.com/captivate/kb/captivate-7-patch.html
    I guess you need to publish your file again after you apply the patch and test it once to ensure everything works fine.
    Sreekanth

  • Help: URL encoded in Base64 not working with SP4

    With SP1, there was no problem but after installing SP4 (don't know whether it is accidental), this problem started occurring and I don't know what caused it. Here is the description:
    I have SP4 running on Solaris 8. An applet is launched and sends a servlet request to the server where the URL is encoded in Base64 (Post method) for some additional data. The servlet receives the request and attempts to decode the received URL since the parameters contain relevant info. While trying to decode the base64 parameter string back into Unicode, I see an exception:
    [23/Oct/2002:14:59:54] failure ( 6684): Internal error: exception thrown from the servlet service function (uri=/reports1/savereport): java.io.EOFException, Stack: java.io.EOFException
    at java.io.DataInputStream.readFully (DataInputStream.java:158)
    at java.io.DataInputStream.readUTF(DataInputStream.java:526)
    at java.io.DataInputStream.readUTF(DataInputStream.java:496)
    at com.xxxxxx.utils.Base64.decodeUnicodeString(Base64.java:236)
    My assumption is that the byte ordering may have been altered to cause this failure, but the Solaris OS version and the client machine's configuration did not change. Nothing else changed except the iPlanet version, which used to work otherwise.
    Has anyone seen this or does anyone know how to correct it? Will appreciate your response! Thanks in advance.

    hrstewart74 - You'll also need to send a Follow request to lindseyt_vzw that they'll have to approve.  Once you both are Following each other, then you can send them a Direct Message.
    How To: Direct Message

  • IISARR URLS for Lync 2013 not working externally

    Hello All,
    Currently facing issue of opening lyncdiscover.domain.com from external.
    I have created the server farm uing IISARR for Lync2013 & added 5 rules under the server farm as shown below:
    meet.domain.com
    dialin.domain.com
    lyncdiscover.domain.com
    owebapp.domain.com
    When I tried browse all the above URL's none of the URLs are opening & showing below errors as attached screen shot:
    Also when I tried test by using Lync 2013 Connectivity Analyzer showing below errors
    SIP Uri: [email protected]
    Logging test parameters:
    User Name: 
    Discovery Type: Automatic Discovery
    Network access: NetworkAccessInternal
    Selected client: ApplicationLMX
    Starting Lync server autodiscovery
    Please wait; this test may take several minutes to complete...
    Starting automatic discovery for secure (HTTPS) internal channel
    lyncdiscoverinternal.domain.com can't be resolved by the DNS server. Skipping internal discovery.
    For more information on DNS requirements for automatic discovery, please refer to http://go.microsoft.com/fwlink/?LinkId=278998 
    Starting automatic discovery for secure (HTTPS) external channel
    Sending HTTP request to https://lyncdiscover.domain.com/[email protected]
    Cookie  found in autodiscover response: StatusCode: 500, ReasonPhrase: 'URL Rewrite Module Error.', Version: 1.1, Content: System.Net.Http.StreamContent, Headers:
      Cache-Control: private
      Date: Mon, 08 Sep 2014 11:51:26 GMT
      Server: Microsoft-IIS/8.5
      Content-Length: 5694
      Content-Type: text/html; charset=utf-8
    Autodiscover: SendRequest(): the URL https://lyncdiscover.domain.com/[email protected] couldn't be connected.  Complete HTTP headers:\r\n Cache-Control: private
    Date: Mon, 08 Sep 2014 11:51:26 GMT
    Server: Microsoft-IIS/8.5
    Couldn't connect to URL https://lyncdiscover.domain.com/[email protected]
    Reason: Internal server error (HTTP status code 500)
    System.Exception: Exception of type 'System.Exception' was thrown.
       at Microsoft.LyncServer.WebServices.AutoDiscoverManager.TerminateAD(String mesg)
       at Microsoft.LyncServer.WebServices.AutoDiscoverManager.<SendRequest>d__d.MoveNext()
    --- End of stack trace from previous location where exception was thrown ---
       at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
       at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
       at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult()
       at Microsoft.LyncServer.WebServices.AutoDiscoverManager.<TryNextUrl>d__3.MoveNext()
    --- End of stack trace from previous location where exception was thrown ---
       at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
       at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
       at Microsoft.LyncServer.WebServices.AutoDiscoverManager.<StartDiscoveryJourney>d__0.MoveNext()
    --- End of stack trace from previous location where exception was thrown ---
       at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
       at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
       at LyncConnectivityAnalyzerCore.Utilities.<RetrieveUserLocation>d__3e.MoveNext()
    Server discovery failed for secured external channel against https://lyncdiscover.domain.com/
    Starting automatic discovery for unsecure (HTTP) external channel
    Sending HTTP request to http://lyncdiscover.domain.com/[email protected]
    Cookie  found in autodiscover response: StatusCode: 500, ReasonPhrase: 'URL Rewrite Module Error.', Version: 1.1, Content: System.Net.Http.StreamContent, Headers:
      Cache-Control: private
      Date: Mon, 08 Sep 2014 11:51:44 GMT
      Server: Microsoft-IIS/8.5
      Content-Length: 5765
      Content-Type: text/html; charset=utf-8
    Autodiscover: SendRequest(): the URL http://lyncdiscover.domain.com/[email protected] couldn't be connected.  Complete HTTP headers:\r\n Cache-Control: private
    Date: Mon, 08 Sep 2014 11:51:44 GMT
    Server: Microsoft-IIS/8.5
    Couldn't connect to URL http://lyncdiscover.domain.com/[email protected]
    Reason: Internal server error (HTTP status code 500)
    System.Exception: Exception of type 'System.Exception' was thrown.
       at Microsoft.LyncServer.WebServices.AutoDiscoverManager.TerminateAD(String mesg)
       at Microsoft.LyncServer.WebServices.AutoDiscoverManager.<SendRequest>d__d.MoveNext()
    --- End of stack trace from previous location where exception was thrown ---
       at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
       at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
       at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult()
       at Microsoft.LyncServer.WebServices.AutoDiscoverManager.<TryNextUrl>d__3.MoveNext()
    --- End of stack trace from previous location where exception was thrown ---
       at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
       at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
       at Microsoft.LyncServer.WebServices.AutoDiscoverManager.<StartDiscoveryJourney>d__0.MoveNext()
    --- End of stack trace from previous location where exception was thrown ---
       at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
       at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
       at LyncConnectivityAnalyzerCore.Utilities.<RetrieveUserLocation>d__3e.MoveNext()
    Server discovery failed for unsecured external channel against http://lyncdiscover.domain.com/
    None, AutoInternalDNSFail, AutoInternalSecureD, AutoInternalUnsecureD, AutoExternalSecureD, AutoExternalUnsecureD, ManualDNSFail, ManualSecureD, ManualUnsecureD, AuthBrokerInternalLMXCheckGET, AuthBrokerInternalLMXCheckPOST, AuthBrokerExternalLMXCheckGET, AuthBrokerExternalLMXCheckPOST,
    MobilityMCXInternalLMXCheckGET, MobilityMCXInternalLMXCheckPOST, MobilityMCXExternalLMXCheckGET, MobilityMCXExternalLMXCheckPOST, LMXSIPServerInternalDNS, LMXSIPServerExternalDNS, MobilityUCWAInternalCheckPOST, MobilityUCWAExternalCheckPOST
    Automatic discovery of the Lync server failed. Please verify the server requirements at http://go.microsoft.com/fwlink/?LinkId=278998 
    Microsoft Lync Connectivity Analyzer cannot analyze deployment readiness until a discovery test has completed successfully.
    =============================================================================
    NOTE : For my current Set Up for Lync 2013 please refer this link & kindly ignore the SQL archiving & monitoring issue for database mismatch version as it is resolved:
    http://social.technet.microsoft.com/Forums/lync/en-US/032a8ef2-636d-40ae-a4f1-951e9a39999f/lync-2013-archiving-and-monitoring-sql-database-version-mismatch-issues?forum=lyncdeploy
    Any help really appreciated
    Regards
    Anand S
    Thanks & Regards Anand Sunka MCSA+CCNA+MCTS

    Hi,
    Please make sure there is no typos in the URL rewrite rule.
    You can configure IIS ARR to display more information with the error with the following path:
    Open IIS Manager –> Sites –> Default Web Site –> Error Pages –> Edit Feature Settings.
    Select Detailed error
    Then you can access simple URL again to check the full error message.
    More details:
    http://unifiedme.co.uk/2014/04/iis-arr-500-internal-server-error-get-meaning-full-info/
    Note: Microsoft is providing this information as a convenience to you. The sites are not controlled by Microsoft. Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or information found there. Please make
    sure that you completely understand the risk before retrieving any suggestions from the above link.
    Best Regards,
    Eason Huang
    Eason Huang
    TechNet Community Support

  • URL iView content translation not working using Portal Content Traslation

    Hi All,
    I am using Portal Content Translation to translate text of URL iView from English to Spanish. I am unable to do so. I have followed the below mentioned link:
    http://help.sap.com/saphelp_nw04/helpdata/en/74/641640b7b6dd5fe10000000a155106/frameset.htm
    I have used Content Admin -> Portal Content Translation -> Translation Worlist Coordination to:
    1) Generate worklist and add content
    2) Generte translation data
    3) Release for translation
    After this, I am using Content Admin -> Portal Content Translation -> Worklist Translation for following:
    1) Load worklist for translation
    2) Translate worklist
    I am facing difficulty in Translate Worklist. The step by step method followed by me are as below:
    I am clicking on Content Admin -> Portal Content Translation -> Worklist Translation.
    I am searching Translation Worklist and selecting my Worklist
    After this I am selecting following
    Source Language - English
    Target Language - Spanish
    Then I am clicking on 'Load for Translation' button. New screen appears. In this screen, Translatable Text table is shown:
    It shows following
    Number
    Source Text <EN>
    Target Text <ES>
    Status
    Object ID
    In Status I can see 'Not Translated'. I click on Next for three times as there are three line Number (0, 1 & 2)
    The Status does not change. It remains 'Not Translated'.
    When I am using following combination
    Source Language - Raw Texts
    Target Language - Raw Texts.
    I click on Next for three times as there are three line Number (0, 1 & 2). The status changes to Translated.
    I do not know what is going wrong with my process while selecting Source Language - English & Target Language - Spanish .
    I have another question. I have to translate content of entire URL iView. How I can change the whole content of URL iView.
    In the source text I can NOT see the contents of URL iView.
    Thanks
    Stuart

    Hi Prakash,
    Did you check whether the translation has been done completely in PCD inspector? Some times you would have translated using Portal translation but it will not be written in the locale of the iView property.  Then we have to set it manually in the PCD inspector.
    Follow the procedure.
    1. navigate to System Administration -> Support -> Portal Content Directory -> PCD Inspector
    This will open the PCD inspector.
    2. "Browse Into" the iview where you have developed it.
    3. Click on the "All Props" for the iView which you need to translate.
    This will open the Properties in new window
    4. Check the property "com.sap.portal.pcm.title" what is maintained in Chinese? if it still displaying in English text against Chinese, Then you need to  Edit the property for chinese and have to give the actual chinese word.
    Note  : I hope you would have selected "Raw Text"  for Source language and "Chinese" as Target language. Pls confirm on this.
    Thanks,
    Mahendran B.

  • Javascript URL redirect (setting value) not working

    Hello All,
    Apex 3.1
    I am trying to write javascript that will execute off the click of an icon in a report. It will display a prompt box to the user, and when the user clicks "OK", I would like to re-direct the user to another page, setting the value in the prompt to a page item on the new page. Here is the javascript I'm trying to use:
    <script language="JavaScript" type="text/javascript">
    function copy_prompt()
    var copies=prompt("Number of copies?","1");
    if (copies!=null && copies!="" && copies !="0")
    $s('P6_ITEM_COPY_COUNT',copies);
    redirect('f?p=&APP_ID.:82:&SESSION.::NO:P82_ITEM_COPY_COUNT:&P6_ITEM_COPY_COUNT.')
    </script>
    The problem I'm having is that since session state is not being set, it is passing a null value to the new page. I can see on page 6 the item P6_ITEM_COPY_COUNT is getting set appropriately, but the value is not in session state. Any suggestions?
    Thanks!

    In trying the suggestion, I receive the following error when redirected:
    Error ERR-1002 Unable to find item ID for item "<value in javascript prompt>" in application "103".
    Thanks!
    SOLUTION: I looked at my URL syntax in the redirect statement, and was missing an extra colon (:) before the P82_ITEM_COPY_COUNT. Correct syntax is:
    redirect('f?p=&APP_ID.:82:&SESSION.::NO*::*P82_ITEM_COPY_COUNT:' + copies);
    Edited by: potter_geek on Dec 8, 2009 8:51 AM

  • Why  I entry the portal with url:ip address is not work?

    But when I use the http://servername:50000/irj/portal every things is ok.
    Whe I user the http://192.168.xx.xx:50000/irj/portal I can not click create a new folder. The menu toolbars does'nt appear on my screen and have error javascript "Access is Denied"

    Hello jumnong,
    Please try this in your hosts file:
    <<b>IP-address</b>><i>tab</i><<b>hostname with complete domain name</b>><i>tab</i><<b>hostname</b>>
    Example:
    10.10.2.68 rp1118.in.fujitsu.com rp1118
    Note: Please use tab to seperate the entries
    Please do let me know if this works.
    Awaiting Reply.
    Thanks and Warm Regards,
    Ritu
    Message was edited by:
            Ritu  Hunjan

  • I Tunes error message and URL help page does not work!!

    I have, sincea previous update, a constant error message when I start up Itunes: error -42032 and when I try to open the helppages , ths URL is not available!!!
    I ust ordered a new Iphone4 S, so I want to get rid of this problem!!! Who can help me?

    Hello, LovinThe Tunes
    You will find this article helpful in troubleshooting the error that you are receiving.
    iTunes for Windows: "Error 7" message when opening iTunes
    http://support.apple.com/kb/ts3074
    Regards,
    Jason H.

  • Open URL or File button not working.

    I am using VMWare on a Mac running Windows XP with Captivate 4.
    I am trying to essentially put a link at the end of my elearning to have them jump to a URL.  I've switched over to a dell running XP.  I've created a new project and tried to recreate just the last slide, i've created another new project and tried to just make a open URL button but none of it works!
    any thoughts?

    Hi Patrick
    We can all honestly give thanks to those that like to wreak havoc on our computers. Malicious Hackers
    For it is Security reasons we face the difficulties we do.
    Try the link again. I initially pointed you to the wrong anchor. (Sorry - My bad) Basically it's a Flash Player security thing. And it only happens when you test locally. Once things are on a server (as they usually are) the issues tend to become total non-issues)
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

Maybe you are looking for

  • Problem with iMac quality

    I  own a 27" iMac that is just less than 4 years old, and where after sending it for repair with Apple in Denmark was told that it needed a new graphics card for DKK 2899 - approx. USD 490.00. I found out that the iMac is produced at a factory in Sha

  • NT Event Log Error

    We are getting the following error in our NT event logs on a regular basis - and at the same time as some other problems we are having. What does this mean, and is there a fix for it?? The Open Procedure for service "https4.1" in DLL "e:\Netscape\Ser

  • Adobe photoshop album starter edition3.0 update

    I recently purchased a new computer and it has this program installed on it. I have browsed through it on several occasions and started to use it, today I received a drop down box telling me that there was an update to this program I started to downl

  • Different Message Type, Different Namespace, same structure

    Hi, we have the scenario: We have a message type (with our namespace) in a regular file-tofile scenario. The sender is sending us an xml-file from his PI that  has exactly the same structure and same xsd. Except, that his message type name and namesp

  • My Nano has stopped responding...

    Aloha, I received a nano for Xmas (so 4mos old) and it recently just refused to turn on. I've taken good care of it as far as I can tell. It's not locked, I've tried to reset it using the "menu" and "select" buttons but nothing works. My computer doe