How i provide document to fm which i upload through fileupload ui

Hi,
Here in my application i need to store document in backend dms(Document Mangment System) server.
I am using fileupload ui for downloading file but i have one problem in that. High i provide document to backend fm ,So further process can possible .
Please help me in that,
Regards,
Gurprit Bhatia
Edited by: GURPRIT BHATIA on Aug 18, 2008 8:44 AM

Hi,
Here in my application i need to store document in backend dms(Document Mangment System) server.
I am using fileupload ui for downloading file but i have one problem in that. High i provide document to backend fm ,So further process can possible .
Please help me in that,
Regards,
Gurprit Bhatia
Edited by: GURPRIT BHATIA on Aug 18, 2008 8:44 AM

Similar Messages

  • How to create a Z* table which can maintain through SM30?

    How to create a Z* table which can maintain through SM30? Thanks!

    This question had been asked millions of times...you just need to search the forums...
    Quick hint...goto SE11...the utilities menu and then Table Maintenance Generator.
    Greetings,
    Blag.

  • How to provide a (web)service which delivers a process context?

    Hi folks,
    i have designed a process with Process Composer so far.
    Several tasks read and write data into the process context.
    What i want to do now is providing a (web)service which gets an process instance number as input and delivers the data from the corresponding process context as output.
    Maybe someone can explain me the steps that are needed to implement that?
    TIA
    Michael

    Hi Michael,
    In case you want to have an 'instant view' on the process data context that might be an option.
    Nevertheless I would not recommend doing so / be careful if there is no other possibility. Maybe it makes sense to define specific check points where data could be synchronized. You would benefit of a more clean process model and a reduced number of outgoing web service calls which in fact would also speed up process execution.
    I am somehow curious what you are planning to achieve. Could you elaborate on that?
    Best regards,
    Martin

  • How to provide document attachment (DMS) functionality in MIGO transaction

    Dear All,
    How can I provide the document attachment functionality (Document will be stored in content DMS server)
    in MIGO Transaction.
    The same functionality provided by SAP in ME21n, ME22n Transactions.
    In ME21n user can upload any type of document related to  line item wise and that document can we view/ modify from ME22n as well as from DMS side ( T.code - CV02n).
    can anybody help me that how can i provide same functionality in  MIGO transaction.
    Regards,
    Priya

    Hi,
    here is a sample of GETDETAIL2. Hope it helps.
    image from DMS System
    check this as well:
    aRs - even with DMS, there can be ATTA's requiring BAPI_REL_GETRELATIONS
    I guess the Ted Mentioned here is you:
    aRS:: Bookmark this thread! (LOIO's and PHIO's for DRAW att's (Vijay too!)
    Best regards.
    Edited by: pablo casamayor on Jul 29, 2008 8:14 AM
    Edited by: pablo casamayor on Jul 31, 2008 3:53 PM

  • How to provide support for language which java doesnt support (e.g URDU)

    Hi,
    I need to develop an application which should be using Urdu Language ,since
    java doest support URDU (language spoken in India and Pakistan).
    what steps should I take ??What to do???
    your help is really needed!
    Thanks

    Hi Abasith,
    Good day. As per our project requirment, we need to have 2 versions of Application. One in English & Arabic. Our Idea to implement Arabic is to have a properties file.(Resource bundle). But I cannot see the Arabic letters in property file created using Arabic. So we moved to Word pad & saved the document as Arabic. I am able to reach the properties. But when i use to get the string from there I m getting an exception No resource bundle found for locale.
    This is my code.
    public class Test1 {
    public static void main(String s[]){
    ResourceBundle resource_bundle; // The Resource Bundle super class
    Locale locale;
    locale = new Locale("ar","AR");
    System.out.println(locale.getCountry());
    try {
    resource_bundle = ResourceBundle.getBundle("tryone_"+locale, locale);
    //System.out.println( resource_bundle.toString());
    System.out.println("Resource Bundle here "+resource_bundle.getKeys().toString());
    Enumeration en = resource_bundle.getKeys();
    while (en.hasMoreElements()){
         System.out.println("Elements "+en.nextElement().toString());
    System.out.println(resource_bundle.getString("Myname"));
    System.out.println(resource_bundle.getLocale());
    } catch (MissingResourceException mre) {
         mre.printStackTrace(); }
    Can u help me how to go about. I am totally new to this Internationalization.
    Thanks in Advance
    kavitha

  • How can i check the file  which is upload from  the server

    when upload the excel file from the server file to the internal table ,how can i check the data whether it accord with  the required condition .
    for example ,i want to upload the file which have the data whose type is pack, and it have three integer and  two decimal ,how can i check in my code.
    thanks,

    Hi Sichen,
    First upload the file, Then do ur validations and delete the records that doesn't satisfy ur requirements.
    Thanks,
    Vinod.

  • How to specify the directory in which we want to store the uploaded files

    Hello !!
    I am using apache commonfile upload for uploading my files.I followed the user guide and tried to run a program,but my problem is I am not able to understand as to how to mention the directory in which the uploaded file will be saved..My code is given below :
    package r;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.io.*;
    import java.sql.*;
    import java.util.*;
    import org.apache.commons.fileupload.*;
    import org.apache.commons.fileupload.servlet.*;
    import org.apache.commons.fileupload.disk.*;
    import org.apache.commons.io.*;
    import java.lang.Exception;
    public class fileupload extends HttpServlet
         public void doGet(HttpServletRequest request,HttpServletResponse response)throws IOException,ServletException
                   // Check that we have a file upload request
                  boolean isMultipart = ServletFileUpload.isMultipartContent(request);
                 System.out.println(isMultipart);
                 if (ServletFileUpload.isMultipartContent(request))
                 // Create a factory for disk-based file items
                   FileItemFactory factory = new DiskFileItemFactory();
                   // Create a new file upload handler
                   ServletFileUpload upload = new ServletFileUpload(factory);
                   // Parse the request
                   try {
                               List items= upload.parseRequest(request);               
                             Iterator iter = items.iterator();
                             while (iter.hasNext())
                                   FileItem item = (FileItem) iter.next();                    
                                 if (item.isFormField()) //NORMAL FORM FIELD
                                 String name = item.getFieldName();
                                  String value = item.getString();
                                  System.out.println(value);                                                             
                                  else
                                 String fileName = item.getName();
                                 System.out.println(fileName);
                                    String contentType = item.getContentType();
                                  File saveTo = new File("/info/upload_files/myFile.jpeg");
                             try
                                       item.write(saveTo);
                                       System.out.println("File written" );                    
                             catch(Exception e)
                                         System.out.println("File not written");
                                   // InputStream fs= item.getInputStream();                    
                                   fileName = FilenameUtils.getName(fileName);
                                    System.out.println(fileName);
                        }//end of try
              catch (Exception e) { }
         public void doPost(HttpServletRequest request,HttpServletResponse response)throws ServletException,IOException
                 doGet(request,response);
    The problem is that the control doesn't reach the try statement and I get " File not written" on the console because it enters catch everytime..Please tell me how the path to the directory should be given...Rest of the code is working fine

    No, the problem is that when an Exception is thrown, you ignore it completely and throw away all the information associated with it. That leaves you to guess at what the problem is. So instead of answering your guess at a good question, I'm going to suggest that in all of your catch blocks you put this code:e.printStackTrace();Then you can look at the output in the log file and see what the problem is. Start from there.

  • How to find in R/3 System, which FI document is from which external system?

    Hi Moderator/ FICO Experts,
    How to find in R/3 System, which FI document is from which external system?
    In case of different Non-SAP external Systems posting the data to one R/3 System.
    Thanks
    Chandra

    Hi,
    That really depends on the interfaces that your external systems are using. Check with your ABAP or BASIS team to see what is the method used for posting those documents and with which parameters is passed. Look at BKPF table (FI header) to see the attributes such as user, document type, reference, etc.
    Regards,
    Eli

  • How do I remove the (-signed) which Adobe adds to the end of the document name after having signed it?

    Hi there,
    How do I remove the (-signed) which Adobe adds to the end of the document name after having signed it?
    It is not convenient to remove it every time I sign a document. So, is there a way to turn this off?
    Thank you

    I think you cannot, because for many people it is so important to keep the unsigned document, and most do not realise this until it is too late.

  • How do you create a pdf which is in a readable view, rather than having to rotate the document?

    How do you create a pdf which is in a readable view, rather than having to rotate the document?

    This cannot be done with Adobe Reader. Do you have Adobe Acrobat?

  • How can I send scanned files, which are documents changed from doc to PDF, as documents that can be edited if the recipient doesn't have Adobe capabilities?

    How can I send scanned files, which are documents changed from doc to PDF, as documents that can be edited if the recipient doesn't have Adobe capabilities?

    Hi flaviusjack,
    If you still have the .doc files, it might be best to send those to your recipients so they can be edited. Otherwise, you can use ExportPDF to convert the PDF files back to .doc format. But, again, that step would be unnecessary if you have the .doc files.
    Best,
    Sara

  • [Java and all else] How do you document DB design?

    Hello,
    Although most of the technical choices are explicit in SQL (UniqueKey & ForeignKey constraints, indexes,...), the semantics of the data columns and their constraints seem better served as plain human-readable comments ("ID column: identifies the plane copy; 6 figures are enough as we don't expect to sell more than 1 million planes in a foreseeable future...").
    In my current system, (EJB-based, but the DB schema is not created by the JPA-compliant ORM, but via SQL scripts), I see the following ways to write and maintain this documentation:
    - SQL comments in the schema creation and patch scripts
    - Javadoc comments in the Java source of the Entity classes.
    - UML notes in UML diagrams(1)
    - external "Architecture and design" document.
    All 4 of them are used, sometimes inconsistently, for various parts of the design choices; I mean, the docs do not contradict themselves (not yet, but it's a mere question of time), but some tables are commented in SQL scripts, others are in design docs, and the details for some columns are in entity javadocs. Although each developer may find it handier to "write" the doc via his preferred medium, it becomes increasingly difficult to "maintain" theoverall documentation.
    Our current situation is that most of the project team members are Java developers, so it would probably be better accepted and served if we standardized that we document DB tables and columns in Java source, but I am worried that:
    - someone else pouring over our DB (ex: DBA helping us to optimize things, or other team developping a data-mining tool to leverage the historical data in DB) may not be as comfortable with Java
    - this may not cover all design choices of the DB schema:
    - - - - first, although that is the case currently, in the future there might not be a 100% 1-1 mapping between e.g. each entity class and a DB table. Maybe some columns will not need to be mapped anymore,...
    - - - - second, I fear some DB constructs are not amenable to Java counterparts; no accurate idea there, I'm not an SQL nor JPA expert, but I presume Indexes, table partitioning, tablespaces, for example (yes, the DBMS is Oracle :o) are not taken into account in JPA mapping.
    And if we document those choices at the SQL level (my preferred idea so far), this will gradually make the javadocs in the entities obsolete, or removed altogether, and that will make future maintenance of the Java source risky.
    How do you document your DB design in general?
    Do you have specific advices for my case?
    Thanks in advance,
    J.
    (1) Just for the record, here are a few posts that refer to modelling the DB in UML:
    [A post on this forum highlighting that UML 1.4 standardizes a notation for RDB modelling|http://forums.sun.com/thread.jspa?messageID=1383724#1383724]
    [A DB modelling tutorial|http://www.tomjewett.com/dbdesign/dbdesign.php] (not sure whether it leverages the standard mentioned above :o)
    P.S.: "Java and all else" as in, damn, I'd love to use the familiar JDC forums and people to discuss not only Java-related issues, but also [all other things that surround Java|http://forums.sun.com/thread.jspa?threadID=5422264&tstart=0] (other technologies, processes, people) and enable to make workable systems out of Java code.

    jduprez wrote:
    Thank you again.
    A couple more questions:
    2. Table, and proc dictionary maintained as one or more text files. Those files and schema are all in source control.Do you mean, a proprietary text format (a la tabledesign.txt), or +.sql+ source files? Again, you seem to suggest the scehma info is present in two locations.I didn't say two locations unless you meant files. Then yes.Yes I meant two files. I trust the team to get the doc file lagging a few revisions behind the SQL file, and to correct that I would have to include one more step in the review process (e.g. "review CM actions to check that the doc file is updated consistently with the SQL source").
    The tool I wrote would throw errors if the comment file didn't match the schema. And if comments were not provided. That of course doesn't stop someone from documenting a table with "a table".
    You can of course keep the addtional info as special comments in the SQL, but when I did this, and even in retrospect, it seems better and perhaps easier to keep them seperate. I have done special comments in SQL before and it seems a bit of a kluge but you do have the single source. But in that case I was the only one maintaining it too.What do you mean by "special"?For code generation I have a schema file with the following (pseudo sql.)
        create mytable
           mytable_id int,
           column_foo varchar(10);
           column_fum varchar(20)
            -- Query: for_a_query (column_foo, column_fum)
        )The generator consumes the schema and generates the standard CRUD which would include a query based on the primary key.
    The above comment is used to provide an additional query where the proc is named 'for_a_query' (munged with table name) and takes two parameters (column_foo, column_fum) whose type/name matches those of the table.
    If we don't try to generate a browseable HTML out of the schema (although the idea is appealing, I don't have the resource to make such a tool), do you see anything kludgy in maintaining SQL comments interpersed within DDL code?
    Of course that is doable.

  • How to I produce a PDF which goes right to the edge on a Mac?

    How to I produce a PDF which goes right to the edge on a Mac? I have recently moved to a Mac. I now have Acrobat X Pro 10.1.3, and Mac OS X 10.7.3. When I used Windows and Acrobat X Pro I was able to print to Acrobat to produce documents which went right to the edge on screen. Now on Mac I can only produce documents which have a border on them. I expect I am missing something quite fundamental, but it is frustrating me so I am seeking some help from those who know how to do this. Thank you in advance.

    So I did a little exploring in Word for the Mac. I set the Word margins to 0 inches, then I placed a picture that went to the edges of the page.
    The problem seems be that Word is very simple-minded, and when in the Print dialog, it adjusts the preview of the Print feature to the margins of the currently-selected printer. For my HP inkjet printer, that's about 1/8" in from the edges. When that data is passed to OS X to create a PDF, it uses those margins in the PDF file.
    In Word for Windows, Acrobat installs a PDFMaker plug-in for Word. PDFMaker contols the creation of PDF so there are a lot more settings possible.
    Acrobat has never made a plug-in for Word for the Mac. As to why, this has been debated endlessly for the past 15 or so years. Adobe claims that Microsoft doesn't provide the handles to do it in the Mac version of Word. Whether that's true, I don't know.

  • How to scan documents with HP Officejet 5610 and iMac 21.5 ?

    Hello,
    Please can someone tell me how to scan documents with a HP Officejet 5610 all-in-one printer and an iMac 21.5 , OS X Yosemite version 10.10.1 ?
    Thanks a lot.

    Hi,
    Scanning can be done on Yosemite as listed in the following document:
    http://h10025.www1.hp.com/ewfrf/wc/document?docname=c04467713&tmp_task=useCategory&cc=us&dlc=en&lc=e...
    A such will allow scanning as a PDF file as example.
    If by "Scanning a Document" you may refer to OCR scanning (e.g. scanning a text to a Word file which can be edited), a such is not supported by the provided solution and will require a 3rd party software which offer OCR capabilities. Vuescan re as example support a such:
    http://www.hamrick.com/vuescan/hp_officejet_5600.html
    Regards,
    Shlomi
    Say thanks by clicking the Kudos thumb up in the post.
    If my post resolve your problem please mark it as an Accepted Solution

  • How to get Document Set property values in a SharePoint library in to a CSV file using Powershell

    Hi,
    How to get Document Set property values in a SharePoint library into a CSV file using Powershell?
    Any help would be greatly appreciated.
    Thank you.
    AA.

    Hi,
    According to your description, my understanding is that you want to you want to get document set property value in a SharePoint library and then export into a CSV file using PowerShell.
    I suggest you can get the document sets properties like the PowerShell Command below:
    [system.reflection.assembly]::loadwithpartialname("microsoft.sharepoint")
    $siteurl="http://sp2013sps/sites/test"
    $listname="Documents"
    $mysite=new-object microsoft.sharepoint.spsite($siteurl)
    $myweb=$mysite.openweb()
    $list=$myweb.lists[$listname]
    foreach($item in $list.items)
    if($item.contenttype.name -eq "Document Set")
    if($item.folder.itemcount -eq 0)
    write-host $item.title
    Then you can use Export-Csv PowerShell Command to export to a CSV file.
    More information:
    Powershell for document sets
    How to export data to CSV in PowerShell?
    Using the Export-Csv Cmdlet
    Thanks
    Best Regards
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

Maybe you are looking for

  • Opening a new view in a new window on click of a table row entry.

    Hi Guys, How to open a new View of a same application in a new window (just like a pop up) on a click of a Table Row entry? I am using NWDS 7.0 version. So please suggest acccorrdingly.

  • Desktop Mgr: Music services failed to load.

    Hello, I've tried to reinstall the desktop manager, formatted the 16GB Media Card, in the Memory section of the Options (Compression - Disabled, Media Card Support - On, Media Transfer Protocol - On, Mass Storage Mode - On, Auto Enable Mass Storage M

  • Recursivity?

    Hi! I'm trying to implement the definition of the n-degree bspline basis. This is a basis of polynomials that are defined recursively. I've tried to do this whithin LabView6i, but I did not succeed. I think that could be done by writing some C code i

  • Ipod ne se lance pas

    My Ipod does'nt Run, one opened it closes.

  • Software needed for Audigy 2 Platinum

    I've just bought a second-hand PC complete with the Audigy 2 hardware (including the external control box, speakers etc.), but no software!?I've downloaded the drivers from the soundblaster site, but first prize would be copies of the original CDs th