Hyperlinks not visible in UI

Hi All,
My requirement is to add two hyperlinks DISPLAY and CHANGE for the purchase order number. For this I proceeded like this:
1) I created two custom attributes DIS_PO and CH_PO under context node HYPERLINKS of the view IncidentHeader of SRQM_INCIDENT_H.
2) Created Event handlers for the above two attributes and defined the generic object mappings(logical link ids).
3) Redefined the Get_P methods of the above two attributes by specifying the event handlers created above.
4)Added the two hyperlinks beside the purchase order number field in the configuration settings of the view.
Problem is the two hyperlinks are visible in the configuration section in GUI but when I login in UI, hyperlinks are not visible beside the purchase order number field.
Any suggestions would be of great help.
Regards,
Narendra

The issue is caused when migrating from 2010 to 2013. Microsoft’s upgrade process seems to have missed an update required to the Workflow History list, and the following powershell fixes it, with the key being the .SystemUpdate($false) on each item in the workflow
history list:
$url = 'http://mysite/myweb' #todo: update powershell to loop through all sites
$site = new-object microsoft.sharepoint.spsite($url);
Write-Host $site.allwebs.count
$web=$site.OpenWeb();
$spListColl = $web.Lists
foreach($list in $spListColl)
if($list.Title -eq "Workflow History")
foreach ($listItem in $list.Items)
$listItem.SystemUpdate($false)
Write-Host "Updating Items Done"

Similar Messages

  • Hyperlink not visible pdf

    I am trying to create a training flier in a .pdf format. I am using Acrobat Pro to do this. I am having an issue with placing a link for the registration page on the .pdf. The link is not visible when you view it, however, it will bring you to the page if you know where to click. So, it is there, you just can't see it.
    Thanks for the help in advance!

    LOL..I have no clue what I am doing!!! Someone sent me a .pdf file for a training class. I am trying to use the same format, however,  I need a link to allow people to click and then register at the link. I bought the full acrobat so that I could edit and make changes.
    The .pdf that was sent to me shows the link and it is blue and it looks like any other hyperlink I have seen in the past. In the original, there is no blue box. Just the link for people to know that you can click it.
    When I do it, all I get is the box. Maybe, it shouldn't be a .pdf????

  • HTML style not visible in Peoplesoft But able to view in Preview RTF templa

    Hi Team,
    Anyone help me urgent. I am not able to view the HTML style in HyperLink in Peoplesoft Online. But i am able to view in Preview tab. I am wondering.
    i.e. My data's are able to view in online but tables that border are not visible. But it works in preview table. Can anyone guide me on this. Please?
    This is the code snippet which i have used in RTF template: (Cross tab report).
    <?for-each-group@column:row;./RANGESIZE?>
    <?RANGESIZE?>
    <?end for-each-group?>
    <?for-each-group:row;./EP_RATING?><?variable@incontext:G1;current-group()?>
    <?EP_RATING?>
    <?for-each-group@cell:/query/row;./RANGESIZE?>
    <?$G1[(./RANGESIZE=current()/RANGESIZE)]/Y_MINIMUM_PCT?>
    <?$G1[(./RANGESIZE=current()/RANGESIZE)]/Y_MAXIMUM_PCT?>
    <?end for-each-group?>
    <?end for-each-group?>
    Edited by: 1006631 on May 21, 2013 1:44 AM

    I would recommend to look very closely and the way the default role is defined in the client 000 Homepage Framework and use this structure and defintions as a guide for implementing your custom role
    In particular the Bank service must be linked to a resource which must point to the required location in the PCD
    Best wishes
    Stuart

  • SP 2010 Publishing - Rollup and Page Images not visible when entering page edit mode

    All:
    Hello, I have an odd issue recently appearing after installation of FEB 2013 CU install. When users select to Edit a Publishing Page the Rollup Image and also Page Image(Article Page Layout) are not visible. Only the "Click here to insert Image from
    SharePoint" link is visible.
    The issue has be confirmed in 5 servers across two farms
    DEV, QA, and PROD on client recently updated
    DEV and PROD in a completely separate client farm
    I have confirmed the issue does not exist in two separate farms running April 2012 CU. In both of those environments the image appears with issue even in Edit page mode.
    In the farms where the issue exists you can click the insert image link and simply hit OK to see the image again. An easy enough work around for tech savvy but my client's content admins are very confused/frustrated by.
    Is this a bug? I have confirmed in two separate farms including brand new web applications using out of the box publishing site templates.

    Hi.
    We have been facing the same issue in a 2013-environment (SP1), but in this case an upgraded 2010 Solution, which still runs in 2010-mode. Because of this, SharePoint still use resource-files in the 14-hive (as we have not performed an upgrade of Master
    Pages etc.) The problem is also reproduced on a clean 2010 Site Collection in the same 2013-environment.
    I have managed to find the cause of the problem (at least in our environment), and that is that as long as the selected picture/image has
    not defined an "AltText"/"Alternate Text" the problem seems to occur.
    In other words, try to define an Alternate Text and click OK in the "Edit Image Properties" Dialog.
    I don't know if this may be the case for everyone else, but give it a try.
    From this, I've further discovered (after hours of js-debugging) that there is a minor change (from 2010 to 2013) in a js-file called "SelectorControls.js" which is responsible for updating the various controls used in Page Layouts etc.
    The problem exist in a method called ASO_UpdateButtonsAndPanels(), which checks whether the Image Control in question has content or not (Url). The local variable "hasContent" is then determined of an if statement, if(this.AssetData.ManageLinkDisplayText)
    which in 2010 (14-hive) seems to be "true" regardless whether the Control is of type Image or Hyperlink. Further the code checks for AssetText (Alternate Text) which on an Image may be left empty.
    In 2013 (15-hive) however, this if statement has been changed to, if(this.SelectorType==ConstLinkSelectorType), which clearly states "Image" or "Link" depending on the type of control.
    I don't know if this is the cause of the problem in 2013, but in 2010 it seems to be exactly that.
    Pending a solution from Microsoft, we have modified SelectorControls.js to overcome this issue until the customer decides to do a Visual Upgrade to 2013.
    This is by all means not a supported nor a a permanent solution to the problem, as future Hotfixes, Service Pack etc. may "reset" our fix.
    Below is a copy of the working solution:
    function ASO_UpdateButtonsAndPanels()
    {ULSuBa:;
    var hasContent=!!this.AssetData.AssetUrl;
    //SharePoint 2010: ManageLinkDisplayText is always "True"
    //var hasContent=!!this.AssetData.AssetUrl;
    //if(this.AssetData.ManageLinkDisplayText)
    //hasContent=hasContent && !!this.AssetData.AssetText;
    //SharePoint 2013
    //var a=!!this.AssetData.AssetUrl;
    //if(this.SelectorType==ConstLinkSelectorType) a = a && !!this.AssetData.AssetText;
    //Fix for preventing existing selected image to disappear when saving page and/or editing a page with existing image.
    if(this.SelectorType!=ConstImageSelectorType)
    if(this.AssetData.ManageLinkDisplayText)
    hasContent=hasContent && !!this.AssetData.AssetText;
    if( hasContent )
    if (this.ClearAssetButton !=null)
    this.ClearAssetButton.EnableButton();
    this.GetAssetSelectedPanel().style.display="inline";
    this.GetEmptyPanel().style.display="none";
    else
    if (this.ClearAssetButton !=null)
    this.ClearAssetButton.DisableButton();
    this.GetAssetSelectedPanel().style.display="none";
    this.GetEmptyPanel().style.display="inline";
    I hope this helps anyone else struggling with the same problem.
    Thanks!
    Øyvind

  • Cross References Not Visible in Panel

    Hi all,
    I have been enjoying the Cross References functionality in Indesign CS6 to use dynamic text that changes....until recently.
    When i first started using them, the Cross References (CR) would be listed in the Hyperlinks/CR panel.
    I can create a destination, create a hyperlink to that destination, change what it shows (I am using Paragraph Number) and it works as it should.
    The problem i am having is that the CRs are not visible in the Cross Reference panel (the hyperlinks too for that matter)
    This means i cant modify my cross references.
    Does anyone know why they wouldnt show in the panel? Or is there any other way to see them?
    I need to fix this. I have tried resetting the preferences as i found in other posts, but that didnt help

    SOLVED!
    The problem appeared to be with my Workspace profile. I changed from my personalised profile to "Interactive for PDF" ( which has the Hyperlinks panel) and it worked. All the Hyperlinks and cross-references show.
    I personalised my workspace again with the panels i require and then saved a new workspace with the same name. All works fine after saving a new profile. I am going to take a backup of the workspace file so i can restore it easily if it happens again.

  • Content of second level TAB's not visible

    Hi All,
    I have designed a page have nested TAB's. When we click to on any first level tab, then the contents on the first second level tab is not visible. Neither there a Hyperlink to the title of that tab. How can the contents be made visible.
    I am using oracle portal version 3.0.6.6.5
    thanks

    Hi,
    unfortunately the behaviour got even worse in 3089. The behaviour Girish is describing is still there in 307. By the way, the content can be made visible by click the second subtab and then clicking the first subtab again (nice workaround huh..) Another way is to add a subtab and display it as the first subtab and give it a label like 'Make your choice..'
    So I was anxiously waiting for 3089 because I too was told everthing would be fixed but to my astonishment in 3089 (upgraded and fresh install) the subtabs (displayed as a page portlet that is) do not work at all!!!!!!!!! Got TAR 1542074 logged for this. The only thing at this moment which gives an acceptable appearance is creating subtabs on the page itself (so without a subpage displayed as a portlet) and assign active/inactive images to the tabs. But this way you are spending more time working with Paintshop than with Portal. Please tell me that I am wrong about this (I hope I am...), but otherwise this really goes beyond my bug/new product tolerance level.
    Tony

  • External hard drive not visible in disk utility or finder

    Hi all,
    I have had a good look through previous discussions and I can't seem to find an issue relevant to mine.
    My external hard drive has 2 partitions (1 time machine back up, 1 general hard drive). The issue is that the HD is running when it is plugged in however it is not visible in either disk utility or finder.
    I am running OS X 10.10 (Yosemite) on a 2010 MacBook Pro. I also have parallels desktop running windows 7. When I boot windows and plug in the HD I usually get the option to mount the HD to either OS X or Windows. With this issue the option window appears for a split second (not enough time to select either) and then disappears. It seems that the HD may be ejecting itself as soon as it is registered by the computer. I have tried using a different power cable for the HD and also a different usb cable, this doesn't help.
    The external HD is a Samsung D3 Station, which i have had for 6 months now and never had an issue with.
    Any help is appreciated
    Thanks,
    Bruce

    An update for anyone who can help me:
    I have tried the external hard drive in other computers (mac and windows), each time I get the same problem above.
    I have removed the HD from the enclosure and purchased a docking station for it (3.5" SATA). When I plug it in to the laptop it disconnects itself straight away before it is visible. With the windows computers it installs the drivers and says that the device is ready to use, then disconnects before it shows up.
    As the HD is not visible there is no option to re-format or anything.
    This is very frustrating as I was using the HD with no issues and it randomly disconnected and I have not been able to access since.
    Thanks in advance for any help.
    Bruce

  • Hi - I am looking for the Adobe Illustrator 2014 1.2 (or .0.2) bugfix update for Mac - and it is not visible in the Adobe Creative Cloud Packager (Mac version). The only update visible is Illustrator CC 2014.1  - which is what introduced the bugs.

    Hi - I am looking for the Adobe Illustrator 2014 1.2 (or .0.2) bugfix update for Mac - and it is not visible in the Adobe Creative Cloud Packager (Mac version). The only update visible is Illustrator CC 2014.1  - which is what introduced the bugs.
    The only thing that I can think of that might be causing the issues that I have a Mac Mini on Mavericks.
    Dave

    Hi
    I have discovered that my question above is a non-question. A user triggered by looking at the below article about Illustrator 2014 cc 17.0.2
    http://helpx.adobe.com/illustrator/release-note/illustrator-17-0-2-release-notes.html 
    He had recently upgraded from wht we now know is 18.0 to 18.1 which is the latest version. He read the above artic
    le and supposed that it was a bug fix release for his version - because the v17 ov18 number is not often displayed. It is usually just 2014 CC.
    I have asked him to post a bug report about Adobe Illustrator CC 2014.1
    Dave

  • IDOC not visible in IR but metadata successfully imported

    Hi,
    I have this wiered issue.
    I want to import IDOC WPUSKR01 (cashier productivity) from BI.
    But when I connect to BI system from IR to import Idoc structure, this IDOC is not visible.
    But I can manually import the metadata from BI in idx2.
    Now how to import this in IR?
    I have imported other Idocs (like WPUBON) before and did the scenario successfully for BI.
    Regards,
    Anirudh Vyas.

    Hi,
    In BI Tcode we82 I have manually added the entries for WPUKSR01. Now Idoc is visible when importing in IR.
    I have checked all the segments in we31, they are all released.
    But it gives error:
    Error: IDoc type WPUKSR01 contains errors (unable to read segments)
    Then, I checked in R/3, there also WPUKSR01 was not there in we82. I manually added there and I was successfully able to import it in IR.
    But the same thing is failing in BI. I have SAPALL permissions in all the systems.
    Can I use Idoc imported from R/3 in scenario for BI?
    regards,
    Anirudh.

  • How can I add a device to my library? My e-reader is registered but not visible.

    Hello,
    I use a Tolino Shine and can download E-Books via WLAN directly to it. I can also download the books to my netbook. However, when I plug the Tolino into my netbook it is not visible in the Adobe library and I cannot move books from the library to the Tolino.
    I tried to reset the Tolino to the manufacturer settings. This did not improve the situation.
    Any suggestions?
    Thanks a lot!

    http://www.apple.com/icloud/find-my-iphone.html
    any chance of it working on non-apple phones?
    No, it requires the operating system iOS, only available on Apple Devices.

  • Reporting Flag is not visible in the manage screen

    Hi BI Experts, Good morning.
    We load the inventory data daily in the night time which is delta load.
    5 days back, we got 0 records and the request is in red.Then i rerun the infopackage manually and got the total records in to the cube.
    From that day onwards its running successfully.
    Yesterday i deleted the bad request from infocube.
    But the Reporting flag is not visible.
    Today i didnot get the records.
    Please can anyone tell me the process.
    Thanks in advance.
    Regards
    Anjali

    Hi Nagesh,
    Still i am not getting reporting flag.
    I tried what did u say.
    And today i did not get the records. Infopackages didnot run. It shows in red.
    I tried to run it manually but it gives error.
    The error message is:
    Short text
        An exception occurred that was not caught.
    What happened?
        The exception 'CX_RSR_X_MESSAGE' was raised, but it was not caught anywhere
         along
        the call hierarchy.
        Since exceptions represent error situations and this error was not
        adequately responded to, the running ABAP program 'SAPLRRMS' has to be
        terminated.
    Please give me the reply.
    Thanks in advance
    Regards
    Anjali

  • Drop down boxes do not show up. My tabs are not visible. I could barely see the box to type in this question. Something is off. I deleted and reinstalled program it is still just floating words. I work on a Mac with ox 10.6.8

    The browser boxes, tabs, and links do not show up with the needed outlines, colors, and shapes. This box I am typing in was barely visible. Above this box is a set of two verticle parallel bars. When I moused over it, I saw it was for inserting a link, but if I had not been curious I would not have known what those lines were for. When I look at this page on PC I have a colored blue backdrop. It is not visible on the Mac. The search box does not have the image of the magnifying class and the arrow does not show up where it should be. The words Post Question just appear below the statement we have made some educated guesses about your browser. I thought maybe it had been a theme that was applied, but I do not see how it could have come on when I trashed the old version of the firefox.

    A;though the CSS is very well documented, there are those that ignore those signs. Look at the following
    /* Menu item containers, position children relative to this container and are a fixed width */
    ul.MenuBarHorizontal li
        margin: 0;
        padding: 0;
        list-style-type: none;
        font-size: 100%;
        position: relative;
        text-align: left;
        cursor: pointer;
        width: auto;
        float: left;
    The rest have been given a width of 15em, so this value may be a good start.
    DESIGN INFORMATION: describes color scheme, borders, fonts
    /* Submenu containers have borders on all sides */
    ul.MenuBarHorizontal ul
        border: 1px solid #CCC;
       width: auto;
        background-attachment: fixed;
    Just keep the border property and remove the other two.
    BROWSER HACKS: the hacks below should not be changed unless you are an expert
    /* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
    ul.MenuBarHorizontal iframe
        position: absolute;
        z-index: 1010;
    /* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
    @media screen, projection
    ul.MenuBarHorizontal li.MenuBarItemIE
              display: inline;
              f\loat: left;
              background: #FFF;
    The following is the original for the above
    BROWSER HACKS: the hacks below should not be changed unless you are an expert
    /* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
    ul.MenuBarHorizontal iframe
        position: absolute;
        z-index: 1010;
        filter:alpha(opacity:0.1);
    /* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
    @media screen, projection
        ul.MenuBarHorizontal li.MenuBarItemIE
            display: inline;
            f\loat: left;
            background: #FFF;
    Cheers,
    Gramps

  • Data loaded in Infocube is not visible in the Reporting

    Hi all,
    In the info cube, the data is not visible for reporting, How can i make it available for reporting,
    When i select the Manage option from the context menu of the cube and select the Requests Tab, i get a pop up message that tells
    " There is an inconsistency between the load status of the data and the option of reporting on this data.
    There is data in the InfoCube/ODS object that is OK from a quality point of view, but is not yet displayed in reporting.
    The problem, for example, is to do with request 0000018049, number REQU_F4ZBFRMDGBULE9WCUN3R5UX5X."
    How do i find out the inconsistancies?
    PS: All the requesta are delta upload
    There is no aggregates for this cube.
    Thanks n regards
    Girikumar

    Hi Girikumar
    Use the RSRV transaction and select All Elementary Tests  in the dropdown ->Transaction data  , select the Consistency of the Time Dimension for an InfoCube  and select your cube and Execute the button ..if any error are there it will display the inconsistency ..Repair the Inconsistency with Correct Button..
    Check the other test also ..
    Hope the above helps you..\
    Bye
    Shu Moh..

  • I updated win7 and now I cant see ff. I have reinstalled it 5 times now. It shows it is running in task manager but it is not visible on the desk top.

    I installed win7 ultimate and then ff. ff worked fine until I installed win7 service pack 1 and all the other updates it recommended. I click to open ff and nothing happens. I look in task manager and it shows it is running. It is not visible on the screen or in the task bar. I have reinstalled a fresh download of it 5 times. I even tried the beta version but still the same problem. I can use explorer and chrome ok but not ff.

    The "System Tray" is located at the very bottom right of your screen and is a list of most/all running applications that will show in this list.
    For your SysFader issue, this "may" be the problem:
    1 Find the "My Computer" desktop icon and right-click it. A pull-down menu will appear. Select "Properties."
    2 Click on the "Advanced" tab. This will load a new page of options.
    3 Select the "Visual Effects" tab at the top of the window and deselect "Animate Windows when minimizing and maximizing," "Fade or slide menus into view," "Fade or slide Tool Tips into view" and "Fade out Menu items after checking."
    4 Click "OK." This will remove most if not all of the Sysfader effects, at the same time correcting related errors that used to come up during opening a new file or program.

  • After activation of atandard business content key figure is not visible

    Hi all,
    I am trying to implement inventory management scnerio in BW3.5 using screen shot PDF , for this i activate standard business content ( cube : 0IC_c03 ) and activate all its related object . one of my key figure 0RECVS_VAL  I want to change its parameter for this when I search this infoobject in Infoobject tree this is not visible
    while its present in cube 0IC_c03 ,can anybody tell me for changing in this key figure what can i do???
    Thanks and regards
    Ankit modi

    Hi
    Again it install from BI content and do the changes what ever u want by RSD1
    Cheers
    Edited by: SDN USER on Jun 26, 2008 12:04 PM

Maybe you are looking for