Opening a Support document when clicked on a button in Webdynpro-ABAP.

Hi All,
We have a requirement that when clicking on a button it should open a file which has file name stored in a table. How to make this possible.
The path of the file should not be hardcoded, since the user can change the file and its name anytime, he will just update the name in that table. Our report has to fetch that exact file.
Please help me in this.
Thanks,
Selvakumar M.

Hi Radhika,
We will be having the file stored in the common shared path, file may be of either .Pdf or .doc.
I have not used the file upload option before, so i am not sure about it.
But my requirement is not upload, it has to open a file from a path. Sorry if i mistook the meaning of the file upload option.
Thanks for quick turnaround.
Selva M.

Similar Messages

  • BSP Application on click of a button in WebDynpro ABAP

    Hello All,
    We have a requirement to display a BSP application in a POP-UP on click of a button in WD ABAP application. Then, passing some paramters from WD to BSP (in POP-UP) and vice versa. Please let me know of how this can be acheived. Thanks.
    Regards,
    Gopal.

    To call a wd abap application from BSP use the method CL_WD_UTILITIES=>CONSTRUCT_WD_URL then just create a link in bsp with the url returned like this:
    <a href="url">Link</a>
    To pass data from wd abap to bsp or vice versa that a look at this blog: /people/koen.labie2/blog/2006/11/29/eating-cookies-with-webdynpro-and-bsp
    regards,
    Fabio Louzada Saito

  • Adobe reader opens "save as" box when clicking on save button rather than saving in the same file

    Hi everybody,
    I have a fillable PDF form designed in Livecycle designer and it is reader extended. When I fill that form on MAC it let me fill and save the form as many times as I like. Everytime I make any change I just click the save button it saves changes in the same form. BUT is is behaving differently on Windows. After filling the form out when I click on save button it opens up "Save as " dialogue box to save a new copy with those changes. I have Adobe reader XI and Adobe Acrobat XI installed on windows. I know I can do that with Acrobat but I want that in reader for users who dont have acrobat.
    Please help me.....
    Thanks

    What are you filling out the form with on the MAC?

  • Why do I not get the checkout option for a pdf type document when clicking on the document link in the SharePoint workflow task?

    We are trying to use workflows to review and edit pdf files in sharepoint 2010. We are having a couple of issues and am hoping someone has the answer.....
    1)  When myself and coworkers click on the pdf document in the library, we get the check out option as expected.  However when we click on the document
    link in a workflow task (on the sharepoint site), the pdf opens as a temporary file and we do not get the check out option.  Why does this happen????? 
    2)  The same thing happens when we click on the document link in the workflow task email;   HOWEVER,  one of our co-workers does get the
    check out option when clicking on the link in the email task.  Why would she get the checkout option using the email and not when clicking on the link in the task list on the sharepoint site ????  We have compared our internet settings and adobe
    settings to ours and found no differences.
    We are using Sharepoint 2010, Windows 7, IE8, Adobe Reader X or XI.  Some of us have Adobe Pro X and have the same issues.

    Hi,
    According to your post, my understanding is that you could not get the checkout option for a pdf type document when clicking on the document link in the SharePoint workflow task.
    I try to reproduce the issue, however, no matter when I click the pdf type document in the library or click on the pdf document link in the workflow task email, it download the pdf doucment and then I can open it.
    It will be better if you can descript how you
    get the check out option as expected when you click on the pdf document in the library.
    Then I upload a
    word type document to the library, no matter when I click the word type document in the library or click on the word document link in the workflow task email, I can open the word document directly and get the check out option as expected.
    I recommend to use the other type docuemts to check whether the check out option works.
    Thank you for your understanding.
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • Blank error message with ? appears and PDF does not open in Browser (IE11) when clicking link to open pdf. PC - IE11 Acrobat 9.0

    Blank error message with ? appears and PDF does not open in Browser (IE11) when clicking link to open pdf. PC - IE11 Acrobat 9.0
    Cannot access in browser PDF files unless blank box is closed and then website address is clicked on again in browser address bar and page reloaded.
    Uninstalled Acrobat 9, reinstalled, still same problem.
    Help please!

    Yes I can it only happens in the browser..
    I reinstalled Windows on my machine and started over a couple of weeks ago.
    When my desktop started up I didn’t have Acrobat installed and clicked on a pdf file and the open with xxx dialogue box came open.
    I chose a different program as Acrobat wasn’t installed yet so it associated pdf files with another program.
    Later Installed Acrobat and couldn’t associate the pdf file with acrobat so I went into Folder Options and manually associated PDF files with Acrobat.
    Ever since then I get the error when something is downloaded and opened in the browser.
    Works fine everywhere else and when I cancel the blank error, highlight the web address and press enter to reload it works 90% of the time.
    Not sure what to do..

  • Firefox in Mac OS X opens home page twice when clicking 'home' button

    Using Firefox 3.6.3 on Mac OS X 10.6.3
    When clicking on 'Home' button in the browser, the home page loads in the current tab, but Firefox also opens a new tab and opens the home page there too.
    Not disastrous, but quite irritating.
    == This happened ==
    Every time Firefox opened
    == From 1st use

    It could just be that the home page setting was accidentally changed to this. Firefox can be set to have multiple tabs open as the home page. Try resetting your home page - [[How to set the home page]].

  • How to maintain dynamic rows with data when click on Previous button?

    Hi,
    I have 1 aspx page and divided into 3 pages using panels.Each panel has "Next" and Previous buttons
    I have created and deleted dynamic table rows when click on Add button using javascript. whenever i click on Next button it will navigate to same page of next panel.
    when i click on previous button then it goes to previous panel but whatever i have added dynamic table rows in 1st panel that got removed.
    Can u please help me for how to maintain state of dynamic table rows with entered data when click on Previous button?
    How to get dynamic table rows with entered data in previous panel when click on Previous button?
    Please find the below javascript code:
    function insertRow() {
    if (index >= 2) {
    document.getElementById('deleteRow').style.display = "inline";
    else { document.getElementById('DeleteRow').style.display = "none"; }
    var table = document.getElementById("myTable");
    var row = table.insertRow(table.rows.length);
    cell1 = row.insertCell(0);
    t1 = document.createElement("select");
    t1.options[t1.options.length] = new Option('--Select--', '0');
    t1.id = "ddlYear" + index;
    cell1.appendChild(t1);
    for (var i = 1975; i <= 2015; i++) {
    opt = document.createElement("option");
    opt.value = i;
    opt.text = i;
    t1.add(opt);
    t1.style.width = "155px";
    var cell2 = row.insertCell(1);
    t2 = document.createElement("Select");
    t2.options[t2.options.length]=new Option('--Select--','0');
    t2.options[t2.options.length]=new Option('State Board','1');
    t2.options[t2.options.length]=new Option('CBSE','2');
    t2.options[t2.options.length]=new Option('ICSE','3');
    t2.options[t2.options.length] = new Option('Others', '4');
    t2.style.width = "155px";
    t2.id = "ddlCourse" + index;
    cell2.appendChild(t2);
    var cell3 = row.insertCell(2);
    t3 = document.createElement("input");
    t3.id = "txtCity" + index;
    cell3.appendChild(t3);
    var cell4 = row.insertCell(3);
    t4 = document.createElement("input");
    t4.id = "txtInstitute" + index;
    cell4.appendChild(t4);
    var cell5 = row.insertCell(4);
    t5 = document.createElement("Select");
    t5.options[t5.options.length] = new Option('--Select--', '0');
    t5.options[t5.options.length] = new Option('English', '1');
    t5.options[t5.options.length] = new Option('Hindi', '2');
    t5.options[t5.options.length] = new Option('Telugu', '3');
    t5.options[t5.options.length] = new Option('Others', '4');
    t5.style.width = "155px";
    t5.id = "ddlMedium" + index;
    cell5.appendChild(t5);
    var cell6 = row.insertCell(5);
    t6 = document.createElement("input");
    t6.id = "txtSpecialization" + index;
    cell6.appendChild(t6);
    var cell7 = row.insertCell(6);
    t7 = document.createElement("input");
    t7.id = "txtFnl" + index;
    cell7.appendChild(t7);
    index++;
    function DeleteRow(index) {
    var table = document.getElementById("myTable");
    table.deleteRow(index);
    // if (index = 2) { alert("There is no rows added.Please add the new row"); }
    Design:
    <tr style="font-size: 12pt" id="trSecond" runat="server">
    <td colspan="3">
    <table id="myTable" width="100%" border="0">
    </table>
    <tr>
    <td colspan="3" align="right">
    <input type="button" title="Add" value="Add" onclick="insertRow();" />
    <input type="button" id="deleteRow" title="Delete" value="Delete Row" onclick="DeleteRow(this);" style="display:none" />
    </td>
    </tr>
    Thank you.

    Put the button click into an action listener and build the new frame there. The code I have below isn't exactly what you're doing (it's amazingly oversimplified), but it's probably similar enough to get your wheels turning in the right direction.
    import java.awt.*;
    import javax.swing.*;
    import java.awt.event.*;
    public class sample
         public static void main(String[] args)
              JFrame frame = new JFrame("Sample");
              frame.setSize(400,400);
              Container content = frame.getContentPane();
              content.setLayout(new FlowLayout());
              frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              final JTextField text = new JTextField(10);
              content.add(text);
              JButton button = new JButton("Send");
              content.add(button);
              frame.setVisible(true);
              button.addActionListener(new ActionListener()
                   public void actionPerformed(ActionEvent ae)
                        JFrame myframe = new JFrame("Results");
                        myframe.setSize(200,200);
                        Container mycontent = myframe.getContentPane();
                        mycontent.setLayout(new FlowLayout());
                        String mytext = text.getText();
                        JLabel label = new JLabel();
                        label.setText(String.valueOf(mytext));
                        mycontent.add(label);
                        myframe.setVisible(true);
    }

  • IPhoto 6.0.5 crashes when clicking the Edit button

    On some of my albums....not all of them.... When clicking the Edit button or double clicking one of the photos in that album, to make it bigger so you can use the arrows to move throught the pictures, iPhoto crashes.
    It does this every time with certain albums. They are all jpeg, and the ones that are crashing worked fine before this last upgrade of iPhoto. Is there a known problem with this? I have looked around and seems as though people have had some problems similar to this but not exaclty the same.
    Is there something that can be done that I don't know about to remedy this?
    Any and all help/suggestions would be much appreciated.
    Thanks

    Scott:
    It may be a color profile issue. Download the Automator workflow "Embed sRGB Profile" file from Toad's Cellar and unzip it. Then export one of the problem files to the desktop and drop on the workflow application. Then import the file and see if it will edit OK. If so you can find the files in the Originals folder that are giving you problems and drag them onto the workflow application file. BUT, just in case make a temp backup copy of the iPHoto Library folder beforehand.
    Do you Twango?
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.

  • I want to do banners ,how can we do  when click the same button (next button)  it must show differen

    i want to do banners ,how can we do  when click the same button (next button)  it must show different images . cam any one help

    Check out my blog with samples on Edgehero.
    http://www.edgehero.com/articles/interactivity

  • Is there any function or way to get a text when clicked on a button

    Hi all,
    I need to get a file name when clicked on a button at user-command(just after the selection ends and the output came, there are some buttons on the screen).
    Any function, thanks.

    If you want user to supply a file name, you should popup a file selection dialog box. Depending on where the file might reside, use one of the following function modules.
    F4_FILENAME      
    F4_FILENAME_SERVER

  • I run DeviceDemo sample to send email, when click send email button after f

    I run DeviceDemo sample to send email, when click send email button after filling all fields, it took me to EverNote application, can not send email. does anyone has this kind experience? how to fix it?

    Hi,
    ADF Mobile cannot directly send emails as this is a security precaution of your mobile phone (imagine all applications could send mails without you confirming). Instead the send mail functionality launches the mail client you have configured and fill in the information you provided in the application. The mail function by the way is implemented through Cordova.
    Frank

  • When I have multiple tabs open I have to double click the back button. Is this normal?

    Running Windows XP Professional all latest updates. I can go back to previous page by closing current tab or by clicking twice on the back button. If I have no tabs open I can go back by clicking the back button once.

    Nope, that isn't normal.
    Do you have that problem when running in the Firefox SafeMode?<br/> ''A troubleshooting mode.''<br />
    You can open the Firefox 4.0 SafeMode by holding the '''Shft''' key when you use the Firefox desktop or Start menu shortcut. Or use the Help menu item, click on '''Restart with Add-ons Disabled...''' while Firefox is running. <br />
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before using the Firefox shortcut to open it again.''
    If not, see this: <br />
    http://support.mozilla.com/en-US/kb/troubleshooting+extensions+and+themes

  • When clicking on a button on any website, that opens a new window in Internet Explorer, nothing happens. I have unchecked the " block pop ups" box, but that didn't help.

    This happened for example when clicking on "printable view" on my Roadrunner webmail.

    Thanks
    My system is Windows 7 SP1 fully updated with Norton 360 a/v
    My problem is as follows:
    Installed Firefox with no difficulty
    It opened normally
    Used and setup Google News UK as default page with no difficuly and page opened normally.
    But then trried to open individual items in Google News and every time got message Internet Explorer cannot open this site
    Set up a bare Windows 7 SP1 drive and installed Firefox and continued with same message when opening items on the page
    I also use both MSN and Yahoo browsers and neither have any problems
    I have repeated the process in Windows 8 beta with the same result
    Daniel

  • Open a Numbers Document when it is already open?!?!?

    Hello,
    i use Numbers (latest Version) in a little Team.
    My Problem is: One User open the Document "testname.numbers". This File is located on a server. The HD has no permissions.
    OK, the User has the file open. And now comes a second user on a second computer and open the same file. BUT he became no information that the file is already open. What the f*?
    User A type a information in the numbers-document and save the file and close it. User B makes the same. The information of the User (A) which saved earlyer is now lost.
    In Microsoft Office, the User B becomes a warning and can open the document in "read only".
    Has anyone an idea, how i can have this feature in Numbers?
    Please please, sorry for my bad english.
    Thank you.
    Thomas Otto, Germany

    KOENIG Yvan wrote:
    So, my opinion _is not that the Search tool is inefficient_, it is that _many users use it inefficiently_ which is not the same thing.
    The thing is, I tried entering your suggested search ("network AND users") into the "Search Discussions" box on this page. I got 301 results, ranging from topics on network user accounts in the Mac OS X Server v10.5 Leopard forums to some in which the only time the word "network" was used in the post was in the phrase "not on a network" or something like it. Last night, it took around 25 seconds for the first results to appear. This morning, that took about 5 seconds.
    I then used the advanced search option to limit the search to the Numbers forum. This in itself was not quick or easy because the new advanced search option to pick a forum is implemented with a popup menu of every single Discussions forum (probably several hundred of them) & the list is organized into nested categories & sub-categories. So it isn't a simple matter of just looking for "Numbers" in the "N" part of a single level alphabetical list, but finding it in the iWork '08 subcategory of the iWork category, among the 100 or so other "i" categories. That is a challenge because the list is very long, has many levels of indention, & the scroll rate is very touchy. The result is can take several seconds to find & select Numbers, & very careful positioning of the pointer to keep the list from scrolling by at an unreadable rate. In a browser window that is small & displays only a few tens of list items at a time, it borders on an impossible task.
    But with some difficulty I did manage to limit the search to the Numbers forum & clicked the "Search" button. 30 seconds later (!!) I finally saw 8 results, ranked by relevance. The highest ranked post (47%) contained the phrase, "I am a single user, the file is not stored on a network." Next came your post in this thread with the phrase, "Try with "network AND users" (24% relevance). Next was your post in the topic, "Features we need to move from Excel to Numbers" (22% relevance). It does contain the phrase, "As far as I know, if a doc is stored on a network and two users try to work with it at the same time, the document will be destroyed." That is somewhat relevant (here, the document is not destroyed) & is hardly a definitive answer, instead expressing one user's experience. The next most relevant post takes us to a topic in which you ask users to run a script to test a workaround that may or may not avoid what actually appears to be a bug in the application.
    The end result is that the search leaves me wondering if it even found the most relevant posts & takes a lot of effort just to perform. In part this is because of poor page design, in part because the search algorithm is simplistic, & in part because by their nature user posts rarely are definitive statements of fact.

  • I just updated to Firefox 17.0.1 and now I can't click on a bookmark to open it or open new tab when clicking new tab button.

    In FF 17.0.1 I have several bugs to mention. I am only able to open bookmarks by right clicking them and selecting Open In New Tab from the drop down menu. I am unable to open a new tab by clicking on the new tab button or by clicking open new tab from the FF drop down menu at top of browser. Also, none button work in FF, such as Home, Back, Forward, or refresh. This is so aggravating!!

    After I posted this, I restarted with add ons disabled and it worked..deleted a cpl of addons for compatibility checking and that fixed it.

Maybe you are looking for

  • USB ethernet does not work in left USB port

    My USB ethernet adapter does not work in the left USB port on my MacBook Air, but it works in the right side. Other devices, like my mouse, work fine in both ports. Could I have a faulty left-side port with too little power for the ethernet adapter,

  • Display message while uploading

    This is been talked about forever in this forum, but none the less, I can't find a satisfactory answer. My situation is the following: My webapp requires users to upload files to the server (actually, it is a file sharing app). The uploading itself I

  • Good tracking speed, CHEAP, big, quality and reliable mouse for macbook pro

    Hi mac people, I need a mouse for this all purposes: 1)Reduce using the build in trackpad(to protect my built in trackpad) 2)Sometime I want casual gaming(Simcity,ps1 game, some other point and shoot game) 3)I 'm 183cm tall, so my hand is quite big,

  • Copying photos to ipad

    Hi, Have just purchased an ipad2. How do I copy photo albums to it from my wife's iMac please? Many thanks. Nirvanauk

  • Send one message to two receivers simultanously

    Hi,gurus: I wanna know how can we send one message to two receivers simultanously. Our scenario is file to file,and we add two receivers in receiver determinations,and leave the conditions empty. But it seems the message was only sent to one receiver