Send  PDF, EXCEL, MS Word from SAP to third party

Hi All,
My requirement is we have to upload docs from PC and send to third party system.
Now my doubt is how can we upload  the docs like  PDF , Excel, MS Word etc from PC to sap and send it to third party.
Thanks & Regards
Satyamkumar Jha

Hi Prabhudas,
Thanks for your inputs.
I have one more doubt.
If you open any delivery  in VL03N  transaction just below the Menu bar there is button called 'Services for Object'. using this we can attach any document to this Delivery.
Is there any way to attach this newly uploaded document using some Z program (referring tcode  CG3Z ) to this delivery.
Regards
Satyam

Similar Messages

  • Uploading an XML file from SAP into third party URL

    Hi,
    I need to Upload an XML file from sap into Third party URL. Can any body tell me the possible ways in SAP to achieve this task. Also explain me the proceedure.
    Thanks in advance.
    -Namdev

    Sorry. If they only said HTTP/HTTPS and didn't say explicitly web service, it means they don't want it.
    One thing I'm not sure is, do you have an URL at the third-party system that you need to contact, or should you provide one at your SAP system that they will contact?
    If it is the first one, to send an HTTP request to a given URL using ABAP, you'll find an example here: [SAP Library: Example Program: Executing an HTTP Request|http://help.sap.com/saphelp_nw70/helpdata/en/1f/93163f9959a808e10000000a114084/frameset.htm]
    Sandra

  • Commitment Interface from SAP to third party system!

    When we created Purchase Requisition or Purchase Order, the commitment will be created. The third party system needs to track the commitment. So SAP needs to send the commitment to the third party system by this interface.
    But when the Goods have been delivered, the commitment will be zero out and the actual will be posted to SAP. SAP needs to send the offsetting records to the third party system. In this way, the third party systems knows that how much commitments have been reduced.
    My problem is that I cannot find the right table to record the offsetting entry. In the table COSP, I can identify the commitment by the Business Transaction -- RMBA and RMBE. But it did not record the offsetting entry. It just becomes zero when the goods have been delivered. But I have nothing from that table to send to the third party system.
    Does anyone meet this problem before? Can you share some experience on this?
    Thanks

    Hi ,
    As pointed ...above you can for a file to file scenario you can create just the Business service in integration Directory and create two file communication channels for sender and reciever  under it.
    However if it was file to idoc or file to rfc ..
    then you need create ts web as abap ..identifying your R/3 system
    System Name: <you can give a 3 character id here of r/3 system ...i.e like IDS>
    System Home : <can be found in status of R/3 system>
    Installtion Number : In transaction Slicense in R/3
    Host Name : Same as System home can be specified.
    Message Server: <3600+instance Number can be found in the log pad to the r/3 system itself >
    associate a bussiness system with this ...create a product and a software component version ...In swcv in respository ..develop your object under it ...
    Import this business system in Configuration ..and create your communication chanel under it.
    Regards ,
    Deepak

  • RFC or BAPI to get  ECC CST LST  from SAP to third party

    Hi Friends,
    I want to find out RFC or BAPI to get ECC,CST and LST No. number from SAP system to third party software accourding to Ship to party.Please healp me.

    Hi,
    Thanks very much for your answer. In fact, table UVERS is empty both on SAP Wharehouse server and Netweaver, but you put me on the right way...
    I finally found that table CVERS_REF was enough, but I don't have the version of the component like in the status window...
    I doubt also I'm right using the RFC_READ_TABLE, but I don't know yet if a BAPI exists for what I'm looking for.
    Regards
    François MAESEELE

  • Send xml file from sap to third party url through https

    Hi,
    I have a requirement to send the xml file from ecc to a 3rd party url through HTTPS. How can we achieve this using ABAP.
    Client doesn't have XI enviroment. The client has provided the 3rd party url where the file needs to be uploaded.
    Please help ! <removed by moderator>
    Thanks in advance.
    Regards,
    Chitra.K
    Edited by: Thomas Zloch on Sep 12, 2011 12:58 PM

    Hi Chitra,
    I had similar requirement and here is what I did: -
    REPORT  Z_HTTP_POST_TEST_AMEY.
    DATA: L_URL               TYPE                   STRING          ,
          L_PARAMS_STRING     TYPE                   STRING          ,
          L_HTTP_CLIENT       TYPE REF TO            IF_HTTP_CLIENT  ,
          L_RESULT            TYPE                   STRING          ,
          L_STATUS_TEXT       TYPE                   STRING          ,
          L_HTTP_STATUS_CODE  TYPE                   I               ,
          L_HTTP_LENGTH       TYPE                   I               ,
          L_PARAMS_XSTRING    TYPE                   XSTRING         ,
          L_XSTRING           TYPE                   XSTRING         ,
          L_IS_XML_TABLE      TYPE STANDARD TABLE OF SMUM_XMLTB      ,
          L_IS_RETURN         TYPE STANDARD TABLE OF BAPIRET2        ,
          L_OUT_TAB           TYPE STANDARD TABLE OF TBL1024
    MOVE 'https://<hostname>/xxx/yyy/zzz' TO L_URL.
    MOVE '<XML as string>' TO L_PARAMS_STRING.
    *STEP-1 : CREATE HTTP CLIENT
    CALL METHOD CL_HTTP_CLIENT=>CREATE_BY_URL
        EXPORTING
          URL                = L_URL
        IMPORTING
          CLIENT             = L_HTTP_CLIENT
        EXCEPTIONS
          ARGUMENT_NOT_FOUND = 1
          PLUGIN_NOT_ACTIVE  = 2
          INTERNAL_ERROR     = 3
          OTHERS             = 4 .
    "STEP-2 :  AUTHENTICATE HTTP CLIENT
    CALL METHOD L_HTTP_CLIENT->AUTHENTICATE
      EXPORTING
        USERNAME             = 'testUser'
        PASSWORD             = 'testPassword'.
    "STEP-3 :  SET HTTP HEADERS
    CALL METHOD L_HTTP_CLIENT->REQUEST->SET_HEADER_FIELD
          EXPORTING NAME  = 'Accept'
                    VALUE = 'text/xml'.
    CALL METHOD L_HTTP_CLIENT->REQUEST->SET_HEADER_FIELD
        EXPORTING NAME  = '~request_method'
                   VALUE = 'POST' .
    CALL METHOD L_HTTP_CLIENT->REQUEST->SET_CONTENT_TYPE
        EXPORTING CONTENT_TYPE  = 'text/xml' .
    "SETTING REQUEST DATA FOR 'POST' METHOD
    IF L_PARAMS_STRING IS NOT INITIAL.
       CALL FUNCTION 'SCMS_STRING_TO_XSTRING'
         EXPORTING
             TEXT   = L_PARAMS_STRING
         IMPORTING
               BUFFER = L_PARAMS_XSTRING
         EXCEPTIONS
            FAILED = 1
            OTHERS = 2.
    CALL METHOD L_HTTP_CLIENT->REQUEST->SET_DATA
        EXPORTING DATA  = L_PARAMS_XSTRING  .
    ENDIF.
    "STEP-4 :  SEND HTTP REQUEST
      CALL METHOD L_HTTP_CLIENT->SEND
        EXCEPTIONS
          HTTP_COMMUNICATION_FAILURE = 1
          HTTP_INVALID_STATE         = 2.
    "STEP-5 :  GET HTTP RESPONSE
        CALL METHOD L_HTTP_CLIENT->RECEIVE
          EXCEPTIONS
            HTTP_COMMUNICATION_FAILURE = 1
            HTTP_INVALID_STATE         = 2
            HTTP_PROCESSING_FAILED     = 3.
    "STEP-6 : Read HTTP RETURN CODE
    CALL METHOD L_HTTP_CLIENT->RESPONSE->GET_STATUS
        IMPORTING
          CODE = L_HTTP_STATUS_CODE
          REASON = L_STATUS_TEXT  .
    WRITE: / 'HTTP_STATUS_CODE = ',
              L_HTTP_STATUS_CODE,
             / 'STATUS_TEXT = ',
             L_STATUS_TEXT .
    "STEP-7 :  READ RESPONSE DATA
    CALL METHOD L_HTTP_CLIENT->RESPONSE->GET_CDATA
            RECEIVING DATA = L_RESULT .
    "STEP-8 : CLOSE CONNECTION
    CALL METHOD L_HTTP_CLIENT->CLOSE
      EXCEPTIONS
        HTTP_INVALID_STATE = 1
        OTHERS             = 2   .
    "STEP-9 : PRINT OUTPUT TO FILE
    CLEAR : L_XSTRING, L_OUT_TAB[].
    CALL FUNCTION 'SCMS_STRING_TO_XSTRING'
        EXPORTING
          TEXT   = L_RESULT
        IMPORTING
          BUFFER = L_XSTRING
        EXCEPTIONS
          FAILED = 1
          OTHERS = 2.
    CALL FUNCTION 'SCMS_XSTRING_TO_BINARY'
      EXPORTING
        BUFFER                = L_XSTRING
      TABLES
        BINARY_TAB            = L_OUT_TAB .
    CALL FUNCTION 'GUI_DOWNLOAD'
      EXPORTING
       FILENAME                        = 'C:AMEYHTTP_POST_OUTPUT.xml'
      TABLES
        DATA_TAB                        = L_OUT_TAB .
    Also, following is the detailed link for use of HTTP_CLIENT class: -
    http://help.sap.com/saphelp_nw70ehp1/helpdata/EN/1f/93163f9959a808e10000000a114084/content.htm
    Also, in below link, you can ignore XI specific part and observe how its sending XML to external URL:-
    (I know it describes call to SAP XI server's URL, but it can be used to call any URL)
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/ae388f45-0901-0010-0f99-a76d785e3ccc
    In addition to all above, following configs to be present at ABAP application server: -
    1. The hostname used to URL should be present in SAP ABAP application server's 'hosts' file.
    2. Security certificate (if available) for URL to be called must be installed in SAP ABAP application server.
    Let me know if you achieve any progress with it...

  • Export to Word from SAP B1 2007A

    Hi all.
    When trying to export marketing document (sales order) to word from SAP B1 2007 A - I get error message. The error message appears in the word document and it states "unacceptable field". The template document also fails to return values in some of the data fields. We are using Office 2007.
    I have tried solution from notes (868723), saying to check "typing replaces selection". I've also set macro settings to low and given acces to VBA Projects.
    Has anyone some suggestions?
    Thanks and regards, Runar Wigestrand.

    Hi Runar,
    The following link is to the documentation about how to export to word. Check if it helps you with some useful information  :
    https://websmp108.sap-ag.de/~form/sapnet?_FRAME=CONTAINER&_HIER_KEY=701100035871000371280&_OBJECT=011000358700001146622005E&_SCENARIO=01100035870000000183&
    Regards,
    Jitin

  • Sending Userid when printing job from SAP

    Is there a way to send a userid when printing from SAP?  In order to control printing costs we are requiring user codes to be input to the printer before a job will print. The windows operating system is capable of sending the codes needed to the printer., Can the SAP application send a user codes ?

    I don't think so directly unless you use LOCL and capture the Windows user ID, though I'm no printer expert.  You may need to generate reports in SAP but then you're never guaranteed that the spool that was released to Windows was actually output.  We have Equitrac boxes on all of our shared corporate printers.  When the print comes out directly from SAP, the only identification as to where the print came from, other than the name of the Windows print queue, is the generic underlying SAP system user (not the SAP user ID).  We can't track the cost unless the user actually logs into the box to use the printer/copier.
    For our high volume color and black/white printers in our data center, we chargeback the print costs based on the Windows queue that the print came from.  As you probably know, you can have many SAP print queues/devices that point to the same physical printer.  We name all of our queues such that the using company/department/application is easily identified and our operators track the costs in that manner.

  • Out of office message when sending mail to Lotus Notes from SAP

    Hi,
    Is it possible to have an 'out of office' message when sending mail to Lotus Notes from SAP?
    I'm sending account statements by mail via a modified version of function FI_OPT_ARCHIVE_CORRESPONDENCE. The SAP username is send as a parameter, and later converted to the e-mail saved in the user profile. This works, - but I would like to have an out of office reply if the user I send to is out of office.
    Hope someone can help...
    Regards,
    Lene

    As Thomas pointed out, you can use regular SMTP mail to send the contents to Lotus Notes. You can use the function module SO_OBJECT_SEND or any of the SAP Office function modules to do this.
    Only thing to remember is that the SMTP may have been disabled by your basis team due to security risks involved. An alternative could be a lotus notes connector available from IBM.
    Srinivas

  • How to send data from BW to third party

    Hi Gururs,
    We got one of my requirement that we have to send 2 files (delta and full file) from BW to Third Party system. For the delta files we have to send an after-image and we are using FI datasource.Could anybody can tell how to design it?
    1. is that advicable to use the FI datasource directly to infocube as the FI datasource is AIE extractor?
    2.Can we the use BWA in APD. If yes how?
    3.To send an files to third party which concept can we use APD or OHD. We advised to used OHD ,but  the clients are not agreeing. They asking why we cant use APD? They saying APD will be more performance. Could u pls tell why and how?
    Thanks in advance...

    Hi,
    It is not advaisable to load FI data to IC directly, must load to DSO first.
    - If client asking to use APD, you cah go ahead.
    SOURCE - DSO and capture deltas
    Transformation
    Target - Flat File
    Use-
    APD helps to identify hidden or complex relationships between data in a simple way. Various data transformations are provided for this purpose, such as statistical and mathematical calculations, and data cleansing or structuring processes
    Regards,
    rvc

  • Integration between SAP and third party tax software

    can some body explain me or provide me docs regarding integration between sap and third party tax software like vertex.
    Thanks

    Hi
    First configure the same via the following menu path:
    1.) IMG>Financial accounting>Financial accounting global settings>Taxes on sales/purchases>Basic settings>External tax calculation>Define physical destination
    2.) Then test connection (option is available there).
    3.) If the connection is successful, also verify that the external tax package installed supports the R/3 4.6 version of the API. You do that by going to:
    System Information>Function List
    Check if the following functions are listed:
    • RFC_CALCULATE_TAXES_DOC
    • RFC_UPDATE_TAXES_DOC
    • RFC_FORCE_TAXES_DOC
    • RFC_DETERMINE_JURISDICTION
    4.) Then test the tax data retrieval:
    From SE37, select the relevant function modules like RFC_DETERMINE_JURISDICTION.
    The above 4 steps are necessary to satisfy that the RFC connection is established
    Hope useful
    S Jayaram

  • Knowledge Sharing -Tools ( SAP and Third Party Tools approved by SAP)

    Dear All,
    I am compiling information on Tools ( SAP and Third Party Tools approved by SAP) which are widely used in any SAP Project ( Implementaion, Roll-out, Support, Maintenance, Upgrade etc) .
    Tools will be categorized on the basis of following parameters:
    a) Tools Provided by SAP
    b) Third Party Tools approved by SAP
    In both a) and b) we can have following categories:
    1) Project Tracker Tools-Remedy
    2) Module specific Tools-Tools used for SD, FI, MM, BW etc.
    3) Reporting Tools
    4) Tools from SAP
    5) Data migration related Tools ( Extraction, uploading, downloading)
    6) Generic Scenario tools ( Tools for Effort Estimation etc.)
    7) Performance Enhancement and Optimization Tools
    Request you all to please contribute and share your knowledge and experiences (theoretical and practical).
    Regards,
    Rakesh

    Hi,
    I think that you can start with SAP Solution Manager. It is really interesting tool.
    Cheers

  • Will I be able to transfer files of DOC , PDF, excel and PPT from PC to I-pad Air?

    I have recently purchased I-pad Air. I want to transfer DOC, PDF, EXCEL and PPT files for PC to I-Pad and vice-versa. Will I-tune 10 do the job abd please let me know the steps tp be followed.

    I think that you need iTunes 11.
    You can copy word, excel, powerpoint and/or PDF documents to the iPad, but first you need one or more apps on the iPad that support those document types - unlike a 'normal' computer the iPad doesn't have a file system, and everything on it has to be associated with an app.
    The options include Apple's Pages app for Word documents, Numbers for Excel spreadsheets and Keynote for Powerpoint. And from third-parties apps such as Documents To Go ('premium' version) and QuickOffice. Microsoft have also released apps, but unless you subscribe to Office 365 you will only get read-only e.g MS Word For iPad.
    For PDFs there are free apps such as Apple's iBooks app and also Adobe Reader - and paid-for apps such as GoodReader (which also supports read-only of word and excel documents).
    As to how you then get the file to your chosen app will depend upon what the app supports - different apps will have different ways of copying their content to/from a computer e.g. via the file sharing section at the bottom of the device's apps tab when connected to iTunes, via your wifi network, email, dropbox etc. For Apple's Pages, Numbers and Keynote : copying documents via iTunes.

  • Refresh data in SWF based on excel file saved from SAP BW workbook

    Hi, is there a way to get data refresh in SWF dashboard from excel file as a data source. SAP BW workbook report will be saved as an excel file daily and placed in somewhere. I would like to create a dashboard which can connect to the excel data source and refresh on load.
    Appreciate your advice and help. Thank you.
    I am using Xcelsius 2008 and SAP BI 7.0

    Thank you.
    If I understand correctly from your advice, that is I should create QaaWs to pull data from SAP BI, which will return data in tabular format. Map the data in the cell range of a hidden tab, re-arrange and format the data into the row?
      Another concern: I need to display data for 4 quarters (Q1, Q2, Q3,Q4) in the dashboard, but QAAWS will only pulls data when the data is available in the database.
       Eg. Only data for 3 quarters are found in the database, QAAWS will return data for Q1, Q2,Q4.
             This will mess up the position fixed in the xcelsius. Do you have any suggestion on this?
       Sorry to bother u for the simple questions.
       Thank you.

  • Strange question mark error while opening pdf files in adobereader from SAP

    Hi Gurus
    We are having a strange intermittent problem with Adobe Reader. When we try to open PDF files from SAP Frontend we get an error pop-up. The pop-up does not have any text. The title of the pop-up has "Adobe Reader". There is a blue question mark and an OK button.
    This issue occurs few times a day
    This issue does not occur in Windows XP.
    Since past few weeks, we have been trying to find some error/warning/atleast some text in log files of SAP, OS, Adobe Reader, Registry entries, Event Viewer. So far, we have not found anything.
    SAP is not able to help as this issue occurs intermittently and said when they tried, the issue did not occur. They made two attempts and in each attempt they tried 10 times to reproduce the issue. This issue occurs intermittently.
    Environment
    SAP R/3 4.7 EE SAP_Basis 620 Support Package 61
    Windows Vista Enterprise
    Adobe Reader 9.0 and Adobe Reader 9.1 (tried with both versions)
    SAPGUI 710 Patch 12 (latest patch). It also occured in Patch 11. 
    Please suggest
    Thank you
    Pavan

    Thank you for the quick reply.
    We tried many notes from Service Market Place. Also, Windows Team is in contact with Adobe.
    As per Adobe's suggestions, we tried changing preferences of Adobe Reader. We think it might be a problem with SAP Frontend.
    Present status - Issue still exists. nothing works.
    Thank you

  • PDF Creation with data from SAP system

    Hi All,
    I need to generate a PDF file using Adobe Document Service. The content of the PDF can be from any datasource (Oracle/ BW/ R3 ),  So I require Webdynpro code for pdf creation with data from any of the system

    Hi Deepak,
                     Before starting the code just like that,make sure u have configured all services in Visual Administrator.
    U can refer this:
    <a href="http://help.sap.com/saphelp_nw2004s/helpdata/en/95/5a08cd0e274a0bae559622d6670722/frameset.htm">Configuration Guide</a>
    regards
    Sumit

Maybe you are looking for

  • ME21N Material group level authorization is not working in ECC 6.0

    Dear Security Experts, We have created a role Z_ME21N with one Tcode ME21N. The role has to restrict users in the material group level. For that, we added Authorization object M_MATE_WGR. 1.     When we are trying to add field values for {M_MATE_WGR,

  • SOAP to File in PI 7.1

    Hi I am looking for the SOAP to file scenario, Can anyone send the scenario with the exaples in PI 7.1 version, Thanks RP

  • Debugging JSP with standalone OC4J

    Hi All, I am trying to debug a JSP using JDeveloper 10.1.3.2 on standalone OC4J 10.1.3.2 . I find that it is not stopping at the breakpoints I have set. My settings in the global-web-application.xml are as follows <servlet> <servlet-name>JDevOJSP</se

  • How to access an Oracle Lite 10.2 from native VC++ 2005 mobile app

    Hi, I'm developing a MS VC++ 2005 mobile app than will run on Mobile 5 ARM devices. This app needs to connect to an Oracle Lite 10.2 Lite database that is currently installed on those devices. I know that the MFC and ATL libraries are not "fully" sup

  • Running JMX with HTML adapter

    Hi! I am new to JMX MBeans and I'm trying to run a simple sample program with HtmlAdaptorServer. I have three .java files, one with the interface, on with the class having its implementation and a main .java file to register with the server..etc. I a