Issue with Refresh link avaiable in standard UWL iView

Hi All,
We have added the custom column "Comment" in the Tasks tab of UWL iView.In the Tasks tab we can view some rows in the table.When we click on one row it is opening the ABAP ADOBe forms.In this Form when we change the text for the field Comment and click on save button in adobe form then we can see the new text in SWI1 tcode for the work item id. But in portal the new text is not appearing in the custom comment column.If we click on Refresh link (this link is the standard link available in UWL iview) also the new text is not appearing.
After clearing UWL Cashe from System Admin role after that we can able to see the new text in the comment column.
If in Adobe form after changing the text we click on Check and Send button then on portal UWL automatically new text is appearing in commnet column.In this case no UWL cacshe release is required.
Please find the attched document
Can you please provide me the inputs why refersh link is not working to show the updated /modifiedd text in the comment column?
Thanks & Regards,
Susmita

Hi Rajesh ,
you can implement using java script also
check below thread
Implementing iView auto-refresh in JSP DynPages
Koti Reddy

Similar Messages

  • Issue with Report Links in OBIEE

    I'm facing a issue with report links(modify,printer friendly,refresh etc) in obiee
    The reports which are set as "Display Results-->Embedded in Section" for those reports if I put report links(modify,printer friendly,refresh etc),the links do not show up.In the palce of link I can see "-"(minus sign) appearing.
    If I change the report to "Display Results--->Show as link in seperate window" the lniks show up fine.
    Any idea why this is happening?
    Your suggestions are welcome.
    Please help
    Regards.
    Edited by: 810008 on Apr 14, 2011 1:39 AM

    Edit Dashboard -> Report Properties -> Report Links... (directly under Display Results) -> Customize
    M.

  • Issue with Dynamic Link with Premiere CC and After Effects

    I'm having a strange and annoying issue with Dynamic linked clips in Premiere CC:
    When I render or export my timeline the progress will stall when it hits a dynamic linked clip.  It will stay stalled until I click the After Effects application and make it the active window.  Once that happens the render/export resumes at normal speed. 
    This is annoying as I can't start a render and walk away or work on different windows, I have to babysit all the renders to make sure they go through.
    Has anybody experienced this and know of any solutions? 
    I'm running the latest version of Premiere (7.2.1) and After Effects 12.2.0.52 on Mavericks 10.9.1 with a GTX 770 Video Card.

    Does it still pause if AE is closed completely? I often experience slower AME renders from Premiere over dynamic link material when AE is open. Closing AE speeds things up. Go figure.

  • Bpm UWL iview , it is possile to use BPM UWL iview instead of standard UWL iview?

    Hi
    It is possible to use BPM UWL iview instead of standard UWL iview?
    if yes then how?
    thanks in advance

    Hi Radhesh,
    If you need to get some BPM skills then try the BPM space itself or better yet the Process Orchestration space has the most recent materials by checking out the materials in  http://scn.sap.com/community/process-orchestration
    Apart from that the BPM forum can help you, but it's always best to post one question at a time.
    Perhaps you could be clearer about what you are looking for?
    Is it an approach to the process?
    Is it how to call the backend system?
    Is it how to work with the user interfaces?
    Think about it carefully and then start a new discussion for each issue.
    Rgds,
    Jocelyn

  • Issue with refresh of task flow in dynamic region

    Hi All,
    I am using Jdeveloper version 11.1.1.6. In my fusion application I am facing an issue with the task flow refresh in the dynamic region. In my application, I have one task flow in which the side navigation command links are there and on the right side it has a dynamic region which is used to display the respective task flows on click of navigation links. Now two of the links actually call the same task flow in dynamic region but for different purpose. One for creating a record and another one for modifying the record. The default activity of that task flow has a page fragment that has couple of fields. One a drop down and another one a text field for searching the accounts against which the record is to be created or modified. On click of the navigation link, I set the task flow id to be displayed and refresh the dynamic region. Now the issue is with those two links which shows the same task flow. Let's say  I searched for a record by putting some value in input text and then went on to modify flow using the modify navigation link. Then the value that I entered in search input text in the create flow stays and does not go away. I found out the cause for the issue and this is happening because of the immediate = true on the navigation command links. Now I cannot remove that because of the obvious reason that then it will start throwing exceptions for the mandatory fields when I am in middle of any flow. Is there any way to achieve it.
    Please help as this is quite urgent. I can also upload the sample application if anyone needs it.
    Regards
    Ajay

    try to put RefreshCondition in the pageDef file for that particular task Flow and try to make that condition to true only when you switch between edit or add. While switching, make sure that the mapped bean properties should also point to respective values i.e. either empty for new or holds some value for edit.
    So, when ever the above condition returns true, task flow gets refreshes and it will holds only the current values not the old values.
    i hope this will resolve your issue.

  • Focus issue with CardLayout (Java 2 SDK, Standard Edition 1.4.0_01)

    I am having an issue with focus and CardLayout with Java 2 SDK, Standard Edition 1.4.0_01. I have created a small sample application to illustrate my problem. In general, I am trying to create a "Wizard" that the user will enter information and then press a "Next" button to proceed to the next step.
    When the first card is displayed, the focus is on the first text field as expected.
    When I go to the next card by clicking "Next", the focus is not on the text field that has requested it (through the requestFocusInWindow method). The focus is on the "Cancel" button, which is the next component to receive focus after the "Next" button on that panel. I do notice that if I use my mouse to bring focus to the window the text field will gain focus.
    Similarly, when I proceed to the last card, the focus is not on the "Finish" button until the mouse moves over the window.
    Is there something I am doing wrong or is there a bug with focus and CardLayout?
    One other problem I have noticed is that the buttons no longer respond to the "Enter" key press and instead respond to the space bar. Any suggestions as to why this is the case?
    Thanks,
    S.L.
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class CardWindow extends JFrame implements ActionListener {
    public CardWindow() {       
    setTitle("Focus Problems with CardLayout");
    setDefaultCloseOperation(EXIT_ON_CLOSE);
    cards = new JPanel();
    cardLayout = new CardLayout();
    cards.setLayout(cardLayout);
    cards.add(createFirstNamePanel(), "FirstNamePanel");
    cards.add(createLastNamePanel(), "LastNamePanel");
    cards.add(createFullNamePanel(), "FullNamePanel");
    getContentPane().add(cards,BorderLayout.CENTER);
    getContentPane().add(createButtonPanel(), BorderLayout.SOUTH);
    resetButtonPanel();
    pack();
    private JPanel createFirstNamePanel() {
    JPanel panel = new JPanel();
    JLabel lblDescriptionProjectName = new JLabel("Please enter your first name:");
    txtFirstName = new JTextField(20);
    panel.add(lblDescriptionProjectName);
    panel.add(txtFirstName);
    return panel;
    private JPanel createLastNamePanel() {
    JPanel panel = new JPanel();
    JLabel lblDescriptionProjectName = new JLabel("Please enter your last name:");
    txtLastName = new JTextField(20);
    panel.add(lblDescriptionProjectName);
    panel.add(txtLastName);
    return panel;
    private JPanel createFullNamePanel(){
    JPanel panel = new JPanel();
    lblFullName = new JLabel();
    resetTextOnFullNamePanel();
    panel.add(lblFullName);
    return panel;
    private JPanel createButtonPanel() {
    buttonPanel = new JPanel();
    btnPrevious = new JButton("< " + "Back");
    btnPrevious.setMnemonic('B');
    btnPrevious.addActionListener(this);
    btnNext = new JButton("Next" + " >");
    btnNext.setMnemonic('N');
    btnNext.addActionListener(this);
    btnCancel = new JButton("Cancel");
    btnCancel.setMnemonic('C');
    btnCancel.addActionListener(this);
    btnFinish = new JButton("Finish");
    btnFinish.setMnemonic('F');
    btnFinish.addActionListener(this);
    buttonPanel.add(btnPrevious);
    buttonPanel.add(btnNext);
    buttonPanel.add(btnCancel);
    buttonPanel.add(btnFinish);
    return buttonPanel;
    private void resetTextOnFullNamePanel(){
    lblFullName.setText("Your name is: " + getFirstName() + " " + getLastName());
    private void resetButtonPanel(){
    Component c[] = buttonPanel.getComponents();
    for(int i = 0; i < c.length; i++){
    c.setVisible(false);
    switch(iWizardStep){
    case FIRSTNAMEPANEL:
    btnPrevious.setVisible(true);
    btnNext.setVisible(true);
    btnCancel.setVisible(true);
    break;
    case LASTNAMEPANEL:
    btnPrevious.setVisible(true);
    btnNext.setVisible(true);
    btnCancel.setVisible(true);
    break;
    case FULLNAMEPANEL:
    btnFinish.setVisible(true);
    break;
    buttonPanel.validate();
    public void actionPerformed(ActionEvent e) {
    Object object = e.getSource();
    if (object == btnNext) {           
    btnNextPressed();
    } else if (object == btnPrevious) {           
    btnPreviousPressed();
    } else if (object == btnFinish) {
    System.exit(0);
    } else if (object == btnCancel) {
    System.exit(0);
    private void btnNextPressed() {       
    switch (iWizardStep) {
    case FIRSTNAMEPANEL:
    setFirstName(txtFirstName.getText());
    break;
    case LASTNAMEPANEL:
    setLastName(txtLastName.getText());
    resetTextOnFullNamePanel();
    break;
    iWizardStep++;
    resetButtonPanel();
    this.cardLayout.next(this.cards);
    switch (iWizardStep) {             
    case LASTNAMEPANEL:
    txtLastName.requestFocusInWindow();
    break;
    case FULLNAMEPANEL:
    btnFinish.requestFocusInWindow();
    break;
    private void btnPreviousPressed() {
    iWizardStep--;
    resetButtonPanel();
    this.cardLayout.previous(this.cards);
    public void setFirstName(String value) {
    firstName = value;
    public String getFirstName() {
    return firstName;
    public void setLastName(String value) {
    lastName = value;
    public String getLastName() {
    return lastName;
    public static void main (String[] args) {
    CardWindow c = new CardWindow();
    c.show();
    private CardLayout cardLayout;
    private JPanel cards, buttonPanel;
    private JTextField txtLastName, txtFirstName;
    private JLabel lblFullName;
    private JButton btnNext, btnPrevious, btnCancel, btnFinish;
    private String firstName = "";
    private String lastName = "";
    private int iWizardStep = 0;
    private static final int FIRSTNAMEPANEL = 0;
    private static final int LASTNAMEPANEL = 1;
    private static final int FULLNAMEPANEL = 2;

    Manfred,
    Thanks for your reply. I tried requestFocus() and it gives the same results. Also Sun's 1.4.0 API (http://java.sun.com/j2se/1.4/docs/api/) mentions the following with respect to the requestFocus() method in the JComponent class:
    Because the focus behavior of this method is platform-dependent, developers are strongly encouraged to use requestFocusInWindow when possible.
    That is why I used requestFocusInWindow.
    S.L.

  • Issue with refresh of an input schedule

    Hi Experts,
    We are facing an issue with the refresh of an input schedule.
    We have a custom refresh via macro whereby we first refresh 3 reports in other tabs and then refresh the main schedule.
    The problem is for a particular test id we need to click on refresh twice but for developer id we refresh it only once and see the value.
    Can you help what could be the cause of it.
    In the main report we have all dimensions in either row or column axis and we are also using Dimension override for 3 dimensions.
    Let me know if any other info is required.
    Thanks
    Raman.

    Hello,
    Could you please specify the following information:
    1) What do you mean by "custom refresh"? is this feature developed by the custom development team?
    2) What are the level patch and the version of the product?
    Regards,
    Inès

  • 10.1.2.3.0 CP2 Viewer Issue with Managed Links

    With this patch workbooks with managed links that were operational passing a blank (optional) parameter now pass 'NULL' as the value. This is bug 7422080. We are in the process of downloading CP5, which is suppose to resolve this issue. This will take time. Can anyone think of a possible workaround? The workaround explained in the bug does not work, which was to edit the parameter, add a default value, then edit it again, remove the default value and save the workbook. I have also tried ' ' as a default value but it just passes ' '. It would be nice to have a workaround until we can install, test and upgrade to CP5.
    Thanks,
    Jerre

    Michael,
    Below is the file change. When we set it to 'true' Viewer performed correctly.
    Jerre
    =====
    2. Then a new configuration parameter "passNullParameterAsNull" needs to be set in configuration.xml under <viewer section with default value as false and which is an optional one. Usage :
    <viewer queryRefreshPeriod="3000" queryRequestTimeout="1000" longRequestRefreshPeriod="6000" longRequestTimeout="10000" userDefinedConnections="true" passNullParameterAsNull="true" logLevel="debug" laf="dc_blaf" pageNavigation="true" switchWorksheetBehavior="prompt" defaultLocale="en" disableBrowserCaching="false" enableAppsSSOConnection="false">
    When passNullParameterAsNull="false" , that means, when null is passed as parameter from one sheet to another during drill to link, the value will be converted in between to the value which is set as "ShowNullValueAs" in second sheet. eg: if ShowNullValueAs = "" in second sheet. Null value passed from first sheet will reach as value "" in second sheet. If passNullParameterAsNull="true", then Null value will always be passed as Null to second sheet irrespective of the value of "ShowNullValueAs" in second sheet.
    =====

  • Issue with the Receiving Transaction Processor Standard Program

    We are facing issue in the Receiving Transaction Processor Standard Program.
    The error description is as below:
    RVTII-030: Subroutine rvtiicreate() returned error
    Cause: Subroutine rvtiicreate() returned an internal error.
    Action: Note this error number and the actions you are trying to perform. Contact your system administrator.
    RVTII-077: ORA-01476: divisor is equal to zero
    Cause: A SQL error has occurred in RVTII. The SQL error is &LSQL_ERR.
    if any once faced this issue earlier and any solution, Please let us know.
    Regards,
    Krishna

    Please see if these docs help.
    RMA Receipt Errors With RVTII:077 OE COGS API Returned Error Warehouse NULL [ID 301767.1]
    RCVRCERC: RVTII-077: ORA-0146: divisor is equal to zero [ID 1287907.1]
    Cost Of Goods Sold Account Generation Failed With Error [ID 406035.1]
    RMA Transaction Issues (Troubleshooting) [ID 311208.1]
    Thanks,
    Hussein

  • Issues with D-Link - Xtreme N Wireless-N

    I recently purchased a Time Capsule with full intentions of supporting both my Macs as well as Windows machines (for use with Wireless N)
    While the Macs are fine I am having problems connecting with D-Link - Xtreme N Wireless-N
    These cards connect fine to every other Wireless-N product except the Time Capsule.
    I can connect the D-Link - Xtreme N Wireless-N to the Time Capsule but only at 54Mbps which tells me it is using 802.11g not N. I have updated the Time Capsule settings to make the 5GHz band visible on its own SSID which of course the D-Link - Xtreme N Wireless-N does not see.
    Any help??

    nothing???

  • Pdf issue with internal links in Safari

    Hello,
    I am creating a web site that has 80 or so pdf's available to download. They each contain a series of 20 or so speeches. To make navigation easier I have created a new page in Open Office that is an index to each pdf, with it's page number as an internal link to the correct page. This is what I did:
    1. Open each pdf in Preview and inserted a blank page (page 2), and saved the pdf. This gives me the correct page numbering for when I put in the real index.
    2. Noting the start of each speech  page number, I created an idex page in Open Office.
    3. I saved the index as a pdf.
    4. I opened the origional pdf and the new pdf index.
    5. I deleted the blank page and then dragged the new index page across and made sure it was the same page position - page 2.
    6. I then used the link too in Previewl to drag a link box over the page number in the index and then chose the correct page number to set as the target via Previews inspector.
    7. Saved the pdf and opened and tested - everything worked fine.
    The problem comes when I upload the pdfs and test the site with safari. When I open the pdf in the default safari window, the links are all out by one page i.e. if i click on page number 30 from the index, I go to the next page - page 31. If I hover the mouse at the bottom of the page and bring up the open in Preview icon and do so, the index links to the pages work fine???? I have tried with Explorer under bootcamp and the default window that opens for the pdf shows the same issue - it's out by one page.
    Thanks in advance
    nige.

    Hi...
    Try this...
    Go to   /Library/Internet Plug-Ins
    Move the Adobe PDF Browser plugin (or just PDF Browser plugin) to the Trash.
    See if that makes a difference.

  • Issue with PDF links and opened Adobe files

    I have tested and IE 8 opens correct links inside PDF's.
    When I open link in Mozilla or Chrome it will not work.
    Is this related to Adobe Plugin which is installed inside Add-ons?
    Strange is that link inside PDF shows the following link:resource://pdf.js/web/
    After checking support issues there was quoted in the past:
    The current Firefox 27 beta release still doesn't show the links properly using version 0.8.641, but the current Aurora 28.0a2 build does show the links to the Appendices properly using version 0.8.759.
    So that would mean that when Firefox 28 gets released in March it will work for users with this Firefox version.

    This is likely a problem with the way those links are coded in the PDF file, so the file may have to be saved again using different settings to make it work with PDF Viewers other than the Adobe Reader.

  • Issue with Anchor Links in Composition Widget

    Hoping for some help regarding anchor links. I was successful in nesting a Slideshow widget within a Composition widget. The Composition widget contains six panels, each of which contains one Slideshow. Thankfully, that all works as it’s supposed to.
    What I want is to direct users (from another page on my site) to a specific Slideshow within the Composition widget (i.e., for example, to the slideshow on the third panel of the Composition). The anchor link does work in that it directs users to the page with the Slideshow/Composition combo. However, it displays the first panel in the Composition and not the third. I’ve tried inserting the anchor link on top of the actual picture in the Slideshow, and also within one of its text labels. Still the same result.
    My question … can an anchor link be used to direct someone to a specific panel within the Composition widget? Perhaps I can export my site to HTML, open the .html file in Dreamweaver and … I don’t know, move or rename the anchor somehow? Is anyone else having this issue?

    This is a bit late in the day looking at the date of your post, but I asked the same question recently and Brad Lawryk answered (thanks Brad - saved me hours of fiddling!):
    Unfortunately the only way to do this now would be to save a copy of the page with the desired tab focused. Unfortunately this does cause duplicate content and is not SEO friendly though.

  • Z30 issues with Blackberry Link

    I recently upgraded from a Z10 to a Z30. 
    Issue #1
    When I transferred all info from the Z10 to the Z30 using Blackberry Link it changed the name  of the new Z30 from the name that it came with to a name of my Z10. Is this normal?  Can I change it back to the name it had originally without confusing Blackberry Link? Does it even matter?
    Issue #2
    When I connected my Z10 to my computer and opened Blackberry Link there was a dropdown menu along the botton of the frame and one of the choices was "back up". Now with the Z30 that dropdown menu menu box is not there but along the left side that says that my Z30 is connected and one of the menu choices is "backup and restore". Is this the same thing?
    I hope that I have made my concerns clear enough,
    Pat
    Canuck by birth 'berry by choice

    I do not know the interface of BB Link but you might find a answer here:
    http://docs.blackberry.com/en/smartphone_users/sub​categories/?userType=1&category=BlackBerry+Link
    Or wait till someone who knows replys.

  • Pagination issue with Command Link

    Hi
    I have a HtmlDatatable in which I am I am using pagination. Pagination is working fine the issue is one colum has been used with commnadlink.
    Whne I use the pagination(Say when I click next or last) i am not getting the hyper link in that column.
    Any idea?
    Thanks in advance
    Best Regards
    Sathish

    Hi,
    hard to say. Looks as if the browser blocks the command link when the note window launches as modal dialogs would do.  There are two reasons for this IMO
    1. The hover code also executes when you want to click the link, which means that you don#t get to executing your action. Work around is to detect whether the note window is open and if don't try and re-launch the note window
    2. If you use showPopupBehavior to launch the note window, then this actually kills all action listener methods (which then may be a second reason). So my suggestion is to try and launch the hover popup from JavaScript using an af:clientListener
       Sample code: Sameh Nassar: JavaScript With ADF Faces Samples
        the client listener should listen for the mouse over event.
    If none of this help and you have access to customer support, I suggest to create a test case and file a service request. My current guess though is that the reason for the behavior is in in your code (browsers tend to work differently in the way they execute JS events too).
    Frank

Maybe you are looking for

  • Blackmagic preview & built-in line out audio?

    Esteemed fellow editors, In Final Cut Pro, I can preview video on my NTSC monitor using my Blackmagic Intensity card, and preview audio using my Mac's built-in output or built-in line output. Does anyone know how to do this in Premiere? Thanks!

  • Cant access iTunes Store, Secure link to iTunes store failed

    Hi Im hoping someone out there can help me as ive been struggling with this for 3 solid days now and spent an hour on the phone to Apple support, cost me £16.00!! I have Windows 7 64bit operating system have done a fresh install, uninstalled all viru

  • Adding new Hub Transport server in existing environment

    Hi everyone, Currently we have 5 exchange servers 2010 : 2 CAS Servers (Virtual) 2 MB and Hub Transport servers (Physical) 1 Edge server in DMZ. (Virtual) Now I have added 2 more servers with MB and Hub Tranport Roles (VIRTUAL) and want to configure

  • Input won't work, Headphone jack's gone mono

    A little while back I was doing some home recording running direct into my Macbook. After doing a bass track I lost all direct input signal and ever since I can only hear the left side through the headphone jack. The bass player I was recording faile

  • MDM MDIS best practices!!!

    Hello Experts, I want know what is the best practices of MDIS when MDM connects/imports data from two different ECC instance, below is issue which we were facing in our project, MDM imports data from two ECC instance, we had maintained two inbound po