To attach/upload binary data file(to vendor) from EP(sends from) to abap

Hi All,
I have requirement Enterprise portal(JAVA) will send the file data in binary format to abap.we have to attach the binary data(file) to content server.
that is for vendor/custmer(XK02/XD02) will have attachments in the sap screen.
similarly the above screens are provided using enterprise portal (using java) also attachment feature also needs to provide.
so whenever user imports file form EP screen, they will convert the file into binary format and sends to abap through proxy(custom proxy) abap should attach the binary file to vendor/customer.
I have checked so_object_upload,so_object_insert, binary relation create --  these FMs are helped using dialog box or providing the path of the file. but couldnt use when the file is in binary format and if it sent form proxy interface.
could anyone help me in resolving the requirement to upload binary data.

I use "call function 'ARCHIVOBJECT_CREATE_TABLE'" to process a binary table.  However, in my situation, I'm storing in Documentum.  Once that FM completed, I follow up with call function 'ARCHIV_CONNECTION_INSERT' to store the reference to the document and the archived object in SAP tables.  In your case, you need something that processes the binary table, or you need to utilize one of the "SCMS* " function modules to put your binary table into something that you can use with the other functions.
The upload from desktop can be done using BIN filetype for GUI_UPLOAD class or function module, or from apps server, you can read your file into an xstring with open dataset....in binary mode....read dataset into your xstring, close dataset.

Similar Messages

  • Opening a binary data file with a local java application from a weblink...

    I don't know if this is the right forum for my query, but I would like to be able to click on a data file from a download link on a webpage and be able to have the file "open" into the java application that processes the particular file (as opposed to selecting the "save to disk" option or having the browser display a bunch of funky characters). If the application is not already running, have an instance start up and process the data file and display the information. What steps would I need to take to get this to happen? The application is executed in a windows environment through executing a .bat file and not an executable .jar file. Any thoughts? TIA!

    This is entirely a matter of configuring the Windows file associations so that files with that extension are started using your designated process. Depending on the particulars you may be able to establish the association from the context (right-click) menu, or you may need to use Folder Options rom the Control Panel.
    In any case, this is a not a Java question, but Windows; if further help is needed you should go to a Windows help site.

  • Download Binary Data File over Serial Port

    I need help setting up a .vi that I can use to download a binary data file from a dos-based system. I will send the system a command, say ascii "DOWNLOAD", and then the remote system will send me a binary data file that will be approx. 600MB. I won't be doing any display/manipulation using labview, I will just need to have the option available in LV to recieve the file.
    Any examples would help a programmer that is new to LV and is getting a little desperate.

    A VISA Read doesn't care whether the data it's getting is binary or ASCII. Where you might have problems is detecting that file transfer is complete. If you have enable termination character set to True in the VISA Configure Serial Port, the read will stop as soon as the termination character is detected. The default termination character is 0xA or a linefeed. You probably don't want to use this. If the file is terminated with a character or string of characters that you now will be unique, you can use this. If there is no unique termination character at the end of the file, the next best thing is to know the file size exactly and set the byte count of VISA Read to that number. Based on file size and baud rate, you would also need to adjust the VISA timeout value. Another way to do this is to transfer the data in pieces and write to a file as soon as the data is received. The reading of data would then be terminated when there are no more bytes available at the serial port. I've attached a LabVIEW 7.0 program that should give an idea of the last approach.
    Attachments:
    File Transfer.vi ‏57 KB

  • Unable to upload a .dat file from pl/sql

    Hi,
    I have written a stub in plsql to upload a data file. the DB version which I am using is 11g ( 11.1.0.7). The data file consists of 94000 rows.
    Sys is able to upload only 8000 rows at a time. I tried to upload it from the DB server by Setting serverout param to off. I generated a log file for this and I get " -ORA-06502: PL/SQL: numeric or value error: character string buffer too small " error. Kindly help on this issue.Are there any param's in the DB which will restrict the data upload into table based on rows/blocks at a time ?
    My code is as follows :
    DECLARE
         f           UTL_FILE.file_type;
         l           VARCHAR2(30000);
         l_rec          tmp_bic%ROWTYPE;
         split          DBMS_SQL.number_table;
         val          VARCHAR2(4500);
         s          NUMBER;
         e          NUMBER;
    BEGIN
         -- Pls look at some sample lines in the file (FI.Dat)
         -- The following lines are to split the line to fields. If the position is changing,
         -- you may need to change the below accordingly.
         split( split.COUNT + 1 ) := 4;
         split( split.COUNT + 1 ) := 15;
         split( split.COUNT + 1 ) := 120;
         split( split.COUNT + 1 ) := 190;
         split( split.COUNT + 1 ) := 225;
         split( split.COUNT + 1 ) := 289;
         split( split.COUNT + 1 ) := 324;
         split( split.COUNT + 1 ) := 359;
         split( split.COUNT + 1 ) := 394;
         split( split.COUNT + 1 ) := 464;
         split( split.COUNT + 1 ) := 569;
         split( split.COUNT + 1 ) := 639;
         split( split.COUNT + 1 ) := 674;
         split( split.COUNT + 1 ) := 779;
         delete tmp_bic;
         commit;
         -- If the file name or Path are different, the following line needs to be edited accordingly
         f := utl_file.fopen('/tmp','FI.dat','r',32767);
         BEGIN
              LOOP
                   utl_file.get_line(f,l);
                   l_rec := NULL;               
                   FOR i IN split.FIRST .. split.LAST
                   LOOP
                        IF i = split.FIRST
                        THEN
                             s := 1;
                        ELSE
                             s := split(i-1);
                        END IF;
                        IF i = split.LAST
                        THEN
                             e := 500;
                        ELSE
                             e := split(i)-1;
                        END IF;
                        val := SUBSTR(l,s,(e-s+1));
                        val := LTRIM(RTRIM(val));
                        --dbms_output.put_line(i||' - '||s||' - '||e);                    
                        IF i = 1     THEN     l_rec.col1 := val;                    
                        ELSIF i=2     THEN     l_rec.col2 := val;
                        ELSIF i=3     THEN     l_rec.col3 := val;
                        ELSIF i=4     THEN     l_rec.col4 := val;
                        ELSIF i=5     THEN     l_rec.col5 := val;
                        ELSIF i=6     THEN     l_rec.col6 := val;
                        ELSIF i=7     THEN     l_rec.col7 := val;
                        ELSIF i=8     THEN     l_rec.col8 := val;
                        ELSIF i=9     THEN     l_rec.col9 := val;
                        ELSIF i=10     THEN     l_rec.col10 := val;
                        ELSIF i=11     THEN     l_rec.col11 := val;
                        ELSIF i=12     THEN     l_rec.col12 := val;
                        ELSIF i=13     THEN     l_rec.col13 := val;
                        ELSIF i=14     THEN     l_rec.col14 := val;
                        ELSIF i=15     THEN     l_rec.col15 := val;
                        END IF;
                   END LOOP;
                   INSERT INTO tmp_bic VALUES l_rec;
                   commit;
                   --exit;
              END LOOP;
         EXCEPTION
              WHEN NO_DATA_FOUND
              THEN
                   NULL;
         END;
         utl_file.fclose(f);
    EXCEPTION
         WHEN OTHERS
         THEN
              DBMS_OUTPUT.put_line('Error '||SQLERRM);          
              IF utl_file.is_open(f)
              THEN
                   utl_file.fclose(f);
              END IF;
    END;
    insert into glo_bic_bkp select a.*,sysdate from glo_bic a;
    commit;
    BEGIN
         for i IN (
              SELECT     rowid rid,
                   bic_code
              FROM      glo_bic          
         loop
              for j IN
                   select substr(col3,1,35) name,
                   substr(col4,1,35) addr1,
                   substr(col5,1,35) addr2,
                   substr(col8||' '||col9,1,35) addr3
                   from tmp_bic
                   where col2 = i.bic_code
              loop
                   update     glo_bic
                   set     name = j.name,
                        address1 = j.addr1,
                        address2 = j.addr2,
                        address3 = j.addr3,
                        mod_no = mod_no+1,                    
                   WHERE     rowid = i.rid;
                   commit;
              end loop;
         end loop;
    END;
    insert into glo_bic
         BIC_CODE,
    NAME,
         CUSTOMER_NO,
         SK_ARRANGEMENT,     
         ADDRESS1,
         ADDRESS2,
         ADDRESS3,
         UPLOAD_FLAG,
         UPLOAD_UPDATE     
    select     col2,
         substr(col3,1,35),
         null,
         'N',
         1,          
         substr(col4,1,35),
         substr(col5,1,35),substr(col8||' '||col9,1,35),
         'N',
         null     
    from     tmp_bic
    where      not exists (select 1 from glo_bic where bic_code = col2)
    commit;
    Edited by: tyro_vins on Sep 24, 2009 10:34 PM

    The error sounds like one of the fields to too big for the column. Maybe you can look at the data in a text editor.

  • Want attach the XML data file with layout template in Oracle 10g

    Hi All,
    I need a help from you genius guys.
    I am genrating reports in BI with xml the procedure which I am following is as below.
    1. generating XML from the RDF
    2. creating a template in .rtf format
    3.after that loading the xml to the template then getting the required report.
    This all is doing through the given buttons
    But now my requirement is to create the gui from user can select the report and get the desire output file so how we would be able to attach the XML data file with layout template in Oracle 10g.
    If you require more detail please let me knnow.
    Thanks,
    Harry

    I am not using Oracle apps.
    I am using oracle 10g reports and I get something in it like one patch I downloded and one java code is having which creates the batch file ...still I am working on it ..
    If you will get some please share so that it will be helpful.
    Thanks,
    Harry

  • B&K Portable Signal Analyzer Binary Data Files

    I am currently using a B&K 2144/7651 Portable Signal Analyzer.  I'd like to start a project to display the binary data files created by the analyzer in Labview.  I have the technical documentation that specifies the formatting of the binary files and they have example code written for Pascal but I have no idea how to translate that to Labview.  If anyone has experience with these data files or could give me a hint on how to parse the Labile files I would appreciate it.
    I can post the technical doumentation but I have to scan it first.
    Thanks
    Eric
    Solved!
    Go to Solution.

    Hi Arvin,
          Thanks much for the Kudos!
    Here's a first "possbly useful" LLB.  The main thing is the data arrays are being populated!
    I hope you'll forgive me for not unpacking the entire "Setup" section - - I wasn't sure you needed it all(?)  As is, enough Setup is unpacked to interpret the Data correctly plus a bunch more.
    Please give it a test-drive and let me know if you need any unrepresented Setup values (or all of them.)
    Cheers!
    "Inside every large program is a small program struggling to get out." (attributed to Tony Hoare)
    Attachments:
    7651.FileReader.llb ‏1475 KB

  • How can I read a binary file stream with many data type, as with AcqKnowledge physio binary data file?

    I would like to read in and write physiological data files which were saved by BioPac�s AcqKnowledge 3.8.1 software, in conjunction with their MP150 acquisition system. To start with, I�d like to write a converter from different physiodata file format into the AcqKnowledge binary file format for version 3.5 � 3.7 (including 3.7.3). It will allow us to read different file format into an analysis package which can only read in file written by AcqKnowledge version 3.5 � 3.7 (including 3.7.3).
    I attempted to write a reader following the Application Note AS156 entitled �AcqKnowledge File Format for PC with Windows� (see http://biopac.com/AppNotes/ app156Fi
    leFormat/FileFormat.htm ). Note the link for the Mac File format is very instructive too - it is presented in a different style and might make sense to some people with C library like look (http://biopac.com/AppNotes/ app155macffmt/macff.htm).
    I guess the problem I had was that I could not manage to read all the different byte data stream with File.vi. This is easy in C but I did not get very far in LabView 7.0. Also, I was a little unsure which LabView data types correspond to int, char , short, long, double, byte, RGB and Rect. And, since it is for PC I am also assuming the data to be written as �little endian� integer, and thus I also used byte swap vi.
    Two samples *.acq binary files are attach to this post to the list. Demo.acq is for version 3.7-3.7.2, while SCR_EKGtest1b.acq was recorded and saved with AcqKnowledge 3.8.1, which version number is 41.
    I would be grateful if you someone could explain how to handle such binary file stream with LabView and send an example to i
    llustrate it.
    Many thanks in advance for your help.
    Donat-Pierre
    Attachments:
    Demo.acq ‏248 KB
    SCR_EKG_test1b.acq ‏97 KB

    The reading of double is also straight forward : just use a dble float wired to the type cast node, after inverting the string (indian conversion).
    See the attached example.
    The measure of skin thickness is based on OCT (optical coherent tomography = interferometry) : an optical fiber system send and received light emitted to/back from the skin at a few centimeter distance. A profile of skin structure is then computed from the optical signal.
    CC
    Chilly Charly    (aka CC)
             E-List Master - Kudos glutton - Press the yellow button on the left...        
    Attachments:
    Read_AK_time_info.vi.zip ‏9 KB

  • How do I import binary data files (with header info) into DIAdem?

    We have lots of data acquired by nCode datagate. Files are binary data with header info. How do I import this into DIAdem? Typical (short) file attached. Also of interest, can I stream data from Sony PC208/SIR1000 recorders?
    Attachments:
    Propshft.dac ‏4 KB

    I have successfully imported your file into DIAdem using the nCode file filter included with DIAdem. You might have to make that file filter known to DIAdem by following these steps (this assumes you have version 8 of DIAdem):
    1. Go to the 'Window' menu in DIAdem and select 'Close all'
    2. Go to the 'Settings' menu and select 'GPI-DLL Registration'
    3. Click the 'Add' button in the window and select the 'GfSnCode' DLL in the 'DIAdem/AddInfo' directory
    4. The program will prompt you to restart.
    5. After you have restarted DIAdem, go to the DATA icon, select 'File - Open' from the DATA menu and in the dialog that appears, choose 'nSoft Data File Format' in the 'Files of type:' field.
    6. Select your data file and load
    That's it.
    With regards to your Sony reco
    rder data, I would need to get my hands on an actual data file to try it out. In general, DIAdem can import ANY binary file format by creating a header in the 'File - Import via header' section in DATA. If you have lots of data files from the SONY recorder, a DLL can be created for that specific file format with the free DLL toolkit included with DIAdem.
    Leave me a message here if you have any additional questions.
    Otmar
    Otmar D. Foehner
    Business Development Manager
    DIAdem and Test Data Management
    National Instruments
    Austin, TX - USA
    "For an optimist the glass is half full, for a pessimist it's half empty, and for an engineer is twice bigger than necessary."

  • How can I read a binary file stream with many data type, as with AcqKnowled​ge physio binary data file?

    I would like to read in and write physiological data which was saved by Biopac�s AcqKnowledge 3.8.1 software, in conjunction with their MP150 acquisition system. To start with, I�d like to write a converter from different physiodata file format into the AcqKnowledge binary file format for version 3.5 � 3.7 (including 3.7.3). It will allow us to read different file format into an analysis package which can only read in file written by AcqKnowledge version 3.5 � 3.7 (including 3.7.3).
    I attempted to write a reader following the Application Note AS156 entitled �AcqKnowledge File Format for PC with Windows� (see http://biopac.com/AppNotes/app156FileFormat/FileFo​rmat.h
    tm ). Note the link for the Mac File format is very instructive too - it is presented in a different style and might make sense to some people with C library like look (http://biopac.com/AppNotes/app155macffmt/macff.ht​m) .
    I guess the problem I had was that I could not manage to read all the different byte data stream with File.vi. This is easy in C but I did not get very far in LabView 7.0. Also, because it is for PC I am assuming the data to be written as �little endian� integer, and thus I also used byte swap vi.
    I would be grateful if you someone could explain how to handle such binary file stream with LabView and send an example to illustrate it.
    Many thanks in advance for your help.
    Donat-Pierre

    One more step...
    short are U16 integer
    double are double precision float
    bool seem to be 2 bytes (= U16)
    char are string (variable length)
    rgb are U16 integer, with high order byte = 0
    rect should be 4 x U16 (top, left, bottom, right)
    Chilly Charly    (aka CC)
             E-List Master - Kudos glutton - Press the yellow button on the left...        

  • How to covert a flat txt file to a binary dat file

    hi, am working on a project. i have to insert all the data into a dat file in a binary format. my input file is a flat text file. i have written the code for this job. the code executes ok but it doesnt' write into the dat file. please help me out.
    here is my method for binary conversion---- >
    public static void BinaryOutFile(String fileName){
         try{
              File fileOut=new File(fileName);
              DataOutputStream out=new DataOutputStream(new BufferedOutputStream(
                                       new FileOutputStream(fileOut)));
              for(int i=0;i<array.size();i++)
                   String con=(String)array.get(i);
         //System.out.println(""+con);
                   if(!con.equals(""))
                        out.writeChars(con);
                   out.writeChar(',');
         catch(IOException io){
              System.out.println("Error! Can not write to teh specified file.");
    }

    no i never flush or close the output stream.
    i just want to dump the value of the database (the flat file) in a dat file.
    here is my whole code---->
    import java.io.*;
    import java.util.*;
    import java.util.StringTokenizer;
    public class Flatgen{
    private static ArrayList array= new ArrayList();
    public static void main(String args[]){
         String line=null;
         String value=null,
         actualValue=null;
         StringTokenizer token1=null,
              token2=null;
         BufferedReader buf=null;
         try{
              File inFile=new File("input.txt");          
         buf=new BufferedReader(new InputStreamReader(new FileInputStream(inFile)));
         catch(FileNotFoundException e){
              System.out.println("Cannot open the source file: ");
              System.exit(0);
         try{
              while((line=buf.readLine())!= null){
              token1=new StringTokenizer(line,",");
              int tokenizeCount=0;
              while(token1.hasMoreTokens()){
                   value=token1.nextToken();
                   token2=new StringTokenizer(value,":");
                   for(int i=0;i<2;i++)
                        actualValue=token2.nextToken();
              if(tokenizeCount>0)
                   Integer.parseInt(actualValue);
                   array.add((Object)actualValue);
                   tokenizeCount++;
         catch(IOException e){
              System.out.println("Cannot read the input file");
              System.exit(0);
         BinaryOutFile("dbfile.txt");
    public static void BinaryOutFile(String fileName){
         try{
              File fileOut=new File(fileName);
              DataOutputStream out=new DataOutputStream(new BufferedOutputStream(
                                       new FileOutputStream(fileOut)));
              for(int i=0;i<array.size();i++)
                   String con=(String)array.get(i);
         //System.out.println(""+con);
                   if(!con.equals(""))
                        out.writeChars(con);
                   out.writeChar(',');
         catch(IOException io){
              System.out.println("Error! Can not write to teh specified file.");
    }

  • Upload test data file

    Hi all,
       After chaining the test data, is it req. to open test data container and upload the latest file?
      How to Automatically pick the latest test data?
    Regards,
    Sree...

    Hi Jwalith,
    After a test data file is created in the system,
    you add that to the container by going to the Varaints tab,
    <b>select the radio button "External Variants / Path" and mention the path of the file where it is located in the system.</b>
    All the varaints created in the file would be displayed in the variants list.
    Hope this helps.
    Best regards,
    Harsha

  • Binary Data file displays large gaps in the data. Will use of a queue help?

    Ultimately I'd like to save 15 channels of data (1 channel at 20kHz, 6 at 2kHz, and 8 at 100 Hz) while displaying the waveforms on the front panel.
    Currently, I am saving in binary format without any decimation of the data (therefore saving all channels at 20kHz). Decimating the waveforms can be done without affecting the display, and will definitely reduce the final size of the data files, but will slow down the processing. I've seen examples of using queues to limit data loss, but do not know if it will be advantageous in this case.
    Any comments and suggestions will be greatly appreciated.
    Attachments:
    Cont_Acq_to_File_(binary)_NM-no_dec.llb ‏546 KB
    Cont_Acq_to_File_(binary)_NM-dec ‏531 KB

    So let's say that I'm going to use queues. Is it better to have an acquisition loop and then a 'everything else' loop (decimation and data recording) or is it possible (and better?) to use 3 loops? I'm assuming with each queue segment, the time spent reading and writing the data will increase, and therefore slow down my vi even more than it is doing now.
    And another question: in the case of the tabbed case structure, my charts are only active when the corresponding tab is selected, correct? If I would then put the recording of data in each case, then the data would be recorded for only those signals which are displayed on that tab. I'm not completely confident that I understand how that structure works, or how I can make the data recording more efficient.
    Thank you for all of your help, and for the compliment.

  • Searching binary data file

    Hi I have a data file which acts as a database. I need to search this file for records. I am trying to implement this in the most efficient way I have the following extremes
    1)To search using RandomAccessFile each record directly from the file
    2)Load the entire file into memory. By encapsulating each record in a lava object.
    1st option would save me a lot of memory but time consuming . The second option would consume a lot of memory and might be unsuitable for a large amount of records.
    I have chosen a middle path but I am not sure if it will work properly.
    My current proposal is to use a scaled down Object to represent a record
    Integer values which are mostly 8 bit and 16 bit value will be stored an a array of integers where the necessary values are stored and extracted using bitwise operations.
    My problem is characters I was thinking of storing the hash code of the Strings but the search protocol requires that you should be able to search even if a part of the String is given.
    Regarding this problem I looked up the java 1.5 API doc for String.hashCode. Where I determined the hash code of a substring is smaller than of the main String. My question is? Is it possible to use this as a search condition to initially eliminate certain records and then read the character sequence from the file to confirm my match.
    I hope you can understand what I have typed above and any help would be appreciated.

    Why not turn this thing into a database and actually use database drivers to query it, and let the database worry about those kinds of things rather than basically reinvent them yourself?

  • Where is the binary data of this icon stored and retrieved from Application server?

    Hello guys,
    Today I observed one phenomenon and could not explain it per my knowledge.
    I have one url which points to an icon in application server:
    https://<host name>:44301/sap/public/bc/ur/nw5/themes/sap_corbu/common/libs/Icon/SuccessMessage.gif
    I could successfully open it via chrome:
    and after that I could see an entry in ICM server cache. Everything works perfectly.
    Then I tried to check this icon in mime browser in SE80. To my surprise, the folder /sap/public/bc/ur/nw5/themes is empty.
    However, the ICM cache shows that there is a subfolder called "sap_corbu" under "themes" folder. But why I cannot find it in mime browser?
    Then I write a report to retrieve the binary data of icon via CL_HTTP_CLIENT, and clear the ICM buffer via tcode SMICM.
    I expect this time some database table will be queried to load the content of the icon, since now the buffer is not available.
    To my surprise again, in SAT no database table is involved.
    So now I am confused: since I have already cleared the ICM server cache, where does the icon binary data come from when I run the report to access the icon?
    Best regards,
    Jerry

    Hello guys,
    one colleague today told me that there is a zip file "ur_mimes_nw7.zip" in MIME repository /PUBLIC/BC/UR/ur_mines_nw7.zip. I download it locally and unzip it and indeed find many theme folders including sap_corbu folder and its resource files. So I guess there must be some logic done in web application server which will unzip this archive file and put each theme folder to the corresponding folders in application server. I would assume those logic are done outside ABAP stack side, this is the reason I cannot find any hint of them in ABAP backend via tcode SAT even I clear both client and server side cache.
    Best regards,
    Jerry

  • Restoring iPhoto data file or ediitng Quicktime move made from iphoto

    I wanted to edit an old slideshow I had done in iphoto (I don't know the version) a while ago. i thougfh i had saved the slideshow or library correctly . All I have from that time is a Data file with the name of the slideshow. I have tried to open it, import it into iphoto (I believe i am using the latest pre-purchased version) and all those atempts are unsuccessful. I have the quciktime move I had exported the slideshow into. I wanted to lengthen the transition time (dissolves) between the slides on the quicktime move. I am unable to edit the quicktime .mov. Even if I upgraded to Qucktime Pro I don't think I would be able to edit those transition times. what can I do?
    Thanks

    A Volume is a Hard Disk, or a partiton on a Hard Disk.
    Hard Disks can be structured in different ways to hold the data, and iPhoto requires a Disk/Volume that is formatted Mac OS Extended (Journaled). If the library is on a disk with a different format then the data won't be stored in an appropriate structure.
    I'm 99.999% certain that Crashplan's server is not formatted Mac OS Extended (Journaled). VIrtually no servers are.
    So, when you write the iPhoto Library to that server the data is not structured properly, and that's why you have problems when you restore.
    It should be noted that ordinary files won't have a problem, in this sense they are Mac compatible. But an iPhoto Library is not an ordinary file. It's a complex ecosystem of interlinked databases, caches, metadata files plus you images. This is also true of Aperture and 3rd party apps like DevonThink Office and so on.
    The best you can hope to do is get everything down from Crashplan first, and then see about cleaning up the mess.

Maybe you are looking for

  • Return Order Changed/Re-assigned to Diff Sales Order

    Hi All SD gurus, I have a very weird case here and am wondering whether anyone can gives me some leads here. A return order ( customized ) was created with reference to a Sales Order. A subsequent return delivery and Post Goods Receipt was performed.

  • How do i transfer a movie from my mac to ipad2

    i have a movie on my mac and i want to get it on my ipad. simple huh? mmmm .... help me please clever people ....

  • Random application object lost in Portal

    Hi people, I'm having a problem with the application object. Some times, in a random way, i'm losing the state of the application object between request's. This appens when I'm using the BSP application in the SAP Portal. Thanks, Paulo Ruivo

  • "Previous Version" analogue rollback software

    Hello there, I was wondering if anyone here has experience with tools that work in the same way "Previous Versions" work in "M$ Window$". This tool gives the user the possibilitie to "roll back" changes or recover deleted documents from a file share.

  • Overloading hassle with no args, different return types

    We're trying to create a document object that can be parsed from XML with xerces and then used as the model for a jtree and a styled-text editor. That means we want to: 1. subclass stuff from org.w3c.dom 2. implement interfaces from javax.swing.tree