Change / Delete action link & Printing in WDA

Hi Experts,
Q1. In one of my ALV table column i need to put link like this ' "Change" / "Display" '. Means in 1 column 2 Action LInk one is Change the other will be display. If user press on Change it will open another view in edit mode if user press on delete it will open the view in display mode.Also please tell what will be the domain of that field in the structure.
Q2. Need a print button at the top of all the pages in my application with printing functionality. I am not sure it is psible in WDA or not. In few threads i read that we can achieve this using BSP & java scripting not with WDA.
Can anyone please help me on this.
Regards,
Nik

Q1.  You can't add two cell editors to the same column.  You will need to make these two separate columns.
>Also please tell what will be the domain of that field in the structure.
You don't need any field at all. You can add a column to the ALV output that doesn't exist in the underlying data dictionary structure.
Q2.  Not currently possible.  There is print functionality in the ALV that uses the Adobe Document Services to output a PDF for printing of just the ALV content.  You can use the Print functionality in the browser itself.  SAP is currently developing print functionality like you describe targeted for possible inclusion in NetWeaver 7.02 (future features are always subject to change however).

Similar Messages

  • Using a link to trigger a delete action on form page?

    Hello,
    I have been unable to find an explanation about how to do this in the documentation, these forums or the old interakt forums.
    Is it possible to use a link to trigger the delete action on a form page?
    If so how is it done?
    Thanks in advance!

    Sorry Purple.. I know that there is a delete link that triggers the delete transaction on the form page..
    The question was if anybody knew if I am able to use a link to trigger that delete transaction (on the form page), much like a dynamic list has a link that will trigger the delete transaction on the form page.
    I don't want to use a dynamic list in this case though. :)
    Thanks anyways,
    Drew

  • Content action links like Edit, Delete...just disappear

    I am facing this unique issue for which I dont seem to find any helpful material.
    We are running Oracle® Application Server Portal 10g (9.0.4.1) on Linux.
    On several occasions and now a days often scenario, the pagegroups page of the Portal Navigator, which displays the action links like Edit, Delete, Export, View...etc just disappears and gives me or any content user no means to perform any action on the page groups or pages. This happens even when logged in as ORCLADMIN.
    Attimes the links work/come back if the cache is cleared but this is not always true.
    Do help me as this on an overall basis doesnt help maintain this website or its content and seems entirely a wasteful portal option, which I hate to admit at this point.
    Thanks, any help appreciated.
    Gayathri
    [email protected]

    Do you have one or multiple midtier instances in your environment? I have seen this problem with a multiple machine environment where the Web Cache Invalidation port causes problems on the instances when pages get cached. I ask because you mentioned clearing your cache sometimes helps.

  • I was downloading podcast video in my itouch using wifi, but suddenly my wifi got disconnected and now there is a link in my podcast list which on opening uses wifi to play that video. I want to delete that link. Right to left swapping is not working.

    I was downloading podcast video in my itouch using wifi, but suddenly my wifi got disconnected and now there is a link in my podcast list which on opening uses wifi to play that video. I want to delete that link. Right to left swapping is not working.

    I bet this is too late but...
    Are you trying to print through the airport express wirelessly or the built in wireless of the lexmark? If you want to use the airport express, there is no need to mess with the wireless printing on the lexmark at all. The airport express will be easy to set up, all the wireless setups through the printers are a pain.

  • How to Change Spry Menu Links

    I have a Spry Horizontal Menu on my page, and have a few
    questions on creating customized Links:
    - I know how to add a Link to my Reports, Pages, etc using
    the Link Properties box
    - I also know how to open the Link in a _blank page using the
    Target property box
    But
    - How do I change the Menu Link in code to open my new page
    in a smaller, new window?
    (Right now, the TicketSummaryAcct.cfm page opens up fine, in
    a new "full-sized" window)
    Here is the code currently listed under that Menu button:
    <li><a href ="reports/TicketSummaryAcct.cfm"
    title="Click here to print the report by Account Number to PDF"
    target=>_blank">by Acct# Prompt</a></li>
    Thanks,
    jlig

    In the header of the webpage:
    <script type="text/javascript">
    function popUp(URL) {
    day = new Date();
    id = day.getTime();
    eval("page" + id + " = window.open(URL, '" + id + "',
    'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=350,height=300 ');");
    </script>
    in the link section:
    javascript:popUp('reports/TicketSummaryAcct.cfm')
    don't use a target attribute, as it will break the javascript
    in my experience. If you are using the pop-ups in more than 1
    webpage, or even for good programming practices, make a function
    page.
    Webpage name: newWindow.js
    function popUp(URL) {
    day = new Date();
    id = day.getTime();
    eval("page" + id + " = window.open(URL, '" + id + "',
    'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=350,height=300 ');");
    And then in the header of the webpage(s) that you need the
    popup for, add this:
    <script src="newWindow.js"
    type="text/javascript"></script>

  • How to change default action "alarm" for all signatures ?

    My question belongs to a Cisco 1712 (128 MB, IOS 12.3T, SDM 2.5 installed):
    I'm trying to change the default action "alarm" to "alarm,reset,drop" for all signatures of my custom set.
    However doing so via SDM fails. First, it appears as being done correctly, but after compiling the signatures again, the default values are back there (in the same sense, I was unable to delete signatures, works just using the CLI).
    I followed the instructions at cisco.com:
    router(config)#ip ips signature-definition
    router(config-sigdef)#signature 6130 10
    router(config-sigdef-sig)#engine
    router(config-sigdef-sig-engine)#event-action produce-alert
    router(config-sigdef-sig-engine)#event-action deny-packet-inline
    router(config-sigdef-sig-engine)#event-action reset-tcp-connection
    router(config-sigdef-sig-engine)#exit
    However ip ips signature-definition is not understood by the router, so the procedure fails.
    Can you please assist me ?

    You can use IOS command-line interface (CLI) to change signature actions for one signature or a group of signatures based on signature categories. The following example shows how to change signature action to alert, drop and reset for signature 6130 with subsig ID of 10.
    router#configure terminal
    Enter configuration commands, one per line. End with CNTL/Z.
    router(config)#ip ips signature-definition
    router(config-sigdef)#signature 6130 10
    router(config-sigdef-sig)#engine
    router(config-sigdef-sig-engine)#event-action produce-alert
    router(config-sigdef-sig-engine)#event-action deny-packet-inline
    router(config-sigdef-sig-engine)#event-action reset-tcp-connection
    router(config-sigdef-sig-engine)#exit
    router(config-sigdef-sig)#exit
    router(config-sigdef)#exit
    Do you want to accept these changes? [confirm]y
    router(config)#

  • How to delete dead links

    Hello
    I would like to delete dead links in a PDF document. I use Visual C++ to create my code and generate an API plug-in for Acrobat 8. Can you give me a sample code to do it.
    Thanks
    David

    You are going to need to examine the Cos object for each link and see
    whether it meets your requirements of "dead" (which you've really just
    moved to "invalid destination" - when is a destination invalid?)
    The PDF Reference describes the types of PDF actions. There are more
    than you think, and some (JavaScript) virtually defy analysis. In
    broad terms the plug-in would call PDDocGetPage / PDPageRelease for
    each page in turn, then iterate through the Annots objects. There is a
    PDAnnot API, but going to the Cos API is likely to be needed in the
    end.
    Be sure to use an error handler so you never miss PDPageRelease, even
    if there is an error in the PDF: this is very important.
    Aandi Inston

  • Action link help OBIEE 11g

    When I change the Column Properties --> Interaction --> Values to "Action Link", and choose a detail level report within the "Navigate to BI" the link does not work properly in the analysis.
    For example, one team will show 3 records. When I click on the "3", it takes me to the entire detail level report, rather than just those 3 records. How do I correct this?
    thx

    You said one team shows 3 records. Did you put Team Name as prompted in the detail report?
    Please add all dimensions in the detail report as prompted in the filter section to pick values from the summary.

  • Action Links - Browser Script

    Hi All,
    This has been a long process. I just wanted to use Action Links to open an external webpage based on a URL field that is stored in our data warehouse. The problem (based on my findings) is that external webpages can only be launched from OBIEE with a fixed part of the URL and then a query string section that follows the ? symbol. This is great if you are looking to launch a url with a query string (ie. google, cnn, etc.) but it doesn't help you if your url has no question mark.
    My first solution was to build a redirect asp page. I would point the URL to this asp page with the real URL positioned after the question mark. The asp page would strip out the query string from the end of the url and then launch that webpage. This works great but it relies on an asp page being stored somewhere on a server (by IT). I would rather take advantage of the out of the box action link functionality using OBIEE solely. So I started looking at browser scripts. I am so close but can't get the last bit to work.
    I have a function that looks like this:
    USERSCRIPT.Show_URL = function popitup(url){
    var url = c
    alert(url);
    My only issue is that this shows a comma at the beginning of the c variable. The c variable comes from the USERSCRIPT.parameter function sample that is in the USERSCRIPT.js file. Any ideas why there is a comma before my url? I tried using the replace function to get rid of it but it keeps erroring out saying 'Object doesn't support this property or method'.
    Much Appreciated,
    Mike

    I finally got this to work on my own with a bit of work.
    I borrowed some of the code for the displayparameters ootb function in the USERSRIPTS.js file but changed the variable that they have in the alert function from c to a. I then swapped out the alert function for the window.open function. This code now opens the url in my cell regardless of whether or not there is a ? in the url which in my case, there was not. I have set the parameter 1 to be the column value of the URL field.
    USERSCRIPT.Launch_URL=function(b){var c="";for(args in b){var d=args;var a=b[d];c+=""+d+""+a;c+="\n"};window.open(a,'name')};
    USERSCRIPT.Launch_URL.publish={parameters : []};
    Perhaps this will save someone else some time.
    Mike
    PS Oracle could have save me a lot of work by just allowing variables to be passed into web page url's without the requirement of a question mark. Easy nice enhancement they should incorporate into next release.
    Edited by: user8030589 on May 24, 2013 10:48 AM
    Edited by: user8030589 on May 24, 2013 10:49 AM

  • Action Links not pointing to correct path after export to PDF in obiee 11g

    Hi ,
    I have created action links in obiee11g pointing to external secure site , then i run agent/export the report to pdf.
    When i click on the action link i nthe pdf it generated a link with some ip address and not the link with my obiee server .
    eg.
    it should generate something link
    http://*myobieeservername*:port/analytics/saw.dll?ExecuteURLAction&EncodedAction=eJwFwdeyQ0AAAND-MWMm0T1itUWQVRJvq6wWPbjy9fcc62iq3Fg1bkSul57U70M4KjoryI9HvE0iaTumQHTpl3ct5MpKHzoZI0I274*ioiQ51tp7LVOqknh3Blmq9wTieWWst8YTinuE9GcXc5Q-Ak8joZANb8HCCxvpzpPyrYJ1gXri3wnRHNjOOqGOHO5*bQd3OR2RusW4S*EKic3KM3hlocF8JQH1dmYk8ACwUR0MJPrrLAx1f0aXC4rfpzQmwWjPXTUjMoJBXXut8ra20QAqN3WybUZ9L8Flpt2kx1gA30RGs*1O7MUddRlr3p6kfM3WOg-TPrt1pllvXeC**68-Ng9AnDl7-GXmY2QZ-oxL-1LbLObjc65EOZa1NFZuOK4G1qVGWcqf9AJljn5z6cSZn0QPGHLT6UhbGr7CZrEopreoO3SlPSHK9SXJC1wFVvoUWakr*sAOftaitKTRM3hO4FXniOFw*fdkdXE7Lny717ba2L7oMxVEV1omt1Ee8mlKhp848Wrf9UypwS2gmBGWNxK6ek2zWiYNn9WXo1TRc9301wJUXcblep9hoT3-AZfvsZc
    where as it generates
    http://*someipaddress:portnumber*/analytics/saw.dll?ExecuteURLAction&EncodedAction=eJwFwdeyQ0AAAND-MWMm0T1itUWQVRJvq6wWPbjy9fcc62iq3Fg1bkSul57U70M4KjoryI9HvE0iaTumQHTpl3ct5MpKHzoZI0I274*ioiQ51tp7LVOqknh3Blmq9wTieWWst8YTinuE9GcXc5Q-Ak8joZANb8HCCxvpzpPyrYJ1gXri3wnRHNjOOqGOHO5*bQd3OR2RusW4S*EKic3KM3hlocF8JQH1dmYk8ACwUR0MJPrrLAx1f0aXC4rfpzQmwWjPXTUjMoJBXXut8ra20QAqN3WybUZ9L8Flpt2kx1gA30RGs*1O7MUddRlr3p6kfM3WOg-TPrt1pllvXeC**68-Ng9AnDl7-GXmY2QZ-oxL-1LbLObjc65EOZa1NFZuOK4G1qVGWcqf9AJljn5z6cSZn0QPGHLT6UhbGr7CZrEopreoO3SlPSHK9SXJC1wFVvoUWakr*sAOftaitKTRM3hO4FXniOFw*fdkdXE7Lny717ba2L7oMxVEV1omt1Ee8mlKhp848Wrf9UypwS2gmBGWNxK6ek2zWiYNn9WXo1TRc9301wJUXcblep9hoT3-AZfvsZc
    This works fine when i click the action link from the report instead of the exported pdf.
    Any pointers?

    It has been a while since I have checked this. Sorry for any delay. We have attempted to rearrange items however have had no luck.
    On small break through we have is that we have a custom link setup using Microsoft IIS on our server so we can access the application from outside of our network rather than just internally. We have found that we only have the print/export issues when using this external link so there may be an issue with our IIS configuration. Just throwing that one out there in case anyone has had a similiar issue with IIS configuration and found a fix.

  • Can I change Type Action "URI" to Type Action "Launch" in LiveCycle Designer ES 8.2?

    I am trying get a link in my pdf form to launch Windows Explorer to a folder or just launch the excel file in MS Excel. I used LiveCycle Designer ES 8.2 to create the form. My problem is most of my users have Chrome as their default browser. When they click on the link on the form it opens in the Chrome browser. If IE is their default browser it opens Windows Explorer so they can open and edit the file. But like I said, most of my users are using Chrome. In my search for a fix, I saw a discussion (see below) where they are trying to launch a pdf file with "Launch" vs. "URI".
    So I was wondering, can I change Type Action "URI" to Type Action "Launch" using LiveCycle Designer ES 8.2?
    ***Discussion link***
    MS Word 2007+ - can it encode hyperlinks using the PDF Action Type "Launch" instead of "URI" when publising a ".docx" fi…

    I have a link in the LiveCycle form that can be clicked by the user to open Windows Explorer and modify the file. The xml for the link is below:
            </draw>
             <draw name="Text" x="35.394mm" y="104.458mm" w="167.593mm" h="4.171mm">
                <ui>
                   <textEdit/>
                </ui>
                <value>
                   <exData contentType="text/html">
                      <body xmlns="http://www.w3.org/1999/xhtml" xmlns:xfa="http://www.xfa.org/schema/xfa-data/1.0/"><p style="tab-interval:0.5in;tab-stops:right 0.5in right 0.667in;font-family:'Times New Roman';text-decoration:none;letter-spacing:0in">Add new project to the Courseware Revision Status spreadsheet<span style="xfa-spacerun:yes"> </span><a href="file://///52TYMX-AS-TM040/FPMI_Common/Project Time Tracking/CW Revision Status"><span style="font-size:10pt">S:\Project Time Tracking\CW Revision Status\</span></a><span style="xfa-spacerun:yes"> </span></p></body>
                   </exData>
                </value>
                <para vAlign="bottom"/>
                <traversal>
                   <traverse ref="CheckBox1[20]"/>
                </traversal>
             </draw>
    I do not have access to notepad++ (hex editor) and as such am trying to make hex changes with Adobe LiveCycle if possible.
    Thanks for your response.

  • Can I create an action link(drill through) to a Union report

    hello experts,
    Through my summary report I have created an action link to the detail report. My summary report is coming from one subject area; but my detail report is a union of 4 different subject areas. When I click on my action link to do to the detail report it gives me the whole repor, I am supposed to see just one line and not the whole detail report. Basically if click on order number 123, I should go to that particular order # specifically and not the whole report. Is this b'se of the union or something else?
    I have set all my columns in both reports to "is prompted" I am still facing the same problem..
    any idea
    thx

    With the JavaScript doc.print method: http://livedocs.adobe.com/acrobat_sdk/9.1/Acrobat9_1_HTMLHelp/JS_API_AcroJS.88.511.html
    you can include the printer you want in the printParams object: http://livedocs.adobe.com/acrobat_sdk/9.1/Acrobat9_1_HTMLHelp/JS_API_AcroJS.88.1007.html

  • Dynamic host name in action link

    Hi All,
    Is there a way to create the dynamic host name in the url in the action link for dashboard? I have tried to use the repository variable to store the hostname from the server in the navigate to webpage. However, the action link is showing the error when I tried to place repository variable in the navigation to webpage in action link. We do not want to manually change the hostname for each migration .
    @{biServer.variables['hostname']}:7001\analytics
    Thanks,
    Sushil

    Thanks Srini,
    I was trying to use the variable value in url of the Action link ( Navigation to webpage). The variable value works inside the report or go url .
    Regards,
    Sushil

  • CRM on Demand Reporting; Action Links in Pivot Tables

    Hi All
    I have a problem with Action Links for Oracle CRM on Demand. When I click on an action link to navigate to an account detail page, I get the following error:
    The record you are trying to access has been deleted or has been assigned a new owner and you no longer have access to it. If you deleted the record, it may be accessed in Deleted Items. If you continue to have problems contact your Oracle CRM On Demand Administrator.
    Browsing the forums brought up this thread: Can't access a record with an ActionLink
    In this thread it's said to place the Account ID column right next to the Account Name column. This solution works for regular tables, but not for pivot tables.
    Is it possible to link to an account detail page from pivot links?

    For pivot tables you will have to use this method in order to be able to drill down to the detail page:
    On you Report-
    Define Criteria: Add the Account ID (Record ID field is a must)
    - Click on the Properties icon on this column--> Data Format Tab --> uncheck Override Default Data Format and select Plain Text from the Treat Text as drop down.
    Add the below code in the text area.
    "http://"@[html]"<a target=_top
    href=https://*secure-ausomxXXX*.crmondemand.com/OnDemand/user/AccountDetail?OMTGT=AccountDetailForm&OMTHD=AccountDetailNav&AccountDetailForm.Id="@">View Account</a>"
    Add this column on the Rows section of the pivot table.
    Hope this helps!
    Royston

  • Jbo:DataScroller - how to ensure 'First' and 'Last' action links appear

    I'm working in JDeveloper 10.1.3.5.0.
    I'd like to know if there's a way to ensure that the action links 'First' and 'Last' will appear, in addition to the 'Next' and 'Previous' ones (that is, assuming we're not already at the first or last range position).
    It seems as if the thing that determines whether or not they appear is the number of total range positions. I can't be certain, but it seems like the magic number is 1000. If there are fewer, then 'First' and 'Last' will appear, and if there are more, then they will not. It'd be great to be able to have control of this, though. Is it possible?
    Thanks
    Shea

    Encore is being phased out?  I would be surprised if Adobe did not offer some kind of DVD authoring solution in it's place.  I have not heard about this yet myself.
    I have a menu size issue because, despite my reported file size being under 4.7G, Encore continues to report a menu size problem.  Of course it doesn't say which menu or by how much it is exceeded.  When I build it to DVD it waits several hours before reporting that there is a space issue.  See below.
    There is a file called woodstock-1.mp4.  I can find no use of this clip at this point and it's not part of a timeline, yet Encore won't let it be deleted.  Encore reports it's still in use.  Surely there should be some way to track down any dependencies quickly.

Maybe you are looking for