BTE- send by fax- how to get response

Hello All,
I'm Using BTE  00002040 to send an advice note by mail/fax.
My question is this- how can I know if the sending process failed, e.g. their fax had run out of paper ?
I need to somehow learn if it was sent successfully so The user can try again if it failed. Maybe thru tr. SCOT?
Accurate answers will be much appreciated and points will be awareded
Thnx,
Yoni.

Hi,
SCOT --> Menu Settings->Confirmation of Receipt.
Whether the basis will allow to receive incoming request in SAP due to security reasons??
aRs

Similar Messages

  • How  to get  response from such a  function

    How  to get  response from such a  function (in MODULE USER_COMMAND_0010 INPUT I get "ODGOVOR" 'X'
    FUNCTION Z_SEENKRAT.
    ""Local Interface:
    *"  EXPORTING
    *"     REFERENCE(ODGOVOR) TYPE  MSEG-KZEAR
    DATA ok_code LIKE sy-ucomm.
    DATA: test like mseg-kzear.
    BREAK-POINT.
    call screen 10.
    test = ODGOVOR.
    ENDFUNCTION.
    *&      Module  CLEAR_OK_CODE  OUTPUT
          text
    MODULE clear_ok_code OUTPUT.
      CLEAR ok_code.
    ENDMODULE.                 " CLEAR_OK_CODE  OUTPUT
    *&      Module  USER_COMMAND_0010  INPUT
          text
    MODULE USER_COMMAND_0010 INPUT.
    DATA odgovor LIKE mseg-KZEAR.
    CASE ok_code.
        WHEN 'DA'.
        ODGOVOR = 'X'.
      ENDCASE.
    ENDMODULE.                 " USER_COMMAND_0010  INPUT

    Hi,
    You need to declare the ODGOVOR variable in the TOP include, then you will get the value
    Regards
    Sudheer

  • How to get response from an asynchronous BPEL process in Java

    I'm experimenting with BPEL and doesn't seem to be able to get response from an asynchronous BPEL process. Here's the deal:
    I have a BPEL process that takes a string as input, and gives another string as output. This is a asyncronous process.
    I want to initiate this BPEL process as a web service so I generate a Webservice Proxy in JDeveloper 10g (10.1.3.0.4). The function to call the process is now called "initiate" and takes three arguments: the input string, a "org.xmlsoap.schemas.ws._2003._03.addressing.EndpointReferenceType replyTo" and a
    "org.xmlsoap.schemas.ws._2003._03.addressing.AttributedURI messageID".
    HTTP-Analyzer shows that invoking the BPEL process with initiate("somestring", null, null) results in sending a SOAP message to the BPEL process, which returns a "202 Accepted". How do I get the response from the process? My intuition tells me that I have to use that second argument, that EnpointReferenceType thing. How do I use that?
    Another question: If a asynchronous BPEL process does not exists (so the endpoint does not exist) the Java proxy does not throw an error when runned. It does not even sends a message. It exits with status 0! (This happens for example when deploying a new version of a process and when the "old" version is undeployed). Calling a non-existing synchronous BPEL process, the Java proxy DOES throw an error.

    Clemens,
    That all sounds logical. But somehow it is still a mystery for me ... Somehow I don't see what should be done.
    To call the async BPEL process I have the following procedure:
    initiate(String input, org.xmlsoap.schemas.ws._2003._03.addressing.EndpointReferenceType replyTo, org.xmlsoap.schemas.ws._2003._03.addressing.AttributedURI messageID)
    The first argument is the input for my BPEL process. The second is the address to a webservice that should handle the callback, right? The third is a messageID (makes sense, but why of the type AttributedURI?).
    Here lies my problem. It is not clear to me how these EndpointReferenceType & AttributedURI work. I can't find anything on the net about it. The AXIS examples as where mentioned earlier use other types (namely the "org.xmlsoap.schemas.ws.addressing.MessageID" and "org.xmlsoap.schemas.ws.addressing.ReplyTo") which are completely different.
    What I did so far:
    - I created an webservice proxy that listens on the onResult endpoint of the BPEL process.
    - I created an webservice proxy that calls the BPEL process through the initiate procedure, but it is not completely clear to me how to construct the EndPointreferenceType replyTo, and the MessageID. I did something like this:
    EndpointReferenceType replyTo = new EndpointReferenceType();
    // callback service running on local machine
    // This URI class is the java.net's version
    URI replyToURI = new URI("http://vaccinatie:8988/syncro-callback-context-root/stringconcatCallbackBindingPort");
    // This AttributedURI is the org.xmlsoap.schemas.ws._2003._03.addressing's version
    AttributedURI address = new AttributedURI();
    // the only public methos that made sense to me:
    address.set_value(replyToURI);
    replyTo.setAddress(address);
    // call the BPEL process
    myPort.initiate("test123", replyTo, address);
    But the above doesn't work (largely because I don't know what I'm doing here prob.:-) ) It does send the "test123" message, and the BPEL process does process it, but I don't seem to get the callback right.
    I hope this makes my problems somewhat clearer. I hope someone can help me, because I'm just a beginner in this whole "web service area" and seems to do something terribly wrong here, because it should be very simple. Thx.

  • How to send data to another site, get response, redirect and get new response

    Dear all,
    I've to write a Java EE application that have to become an interface to a payment platform. The protocol require to send a POST string containing some information (including an error and response page) to an external host, get the response and redirect the user to another host using the previous response. When the user ends the transaction the host redirect the user to my error or response page.
    For the moment my user access to my application using glassfish REALM authentication. After that I write the following code:
    public void paymentPrepare() throws UnsupportedEncodingException, IOException {
       String postUrl = "https://test.payment.test/init/http";
       HttpPost postRequest = new HttpPost(postUrl);
       String id = "99999999";
       String password = "99999999";
       String action = "4";
       String amt = "1.00";
       String currencycode = "978";
       String langid = "ENG";
       String responseurl = "http://myhost:8080/EMBOWorkshop/secure/response.xhtml";
       String errorurl = "http://myhost:8080/EMBOWorkshop/secure/error.xhtml";
      trackid = "TRCK0001";
      udf1 = "Descrizione";
       StringEntity postParamsEntity = new StringEntity("id=" + id
       + "&password=" + password
       + "&action=" + action
       + "&amt=" + amt
       + "&currencycode=" + currencycode
       + "&langid=" + langid
       + "&responseurl=" + responseurl
       + "&errorurl" + errorurl
       + "&trackid" + trackid
       + "&udf1" + udf1);
      postParamsEntity.setContentType("application/x-www-form-urlencoded");
      postRequest.setEntity(postParamsEntity);
       DefaultHttpClient httpClient = new DefaultHttpClient();
       // Execute the HTTP POST
       System.out.println("Executing HTTP Post...\n");
       HttpResponse response = httpClient.execute(postRequest);
       // Check the HTTP status of the post.
       if (response.getStatusLine().getStatusCode() != 200 && response.getStatusLine().getStatusCode() != 201) {
       throw new RuntimeException("Failed: HTTP error code: "
       + response.getStatusLine().getStatusCode());
       // Create a reader to read in the HTTP post results.
       BufferedReader br = new BufferedReader(
       new InputStreamReader((response.getEntity().getContent())));
       // Read in all of the post results into a String.
       String output = "";
       Boolean keepGoing = true;
       while (keepGoing) {
       String currentLine = br.readLine();
       if (currentLine ==
    null) {
      keepGoing = false;
       } else {
      output += currentLine;
       System.out.println("Raw string result: \n" + output);
    The previous code works fine. I receive the response. But now I don't know how to continue. How can redirect the user to another site, and when the payment is finished, receive the response? Another question is, the user authenticate himself to access to the application. When the user will redirect to an external site, the glassfish session permits to get the response from the other host without require a new authentication?
    For the moment I don't know how to redirect the user, but I tried to write this method to obtain the last response:
      public void getResponse(HttpServletRequest request, HttpServletResponse response) {
      paymentId = request.getParameter("paymentid");
      result = request.getParameter("result");
      auth = request.getParameter("auth");
       ref = request.getParameter("ref");
      traind = request.getParameter("tranid");
      trackid = request.getParameter("trackid");
      udf1 = request.getParameter("udf1");
      responsecode = request.getParameter("responsecode");
    Is it correct?
    Thanks

    Now I'm able to redirect the user to the other page:
    ExternalContext externalContext = FacesContext.getCurrentInstance().getExternalContext();
    externalContext.redirect("http://stackoverflow.com");
    Now the problem is: once the user has finished to pay, the other site redirect the user to my site using one of the two JSF page I prepared for error or response like the following:
    <?xml version='1.0' encoding='UTF-8' ?>
    <!DOCTYPE composition PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <ui:composition xmlns:ui="http://java.sun.com/jsf/facelets"
                    template="./index.xhtml"
                    xmlns:h="http://java.sun.com/jsf/html"
                    xmlns:f="http://java.sun.com/jsf/core"
                    xmlns:rich="http://richfaces.org/rich"
                    xmlns:a4j="http://richfaces.org/a4j"
                    xmlns="http://www.w3.org/1999/xhtml"
                    xmlns:fn="http://java.sun.com/jsp/jstl/functions"
                    >
        <ui:define name="content">
            <center>
               An error occurred during  transaction
                #{participantBean.auth}<br />
                #{participantBean.responsecode}
            </center>
      </ui:define>
    </ui:composition>
    So, how can I get the GET parameters that the other host sent to me during the redirection?

  • How to get response of an Async Service in XI

    Hi all,
    I have a scenario where i am invoking an async webservice. I need to get the response of the webservice in the R/3 through XI. Can any body please suggest how to do that?
    Just to share more info, The web service writes its response into a particular port. So if i need to listen to that port, how can i do that?
    Thanks and best regards,
    Kulwant Singh

    Hi, On R/3 side you need to use Proxy or RFC/ BAPI.
    For Proxy configuration refer
    ABAP Proxy Runtime
    http://help.sap.com/saphelp_nw04s/helpdata/en/02/265c3cf311070ae10000000a114084/frameset.htm
    Setting Up Point-to-Point Connections with proxy
    http://help.sap.com/saphelp_nw04s/helpdata/en/85/78af1bf407434796aaf8dbd6d4e7b7/frameset.htm
    Reliable Messaging – EOIO in ABAP Proxies
    /people/arulraja.ma/blog/2006/08/18/xi-reliable-messaging-150-eoio-in-abap-proxies
    /people/stefan.grube/blog/2006/07/28/xi-debug-your-inbound-abap-proxy-implementation
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/3dfac358-0d01-0010-5598-d4900e81a30c
    RFC/BAPI Communication
    http://help.sap.com/saphelp_nw04/helpdata/en/67/6d0540ba5ee569e10000000a155106/content.htm
    Configuring the Sender RFC Adapter - step by step
    /people/michal.krawczyk2/blog/2005/03/29/configuring-the-sender-rfc-adapter--step-by-step
    sap to webservice
    /people/siva.maranani/blog/2005/05/23/communication-between-sap-system-webservice-using-proxies
    Thanks
    Swarup

  • How to get response from financial department

    How do I get someone in financial to review an account that has bad information in it ? Someone at Verizon has mistakenly used ACH (Bank) information and entered it as debit card information. When they tried to post to it, of course it failed. As a result I am now on COD cash only for the duration of my contract. No person in their financial division or in the regular customer service can seem to correct this. Any suggestions ?

    Update - I began a complaint with the BBB.
    I also called Verizon again as suggested, and asked for a supervisor again after explaining the situation. For the first time I spoke with someone who not only understood the problem but fixed it by changing the status of my account from cash only to auto payment.
    I received a call from an 'Executive correspondent' at Verizon regarding my complaint to the BBB. I related the entire story to her, after which she apologized and assured me she would look into why the original person I spoke with in financial services was unwilling to help, and that the assistant manager at the local store was unable to get help either. I implied that their customer service left a lot to be desired in its present form and, I agreed with her that some investigating needed to be done.
    I also asked why Verizon was unable to verify billing information before the actual transaction, as is done by many other corporations - Paypal being one. They will do a small (between .01 and .15) transfer then transfer it back. She informed me that Verizon had made a corporate decision not to do this as it would 'confuse' their customers. I disagree - their current system puts the entire responsibility for any errors on their customer. She confirmed that I had provided the correct information initially and had no explanation for how things turned out as they did.

  • How to get response from ActionableEmail

    Hi Helping hands,
    I have created HumanTask which is able to send actionable emails with links like (APPROVE,REJECT) & worklist application.
    If I act on the task through worklist I'm getting the response to my BPEL process.
    If I do the same by clicking the APPROVE link in the email, it opens a new email window without TO address but it contains subject and body as
    NID:iBeS8jSTsA7vOx+ULF3+dJ7/e1fbklcDLkGHlkj38emd71NnzMgQMN89C0RxaPzu2PPgelhp+hvQAhRwUYMWJw==:NID
    Comments [[ ]]
    I want to get the response of the task action in the BPEL process.
    Looking forward for your help.
    Regards
    VIki

    Hi,
    You need to declare the ODGOVOR variable in the TOP include, then you will get the value
    Regards
    Sudheer

  • Sender mail adapter : How to get mail in both payload AND attachment ?

    Hi,
    I need to get the mail content both ways every time :
    -In attachment in order to store it later.
    -In payload in order to use it.
    I don't see any way to do this. Any ideas ?
    JB.

    Thanks for that fast answer.
    But I have no problems with reading the payload content or accessing any attachment.
    My issue is the following : I need to push the payload content as an attachment before sending the message to the Abap Proxy.
    Scenario is the following :
    Mail box --> PI --> ECC/Abap Proxy.
    I already store all the attachment during the proxy execution, I would like to be able to do the same withe the mail content.
    Edited by: JB CABIRO on Jan 13, 2012 4:12 PM

  • How to get response of Workflow Notification Email from MS Outlook Express.

    Hi All,
    I have two questions:
    1. Our business users had a requirement to approve or reject the Workflow Notification Emails form their Email account on MS Outlook Express. When they perform action from MS Outlook Express it sends email to wfmailer but no action perform in aplication. The notification inbox in application shows this notification as OPEN notification and the requested function also shows 'Waiting for Approval'.
    2. I need to hide Request Information button/link from the email notification send through Workflow mailer to user. There are three actions button available in email notification Apprve, Reject and Request Information. I need to have only two button Approve and Reject. How to hide Request Information button.
    If any one have idea regarding my questions please hlep.
    Regards,
    Saquib

    You can follow the Workflow developer guide to create message attribute as shown in below link
    http://www-apps.us.oracle.com/wf/doc/wfr1213/wfdg/html/T361836T361983.htm#2806969
    1. For the notification message for which you want the more info link to be hidden, define the message attribute with name '#HIDE_MOREINFO', type as 'text' and set value as 'Y'

  • Repair Depot won't finish and return my computer- can someone tell me how to get response?

    Repair depot received my G560 laptop on 12/2 after I talked to tech support who assured me it was a 7 day turn around in the repair depot.  So, I figured with shipping both ways, I should not be without it for more than 11 days.
    On 12/5 they posted an update that they were waiting for parts.  That is the last update online.  I called 12/7 and was told the motherboard was replaced and they were testing the system.  I called 12/9 and told the same thing.  I asked how long they will be testing the system since it took 5 months for it to happen to me.  I just got the canned apologies and assurances.  But, this guy said maybe 3-5 more business days. 
    I called 12/14 (yesterday) and told the exact same update.  She assured me she would email the depot and get an update and call me back.  Of course by evening she had not called.  So, I called again.  This guy told me the update put in their system (still nothing changed online) earlier that day was they were waiting for parts.  So, on 12/5 it was repaired and on 12/14 they are waiting for parts.  CRAZY!!  I explained to him I was going out of town next week and needed it back before then.  He assured me I would have it back before I leave.  How can can make that assurance is beyond me since they are waiting for parts (that they should keep a large supply of since this seems to be a common problem) and he has no idea when the parts will be in.  I told him it was going to be a big problem having it sit in the snow for 2 weeks and he again assured me it will be in my hands before I leave.  Of course, he never asked what day that would be. 
    So, tomorrow will be 14 days since they received it and I was told by tech support it was a 7 day turn around. 
    Has anyone found a phone number of someone with Lenovo who actually can help me rather than the regular "I'm sorry, ma'am, that you are having this problem"  and  "I assure you ..." employees?  In all my years of laptop use, this is the first time I have had problems with one prior to 3 years of use and even then, it's minor.  Funny how I was told Lenovo was a good brand, but the cheap plastic they are made of should have clued me in.
    Please share any successful tips you may have.

    @vgeorge,
    Appreciate if you can drop me a private message with the following information so I can get a customer relations person to follow up on your case.
    Name:
    Mobile:
    Email:
    MTM:
    S/N:
    Date of Purchase:
    Case ID:
    //JameZ
    Check out the Community Knowledge Base for hints and tips.
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"!
    X240 | 8GB RAM | 512GB Samsung SSD

  • Blank sender/subject spam - how to get mail to rec as junk?

    I'm getting hammered again in every mailbox with these blank sender/subject/body spam emails. I asked about a year ago and the word was to buy a spam filter software program. I'd rather get a script to do this. I recall I had one which I can't find. Rules doesn't have the ability to do this.
    Please, anyone, help. I'm getting hundreds of these things.
    TIA!

    Rules do certainly have the ability to do this:
    If [any] of the following conditions are met:
    [From] [Does not contain] @
    Perform the following actions:
    [Move Message] to mailbox [Junk]

  • How to get  response.getParameter in array type ?

    i have email page in JSP. (page1.jsp)
    contains
    ==========================================
    TO : < having multiple email address so its array of string >
    From : < String >
    Subject : < string >
    Message : <String msg>
    =========================================
    i want array field in another JSP page. (page2.jsp)
    page 1.jsp having :
    HTML data to input ( email Interface )
    page2.jsp having :
    JSP page to retrieve data by request.getParameter( )
    i want to get
    String toMSG[ ] = request.getParameter("toBox");
    this giving me error when i pass it
    SendMailUsingAuthentication sendit =new SendMailUsingAuthentication();
    sendit.sendMail(toMSG,subjectMSG,mainMSG,"[email protected]");
    What is the solution ????

    Try :
    request.getParameterValues("toBox");

  • How to get responsibility in iProcurement (11.5.9) - OAF 5.6

    Hi, We have a requirement to disable some of the fields based on the responsibility. How do I do that in iProcurement (11.5.9) which is based on OAF 5.6. In this release of iProc, UI templates are defined in .xml format which is self service framework
    Example for a field:
    <POR_USSGL_TC ifFlag = "true" lov = "true">
    <if field = "POR_USSGL_TRANSACTION_CODE_ENABLED_FLAG" value = "n" itemStyle = "off" />
    </POR_USSGL_TC>
    This is how the field definition looks like in the xml file. We can give a condition based on which we can turn off any field.
    Please let me know how to solve this issue. Thanks.

    Ram Kumar/Tapash, any resolution for this issue. Thanks.

  • How to get response from a servlet which depends on cookies?

    guys,
    i have a servlet which behaves differently based on the presence of a cookie or not. If cookie A is present in the machine it shows the the home page and if not it shows the login page.
    now i want to get the home page HTML content from a program without using the browser. i am aware this can be done by using java.net.URL but how do i simulate the cookie given that i know that's the cookie name and value it expects?
    Unfortunately i cannot paste the servlet code as it is a servlet of a product and i don't have the source code for it.
    Thanks
    S

    I believe you use URLConnection.setRequestProperty(), with the key being "Cookie".

  • How to get response header using ActionScript and MXML?

    So... I have a URL like www.example.com/stream/
    I need to make any request to this url and get Http Rewspons header (like this one:
        HTTP/1.0 200 OK
        Content-type: video/x-flv
        Cache-Control: no-cache
    I do not need reponse body at all. After I get header need to emmidiatly close connection to that url (so stop to obtain data from it)
    How to do such thing (I use Flash builder)?

    Hai Mahesh
    Check the following Code
    Data : i_entamiot     LIKE   ehswas_entamiot.
    DATA: gv_batchattributes LIKE bapibatchatt.
    DATA: batchstatus    LIKE bapibatchstatus.
    DATA: lt_bapi_ret        LIKE bapiret2 OCCURS 0 WITH HEADER LINE.
          CALL FUNCTION 'BAPI_BATCH_GET_DETAIL'
            EXPORTING
              material        = i_entamiot-matnr
              batch           = i_entamiot-charg
              plant           = i_entamiot-werkss
            IMPORTING
              batchattributes = gv_batchattributes
              batchstatus     = batchstatus
            TABLES
              return          = lt_bapi_ret.
    Thanks & regards
    Sreenivasulu P

Maybe you are looking for

  • Windows 2008 R2 / ESXi 5.5  - 10 GBit Network Performance

    Hallo, maybe my problem is by design, but I hope anybody has a solution to improve the transmission speed between Windows 2008 R2 Guests. In my Test-Environment I have 2 Windows 2008 R2 Guests on 2 ESXi Hosts with Intel 10 GBit Nics which are Cross-C

  • (Almost) Completely Reliable Method of Building AUR Pkgs with Clang

    The concise wiki directions to add `export CC=clang\nexport CXX=clang++` to makepkg.conf fails to address the unfortunate plethora of pkgbuilds that include GCC specific build options or otherwise prevent this from working. Since, at this point, ther

  • Assign source of supply

    dears i have made PR in a client and when i click "assign source of supply" it gives me 3 vendors where only one of them in the source list while the 2 other vendor is not in the source list but have info record when i make PR with the same material

  • Javax.xml.parsers Parser Failes at URGENT..URGENT.

    Hai, I am using JAVA PARSER to parse my xml file. My XML file is : <QUERY>SELECT * FROM EMP WHERE EMP_DATE > 18/10/2000</QUERY>. My Sample Code is: import javax.xml.parsers.DocumentBuilderFactory; import javax.xml.parsers.DocumentBuilder; import org.

  • Ipad keeps asking me to set it up

    Go to sync ipad and it says restore or set up as new ipad.  I restore to back up and it starts all over again.  What's going on?  I can't sync.  I can't uncheck open itunes when this device is plugged in because I never get far enough in to do that.