Web service please check whether my soap has some bugs

<?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body><RetrieveList xmlns="http://wsdl.echelon.com/Panoramix/">
<sKey>xmlns=""></sKey>
<STARTINSTALLATIONDATETIME>xmlns=""><2009-08-01 00:00:00.000></STARTINSTALLATIONDATETIME>
<ENDINSTALLATIONDATETIME>xmlns=""><2009-09-01 00:00:00.000></ENDINSTALLATIONDATETIME>
<STATUSTYPEID> xmlns="">5E96BEFC1BFD4c6cA42CE2F9BF86FA37</STATUSTYPEID>
<ID>xmlns="">7bf34c6d91f64ff4904411b72874ddf9</ID>
xmlns=""><RETRIEVETYPEID>xmlns="">549515bbb3644027a7a56ef4d352bedd</RETRIEVETYPEID>
<sXmlParameters
</sXmlParameters></RetrieveList ></soap:Body>
</soap:Envelope>
Edited by: khasim76 on Aug 19, 2009 8:36 PM

Solved - install new version available on the web - not an automatic update, but go to Help - Check for Updates - Download new version then install.

Similar Messages

  • Hi.i currently use photoshop lightroom 4 and have uploaded books to blurb with no problems but today every time i try to log in to blurb through lightroom to upload the book a msge appears saying "Could not cotact Blurb web service.please check internet c

    Hi I currently use lightroom 4 and have never had an issue uploading photo books to blurb.but now when i try a message appears saying "could not contact blurb web service.please check internet connection" my internet connection is fine.please can somebody help me as i need to get the album done as it is a wedding album and the clients are waiting on it.many thanks,Sean.

    Hi,
    I got this problem sorted and it actually very easy. For some reason the settings on the windows page i use on my laptop conflicted with the blurb/lightroom upload. All you need to do is set up a new windows user page and set it up as admin. You will need to transfer all the photos from the lightroom on your current user page to the new one which can be annoying but at least you will hopefully get up and running again. I hope this helps,
                               Sean.

  • How to Call web service operation by creating plain SOAP message in client?

    Hi
    Thank you for reading my post.
    I have some questions about using web methods of a web service which i would be very gratfull if you could answer.
    I should implement a web service that should receive a file with some other parameters from client and another web service which should receive some parameters and return a file.
    I used a mechanism like the following one to handle the condition and it just works. But I have a problem, I need to create dynamic invocation and I must create soap message and send it to webservice (no IDE generated code)
    What i need is one or two tips or a sample that shows how we can send and receive files by web services.
    I want to know how we can create the SOAP message ourself and then send it to the web service endpoint and it call the web method and ....
    Imagine the following web method, How i can invoke it by creating soap message myself and sending it to end point.
    @WebMethod
    public String saveFile(@WebParam(name = "fileName") String fileName, @WebParam(name = "fileContent") byte[] fileContent) {
    // TODO implement operation
    return "Something";
    Another question is :
    Does this mechanism that i used to transfer files is OK?
    Is it optimized or there are some other ways to do this job.
    I should say that i put one week on handlers to use soap attachments and i get no result.
    So, Please let me know if you know or have some sample that show me how to do the above job.
    Thanks.

    Hi
    From NW04s SP8 you can create webservice systems from within VC , and you will have the option of adding a user and password to authenticate. You can find it at Tools>>Define web service system. You will see a check box url requires user and password.
    If for some reason you can not do it in VC then you should create the system in the portal and fill out the usermapping screens.
    Jarrod Williams

  • Web Services -  PLEASE HELP.... EXPERT REQUIRED!!!!!!!

    Hi All....
    I would GREATLY appreciate help on how to connect to a 3rd
    parties web service please!!!! I have never before attempted this.
    I have been given this information which contains example code for
    other languages:
    // C#
    ICEPortal.ICEWebService h = new ICEPortal.ICEWebService();
    ICEPortal.ICEAuthHeader myHeader = new
    ICEPortal.ICEAuthHeader();
    myHeader.Username = "[email protected]";
    myHeader.Password = "password";
    h.ICEAuthHeaderValue = myHeader;
    ICEPortal.Brochure brochure = null;
    string ErrorMsg = "";
    int result = h.GetBrochure("MyMappedID", out ErrorMsg, out
    brochure);
    // VB
    Dim h As New ICEPortal.ICEWebService
    Dim myHeader As New ICEPortal.ICEAuthHeader
    myHeader.Username = "[email protected]"
    myHeader.Password = "password"
    h.ICEAuthHeaderValue = myHeader
    Dim brochure As ICEPortal.Brochure
    Dim result as Integer
    Dim ErrorMsg as String
    result = h.GetBrochure("MyMappedID", ErrorMsg, brochure)
    // JScript
    var h:ICEPortal.ICEWebService = new
    ICEPortal.ICEWebService();
    var myHeader:ICEPortal.ICEAuthHeader = new
    ICEPortal.ICEAuthHeader();
    myHeader.Username = "[email protected]";
    myHeader.Password = "password";
    h.ICEAuthHeaderValue = myHeader;
    var brochure:ICEPortal.Brochure;
    var ErrorMsg;
    var result = h.GetBrochure("MyMappedID", ErrorMsg,
    brochure);
    AND ALSO:
    "The following is a sample SOAP 1.2 request and response. The
    placeholders shown need to be replaced with actual values."
    POST /Service.asmx HTTP/1.1
    Host: services.iceportal.com
    Content-Type: application/soap+xml; charset=utf-8
    Content-Length: length
    <?xml version="1.0" encoding="utf-8"?>
    <soap12:Envelope xmlns:xsi="
    http://www.w3.org/2001/XMLSchema-instance"
    xmlns:xsd="
    http://www.w3.org/2001/XMLSchema"
    xmlns:soap12="
    http://www.w3.org/2003/05/soap-envelope">
    <soap12:Header>
    <ICEAuthHeader xmlns="
    http://services.iceportal.com/service">
    <Username>string</Username>
    <Password>string</Password>
    </ICEAuthHeader>
    </soap12:Header>
    <soap12:Body>
    <GetAllBrochureIDs xmlns="
    http://services.iceportal.com/service"
    />
    </soap12:Body>
    </soap12:Envelope>
    HTTP/1.1 200 OK
    Content-Type: application/soap+xml; charset=utf-8
    Content-Length: length
    <?xml version="1.0" encoding="utf-8"?>
    <soap12:Envelope xmlns:xsi="
    http://www.w3.org/2001/XMLSchema-instance"
    xmlns:xsd="
    http://www.w3.org/2001/XMLSchema"
    xmlns:soap12="
    http://www.w3.org/2003/05/soap-envelope">
    <soap12:Body>
    <GetAllBrochureIDsResponse xmlns="
    http://services.iceportal.com/service">
    <GetAllBrochureIDsResult>int</GetAllBrochureIDsResult>
    <ErrorMessage>string</ErrorMessage>
    <IDs>
    <string>string</string>
    <string>string</string>
    </IDs>
    </GetAllBrochureIDsResponse>
    </soap12:Body>
    </soap12:Envelope>
    As a start I would like to call a method "GetAllBrochureIDs",
    and thought it might have been something like this:
    <cfinvoke webservice="
    http://services.iceportal.com/service?WSDL"
    method="GetAllBrochureIDs" returnvariable="idList">
    <cfinvokeargument name="username" value="myUsername">
    <cfinvokeargument name="password" value="myPassword">
    </cfinvoke>
    <cfoutput>#idList#</cfoutput>
    But clearly I am lost! Can anyone give me hand here please?
    Cheers,
    Aaron

    this should get you started:
    <cfscript>
    ws=createObject("webservice","
    http://services.iceportal.com/service.asmx?wsdl");
    // are we connected?
    writeoutput("<b>ws port</b>:
    #ws.getPortname().toString()#");
    </cfscript>
    <br><br>
    <cfdump var="#ws#">
    crack open the "parent class" at the bottom of the dump &
    you should see methods
    to set user name & password, etc. --or-- i *think* once
    you get the service
    created ok you can go into cfadmin for webservices & add
    the user name &
    password & then just call the ws (also rename it to
    something less wordy):
    <cfscript>
    // say we renamed the ws 'icePortal'
    ws=createObject("webservice","icePortal");
    </cfscript>
    whether this is a good idea or not depends on your
    environment.
    post back if you get stuck.

  • Error with web service SRT: Unexpected failure in SOAP processing occurred:

    Hello,
      I get the following error with a web service
    "SRT: Unexpected failure in SOAP processing occurred: ("No configuration for this HTTP server instance")"
    Any ideas on how to solve this ?
    Thanks.
    Regards, Michel

    Hi,
    I think the WSDL file shared with you and the soap message you are getting are a mismatch.
    Try to check the soap message xml format and see if matches the ouputs tags structure in WSDL file.
    Thanks & Rgds,
    Aditya

  • How to pass credentials/saml token access sharepoint web service ex:lists.asmx when sharepoint has single sign on with claims based authentication

    How to pass credentials/saml token exchange to the sharepoint web service ex:lists.asmx when sharepoint has single sign on with claims based authentication 
    Identity provider here is Oracle identity provider 
    harika kakkireni

    Hi,
    The following materials for your reference:
    Consuming List.asmx on a claims based sharepoint site
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/f965c1ee-4017-4066-ad0f-a4f56cd0e8da/consuming-listasmx-on-a-claims-based-sharepoint-site?forum=sharepointcustomizationprevious
    Sharepoint Claims based authentication and Single Sign on
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/2dfc1fdc-abc0-4fad-a414-302f52c1178b/sharepoint-claims-based-authentication-and-single-sign-on?forum=sharepointadminprevious
    Sharepoint Claim Based Authentication Web Service issuehttp://social.msdn.microsoft.com/Forums/office/en-US/dd4cc581-863c-439f-938f-948809dd18db/sharepoint-claim-based-authentication-web-service-issue?forum=sharepointgeneralprevious
    Best Regards
    Dennis Guo
    TechNet Community Support

  • I suddenly have this error message on FireFoxthis message pops up: "Could not initialize the application's security component. The most likely cause is problems with files in your application's profile directory. Please check that this directory has no re

    I suddenly encounter this error message from Fire Fox.
    Could not initialize the application's security component. The most likely cause is problems with files in your application's profile directory. Please check that this directory has no read/write restrictions and your hard disk is not full or close to full. It is recommended that you exit the application and fix the problem. If you continue to use this session, you might see incorrect application behaviour when accessing security features.
    I uninstalled the browser and download a new version but it does not resolve the issue.
    I know my hard disc has ample space. I do NOT know where to find the Profile directory to fix the read restriction box.
    == This happened ==
    Every time Firefox opened
    == After something about security add-on of Norton pop up by itself. ==
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; MSN Optimized;US)

    This link shows things to check - https://support.mozilla.com/kb/Could+not+initialize+the+browser+security+component

  • Cannot launch vivado simulator 2015.1: behav/compile.bat' script "Please check that the file has the correct 'read/write/execute' permissions"

    Hi,
    I'm trying to run a verilog simulation using the vivado simulator 2015.1 on Windows 7.
    I get the following error when I attempt to launch simulation:    
    ERROR: [USF-XSim-62] 'compile' step failed with error(s) while executing 'D:/projects/axi/axi_test_system/axi_test_system.sim/sim_1/behav/compile.bat' script. Please check that the file has the correct 'read/write/execute' permissions and the Tcl console output for any other possible errors or warnings.
    The tcl console repeats the same message, "Please check that the file has the correct 'read/write/execute' permissions"
    I cannot find any problem with the permissions.  I believe that windows will always execute a .bat file.   Within the same project, I can run elaboration, synthesis and implementation without problems. 
    Any idea why the simulation compile script won't run?
    Thanks,
    Ed

    Hi,
    Thanks very much for your detailed reply. These were the right questions based upon what I told you.   
    However, I took the code home last night and ran it on my webpack 2014.2 release.   It still failed, but I got completely different error messages.   These messages correctly pointed me to an undeclared signal in my testbench. Once fixed, the compile worked and the simulator launched. 
    This morning, I fixed the signal name in my 2015.1 setup, and it also compiled and launched correctly. 
    So, the problem wasn't actually related to file permissions.  It seems like the 2015.1 error message may be broken compared to 2014.2.  
    I was running the Vivado GUI, clicking on "Simulate > Run Behavioral Simulation"
    Thanks again for your help. 
    Regards,
    Ed  
      

  • I installed viber on my iPhone 5s. After entering my number, it says:" No Service It seems to be a problem connecting to viber's service.please check your connection and try again" Nevertheless I have connected to the internet. Could you please help me?

    I installed viber on my iPhone 5s. After entering my number, it says:"
    No Service
    It seems to be a problem connecting to viber's service.please check your connection and try again"
    Nevertheless I have connected to the internet.
    Could you please help me?

    Hello!
    Using a cradle with the Tungsten E2?  Tried bypassing the cradle and just use the hotsync cable?  Tried a different computer yet?  Somehow, the PC is having problems getting a signal from the device.  I assume you have the laptop charger plugged into the laptop during this?  Not going through a docking station or port-replicator.
    One crazy thing you can try is unplug the charger from your laptop, remove the battery from the laptop and leave it out for like 10mins and put it back in and reboot the laptop.  This should not cause side effects but still contact your OEM to make sure that nothing else is needed after leaving the battery out for extended period of time.  Keep me posted.
    Post relates to: Treo 650 (Unlocked GSM)

  • How to check whether MRP run has been executed for a sales order or not

    Dear Experts,
    In Strategy:20, Make to Order scenario, I have run MRP for sales order in T Code:MD50,
    then how can I check whether MRP run has been executed for a sales order or not.  Is there any report where I can find some indication?
    Thanks and regards,
    Vikas

    Dear,
    In MTO scenario with Planning strategy group 20 in material master .
    After sales order is created, Run MRP , then planned order will be created then go to planned order details in MD04 or MD12 you will get sales order number in assigment tab.
    or check the Table PLAF field  PALTR ,and field name KDAUF its sales order, for all created planned order.
    Regards,
    R.Brahmankar

  • Finding function to check whether this employee has changed Employee group

    I'm finding function to check whether this employee has changed Employee group from Temporary to Regular during the year or not.
    Is there any PY function can check as above condition?
    Thank you

    Hi,
    You have to read IT0001 data for reading Employee Group or Sub Group Change. Use the FM HRREADINF* to read IT0001 Data.
    Thanks & Regards,
    Sandip

  • IOS7 has some bugs, Swipe changing lock screen! iphonehassomebugs

    Hi everyone,
    Iphone has some bugs(Part 1)
    Check this video for my very first bug experience,
    http://www.youtube.com/watch?v=QK_nIq4b82s&feature=youtu.be
    Steps to reproduce the issue:
    1. Keep the lock screen wallpaper and the home screen wallpaper different,
    2. Swipe right to unlock and swipe to the left immediately after you reach the right-end. Watch video for more reference.
    Other bugs on the way! .
    Regards,
    Sathish.

    Hmm, I have different wallpapers (one of my photo's for my lock screen and and just plain black for my home screen) and mine still does not do that.
    Try setting them both to something different, but simple - say different colors of one of the default screens.  Or just try one any pair of the default screens instead of your own custom pictures.  Does it still do it?  I cannot seem to get my iPhone to duplicate that no matter what I try with it.
    You can submit the info to Apple at http://www.apple.com/feedback/iphone.html  but try and give them as much details as you can, of anything you have tried that either does not change the abnormal behaviour or that does fix it.

  • Consume web service in ABAP proxy with SOAP header

    Hi Thomas ,
    I am trying to consume web service in  ABAP . I have followed the procedure from one of your web blog <a href="/people/thomas.jung3/blog/2004/11/17/bsp-a-developers-journal-part-xiv--consuming-webservices-with-abap a Developer's Journal Part XIV - Consuming WebServices with ABAP</a> . (640 release).
    I need to pass SOAP header along with SOAP body. As you mentioned I have used if_wsprotocol_ws_header interface to pass header but it is still failing.
    Please see below code and please give some direction to fix the issue.
    1.Create ABAP proxy for WSDL (http://ws.strikeiron.com/SwanandMokashi/StockQuotes?WSDL). It has created structures only for SOAP body.
    2.Create Logical port
    3.Create following program to call proxy
    REPORT  zproxy.
    DATA: ref_stock TYPE REF TO zzco_stock_quotes_soap ,
          ws_header TYPE REF TO if_wsprotocol_ws_header,
          name TYPE string,
          namespace TYPE string.
    TRY.
        CREATE OBJECT ref_stock
      get WS_HEADER protocol
        ws_header ?= ref_stock->get_protocol('IF_WSPROTOCOL_WS_HEADER').
      set somehow header as iXML-DOM tree
        DATA: ixml TYPE REF TO if_ixml,
              xml_document TYPE REF TO if_ixml_document,
              xml_root TYPE REF TO if_ixml_element,
              xml_element TYPE REF TO if_ixml_element,
              xml_node TYPE REF TO if_ixml_node.
        DATA l_xstring        TYPE xstring.
        DATA l_string         TYPE string.
        FIELD-SYMBOLS <fs_xstring> TYPE xstring.
      Additional Header:
        CONCATENATE
    '<soap:Header>'
    '<s1:LicenseInfo xmlns:s1="http://ws.strikeiron.com">'
    '<s1:RegisteredUser>'
    '<s1:UserID>[email protected]</s1:UserID>'
    '<s1:Password>aaaaaaaa</s1:Password>'
    '</s1:RegisteredUser></s1:LicenseInfo>'
    '</soap:Header>' INTO l_string.
      convert to xstring
        l_xstring = cl_proxy_service=>cstring2xstring( l_string ).
        IF NOT l_string IS INITIAL.
        create iXML DOM document from XML xstring
          CALL FUNCTION 'SDIXML_XML_TO_DOM'
            EXPORTING
              xml           = l_xstring
            IMPORTING
              document      = xml_document
            EXCEPTIONS
              invalid_input = 1
              OTHERS        = 2.
          IF sy-subrc = 0 AND NOT xml_document IS INITIAL.
            xml_root = xml_document->get_root_element( ).
            xml_element ?= xml_root->get_first_child( ).
          add header element by element to SOAP header
            WHILE NOT xml_element IS INITIAL.
              name = xml_element->get_name( ).
              namespace = 'http://swanandmokashi.com' . "xml_element->get_namespace_uri( ).
              IF NOT xml_element IS INITIAL.
              ENDIF.
              ws_header->set_request_header(
                          name = name
                          namespace = namespace
                          dom = xml_element ).
              xml_element ?= xml_element->get_next( ).
            ENDWHILE.
          ENDIF.
        ENDIF.
      CATCH cx_ai_system_fault .
    ENDTRY.
    *Call soap body using abap proxy class.
    DATA: get_quotes TYPE zzget_quotes_soap_out .
    DATA: get_quotes1 TYPE zzget_quotes_soap_in .
    get_quotes1-quote_ticker = 'GE'.
    TRY.
        CALL METHOD ref_stock->get_stock_quotes
          EXPORTING
            get_quotes1 = get_quotes1
          IMPORTING
            get_quotes  = get_quotes.
      CATCH cx_ai_system_fault .
      CATCH cx_ai_application_fault .
    ENDTRY.
    4.It is throwing cx_ai_system_fault error.
    SOAP details:
    Input:
    <?xml version="1.0" encoding="utf-8"?>
    <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:enc="http://schemas.xmlsoap.org/soap/encoding" >
    <soap:Header>
    <s1:LicenseInfo xmlns:s1="http://ws.strikeiron.com">
    <s1:RegisteredUser>
    <s1:UserID>[email protected]</s1:UserID>
    <s1:Password>aaaaaaaa</s1:Password>
    </s1:RegisteredUser>
    </s1:LicenseInfo>
    </soap:Header>
    <soap:Body>
    <tns:GetQuotes xmlns:tns="http://swanandmokashi.com">
    <tns:QuoteTicker>GE</tns:QuoteTicker>
    </tns:GetQuotes>
    </soap:Body>
    </soap:Envelope>
    Thanks,
    Kavitha.

    Hi ,
    Thank you for the response. Did you passed user email and password ([email protected] /aaaaaaaa) part of licenseinfo->resisteredUser along with Quoteticker GE in analyzer?
    <a href="http://www.strikeiron.com/Analyzer/OnlineAnalyzer.aspx?WSDL=http://ws.strikeiron.com/SwanandMokashi/StockQuotes?WSDL">ANALYZER</a>
    Thanks,
    Kavitha.

  • Java Web Service Access SOP Header and SOAP Body

    Hi
    I am newbie to Web Service. I had a Java class and I converted it to Web Service(LoginWebService has methods login, register).
    Now my client is accessing my web services and calling methods login and register.
    Now I want to add few values in SOAP header in client side.
    My Questions:
    1. How can I access the SOAP headers and SOAP Body in my Server Web Service method implementations?
    2. Is there any API that I have to use?
    3. Does anyone have any sample code for these things?
    Thanks

    Seems like the exception handling logic is not sound - but your posting is difficult to read. Please use the *\* tag to mark and end source code snippets.
    Have a look at the sample code in {message:id=4205205} - does a SOAP call using PL/SQL only.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • OTN Live Web Services problem, mismatched WSDLs and Soap RPC reply

    I've tried to connect to all those OTN Live Web Services using webMethods and found there might be a mismatched WSDLs and Soap RPC problem in Oracle side. There is a discussion thread of this: http://www.wmusers.com/wmusers/messages/116/904.shtml
    Is there anyone out there encounters the same problem and agree that Oracle should fix this ? Thanks a lot in advance.

    Hi Mike,
    I've just downloads all 5 WSDL and tried each single one of them again. The following are the results of the test.
    Result (OK): this is the success case
    Result (0): this is the "OTN Authentication Failure" and I cannot tell if it works if input is correct.
    Result (1): this is the error I've mentioned in the previous message and I'll give you more details later.
    Result (2): this is the "No Serializer found" exception:
    java.lang.IllegalArgumentException: No Serializer found to serialize a
    'org.w3c.dom.Element' using encoding style 'http://schemas.xmlsoap.org/soap/encoding/'.
    -- IOTNMobileWrapperPortType
    getStatusByMsgID (OTN Authentication Failure)
    getStatusesByMsgIDs (1)
    getSupportedTransports (1)
    getVersion (1)
    sendText (1)
    sendTextMsg (1)
    -- OTNDeptEmpPortType
    getDeptInfoArray (OK)
    getDeptInfoXML (2)
    getDeptNoArray (OK)
    getDeptXML (2)
    getEmpInfoArray (OK)
    getEmpInfoXML (2)
    getEmpNoArray (OK)
    getEmpXML (2)
    -- IOTNGUIDGeneratorPortType
    getGUID (1)
    -- IOTNHelloWorldPortType
    getAvailableLanguages (1)
    getDefaultHelloWorld (1)
    getHelloWorld (1)
    -- IOTNNewsPortType
    getRss (1)
    Let me explain what happens in error case (1):
    webMethods construct the "targetOutSignature" for the client base on the WSDL.
    After the reply message retrieved, it tries to "conform" (validate) it against the "targetOutSignature".
    Whenever I get this exception, I can open the exception details and actually see that the reply xml has been received but with the error message of "Output parameters do not conform to targetOutputSignature".
    If I manually remove the "targetOutputSignature" from the generated client, so that webMethods won't try to "conform" the reply message against the one described in the original WSDL, it works perfectly.
    I hope this helps. Please let me know if there is any other information I can provide.
    Thanks.
    - Louis

Maybe you are looking for

  • Where is Adobe?

    I, amonst others have unanswered questions in this forum. It would be nice if there was more active support here from Adobe.

  • BT Infinity Insufficient bandwidth to run iPlayer ...

    Having problems with BT Infinity.  Despite new modem,  speed is slower than ever. Support line link up took 30 minutes but operator unable to progress the matter and put us in a queue to the engineers - nearly 2 hours later I hung up in despair. Emai

  • Adding a record in a database using the jbutton

    hi i'm a newbie of jdeveloper.. i just wannna ask how to code adding a record in a database POSTGRESQL using the jbutton.. i already connected in the database but in the model form it has already navigation buttons.. but i want to learn how to code t

  • Standard SAP Report - Payments blocked and released

    Hi Experts, We are having a requirement where the payment will be blocked for the invoices generated through Invoicing Plan. But we need a report " To know the status of payments blocked and released according to the invoicing plan". Do we have any s

  • Cannot perform Goods Receipt in SRM

    Hi All: When I'm trying to perform GR/ Confirmations in SRM I get the following message. "No documents correspond to search criteria or no authorization" .  I have tried the following roles BBP_STAL_EMPLOYEE and BBP_MULTI_EMPLOYEE to no avail.  I see