SAP JV upload file template

Hello,
  Can anyone send me a template of a JV upload file to post JV's in SAP . I am new to this interface .
Any help will be appreciated .
Thanks

Raju,
I would highly appreciate if you could send me JV upload document at my email address [email protected]
I am in urgent need of advise how to do mass upload of JV transactions.
Thanks,
Sheila

Similar Messages

  • SAP MII Upload file Jsp

    I got this error. How to solve this error?
    Thanks

    where u write the code to upload the file
    to server end?

  • CSV file template for Uploading PO confirmaiton

    Dear all,
    We have activated Badi for Upload PO confirmations for a supplier in SNC 7.0.
    Request if any of you can please let me know where can I find the CSV upload file template.
    Thanks,
    mahesh.

    Hi Mahesh,
    You can download the CSV file from Tools-->Download center(select purchase order confirmation.
    To create a purchase order confirmation, you enter X in the To Be Confirmed column of the schedule line. If the schedule line has an X, you can change the following data:
    ■Quantity
    ■Delivery date
    Note
    Depending on the system set-up, for example if you have set up Customizing for POs to allow shipping dates to be used instead of delivery dates, you can change the shipping date.
    End of the note.
    ■Confirmed price
    Note
    If you leave the Confirmed Price field empty in all schedule lines of an item, the requested price is used. If you enter a value in the Confirmed Price field of one of the schedule lines, or in more than one schedule line, but those values are the same, the system uses that value as the confirmed price for the item. However, if you enter two or more different confirmed price values in the schedule lines of an item, the system regards this as an error, and the item is not processed.
    End of the note.
    ■Confirmed MPN
    ■Confirmed Mfr
    ■To reject the PO item, you enter an X in the To Be Rejected column of the schedule line that has an X in the Requested column.
    Now upload this file in Tools->upload center.
    See the below link for more information.
    http://help.sap.com/saphelp_snc70/helpdata/EN/b4/79223dc5b54b36899ea4f731a712f6/frameset.htm
    Regards,
    Nikhil

  • Using ABAP Webdynpr How to Upload File and download file in SAP R/3

    Hi SAP GURUS ,
                             I wanted to save employee profile from ESS to SAP so i am creating ESS Application .
    For that I go with BDS Approach and create test program for this  I got success while uploading file in my folder
    which i have created with the help of class and content repository . but when i Using ABAP Webdynpro , i got error FM "BDS_BUSINESSDOCUMENT_CREATEF"  message " error_kpro " .
                           Also I wanted to use KM for storage of Documents and wanted to retrive with help of ABAP Webdynpro .
                           So pls tell me / mailed me the process , approach and if you have examples .
        Thanks in Advance ,
         Vishwassap at gmail

    Hi Vishwas,
    Check out the thread [Efficient way of saving documents uploaded|Re: Efficient way of saving documents uploaded by users; and check the blog by Raja Thangamani.
    Also check the thread [Export Images through Function Modules   |Export Images through Function Modules;.
    Hope it helps you.

  • Upload Files into SAP Office Folder in Background

    Hi All ,
    Has anyone tried uploading file(s) of any type say *.XLS , *.PDF to SAP office folder (Outbox) in the background . I am using the function module  'SO_DOCUMENT_REPOSITORY' with methods "SAVE" , "ATTCREATEFROMPC" and "SEND" . It works fine in foreground without any errors . But when tried to schedule in background , the job stops at the method call "ATTCREATEFROMPC" and gives a message  "Database error for <INSERT INTO KPRO> " . It looks like the uderlyiong function module checks for an active GUI and fails during background .
    Any thoughts or other solutions would be appreciated ....
    Thanks

    Hi,
    I think ATTCREATEFROMPC method is for loading the file from frontend PC. It is bound to fail if you run it in background since there is no SAPGUI running it and it can't know the location.
    You will need to use some other method to be able to read the files from the APP server, and have your documents on the APP server if you want to run your code in the background.
    cheers,
    Ajay

  • How to via JCO Call RFC upload file to the SAP DMS.

    HI ,ALL :
      NOW i want to upload file via JCO,but i upload in sap gui is success ,but jco call RFC is error ,this is my code:
    excute this  code is not error ,but the data not write to SAP,
            //连接SAP
              Client client = com.hipfung.jco.JCOFactory.getInstance().getClient();
              JCO.Repository repo = new JCO.Repository("ZOA01", client);
              //调用RFC函数
              IFunctionTemplate ft = repo.getFunctionTemplate("CVAPI_DOC_CHECKIN");
              JCO.Function f = ft.getFunction();
              IFunctionTemplate ft2 = repo.getFunctionTemplate("BAPI_TRANSACTION_COMMIT");
              JCO.Function commitFunction = ft2.getFunction();
              //设置传入参数值(注意类型)
              //1.传入参数为Field
                f.getImportParameterList().setValue("TXB",          "PF_DOKAR");  //
              f.getImportParameterList().setValue("0000010101010101020000000","PF_DOKNR");  //文档类型
              f.getImportParameterList().setValue("01","PF_DOKVR");                          //文档版本
              f.getImportParameterList().setValue("000","PF_DOKTL");     
              f.getImportParameterList().setValue("SAPFTPA","PF_FTP_DEST");     
              f.getImportParameterList().setValue("SAPHTTPA","PF_HTTP_DEST");     
              // Get content as table
              f.getImportParameterList().setValue("TBL", "PF_CONTENT_PROVIDE");
            //read file and trans to byte
                      byte b[]=null;
                        File inf = new File("d:
    test.jpg");
                        InputStream in;
                        try {
                             in = new FileInputStream(inf);
                              b =new byte[(int)inf.length()];     //创建合适文件大小的数组
                             in.read(b);                          //读取文件中的内容到b[]数组
                             in.close();
                        } catch (FileNotFoundException e1) {
                             // TODO Auto-generated catch block
                             e1.printStackTrace();
              //set byte to internal table     
             JCO.Table poItem = f.getTableParameterList().getTable("PT_CONTENT");        
             poItem.appendRow(); //增加空行
             poItem.setValue(b, "ORBLK");
             poItem.nextRow();
             //运行RFC函数
              try
                   client.execute(f);
                   client.execute(commitFunction);
              catch(JCO.AbapException ae)
                   System.err.println("JCO.AbapException: < DMS > " + ae);
                   ae.printStackTrace();
              catch(JCO.Exception e)
                   System.err.println("JCO.Exception: < DMS > " + e);
                   e.printStackTrace();
             //返回参数
              JCO.Structure struct = f.getExportParameterList().getStructure("PSX_MESSAGE");
              String te = struct.getString("MSG_TYPE");
              System.out.println("RFC Error Type is :"+te);
              String pr = struct.getString("MSG_TXT");
              System.out.println("RFC get Data is :"+pr);
              com.hipfung.jco.JCOFactory.getInstance().release(client);
    i  can get file via CVAPI_DOC_CHECKoutView
    Edited by: pan qiaoming on Mar 15, 2011 3:05 PM

    HI ,ALL :
      NOW i want to upload file via JCO,but i upload in sap gui is success ,but jco call RFC is error ,this is my code:
    excute this  code is not error ,but the data not write to SAP,
            //连接SAP
              Client client = com.hipfung.jco.JCOFactory.getInstance().getClient();
              JCO.Repository repo = new JCO.Repository("ZOA01", client);
              //调用RFC函数
              IFunctionTemplate ft = repo.getFunctionTemplate("CVAPI_DOC_CHECKIN");
              JCO.Function f = ft.getFunction();
              IFunctionTemplate ft2 = repo.getFunctionTemplate("BAPI_TRANSACTION_COMMIT");
              JCO.Function commitFunction = ft2.getFunction();
              //设置传入参数值(注意类型)
              //1.传入参数为Field
                f.getImportParameterList().setValue("TXB",          "PF_DOKAR");  //
              f.getImportParameterList().setValue("0000010101010101020000000","PF_DOKNR");  //文档类型
              f.getImportParameterList().setValue("01","PF_DOKVR");                          //文档版本
              f.getImportParameterList().setValue("000","PF_DOKTL");     
              f.getImportParameterList().setValue("SAPFTPA","PF_FTP_DEST");     
              f.getImportParameterList().setValue("SAPHTTPA","PF_HTTP_DEST");     
              // Get content as table
              f.getImportParameterList().setValue("TBL", "PF_CONTENT_PROVIDE");
            //read file and trans to byte
                      byte b[]=null;
                        File inf = new File("d:
    test.jpg");
                        InputStream in;
                        try {
                             in = new FileInputStream(inf);
                              b =new byte[(int)inf.length()];     //创建合适文件大小的数组
                             in.read(b);                          //读取文件中的内容到b[]数组
                             in.close();
                        } catch (FileNotFoundException e1) {
                             // TODO Auto-generated catch block
                             e1.printStackTrace();
              //set byte to internal table     
             JCO.Table poItem = f.getTableParameterList().getTable("PT_CONTENT");        
             poItem.appendRow(); //增加空行
             poItem.setValue(b, "ORBLK");
             poItem.nextRow();
             //运行RFC函数
              try
                   client.execute(f);
                   client.execute(commitFunction);
              catch(JCO.AbapException ae)
                   System.err.println("JCO.AbapException: < DMS > " + ae);
                   ae.printStackTrace();
              catch(JCO.Exception e)
                   System.err.println("JCO.Exception: < DMS > " + e);
                   e.printStackTrace();
             //返回参数
              JCO.Structure struct = f.getExportParameterList().getStructure("PSX_MESSAGE");
              String te = struct.getString("MSG_TYPE");
              System.out.println("RFC Error Type is :"+te);
              String pr = struct.getString("MSG_TXT");
              System.out.println("RFC get Data is :"+pr);
              com.hipfung.jco.JCOFactory.getInstance().release(client);
    i  can get file via CVAPI_DOC_CHECKoutView
    Edited by: pan qiaoming on Mar 15, 2011 3:05 PM

  • Down-/Upload files via Web Services using a NON-SAP system!?

    Hello,
    is it possible to down-/upload files via web services using a NON-SAP system!?
    Regards,
    Jens

    Hi Jens,
    I am not sure about your requirement here. What i could understand is that you want to check whether service could handle file processing?
    1) Uploading file - You can build a Webservice which has import/export parameters as the file structures and implement the proxy class in such a way that the passed data is written to application server.
    2) Downloading file - Same as uploading file, but the proxy class would have the code to extract data from the application server and pass them as output parameter.
    Functionality of Non SAP system: The system which calls these services should be able to convert the output of proxy data into file in case of downloading the file and it should be able to convert the file data into export parameters in case of uploading file.
    Hope this helps.
    Regards,
    Prasanna

  • Uploading File to ABAP AS from SAP UI5

    Hello,
    I am attempting to upload files from SAP UI5 to ABAP AS.
    How can I do that?
    I did try via PHP to my local server and the same worked but do not know how to upload in case of ABAP AS.
    Please help,
    Thanks in advance.
    Thanks and Regards,
    Sarath

    Hi Sarath,
    I suggest you to try the following:
    Create a service in the ICF (tcode SICF) and set a custom handler class that implements the interface IF_HTTP_EXTENSION.
    Sample code for the custom handler class, (method IF_HTTP_EXTENSION~HANDLE_REQUEST)
    DATA: lo_entity  TYPE REF TO if_http_entity.
    DATA: l_data     TYPE string,
          l_filename TYPE string.
    lo_entity = server->request->get_multipart( 1 ).
    IF lo_entity IS BOUND.
      " If you want to retrieve the original name of the file
      l_filename = lo_entity->get_header_field( '~content_filename' ).
      " If the content of the file is not binary you can retrieve with the GET_CDATA,
      " otherwise you will have to use the GET_DATA method
      CALL METHOD lo_entity->get_cdata
            RECEIVING
              data = l_data.
    ENDIF.
    Set the service endpoint URL as the uploadUrl parameter of the FileUploader.
    Hope it helps.
    Regards,
    Christian

  • Uploading files to SAP using HTML5 /AJAX/Gateway media links with real-time progress bar

    Hi All,
    Check out the blog post 'Uploading files to SAP using HTML5 /AJAX/Gateway media links with real-time progress bar'
    Uploading files to SAP using HTML5 /AJAX/Gateway media links with real-time progress bar
    Regards
    Prabaharan

    aplay -l
    **** List of PLAYBACK Hardware Devices ****
    card 0: NVidia [HDA NVidia], device 3: NVIDIA HDMI [NVIDIA HDMI]
    Subdevices: 1/1
    Subdevice #0: subdevice #0
    Which correspondents fine with the
    device "hw:0,3"
    in my mpd.conf alsa section.
    Also sound worked fine withh this config before I started installing ffmpeg-svn and alikes
    hokasch:
    I tried changing the mixer to "Master" but that did not change much.

  • How to upload a template in sap hr

    Can anyone please hep me out to upload a template in sap

    Hi
    you can use the Transaction code PP01 for the same in that you need to select following
    1. Select Plan Version : 01
    2. Then the Object Type : Position
    3. Then the IT 1000 i.e. Object and then Click on Create button.
    regards
    Swapnil

  • Upload File option nolonger in sp2010 form after editing template using infopath

    Hi, I want my users of the sharepoint 2010 list to be able to upload a number of documents to list items when required.
    We have 2 fields on the form, one so that a document with questions can be added, and one for a similar answer document.
    Befor using infopath, the enhanced type text allowed the user to upload a file to that column. But the tab which has the upload option is now missing from the form once edited by infopath.
    i don't want the users to have to upload documents elswhere on the sharepoint site and it makes the process much longer.
    Also I don't seem to have the attach control on my infopath settings

    Hi,
    I understand that you want to upload file to SharePoint list using InfoPath form. I can reproduce you issue, after customizing the form in InfoPath, the Upload File button is missing for the rich text box. You can use the attachment control in the InfoPath
    form. Since you cannot find the Attachment control in InfoPath, you can check the list settings>Advanced Settings, enable Attachments. Then customize the form in InfoPath again.
    Thanks,
    Entan Ming
    Entan Ming
    TechNet Community Support

  • 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

  • Upload file to global directory in Dev, Q&A and Prod!

    I have an upload application in BSP, that uploads files to for example /usr/sap/BWD/files
    this works in Development, but of course this directory is not available in Production, so BSP won't work there.
    Isn't it possible to use one global directory?
    Right now somebody created for us a directory, that's the same on all 3 systems (Dev, Q, and Production)
    this dir is
    on Development:  DIR_TRANS     /usr/sap/transBW
    on Quality:  DIR_TRANS     /usr/sap/transBW
    on Production:  DIR_TRANS     /usr/sap/trans
    notice the small difference in path in Production... Is there a way to use the DIR_TRANS instead of the real path?
    my application writes data like this:
    fname = '/usr/sap/CBD/files/FILE.CSV'.
    OPEN DATASET fname FOR OUTPUT in TEXT MODE encoding default.
    if sy-subrc gt 0.
    WRITE: / 'Error opening file'.
    endif.
    LOOP AT data_TAB INTO LIN.
    TRANSFER LIN TO FNAME.
    ENDLOOP.
    CLOSE DATASET FNAME.
    thanks a lot, points will be rewarded for usefull answers!
    thanks!

    use transaction FILE to create logical path for the actual file path.
    and then use FM
    call function 'FILE_GET_NAME'
             exporting
                  client           = sy-mandt
                  logical_filename = pil_file  "Input logical file name
                  operating_system = sy-opsys
             importing
                  file_name        = p_i_file  "Physical file name
             exceptions
                  file_not_found   = 1
                  others           = 2.
    Regards
    Raja

  • Error when uploading a template

    Hello all,
    Environment: Oracle Apex - 4.0 (EPG) and Oracle 11G.
    I have configured print setup in Apex to work with BI Publisher. I have created an rtf file and trying to upload that rtf file and keep getting the following error message and I am unable to upload the template.
    I am getting this error in the "upload Report Layout" screen of "Report Queries".
    The error is occurring when I click on Next after selecting the rtf template.
    As soon as I click on the next button, the message "The Website cannot display the page" is getting displayed and then when I click on the refresh the page, the following message is getting displayed.
    Expecting p_company or wwv_flow_company cookie to contain security group id of application owner.
    Error ERR-7621 Could not determine workspace for application (:) on application accept
    It's a very small file (400KB). I have no clue why this is happening. I appreciate your help.
    Thanks in advance.

    Hello,
    I think you can't ignore file properties but you can clean them. Use FileInfo class to extract file properties then remove special char. You also need to make sure that there is no special char in file name as well.
    Refer this link:
    http://charlesemes.blogspot.sg/2011/08/moving-crm-attachments-to-sharepoint.html
    http://sharepoint.stackexchange.com/questions/34953/uploading-files-to-sharepoint-containing-the-ampersand-character
    Hope it could help
    Hemendra:Yesterday is just a memory,Tomorrow we may never see
    Please remember to mark the replies as answers if they help and unmark them if they provide no help

  • Error while uploading file into KM

    Hi Experts,
    I m getting error while uploading file into KM. Its throwing an error message like " Syngenta-POC.doc" does not exist, or file is empty; you cannot upload empty files"
    please assists me.

    Shantanu,
    Please check the files which you are upload is empty or unknown format. If everything seems valid then try to check for the corresponding SAP Note in service.sap.com
    Ram

Maybe you are looking for

  • How do I upload a PDF to my blog site?

    I am using an iPad and unable to upload a PDF to insert as a post in our corporate website if you could assist I would be grateful. Thank you

  • Need help for bdc recording TC fp05

    Hi, My requirement is: I want to create a Payment lot using fp05 and then post                                it through a program. First i want to know is there any BAPI available to do that. I couldnt find any BAPI. That is why i did BDC Recording.

  • How to change the delay for a specific message

    Hi, I need to change the delay for an specific message, So how can I consume message by JMSCorrelationID which is enqueued with delay? I am using Java and Oracle.JMS classes. This a sample code of the deque method public BasicAQData dequeue(int insId

  • PDF Export settings in InDesign (color)

    Hi, I was wondering which colour management settings to use when I export an InDesign CS3 document to a pdf (for press output). This is the situation. I create an InDesign document in cmyk-working space X (in this case Fogra27 (Europe Prepress)). I a

  • How do I highlight JTree selection ?

    Hi, How do you highlight the selected node in a JTree from code ? I am deleting a node and want to highlight the preceeding node. I select it via this code :- jTree.setSelectionPath( newSelectedPath); jTree.scrollPathToVisible( newSelectedPath); jTre