Intercompany reconciliatin tool. Upload file

Hello,
We are testing intercompany reconciliation tool in process 003, customer and vendor open items.
We are trying to upload a file in tc FBICS3, for intercompany reconciliation and we can’t upload a line with a negative amount. The file has the same structure than FBICRC_S_UPLOAD.
The intercompany reconciliation tool works fine if we upload a positive amount and documents are reconciled but it doesn’t work with negative amounts.
We have tried to write a negative amount and we obtain a sap error in the file format, we tried to change the account type using vendor(V) and client (D)  in this field (FBICRC_S_UPLOAD-ATYPE) but sap always upload a positive amount in the system.
This is a line of our testing file that is uploaded in structure FBICRC_S_UPLOAD:
HU01     LU07     1800000141     C     DLU07          EUR     123     
We will appreciate any help.
Thanks in advance!

Hello,
We are trying to upload a file with process 003. We can upload the file without any problem but see that the customer/vendor information is not populated. We use the standard structure FBICRC_S_UPLOAD and we used the file structure delivered by note 1154899.
Can you please let me know what needs to be corrected?
Thx,

Similar Messages

  • SXDB  DX tools: upload files

    Hello
    Using structure E1P1000 I want to upload an external file later to be imported to SAP via RHALTD00.
    Preparing datatset based on onject types: PDOTYPES and  program type: BINP :
    If I enter data manually (for instance: with Textpad) no problem.
    If I try to enter an external TXT/CSV file with "COPY" it looks poor (see att.)
    I'll apprecitate help with the right procedure to overcome this obstacle.
    And: Can I upload a XLS file ? or should I save it as CSV/TXT ?
    [http://www.fileflyer.com/view/DY4ZMAA]

    Hi,
    see in Siebel Reports Guide
    Troubleshooting Errors While Running Siebel Reports (SBL-OMS-00203)
    Use the following procedure if errors occur while generating Siebel Reports (error message SBL-OMS-00203).
    To troubleshoot errors while generating Siebel Reports
    1 Make sure the XMLP Report Server component is enabled.
    2 Increase the XMLP Report Server component log level to 5 to create a more detailed log file.
    3 Copy the xdodebug.log file to the jre\lib directory.
    For information about performing these tasks, see “Enabling Logging for the XMLP Report Server Component” on page 141 and “Enabling and Disabling Debugging for Siebel Reports in disconnected Mode” on page 143.
    Additionally, you might encounter an instance where a layout template was registered with one database, but you generated it with a different database, and the generation fails. If this error
    happens, you must complete the following task.
    Reference: Text extracted from Siebel Reports Guide Version 8.1, Rev. C
    Regard

  • Itunes Producer Problems Uploading - File not saving - file does not Exist.

    Can someone please help me out, this problem is killing me. I've uploaded over 200 UPC Albums using Old G3 and Elderly ITunes Producer, but apple asked me to upgrade, so new machine to me Macmini maverics 10.9.? ITunes Producer 3.1.
    So I click open ITunes producer 3.1. Click on make project from Audio
    Files. Name and Save the project in Music-ITunes Producer-Playlists.
    Plug in my external Flash drive and import the 40 Audio files for the
    project. I am using an external flash drive as I can’t get ITunes Producer to
    see my internal hard disk, I do not know if this is normal??
    Go through the process of saving the project to Music – ITunes Producer –
    Playlists – in this case 5060101121313
    I then go through name all Tracks and make sure that all Data is correct.
    Then when I finally go to either save the document or send it to you I get the
    first Screen shot saying
    "The Document "5060101121313" COULD NOT BE SAVED. The File does not exist".
    As I say I have delivered 200 UPC’s to you with the old software and never
    had any problems, I am in urgent need of making significant delivery to you so
    would appreciate you help ASAP.
    Paul

    I have been victorious. Now I am going to post my solution for all those that may have the same problem in the future. I'll even throw in a few key words so it will be more easily found by the search engine.
    Connection conn = null;
            try{
                //connect to database
                DAOManager dao = new DAOManager();
                conn = dao.connectToDB();
                String query = "update ASSIGNMENT set file_object = ?, filename = ?, filetype = ? where a_key = 1"; //sql query
                PreparedStatement pstmt = conn.prepareStatement(query);
                ByteArrayOutputStream baostream = new ByteArrayOutputStream();
                //write to output stream
                byte[] buffer = new byte[1024];
                int len = -1;
                while ((len = instream.read(buffer)) >= 0 )
                    baostream.write(buffer, 0, len);
                baostream.flush();
                byte[] filebytes = baostream.toByteArray();
                baostream.close();
                pstmt.setBytes(1,filebytes); //set blob
                pstmt.setString(2,filename);
                pstmt.setString(3,filetype);
                pstmt.executeUpdate();
                pstmt.close();
            catch (SQLException e) {
                System.out.println(Tools.getLoggingDate() + " upload() Error uploading file -- " + e);
                e.printStackTrace();
            catch (Exception e) {
                System.out.println(Tools.getLoggingDate() + " upload() Error: " + e);
            finally {
                try{
                    conn.close();
                }catch (SQLException e) {}
            }Keywords: setBinaryStream(), setBytes(), MySQL, upload file, InputStream, Blob

  • Unable to see the uploaded file using gos object

    Hi Experts,
    I uploaded the file to server by using the below code. But I am unable to see the uploaded file. Please help me out hot to view the uploaded files (list the file name and view the content) (i want to upload the file by getting the url as input and by clicking the button)
    Code to upload the file.
    DATA: wa_zqtc_gos_request TYPE zqtc_gos_request.
      DATA: l_attachment        TYPE swo_typeid.
      DATA: lo_gos_service      TYPE REF TO cl_gos_document_service.
      obj-objkey  = req_num.
      obj-objtype = objtype.
      CREATE OBJECT lo_gos_service.
      CALL METHOD lo_gos_service->create_attachment
        EXPORTING
          is_object     = obj
        IMPORTING
          ep_attachment = l_attachment.
    I tyied with this to view the files but the attachement link is disabled. (i want to view the files by clicking the icon-GOS icon in tool bar)
      DATA: wa_zqtc_gos_request TYPE zqtc_gos_request.
      DATA: l_attachment        TYPE swo_typeid.
      DATA: lo_gos_service      TYPE REF TO cl_gos_document_service.
      obj-objtype = objtype.
      obj-objkey = req_num.
      CREATE OBJECT manager
        EXPORTING
          is_object = obj
        EXCEPTIONS
          OTHERS    = 1.
    Please help me out how to view the file and list.
    thanks & regards
    T.Tamodarane
    Edited by: T.Tamodarane on Oct 23, 2009 9:55 AM
    Edited by: T.Tamodarane on Oct 23, 2009 9:56 AM

    Hi,
    Please post ur thred below:
    PL/SQL
    Regards
    Meher Irk

  • Upload file to SharePoint via FTP

    Hi,
    Is it possible to setup an FTP to access or upload file to SharePoint?
    We're using SharePoint Foundation 2010 as repository of files and one of the requirement is to upload files using FTP.
    I tried to mapped the document library to the server and created an FTP site and point to that drive but no luck to connect to the FTP using client FTP tool (FileZilla).
    Thanks 

    SharePoint does not use FTP, does not have FTP built into it, and does not listen for FTP requests.
    You can use WebDAV for file uploads, or other programmatic means to upload files.
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • MULTIPLE UPLOAD file problem

    Hello,
    I have a problem with multiple upload file tool.
    Because my server need, in order to upload files in its folders, to be logged only with ftp user (that is unique).
    Now, I need that when I upload a file its name will be stored on db table "file_name". But in order to put data in database i have tobe logged also with user that is allowed to access on mysql db.
    So I understand that I should nedd to types of authentication at the same time...
    I think it depends on my type of hosting that is windows, and there is not the possibility to change CHMOD, so the error when I try to upload a file is that the folder has not write permissions...
    Any suggestions?
    Thanks a lot
    ascaro231
    Italy

    Hi ascaro231,
    wow, that is one bag of problems on the remote side :-(
    to be logged only with ftp user
    although PHP itself provides native FTP functions
    (e.g. for uploading files and also changing folder & file permissions), ADDT´s file upload features don´t support this protocol
    and there is not the possibility to change CHMOD
    CHMOD *will* have to be supported by your host, because this is how ADDT changes folder & file permissions.
    Well, to me it seems that your host doesn´t provide some very basic and truly common-standard PHP settings -- and honestly, disabling the regular PHP file upload features is ridiculous.
    Any suggestions?
    go for a better host -- this is just inacceptable.
    Are you hosting with "Aruba" BTW ? They have both Windows and Linux hostings, and AFAIK it´s possible to switch the hosting type.
    Cheers,
    Günter Schenk
    Adobe Community Expert, Dreamweaver

  • Upload file in google docs is ignored in FF 4b4 (OK other browsers and previous versions of FF)

    I am using Firefox 4.0 Beta 4 and think there is a problem with the "Upload file" functionality in google docs combined with the latest beta4 release of FF. It worked up until beta v3. I have also installed v3.6.8 and seems to be a problem on all such evironments. I use Windows XP. I tried to disable adblock plus but same problem persists and I have to use say Opera.
    Google docs provides an excellent gateway to publish stuff to my blog and to publish plain office and pictures. I have tried to disable "Popup blocker" but no difference.
    Any help most welcome.
    Screenshot - using trace: Tools->Inspect:
    https://docs.google.com/leaf?id=0BxYmgdfTki9SODU1ODk2NTAtMGYwMi00OGI4LWFkM2QtMDAyYmZmODlkZjE5&hl=en&browserok=true as well as
    http://www.google.no/search?as_q=%22Select+files+to+upload%22+firefox+beta+problem&hl=no&num=100&btnG=Google-s%C3%B8k&as_epq=google+docs&as_oq=&as_eq=&lr=&cr=&as_ft=i&as_filetype=&as_qdr=all&as_occt=any&as_dt=i&as_sitesearch=&as_rights=&safe=images

    There is a problem with uploading files to Google docs in Firefox 3.6x versions and later.
    http://www.google.com/support/forum/p/Google+Docs/thread?tid=4f0369bdcf6fd7ff&hl=en "Select files to upload" not working in Firefox - Google Docs Help (Thanks to Joolsa for the link)

  • Error when uploading file in TA: SFP (Form Builder)

    Hi Everybody,
    i am having a problem in Transaction SFP (Form Builder)
    I download a Form Objekt and it was written correct in my Local Drive with the ending xxxx.XML.
    Then i wanted to Updold the file, then it says:
    "Error occurred when uploading file (unknown file format)
    Message no. FPUIFB068"
    we are using ERP2005 Rel. SAP ECC 6.0
    Hope to hear a solution for my problem.
    thank + regards
    I.Ismail

    Hi All,
       Even I faced the same issue whenI tried to upload the form which was developed in Standalone Live cycle designer and I wanted to upload the same into SAP SFP. Initially I felt that this kind of activity might be supported by SAP Adobe Live Cycle deisgner, But it says the Error wron file foramt....
    So what I felt is instead of trying to upload the form by using the tool  provided by SAP... I  directly copy pasted the XML source code into the SFP newly ccreated blank form. ya..it displays some warning messages...But still since I used a Printable form so I could not face any issue...Might be there would be some effect of this warning in Interactive forms.....
    But for copying this you donot want to be a expert in the XML area.. All I did was just copied the source xml file from the line <TEMPLATE> tag  and till the end  and I replaced in the target xml fiel from the same tag from the top <TEMPLATE>....
    and save and activate.....
    Regards
    Pavan
    Edited by: Pavan Bhamidipati on Mar 25, 2011 11:58 AM

  • Problem uploading files

    I'm having a big problem trying to upload files - whether it is as an email attachment or homework for and online class. I get to the file I want to attach, and the ‘choose’ button does not become clickable, and then the entire web browser freezes up. The only thing to do then is to force quit and try again, but it never works. My dad bought a MacBook at the same time I did and he has no problem uploading files. Does anyone have any suggestions? It will be quite annoying if I have to transfer all of my documents on a flash drive to another computer every time I need to upload something. Thanks in advance!
    MacBook    

    Welcome to Apple Discussions!
    The variety of uploading tools can be a bit daunting, and the design of websites that allow for uploading can also be. Ideally a website can be set to have a common FTP server that everyone can upload to with a standard FTP program such as http://www.rbrowser.com/ or http://rsug.itd.umich.edu/software/fugu/
    If it is a website with a choose file from hard drive type setup, it may be the code of the website is poorly designed for specific browsers as my FAQ here explains:
    http://www.macmaps.com/browser.html
    As for sending e-mail, if you are sending e-mail to Windows users, use the attachment toolbar button in Apple's Mac OS X Mail by first making sure it is there in the View menu -> Customize Toolbar, and you'll find in the dialog to choose documents a checkbox for Send Windows Friendly Attachments.
    If you are connecting a server with Appleshare or NTFS drives that's whole different issue which may have to deal with firewall ports.
    So the real question is, what method are you using to send files to other people, and what operating system do the other people have?

  • Uploading files to Moodle or Drupal -no can do!

    Ipad users can not  uploading files on the IPad to a CM sites... because  "Choose file" is grayed out -in my case Moodle, or any other web based content management site I use. If it's absolutely not possible I need to be going another route. No file systems means this iPad can't do simple web based tasks. Please no post on how to attach to iPad apps. I need to upload or attach files on my iPad to a web based email account or to a content management site. After a year of waiting for apple to make this more than a content viewing tool im finally getting ready to move on. Seems like Apple is missing an opportunity here.

    More than likely your control panel for these is not supported under the safari browser...
    Possibly a mixture of javascript and java possibly.

  • Various ways of uploading files

    I've read about apache commons fileupload, o'reilly servlets, and the now discontinued smartupload.
    In the examples i've seen so far, the files are uploaded onto a local hard disk.
    Is there any reason for this? Security? Performance? Does this work if i have a remote user trying to download or upload files?
    I am trying do some file uploading and downloading. At first i had wanted to use a mysql database, storing the files as BLOB. But so far from what i've gathered, the common practise is to store it on hard disk instead.
    What does it mean by "mapping"? Is it the file location and directory? How do i store this information on a mysql database?
    What are the pros and cons of either options (storing on hard disk vs storing as blob field on mysql)? Thanks. And if you have experience in this, please share. Thanks again.
    EDIT: I'm currently trying the smartupload option. they work when its purely writing the file to hard disk. but when i run the example page on writing to mysql database. it does not work. I kept getting null pointer exceptions.
    <%@ page language="java" import="java.sql.*,com.jspsmart.upload.*"%>
    <jsp:useBean id="mySmartUpload" scope="page" class="com.jspsmart.upload.SmartUpload" />
    <HTML>
        <BODY BGCOLOR="white">
            <H1>jspSmartUpload : Sample 4</H1>
            <HR>
            <%
            // Variables
            int count=0;
            // Connect to the database
            //Class.forName("org.gjt.mm.mysql.Driver").newInstance();
            Class.forName("com.mysql.jdbc.Driver").newInstance();
            String url = "jdbc:odbc:Maintenance";
            Connection con = DriverManager.getConnection(url);
            // SQL Request
            Statement stmt = con.createStatement(ResultSet.TYPE_FORWARD_ONLY ,ResultSet.CONCUR_UPDATABLE);
            ResultSet rs = stmt.executeQuery("SELECT * FROM tfiles WHERE id=1");
            // if the resultset is not null
            if (rs.next()){
                // Initialization
                mySmartUpload.initialize(pageContext);
                // Upload
                mySmartUpload.upload();
                // upload file in the DB if this file is not missing
                if (!mySmartUpload.getFiles().getFile(0).isMissing()){
                    try {
                        rs.updateString("FILENAME",mySmartUpload.getFiles().getFile(0).getFileName());
                        // Add the current file in the DB field
                        mySmartUpload.getFiles().getFile(0).fileToField(rs,"FILE");
                        // Update
                        rs.updateRow();
                        count++;
                    } catch(Exception e) {
                        out.println("An error occurs : " + e.toString());
            // Display the number of files uploaded
            out.println(count + " file(s) uploaded in the database.");
            rs.close();
            stmt.close();
            con.close();
            %>
        </BODY>
    </HTML>Edited by: tsek1125 on Oct 17, 2007 9:41 PM. Code added.

    FileUpload can store files in memory only if they are small enough, you control yourself from what size they will be cached to disk.
    What you do after that with the file data is up to you, the upload API will provide you with an array of bytes only. You could story the entire file in the database, but why not only store the complete path to the file on disk? That saves unnecessary copying of bytes and when the files are on disk you can work with other tools on those files should you need too.

  • Attempting to upload files using the zend _file_transfer system from cs5 training from the source. [was: Question for David Powers]

    I am attempting to upload files using the zend _file_transfer system from cs5 training from the source.
    On trying to upload to a remote server I am having trouble with the destination setting (C:/upload_test) in the example, please could you point me in the right direction for the an example of this setting for a remote file transfer
    Also do I have to construct a connection file to activate a Ftp file transfer?
    David Woolston

    >I am on windows platform
    Who is your host? When you checked your host path in your host control panel, what did it say?
    >i have assumed (may be incorrectly) that the purpose of the exercise was to upload to a remote site (ie my website)
    That is correct.
    >Of course that upload might take place on a computer that does not have DW installed (an internet cafe for example)
    That's irrelevant. DW is just the tool you are using to build your site. The site runs on your hosting accounts servers. This includes the php scripts you are working with.
    >I have uploaded all files necessary for the operation, when i click upload it returns no such directory exits.
    Do you have a url we can check? What destination are you specifying in zend code?
    >This made me suspect that I would need to construct a ftp file transfer connection file to satisfied username, password , connection address etc
    The exercise you are dealing with is using http file transfer. This has nothing to do with FTP. You do not need FTP for this, other than using it to move your source code from your local client to your server.

  • Uploaded file (via front-end) created as a Media Download item (Literature Item)?

    Is it possible to have an uploaded file (via a form or webapp edit form on the site front-end) to be stored/created as a Media Download item (Literature Item)? Or alternatively, is it possible to secure a file that has been uploaded on the front-end (by 'secure' I mean cannot be access outside of a secure zone)?
    My aim is to have customers upload files into their secure zone and maintain that security on the uploaded file so other cannot access them. I can't see that this will be possible but hopefully someone might have some creative ideas to get around it.

    Hi Adam,
    This can be implemented via web apps, please go through the web app tutorials here to know more about them - User manual
    You can set up a secure web app to take the submissions from the users and include file upload in that submission. Those submissions are visible to only the user who submits it, unless, you enable the option where every one can see/edit it.
    Note: Via the web apps, the files that are uploaded, they go into a folder with a random name which is directly accessible on the internet, even though, on the site, through the web app items, only the logged in users can see it. By this I mean that anyone who has the direct link to the file will be able to access it and it can also be indexed by search engines. So, when it comes to using the work around of web apps to implement this function on your site, make sure to take measure to block Google bots from indexing the files.
    Check this article to know more on how the GoogleBot works - Googlebot - Webmaster Tools Help
    Regards,
    Abhishek Maurya

  • Adobe Muse won't publish (Error uploading file)

    After making simple animations using Adobe Edge Animate it seems as though none of the assets will publish with my site after importing them into Muse.
    In Edge animate I saved for "web animation" and published. Then I went to muse and hit "place". I went to preview and everything works fine. When I go to publish there are always errors in uploading my assets with '.png' extensions.
    Any help is much appreciated. I have completely scrapped my website and created another, reinstalled Animate and have renamed all my files, I'm not sure whats wrong here.
    I got one animation working, and that can be seen here under the Photography section, but I have multiples that will be shown on my page at one time.
    http://chasebodydesign.businesscatalyst.com

    I get the error uploading file everytime I try publishing the animation.

  • Change upload file name with com.oreilly.servlet.MultipartRequest to handle the file upload

    1. when use com.oreilly.servlet.MultipartRequest to handle the file upload, can I change the upload file name .
    2. how com.oreilly.servlet.MultipartReques handle file upload? do it change to byte ?
    what  different?  if I use the following method?
       File uploadedFile = (File) mp.getFile("filename");
                   FileOutputStream fos = new FileOutputStream(filename);
                    byte[] uploadedFileBuf = new byte[(int) uploadedFile.length()];
                   fos.write(data);
                 fos.close();

    My questions are
    1) when use oreilly package to do file upload , it looks like i line of code is enough to store the upload file in the
    file direction.
    MultipartRequest multi =
            new MultipartRequest(request, dirName, 10*1024*1024); // 10MB
    why some example still use FileOutputStream?
    outs = new FileOutputStream(UPLOADDIR+fileName); 
        filePart.writeTo(outs); 
       outs.flush(); 
      outs.close();
    2) can I rename the file name when I use oreilly package?

Maybe you are looking for

  • How to change the password and username in the scan to email function of a HP laserjet 300

    Trying to set up the scan to email function. Using the printer pad, I get as far as getting to  SMTP outgoing and then I get an error message that the username or password is incorrect.    I do not know what the correct  username or password is. I wo

  • Finder shows no icons in any folder/drive opened from the desktop?

    I noticed this whilst I was running the beta, but figured it would have been fixed in time for the public release. When I open a folder or drive from it's icon on the desktop I have noticed something odd happens. Either the folder/drive's contents ar

  • RPC fault when calling a CFC from flex

    Hello there, I'm having some startup problems getting Flex and Colfusion 8 to play nice with FDS. I'm using Flexbuilder 2.0.1 and Coldfusion 8 developer edition on IIS on a windows box (XP professional). I use a very simple test CFC in my coldfusion

  • X-fi, Will not switch modes unless reb

    This happens to me occasionally. I will close ALL applications and then try to switch modes and its says I have an audio application open or the device is in use. Anyone experienced this and know a solution?

  • Material MRP error

    Hi Guru: When I finished extending the material to the specific plant and sales organization,and go into look at via mm03,I am encountering that error message,MRP 1 not active for the organizational level,it seemed that it had not been extended to MP