JSP links should link to the iView?

Dear Forummers,
Im a skilled JSP programmer designed to make an agenda PAR for a sap Portal.
I fixed this easily and it's showing, but now I ran into a problem im not familiar with:
The current month is showing, but when I hit next month it links to agenda.jsp?action=1 to indicate it has to add a month. This works on tomcat fine but here it gives an error: <i>iView not found: agenda.jsp</i>
Now i expected this to go wrong, but I really have no clue how to link to an iView or some alternative to get this to work.

Hi Hans,
i interprete the following: you created a jspdynpage component in you par project. because you are familar with jsp you decided to have an jspnative component. this i do not recommend, if you use any kind of actions in your component. for actions the dynpage approach gives you a smart framework for action handling. you can use html- buttons or links for your paging inside the calendar or use the htmlb calendar
Reference to jspdynpage / html:
http://help.sap.com/saphelp_nw2004s/helpdata/en/44/471ce3617b14bce10000000a155369/content.htm
Does this help you?
Greetings jens

Similar Messages

  • How to add Tooltip to the Iview name.

    hi all,
         I have to add tooltips to the iview name. When I bring the mouse over the iview
         name a message should display as the tooltip describing the purpose of the
         iview I am not able to found the tooltip option in the iview properties.
         Is there any coding involved for tooltips option or any other options available.
         Please guide me. Looking for the fast reply.
         Thanks in advance.
    Ponnusamy.P

    hi Deepti,
         When I gave the descripition, tool tip appears in the
         Content Admin -> Portal Content -> (Under the folder I have created the Iview).
         But the tool tips should appear in the iview when I display that iview to the end
         user.How to make that possible.
    Thanks
    Ponnusamy P

  • A link from my animation is locked inside the dimensions of the original animation.  the link should

    Thank you sincerly for any help in advance.
    A link from my animation is locked inside the dimensions of the original animation.  the link should go to new url but opens in i frame instead, scroll-able, within the dimensions of the beginning edge animation from which it linked.
    Here is the landing page edge asset and the link is the center pulsing sand grain:
    http://kkz321.businesscatalyst.com/index.html
    Here is the actions javascript file from the animation.  I'm not sure if it's the source. 
    "landing_hourglass_3_edgeActions.js"
    (function($,Edge,compId){var Composition=Edge.Composition,Symbol=Edge.Symbol;
    //Edge symbol: 'stage'
    (function(symbolName){Symbol.bindElementAction(compId,symbolName,"${_landing_sand_grain}", "click",function(sym,e){window.open("http://kkz321.businesscatalyst.com/welcome.html","_self");});
    //Edge binding end
    Symbol.bindElementAction(compId,symbolName,"document","compositionReady",function(sym,e){$ ("#Stage").css("margin","auto")});
    //Edge binding end
    })("stage");
    //Edge symbol end:'stage'
    })(jQuery,AdobeEdge,"EDGE-landing_hourglass_3");
    Here is snippet of CSS from main css page:
    #EdgeIDlanding_hourglass_3 {
              margin-right: auto;
              margin-bottom: auto;
              margin-top: 5%;
    Here is snippet of HTML from main START INDEX page:
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>Kinetik Artz  Work By Michael Schmidt</title>
    <link href="/Stylesheets/main.css" rel="stylesheet" type="text/css">
    </head>
    <body>
    <object id="EdgeIDlanding_hourglass_3" type="text/html" width="222" height="454" data-dw-widget="Edge" data="edgeanimate_assets/landing_hourglass_3/Assets/landing_hourglass_3.html">
    </object>
    </body>
    </html>
    Thank you very much for any help

    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>Kinetik Artz  Work By Michael Schmidt</title>
    <link href="/Stylesheets/main.css" rel="stylesheet" type="text/css">
    </head>
    <body>
    <object id="EdgeIDlanding_hourglass_3" type="text/html" width="222" height="454" data-dw-widget="Edge" data="edgeanimate_assets/landing_hourglass_3/Assets/landing_hourglass _3.html">
    </object>
    </body>
    </html>
    remove the width and height out of the html object ( width="222" height="454" )
    that would probably solve it
    or change it to the pages width and height

  • Tool Tip in the Iview Link

    Hi all,
    Is it possible to show a toop tip in the Iview Link ??
    Regards,

    Hi Marcelo,
    You will have to write your own detailed navigation for this. it's not delivered as standard portal functionality
    Refer to
    tooltip of a iview in detailed navigation
    Tooltip in detailed navigation
    Thanks
    Prashant

  • Mail   I inherited an iMac, OS X 20.6.8. The Mail system is corrupted.  I cannot close mail formats that opened to be written and sent.  I just get an unpleasant noise when I try to close these.  Also, I don't know what the outgoing mail link should be.

    RE: Mail  
    I inherited an iMac, OS X 10.6.8. The Mail system is corrupted.  I cannot close blank mail formats that opened to be written and sent.  I just get an unpleasant noise when I try to close these.  Also, I don't know what the outgoing mail link should be.
    Please help!
    M. Levine

    Quit Mail, Trash this file...
    Safe Boot , (holding Shift key down at bootup), use Disk Utility from there to Repair Permissions, test if things work OK in Safe Mode.
    Then move these files to the Desktop for now...
    /Users/YourUserName/Library/Preferences/com.apple.finder.plist
    /Users/YourUserName/Library/Preferences/com.apple.systempreferences.plist
    /Users/YourUserName/Library/Preferences/com.apple.desktop.plist
    /Users/YourUserName/Library/Preferences/com.apple.recentitems.plist
    /Users/YourUserName/Library/Preferences/com.apple.mail.plist
    Reboot & test.
    PS. Safe boot may stay on the gray radian for a long time, let it go, it's trying to repair the Hard Drive.

  • Jsp password to link to the next page

    I have written a jsp login function which allowed two differnet user to enter different username and password in order to enter the other page. After the user entered the correct username and password, i dont know how to put a link in jsp to let each user link to a different web page, can anyone help???
    <%@ page import="java.util.*"%>
    <html>
    <head><title>Login</title></head>
    <body>
    <%!
    protected Map users= new HashMap();
    public void jspInit(){
    //username and password
    users.put("fiona", "happy");
    users.put("henry", "leader");
    %>
    <%
    String username = request.getParameter("username");
    String password = request.getParameter("password");
    if (username != null)
    username= username.trim();
    if(password != null)
    password= password.trim();
    if (username != null && username.length() >0) {
    if (password != null && password.length() >0) {
    String pw = (String) users.get(username);
    if (pw != null){
    if(pw.equals (password)){
    String firstname = username;
    int i = username.indexOf (' ');
    if (i>0)
    firstname = username.substring (0, i);
    %>
    <h1> Login sucessful. </h1>
    <%
    } else { %>
    <h1> Loginfail. Sorry, incorrect password.</h1>
    <%
    } else { %>
    <h1>Login fail. Sorry, not a user. </h1>
    <%
    } else { %>
    <h1> Loginin fail. Sorry, no password. </h1>
    <%
    } else { %>
    <h1> Login fail. Sorry, no username. </h1>
    <%
    %>
    </body>
    </html>

    Link to another page with:
    response.sendRedirect("New.URL");
    E.g., "http://www.reason.com" for a completely different site, or perhaps "secondpage.jsp" for a page on the same site in the same directory.

  • Link should open a SAP R/3 screen

    Hi,
    Requesting for some valuable inputs.
    We have a par iview for position overview in MSS.This par iview will fetch data and place it in a table using the nav type and view id properties(there is no code in the par file that is fetching data into the table).
    Now, one of the columns in this table will have links and upon clicking the link, an R/3  transaction should get executed and display a report in a new page.
    How can this be achieved?
    Thanks,
    Maneesha

    Hi,
    No problem. Modify the par file and add a new column. This column will contain Hyperlink texts. The following steps tell you how to create this hyperlink dynamically for each row
    Portal config
    1. Create a SAP transaction iView for your transaction
    http://help.sap.com/saphelp_nw04/helpdata/en/88/266a3e54a2e946e10000000a114084/frameset.htm
    2. Get the URL of this transaction iView.
    You can preview the iView and use the URL in the browser or use the short URL
    http://help.sap.com/saphelp_nw70/helpdata/en/b3/7b8163404448e7aad7899c0b30313e/frameset.htm
    3. Find the parameter names to be passed dynamically with the URL
    Application Parameter in Transaction Iview
    Par file code change
    4. Generate the URL you got in step 2 along with the parameters you got in step3 and and assign values to the param in your par code. Assign this dynamically generated URL to the hyper link text in the new column.
    5.Thats it.
    Regards
    Srini

  • 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

  • Remove "Change Own Data" link from Who's Who iview

    I thought I could change it using Portal>ContentAdministrator.  I found the iview in the Browse window in Content Administrator and right click the object but I don't see and edit option.  Shouldn't I have an edit option and then be able to hide the link in an editable window?
    Thanks,
    jpcosa

    HI,
    You need to go to the Homepageframework in tran SPRO in ECC to do this. Go to tran spro > Personel Management > Employees self service  > Service specific setting > Addressbook> Whos Who > Maintain Setting . here deselect the changeown data settings. This should work.
    I think you are trying to do personalization on the iView to hide the link. You can create a new Iview and then personalize this. You are not seeing the Edit option because of a browser problem or u dont have the role in portal to do so.
    Srini

  • When I click on a link it moves to the top of the page

    I am new to this forum and fairly new to dreamweaver so I hope this isn't a silly question. I am designing a large number of web pages which will only be viewed on the C:\ drive and not posted on a server.
    I have inserted hyperlinks on the index page linking to other pages in the same folder. I am using a css sheet to define each of the links.
    Now to the problem. When I preview the index page in internet explorer and I click on a link the link works but the actual link itself moves to the top left corner of the index page.
    An example of the html code is:
    <a href="channel.html" title="Channel" id="Channel"
         Channel
         </a>
    The relevant css code is:
    #Channel:link {
         position: absolute
         left:372px;
         top::235px;
         width:100px;
         margin-bottom:0px;
         color:#FFFFFF
         font-weight:normal;
         font-size:12px;
         font-family:Arial, Helvetica, sans-serif;
    #Channel:hover {
         color:0000ee;
         font-weight:normal
         text-decoration:none;
    #Channel:visited {
         color:#551a8b;
         font-weight:normal;
    #Channel:active {
         color:0000ee;
         font-weight:normal;
         text-decoration:none;
    If anyone could explain what I am doing wrong I would be most grateful.

    Your whole presentational approach on that page is flawed.
    <body>
    <div id="BlueBorder"> </div>
    <div id="Div1"><img src="http://www.pjpdecorations.co.uk/images/WhiteBackground.png" width="864" height="647" /></div>
    <div id="Div2"><img src="http://www.pjpdecorations.co.uk/images/NavBar.png" width="828" height="72" /></div>
    <div id="Div8"><img src="http://www.pjpdecorations.co.uk/images/MainTextBox.png" width="430" height="340" /></div>
    <div id="Div4"><img src="http://www.pjpdecorations.co.uk/images/Indeximage1.png" width="150" height="150" /></div>
    <div id="Div5"><img src="http://www.pjpdecorations.co.uk/images/IndexImage2.png" width="150" height="150" /></div>
    <div id="Div6"><img src="http://www.pjpdecorations.co.uk/images/IndexImage3.png" width="150" height="150" /></div>
    <div id="Div10"><img src="http://www.pjpdecorations.co.uk/images/IndexImage4.png" width="340" height="70" /></div>
    <div id="Div11"><img src="http://www.pjpdecorations.co.uk/images/IndexImage5.png" width="230" height="70" /></div>
    <div id="Div9"><img src="http://www.pjpdecorations.co.uk/images/CreatePresBut.png" width="145" height="40" /></div>
    <a href="#" title="Home" id="HomeLink"> Home </a> <a href="#matthew_clark_intro.html" title="Matthew Clark" id="MatthewClark"> Matthew Clark </a> <a href="#" title="Channel" id="Channel"> Channel </a> <a href="#" id="Product"> Product </a> <a href="#" id="AddedValue"> Added Value </a> <a href="#" id="Templates"> Templates </a> <a href="#" id="Reference"> Reference </a>
    You have the body tag, followed by oodles of absolutely positioned elements, followed by naked links with a spurious </p> tag at the end.  Not only are you not allowed to have naked links on the page (they must be contained in something like a <p>, or a <td>, or a <li>, etc.) but since the content above the links is entirely composed of absolutely positioned elements (which are removed from the normal flow), the links are exactly where they should be - at the top of the page.  There is nothing in your layout that would place them anywhere else.

  • Any ideas for the following problem: when mailing links with firefox as the default, multiple files appear and I can't close them or successfully mail the link?

    I may have picked up a virus. I use an iMacBook Air. When I attempt to send links via my default (Firefox) email program, Firefox immediately opens dozens of files that I'm not able to close (when I attempt to open or close these, they scroll horizontally and won't stop). I am unable to do anything except quit Firefox. The mail naturally never gets sent through Firefox; I'm not a particularly adept computer user, so I don't know what to do about this.

    This link should help you resolve this - https://support.mozilla.com/kb/Firefox+keeps+opening+many+tabs+or+windows
    You will probably have the mailto protocol set to "use Firefox", the above link show how to fix that.

  • I had to reset my Apple password and now my iTunes and iCloud passwords no longer work. How do I get them linked again and under the same password. I've tried my new password on each login screen and it isn't accepted.

    I had to reset my Apple password and now my iTunes and iCloud passwords no longer work. How do I get them linked again and under the same password. I've tried my new password on each login screen and it isn't accepted.

    Hi skippy2012trev,
    Welcome to the Apple Support Communities!
    I understand that you updated your Apple Id and password but now you are being prompted for the old information in iCloud. You are on the right track by changing the Apple ID back to the previous email address temporarily so that you can sign out. You should not need to verify the email address. After you edit the Apple ID back to the old email address and then sign out of iCloud on your iPhone, edit the Apple ID back to the address you would currently like to use. There is no need to change the password again, only the email address, unless you prefer to update the password again.
    If you're asked for the password to your previous Apple ID when signing out of iCloud - Apple Support
    Change your Apple ID temporarily
    If signing out and back in to iMessage or FaceTime didn't help, try these steps:
    Change your Apple ID to the Apple ID you used previously. You shouldn't need to verify the email address.
    Tap Settings > iCloud. Complete these steps only if the Find My [Device] setting is turned on:
    Scroll down and tap Sign Out, then tap Sign Out to confirm. If you're using iOS 7 or earlier, tap Delete Account, then tap Delete to confirm.
    Tap Keep on My [Device] or Delete from My [Device]. In either case, your data remains in iCloud and will be updated on your device when you sign in to iCloud again.
    Enter the password for your previous Apple ID.
    Change your Apple ID to the new email address that you want to use. You'll need to verify the email address.
    Return to Settings > iCloud and sign in with your new Apple ID.
    Cheers,
    Joe

  • When I click a link, it changes to the new page instead of opening the link in a new tab.

    I've gone to the options section several times and the right settings are in place but it still doesn't open in a new tab. I've never had this problem before. Should I change back to 3.6 or 4 beta? This problem occurs on the newest update. I believe it's 4.0.1 or something like that...I just loaded it yesterday. How can I fix this? Thank you.

    It's normal for links to open in the same tab as you browse if you left-click. You can Ctrl+click or middle click to open a link in a new tab. Are either of those broken?
    Some sites let you use a regular left click to open a link in a new tab (example: Google search settings), and some add-ons may change link behavior. Can you check whether one of your add-ons has been disabled?
    Tools > Add-ons > Extensions
    Also, if you use the Ask toolbar, try disabling it and see whether that makes any difference.

  • Is there any way to link page number with the reference page number within text in InDesign CC and CS6?

    Is there any way to link page number with the reference page number within text in InDesign CC and CS6?

    You should ask in InDesign
    The Cloud forum is not about using individual programs
    The Cloud forum is about the Cloud as a delivery & install process
    If you will start at the Forums Index https://forums.adobe.com/welcome
    You will be able to select a forum for the specific Adobe product(s) you use
    Click the "down arrow" symbol on the right (where it says All communities) to open the drop down list and scroll

  • Firefox is set as the default browser, but if I click a link in MS Word, the link is opened with MS Internet explorer. Why?

    Firefox is set as the default browser, but if I click a link in MS Word, the link is opened with MS Internet explorer. Why?

    What version of Windows and Office is it? I had this issue with an older version of office and Windows XP. Basically, MS are using their browser (IE) because it's their software (MS Office). If you go to options in MS word though, you should be able to find an option to set the default browser to open links.

Maybe you are looking for