Readily available bean in PI 7.1 to upload excel file

Hi,
Is there any readily available bean to upload excel file thru File adapter to PI. working on PI7.1 version. Please let me know if any.
Thanks,
Jogula Ramesh

For developing Adapter module for same, please check the links below:
http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/c0b39e65-981e-2b10-1c9c-fc3f8e6747fa
http://wiki.sdn.sap.com/wiki/display/stage/AdapterModuleToReadExcelFilewithMultipleRowsandMultiple+Columns

Similar Messages

  • Where to find readily-available high-res MBP 15' in Hong Kong ?

    Hi, I need either a new or a refurb 15" MB in HK with a high-res anti-glare screen.
    Any ideas in which store I can find one?
    I tried DG but they only have the 2.8 CPU version that sells for HKD $23k, I'm looking for something that will cost me max. HKD $19k
    The problem is - it has to be readily available for purchase in a store, as I'm leaving town in 48hrs.
    Thank you in advance!

    It seems obvious that you have tried _http://store.apple.com/hk_
    Maybe that is DG?
    Joe
    Message was edited by: joeuu

  • How to? switch between the following mission control preference "group windows by application" on the fly? OR have both readily available

    Is there any way to switch between the following mission control preference "group windows by application" on the fly?  I would like to turn this feature on and off quickly. OR have both readily available?
    If osx 10.9 does not support this, does any one know if automater can be used to creat a short cut to turn this preferance on and off?
    Current solution (not much of a solution)
    I currently added the preferance control icon for mission control on my dock.

    4u2nv247 wrote:
    Current solution (not much of a solution)
    I currently added the preferance control icon for mission control on my dock.
    Do you mean the general System Preferences icon? ...If so, it's possible to put the icon specifically for the Mission Control pane in the Dock:
    I'm on Mountain Lion and that Preference Pane is in: Macintosh HD > System (not Users) > Library > PreferencePanes > Expose.prefPane
    ...Drag that Expose.prefPane to the right-hand side of the Dock, say, next to the Trash. Then you can simply click on the resulting Expose Prefs icon in the Dock to open its Prefs panel.

  • Server is available on your computer. Access the volumes and files locally

    I set up a VPN incoming call from a Windows XP server at home and I have an iMac in the office with Snow Leopard 10.6.5.
    I manage to connect to VPN to the Windows XP server at home but everytime I Connect To Server to the IP address, it always comes back with an error: "Server is available on your computer. Access the volumes and files locally".
    Um... where is this volumes and files? The Finder does not have it. Going to Terminal and ls the Network directory comes up empty.
    Can anyone help? How can I connect to a Windows server via VPN?
    Thanks.

    Several volumes and folders have been shared and they are accessible within LAN. The problem is that I cannot even connect to the server, even though the connection has been established. Mac OS X always seems to think that it has already been connected and they are readily available but it's not listed under Network.
    Looking at other topics, this seems to be a prevalent problem but I don't find any solution for this yet.

  • Down excel file in managed bean, no response?

    Hi,
    I used JDev 11.1.2
    I want to download an excel file by click one button, and I want to implement this function in the managed bean, but after I click the button, no file download, and just refresh the page.
    JSP snippet code:
    <af:commandToolbarButton text="View Report" id="ctb1" actionListener="#{reportBean.viewReport}">
    Method of managed bean(not show exception process ):
    public void viewReport(ActionEvent actionEvent) {
    // some validation here
    FacesContext facesContext = FacesContext.getCurrentInstance();
    ExternalContext externalContext = facesContext.getExternalContext();
    HttpServletResponse response = (HttpServletResponse)externalContext.getResponse();
    BufferedInputStream input = null;
    BufferedOutputStream output = null;
    String filePath = "c:/a.xls";
    File file = new File(filePath);
    try {
    input = new BufferedInputStream(new FileInputStream(file), 1024);
    response.reset();
    response.setHeader("Content-Disposition", "attachment; filename=\"" + filePath + "\"");
    response.setContentType("application/ms-excel");
    output = new BufferedOutputStream(response.getOutputStream(), 10240);
    byte[] buffer = new byte[10240];
    int length;
    while ((length = input.read(buffer)) > 0) {
    output.write(buffer, 0, length);
    output.flush();
    }catch(Exception e){
    } finally {
    //close output and input
    facesContext.responseComplete();
    BTW: I can implement the download function by using fileDownloadActionListener, but our requirement needs to validate some information before download(such as status validation, file existence), and I add those validation to fileDownloadActionListener method, but seems no useful.
    Any advices?
    Thanks,
    zeroxin

    Timo,
    I used the solution mentioned in your blog, and it really can enter into fileDownloadActionListener method, but still not display download file dialog, just seems no useful, I test it using Firefox4 and IE9, the same result.
    JSP snippet code:
    <af:commandToolbarButton text="View Report" id="ctb1"
    actionListener="#{reportBean.viewReport}"/>
    <af:commandToolbarButton text="Export..." id="ctb2" visible="false"
    binding="#{reportBean.exportReportButton}">
    <af:fileDownloadActionListener contentType="application/vnd.ms-excel" filename="Report.xls" method="#{reportBean.reportFileDownload}" />
    </af:commandToolbarButton>
    Bean method(Snippet code)
    private RichCommandToolbarButton exportReportButton;
    public void viewReport(ActionEvent actionEvent) {
    // validate code here
    ActionEvent ae = new ActionEvent(exportReportButton);
    ae.queue();
    public void reportFileDownload(FacesContext facesContext, java.io.OutputStream outputStream) throws Exception {
    DCIteratorBinding dciter = (DCIteratorBinding)getBindings().get("SReportView1Iterator");
    Object outputLoc = dciter.getCurrentRow().getAttribute("OutputLoc");
    BufferedInputStream input = null;
    try {
    input = new BufferedInputStream(new FileInputStream((String)outputLoc), 1024);
    byte[] buf = new byte[1024];
    int count=0;
    while ((count = input.read(buf)) >= 0) {
    outputStream.write(buf, 0, count);
    input.close();
    outputStream.flush();
    outputStream.close();
    } catch (Exception e) {
    e.printStackTrace();
    thanks,
    zeroxin

  • "Java-Bean: True" missing after being packed in jar file

    Hi All
    X86, Windows XP Professional, J2SDK 1.4.2
    I complied a section of code ", which is from << Thinking In Java>>(3rd).
    Created a manifest file "BangBean.tmp"
    <<
    Name: bangbean/BangBean.class
    Java-Bean: True
    >>
    And then packed class files into "BangBean.jar" with command
    "jar cfm BangBean.jar Bang BangBean.tmp bangbean".
    It's puzzling that "Java-Bean: Ture" was missing in the "BangBean.jar/META-INF/MENIFEST.MF" .
    <<
    Manifest-Version: 1.0
    Created-By: 1.4.2 (Sun Microsystems Inc.)
    Name: bangbean/BangBean.class
    >>
    What's more, after altering the"BangBean.tmp" into this
    <<
    Java-Bean: True
    Name: bangbean/BangBean.class
    >>
    and had a another try.
    I got a jar file with such MENIFEST.MF.
    <<
    Manifest-Version: 1.0
    Created-By: 1.4.2 (Sun Microsystems Inc.)
    Java-Bean: True
    Name: bangbean/BangBean.class
    >>
    This jar file worked well in BDK's beanbox.
    I've test it with JSDK 1.5.0, the same thing happened.
    And I didn't encounter such problem in other bean programs.
    I've searched " 'Java-Bean: True' missing " with google, but didn't get proper answers.
    Is there anybody who can give a prompt about why this happend?
    Thanks a lot for your help!
    code
    //: bangbean:BangBean.java
    // A graphical Bean.
    package bangbean;
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.io.*;
    import java.util.*;
    import com.bruceeckel.swing.*;
    public class
    BangBean extends JPanel implements Serializable {
    private int xm, ym;
    private int cSize = 20; // Circle size
    private String text = "Bang!";
    private int fontSize = 48;
    private Color tColor = Color.RED;
    private ActionListener actionListener;
    public BangBean() {
    addMouseListener(new ML());
    addMouseMotionListener(new MML());
    public int getCircleSize() { return cSize; }
    public void setCircleSize(int newSize) {
    cSize = newSize;
    public String getBangText() { return text; }
    public void setBangText(String newText) {
    text = newText;
    public int getFontSize() { return fontSize; }
    public void setFontSize(int newSize) {
    fontSize = newSize;
    public Color getTextColor() { return tColor; }
    public void setTextColor(Color newColor) {
    tColor = newColor;
    public void paintComponent(Graphics g) {
    super.paintComponent(g);
    g.setColor(Color.BLACK);
    g.drawOval(xm - cSize/2, ym - cSize/2, cSize, cSize);
    // This is a unicast listener, which is
    // the simplest form of listener management:
    public void addActionListener(ActionListener l)
    throws TooManyListenersException {
    if(actionListener != null)
    throw new TooManyListenersException();
    actionListener = l;
    public void removeActionListener(ActionListener l) {
    actionListener = null;
    class ML extends MouseAdapter {
    public void mousePressed(MouseEvent e) {
    Graphics g = getGraphics();
    g.setColor(tColor);
    g.setFont(
    new Font("TimesRoman", Font.BOLD, fontSize));
    int width = g.getFontMetrics().stringWidth(text);
    g.drawString(text, (getSize().width - width) /2,
    getSize().height/2);
    g.dispose();
    // Call the listener's method:
    if(actionListener != null)
    actionListener.actionPerformed(
    new ActionEvent(BangBean.this,
    ActionEvent.ACTION_PERFORMED, null));
    class MML extends MouseMotionAdapter {
    public void mouseMoved(MouseEvent e) {
    xm = e.getX();
    ym = e.getY();
    repaint();
    public Dimension getPreferredSize() {
    return new Dimension(200, 200);
    } ///:~
    ************************************************

    Since you didn't use code-formatting tags ([ code ] and [ /code ] without the spaces) it's kinda hard to look at it. But I'm sure it DID execute much more than just the return statement - maybe you're not closing a file or db connection, or maybe you're seeing a cached page, so it actually isn't executing ANYTHING on the server (is your browser set to never check for newer pages so it (almost) always returns from cache, for example?)

  • How to upload a file using java bean?

    hi,
    i need a code simple how to upload a file from jsp form to a java bean file (not a servlet)
    thank,s zik

    Hi,
    i need a code sample how to upload a file from jsp
    form to a java bean file (not a servlet)You can use jspSmartUpload component which is a free, fully-featured JSP component.
    jspSmartUpload provides you with all the upload/download features you could possibly wish for :
    * Simple and complete upload
    * Total control over the upload process
    * �Mixed forms� management
    * Total control over files sent
    * Download whatever you want
    For further information about jspSmartUpload please visit
    http://www.jspsmart.com/
    Hope this helps.
    Good Luck.
    Gayam.Srinivasa Reddy
    Developer Technical Support
    Sun Micro Sysytems
    http://www.sun.com/developers/support/

  • How to upload a file into server using j2ee jsp and servlet with bean?

    How to upload a file into server using j2ee jsp and servlet with bean? Please give me the reference or url about how to do that. If related to struts is more suitable.
    Anyone help me please!

    u don't need j2ee and struts to do file uploading. An example is as such
    in JSP. u use the <input> file tag like
    <input type="file"....>You need a bean to capture the file contents like
    class FileUploadObj {
        private FormFile srcFile;
        private byte[] fileContent;
        // all the getter and setter methods
    }Then in the servlet, you process the file for uploading
        * The following loads the uploaded binary data into a byte Array.
        FileUploadObj form = new FileUploadObj();
        byte[] byteArr = null;
        if (form.signFile != null) {
            int filesize = form.srcFile.getFileSize();
            byteArr = new byte[filesize];
            ByteArrayInputStream bytein = new ByteArrayInputStream (form.srcFile.getFileData());
            bytein.read(byteArr);
            bytein.close();
            form.setFileContent(byteArr);
        // Write file content using Writer class into the destination file in the server.
        ...

  • The server is available on your computer. Access the volume and files local

    I recently did a clean install on my MacBook (from Leopard to Snow Leopard) and got this error when attempting screen sharing. I provide limited support at my office and do that primarily through screen sharing. One thing I noticed after the install was not only could I not screen share with anyone on the local network, but if anyone tried to connect access my shared folder it would actually open the shared folder of another computer on the network.
    Whereas Screen Sharing would simply time out if I attempted to connect to the majority of computers on the network. However, when I tried connecting to the machine whose shared folders would open if someone tried connecting to my computer, I got the "Connection failed. The server is available on your computer. Access the volumes and files locally." error.
    After performing a hard reset on our Airport Base Station I am now able to screen share with the other computers on our network EXCEPT for the one that gave me the error in quotes above. Any ideas?

    Hi,
    I also encountered this error but in a different situation : after having restored my Lion installation from a Time Machine backup, everything was okay except that I couldn't connect to any disk attached to my Airport extreme.
    I searched for hours and even restored my backup a second time. The problem is specific to only one client since my Macbook was still able to connect to the AE. I ended up resetting all the settings on the AE and restoring them one by one.
    The problem appears when I restore the address range distributed by the AE's DHCP server to the one that was configured before.
    Thus the solution seems to change this address range. Must be something related to a network route or cache or anything like this.
    I hope it will help anybody who encounters this problem. Luckily it seems there are very few : the number of occurences of this problem in google is very low.
    Matt

  • The server is available on your computer. Access the volumes and files locally.

    I have actually solved this issue. However, it was not easy to find support for this specific issue. Here's the problem and solution that worked for me.
    The Problem
    I had an issue with my Macbook Pro and Mac Pro connecting to each other. All of a sudden, I got this message "The server COMPUTERNAME is available on your computer. Access the volumes and files locally."
    The Solution
    After a bit of digging, I found this article:
    http://www.alexanderwilde.com/2011/04/os-x-lion-connection-error-with-afp-and-wo rkaround/
    Steps 1 and 2 of that article seemed to do the trick for me:
    Launch /Applications/Utilities/Terminal and do:
    sudo chmod o+w /Library/Preferences
    defaults write /Library/Preferences/com.apple.AppleShareClient afp_host_prefs_version -int 1
    Now restart your computer.
    From Finder, select an AFP server, or use “Connect To…”.  This will cause the AFP Client to create the full preferences file.
    Thanks to http://www.alexanderwilde.com for helping me solve this.

    Hi,
    I also encountered this error but in a different situation : after having restored my Lion installation from a Time Machine backup, everything was okay except that I couldn't connect to any disk attached to my Airport extreme.
    I searched for hours and even restored my backup a second time. The problem is specific to only one client since my Macbook was still able to connect to the AE. I ended up resetting all the settings on the AE and restoring them one by one.
    The problem appears when I restore the address range distributed by the AE's DHCP server to the one that was configured before.
    Thus the solution seems to change this address range. Must be something related to a network route or cache or anything like this.
    I hope it will help anybody who encounters this problem. Luckily it seems there are very few : the number of occurences of this problem in google is very low.
    Matt

  • Got an email stating workspaces no longer available.  Followed instructions.  Think I downloaded my files.  What files?  Where?  How do I access them?

    Got an email stating workspaces no longer available.  Followed instructions.  Think I downloaded my files.  What files? Are they safe?  Where are they?  How do I access them?

    When you download files, you will probably have been asked where to put them. If you didn't choose carefully they could be anywhere. But perhaps they are in your DOWNLOADS folder - some browsers do that.
    Check you have them and know where they are before the service is turned off.

  • Not enough available memory. Cannot upload the file. [Android]

    Why do I get an error message that says: "Not enough available memory. Cannot upload the file." When trying to save a pdf to the document cloud?  The pdf is 105MB and I am using a Samsung Galaxy Note 3.

    tried un syning books from itunes as well as deleting app, reinstalled app and re-syned  books - appears to be ok now

  • "File Now Available" when opening Excel File

    When I open an excel file from using the OpenFileDialog VB, there is a bit of a delay.  After a few seconds a dialog box pops up saying:
    "File Now Available"
    This has two buttons "Read-Write" and "Cancel"
    1) How do turn the alerts off and have it default to Read Write?
    2) The delay in opening can cause issues as the user will not know that there is in fact a delay.  The user may then proceed through my form and press the OK button which will cause an error.  How do I show a status bar to alert the user that there is some Excel process running in the background (i.e. slowling opening the file) when using the OpenFileDialog? Worse case scenario I can set the enable property of the OK button to False until the file is open. 
    Thanks
    EM

    Two thougths -
    Use this:
    Private Function IsFileOpen(strFullFilePath As String) As Boolean
    'http://www.xcelfiles.com/IsFileOpen.html
    'Check if File is Open.  Works for Excel files, but not text files.
        Dim hdlFile As Long
        'Error is generated if you try opening a File for ReadWrite lock >> MUST BE OPEN!
        On Error GoTo errsub:
        hdlFile = FreeFile
        Open strFullFilePath For Random Access Read Write Lock Read Write As hdlFile
        IsFileOpen = False
        Close hdlFile
        Exit Function
    errsub: 'Someone has file open
        IsFileOpen = True
        Close hdlFile
    End Function
    Or just access the Excel file without "opening it" at all using OLE DB (use SQL to modify it) or ExecuteExcel4Macro.
    Cheers

  • When I try to print my book I receive the following error message:  One or more of the images in your book are not presently available at full resolution. Please reconnect to these files by mounting the volume(s) containing the original images.

    When I try to print my book, I receive the following error message:  One or more of the images in your book are not presently available at full resolution. Please reconnect to these files by mounting the volume(s) containing the original images.  I don't understand what this means since all the photos are in the book.  Can someone please clarify?

    When you look at the images in the browser, do you see any arrow icons on your thumbnails? Like these:
    When you import your images from a folder on your system drive, you have two ways to import:
    Managed: Import and store the images in the library
    Or referenced: Leave the images in the folder outside the Aperture library.
    This is controlled by the "Store Files" settings in the Import panel:
    If you did not set "Store files" to "In the Aperture Library", the originals will stay in the folder outside.
    The error message you get, suggests that Aperture assumes the original files are in a folder outside the library.
    Select one of your images in the Browser and use the command "File > Show in Finder" - is this command available or dimmed out?

  • " ... available on your computer. Access the volumes and files locally"

    Uh, help. Powerbook G3 10.4.11, and a Mac Mini Intel, both attached to a Linksys.
    192.168.1.2 and .3
    Yesterday I had a Drop Box folder on the Powerbook showing up properly on the Mini.
    Never have gotten a DropBox folder on the Mini to be found from the Powerbook.
    Today after some reboots for other reasons, no connection. I try the "Go" menu that used to work for 192.168.1.3 and get
    "The server “192.168.1.3” is available on your computer. Access the volumes and files locally.
    Okay.
    Where is it and how do I find it to access it?

    Ah, I see it's happened to others:
    http://forums.macrumors.com/showthread.php?t=878548
    I don't have an Airport, and Back to My Mac was turned off (eliminating the two possible answers suggested at that thread)
    And though search didn't turn it up, it's been reported for a while, e.g. here
    http://positivelyglorious.com/software-media/snow-leopard-afp-access-the-volume- and-files-locally/
    and here
    http://discussions.info.apple.com/message.jspa?messageID=11525657 (unanswered)
    so I'm hoping someone recognizes this!

Maybe you are looking for

  • Work around solutions

    dear gurus,     what is meant by work around solutions?can anyone please explain with few examples..                                 -guna

  • ERROR REPORT U44M1T210

    When I try to upgrade Photoshop Elements 13 I get error report No.U44M1T210, can anyone tell me what this means. Thank you Malmor1.

  • Conversion Failure when combining less than 12 files

    Cleared cache on Firefox.  Files are less than 300kb each. Any ideas?

  • Adding signature to email

    I have two questions. 1. I have been trying to add a new signature to my email, but it wont let me, When I press + nothing happens. 2. I have also been trying to add a image to below my signature. I have a jpeg file, but rather than an image appearin

  • Unknown Download Error - FOR ONE YEAR

    I'm having a strange issue - maybe Apple's looking and can help me resolve this. A year ago (yes, a year ago) I tried to download "Inglorious Bastards" and something happened and the download never happened although I was billed. Now, everytime I fir