External WS Consumption Issue

Dear,
I’m trying to call an external webservice in an ABAP system (ECC 6.0). I created a Client Proxy using the WSDL file of the webservice, and then made a function module to test it. Unfortunately there is an error message.
The error message from “testing function module”:
"Unexpected element -el=HEAD ns="
No error from  “SMICM”.
The error message from “SM21”:
"SOAP Runtime: SOAP Runtime exception: 14 occurred in method GET_METHOD of class CL_SOAP_MESSAGE_11 at p osition 1"
"SOAP Runtime: Exception message: Unexpected element -el=HEAD ns="
BUT this webservice works very well in our Java test environment "J2EE Engine Start Page"/"Web Service Navigator".
Do you have any idea about this error? (We think that this error may be due to the limitation of ABAP, because it works in JAVA. E.g. maybe the structures that have been generated on the ABAP side to not have the correct data type, as we got the warning message "The XSD type long does not exactly correspond to the ABAP type INT4", "The XSD type decimal does not exactly correspond to the ABAP type STRING")
Thanks in advance!
Sincerely yours,
Lisu

Hi Pushkar,
the WSDL content is:
  <?xml version="1.0" encoding="UTF-8" ?>
- <definitions name="CommitmentServiceDefinitions" targetNamespace="http://cec/budg/webservices" xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:s0="java:cec.budg.webservices" xmlns:s1="http://cec/budg/webservices" xmlns:s2="http://schemas.xmlsoap.org/wsdl/soap/">
- <types>
- <xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" targetNamespace="java:cec.budg.webservices" xmlns:s0="java:cec.budg.webservices" xmlns:s1="http://cec/budg/webservices" xmlns:s2="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xs="http://www.w3.org/2001/XMLSchema">
- <xs:complexType name="CommitmentSearchCriteria">
- <xs:sequence>
  <xs:element minOccurs="1" name="BlockSize" nillable="false" type="xs:int" />
  <xs:element minOccurs="1" name="StartIndex" nillable="false" type="xs:int" />
  <xs:element minOccurs="1" name="CentralKey" nillable="true" type="xs:string" />
  <xs:element minOccurs="1" name="LocalKey" nillable="true" type="xs:string" />
  <xs:element minOccurs="1" name="UserReference" nillable="true" type="xs:string" />
  </xs:sequence>
  </xs:complexType>
- <xs:complexType name="CommitmentResultList">
- <xs:sequence>
  <xs:element maxOccurs="unbounded" minOccurs="0" name="Commitments" nillable="true" type="java:CommitmentHeader" xmlns:java="java:cec.budg.webservices.model" />
  <xs:element minOccurs="1" name="CurrentIndex" nillable="false" type="xs:int" />
  <xs:element minOccurs="1" name="FullRowCount" nillable="false" type="xs:int" />
  </xs:sequence>
  </xs:complexType>
  </xs:schema>
- <xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" targetNamespace="java:cec.budg.webservices.model" xmlns:s0="java:cec.budg.webservices" xmlns:s1="http://cec/budg/webservices" xmlns:s2="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xs="http://www.w3.org/2001/XMLSchema">
- <xs:complexType name="CommitmentHeader">
- <xs:annotation>
  <xs:documentation>Value object for CommitmentHeader.</xs:documentation>
  </xs:annotation>
- <xs:sequence>
  <xs:element minOccurs="1" name="BudgetManagementTypeCode" nillable="true" type="xs:string" />
  <xs:element minOccurs="1" name="CommitmentClassCode" nillable="true" type="xs:string" />
  <xs:element minOccurs="1" name="CommitmentTypeCode" nillable="true" type="xs:string" />
  <xs:element minOccurs="1" name="ConsumingL1ReasonJustCode" nillable="true" type="xs:string" />
  <xs:element minOccurs="1" name="ConsumingL1ReasonRuleCode" nillable="true" type="xs:string" />
  <xs:element minOccurs="1" name="CurrencyCode" nillable="true" type="xs:string" />
  <xs:element minOccurs="1" name="CurrentTreeCode" nillable="true" type="xs:string" />
  <xs:element minOccurs="1" name="Id" nillable="true" type="xs:long" />
  <xs:element minOccurs="1" name="LocalObjectForeignId" nillable="true" type="xs:string" />
  <xs:element minOccurs="1" name="LocalSystemCode" nillable="true" type="xs:string" />
  <xs:element minOccurs="1" name="PaymentClassCode" nillable="true" type="xs:string" />
  <xs:element minOccurs="1" name="Remarks" nillable="true" type="xs:string" />
  <xs:element minOccurs="1" name="ResponsibleDgCode" nillable="true" type="xs:string" />
  <xs:element minOccurs="1" name="ResponsibleOrganisationId" nillable="true" type="xs:long" />
  <xs:element minOccurs="1" name="ResponsibleUnitCode" nillable="true" type="xs:string" />
  <xs:element minOccurs="1" name="Title" nillable="true" type="xs:string" />
  <xs:element minOccurs="1" name="TransactionAreaCode" nillable="true" type="xs:string" />
  <xs:element minOccurs="1" name="TransactionTypeCode" nillable="true" type="xs:string" />
  <xs:element maxOccurs="unbounded" minOccurs="0" name="Details" nillable="true" type="java:CommitmentDetail" xmlns:java="java:cec.budg.webservices.model" />
  </xs:sequence>
  </xs:complexType>
- <xs:complexType name="CommitmentDetail">
- <xs:annotation>
  <xs:documentation>Value object for CommitmentDetail.</xs:documentation>
  </xs:annotation>
- <xs:sequence>
  <xs:element minOccurs="1" name="AccountReference" nillable="true" type="xs:string" />
  <xs:element minOccurs="1" name="AppropriationId" nillable="true" type="xs:long" />
  <xs:element minOccurs="1" name="CommitmentAppropriationTypeCode" nillable="true" type="xs:string" />
  <xs:element minOccurs="1" name="CommitmentHeaderId" nillable="true" type="xs:long" />
  <xs:element minOccurs="1" name="CommitmentHeaderLocalObjectForeignId" nillable="true" type="xs:string" />
  <xs:element minOccurs="1" name="CommitmentPositionLineNo" nillable="true" type="xs:int" />
  <xs:element minOccurs="1" name="DeletedFlag" nillable="true" type="xs:string" />
  <xs:element minOccurs="1" name="ExchangeRate" nillable="true" type="xs:decimal" />
  <xs:element minOccurs="1" name="FutureOpenAmount" nillable="true" type="xs:decimal" />
  <xs:element minOccurs="1" name="Id" nillable="true" type="xs:long" />
  <xs:element minOccurs="1" name="LocalObjectForeignId" nillable="true" type="xs:string" />
  <xs:element minOccurs="1" name="LocalSystemCode" nillable="true" type="xs:string" />
  <xs:element minOccurs="1" name="LockedFlag" nillable="true" type="xs:string" />
  <xs:element minOccurs="1" name="OpenTreeFlag" nillable="true" type="xs:string" />
  <xs:element minOccurs="1" name="PolicyAreaCode" nillable="true" type="xs:string" />
  <xs:element minOccurs="1" name="PrecommitmentPositionLocalObjectForeignId" nillable="true" type="xs:string" />
  <xs:element minOccurs="1" name="ExchangeBaseDate" nillable="true" type="xs:dateTime" />
  <xs:element minOccurs="1" name="SpecialExchangeBaseDate" nillable="true" type="xs:dateTime" />
  <xs:element minOccurs="1" name="SpecialExchangeRate" nillable="true" type="xs:decimal" />
  <xs:element minOccurs="1" name="TotalAcceptedCurrencyAmount" nillable="true" type="xs:decimal" />
  <xs:element minOccurs="1" name="TotalAcceptedEcuAmount" nillable="true" type="xs:decimal" />
  <xs:element minOccurs="1" name="TotalAvailableCurrencyAmount" nillable="true" type="xs:decimal" />
  <xs:element minOccurs="1" name="TotalAvailableEcuAmount" nillable="true" type="xs:decimal" />
  <xs:element minOccurs="1" name="TotalConsumedCurrencyAmount" nillable="true" type="xs:decimal" />
  <xs:element minOccurs="1" name="TotalConsumedEcuAmount" nillable="true" type="xs:decimal" />
  <xs:element minOccurs="1" name="TransactionAreaCode" nillable="true" type="xs:string" />
  <xs:element minOccurs="1" name="TransactionTypeCode" nillable="true" type="xs:string" />
  <xs:element minOccurs="1" name="TreeCode" nillable="true" type="xs:string" />
  <xs:element minOccurs="1" name="WorkflowAcceptedCurrencyAmount" nillable="true" type="xs:decimal" />
  <xs:element minOccurs="1" name="WorkflowAcceptedEcuAmount" nillable="true" type="xs:decimal" />
  <xs:element minOccurs="1" name="WorkflowConsumedCurrencyAmount" nillable="true" type="xs:decimal" />
  <xs:element minOccurs="1" name="WorkflowConsumedEcuAmount" nillable="true" type="xs:decimal" />
  <xs:element minOccurs="1" name="WorkflowPostedCurrencyAmount" nillable="true" type="xs:decimal" />
  <xs:element minOccurs="1" name="WorkflowPostedEcuAmount" nillable="true" type="xs:decimal" />
  </xs:sequence>
  </xs:complexType>
  </xs:schema>
  </types>
- <message name="getCommitmentWithDetails">
  <part name="criteria" type="s0:CommitmentSearchCriteria" />
  </message>
- <message name="getCommitmentWithDetailsResponse">
  <part name="return" type="s0:CommitmentResultList" />
  </message>
- <portType name="CommitmentServicePort">
- <operation name="getCommitmentWithDetails" parameterOrder="criteria">
  <input message="s1:getCommitmentWithDetails" />
  <output message="s1:getCommitmentWithDetailsResponse" />
  </operation>
  </portType>
- <binding name="CommitmentServiceSoapBinding" type="s1:CommitmentServicePort">
  <s2:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http" />
- <operation name="getCommitmentWithDetails">
  <s2:operation soapAction="" style="rpc" />
- <input>
  <s2:body namespace="http://cec/budg/webservices" parts="criteria" use="literal" />
  </input>
- <output>
  <s2:body namespace="http://cec/budg/webservices" parts="return" use="literal" />
  </output>
  </operation>
  </binding>
- <service name="CommitmentService">
- <port binding="s1:CommitmentServiceSoapBinding" name="CommitmentServicePort">
  <s2:address location="http://158.166.45.177:7001/abacService/GetCommitments" />
  </port>
  </service>
  </definitions>

Similar Messages

  • 1st Gen Time Capsule and External Hard Drive Issues

    I have a 1st generation Time Capsule and have never had any luck connecting an external hard drive (both Western Digital MyBook and Seagate FreeAgent Pro) via an USB hub for an extended period. They will connect for a few hours or up to a day or two before they lose the connection and look up the wi-fi connection (although the internet and connected printer don't seem affected). Thought it might be an issue with the powered hub, but have same issue with both (Belkin and APC). I have read that others have had similar issues.
    For laughs, I connected a dinky personal drive (WD My Passpoert 750gb) to the USB hub and it came up instantly and had no issues for the 12+ hours it was connected. Question #1: can I run a portable drive for an extended period of time (weeks, months, years) via USB hub without killing it?
    Also, I would like to house my large iTunes and iPhoto libraries to be accessed by 3 different MacBooks. Question #2: is a NAS drive connected directly via ethernet to the TC is the best answer?
    I am spoiled by the simplicity of the plug-and-play connectivity of Apple products. Is there a mysterious sequence of procedures that I need to follow to get the Time Capsule to play well with the USB connected HDs?
    Thanks in advance for your help.

    To answer the general question, a drive that is constantly spinning is both more likely to be damaged and less likely to give issues of access to the USB.. the one fights the other. Feel the small passport drive and see if it is continually spinning.. if so that could account for it maintaining connection.. although according to your testing 12hrs is not long enough to know for sure. Feel the other drives. If they spin down and then when you try to access them, do they spin up? Or is it the spin down time that dictates the time they are available on the network. It may simply be a case of usb connected to a router is not getting the correct spin up info.
    IMHO a NAS is the right way to do this.. especially if you have multiple computers accessing it. USB is not a fast connection. Especially hanging off the TC series 1, were not renowned for speed. A NAS is not that expensive now and using a mirrored raid you at least have some protection. Remember to always have the source files in mulitple locations. A NAS can also work as an itunes server, which the TC cannot. And the connection from gigabit ethernet to sata is not made via usb.
    As a secondary option.. open your series 1 TC and put in a 2TB hdd.. this is well documented.. larger sizes give trouble but the series one can easily be updated to 2TB.. remember also the power supply in a series one can go at any moment. Get ready for it, plan for it.. one day it will happen.

  • Macbook Pro and external monitor sleep issues.

    I recently upgraded to a new 13 inch MacBook Pro to replace my previous one.  With the upgrade, I'm now on the latest OS and I have a Thunderbolt instead of Mini-displayport output.  I have a Dell U2410 monitor which has worked great up until now, but I now have the following behavior:
    When the laptop sleeps (or puts the display to sleep) the monitor begins to turn on and off.  It goes to powersave mode and immediately wakes up, realizes there's no signal, and goes back to powersave mode, etc etc etc. 
    When I wake the computer up from sleep, the monitor's behavior stays the same.  The laptop never detects the display and begins sending a signal.
    If I unplug and replug the adapter, all is well.
    There seem to be two separate issues: whatever signal the computer continues to send down the display cable after sleep seems to confuse my monitor, secondly, the computer never again sends a real video signal down the line after it wakes up.
    I'm on the latest 10.8.3.  My adapter is the same adapter I have been using for years, an apple mini-display port to DVI adapter.  Supposedly this adapter is still compatible with the Thunderbolt port.
    I've seen lots of issues online about wake up issues with the latest OS.  Is there a workaround for this yet or do I have to uplug my monitor anytime I sleep the computer?

    Hi Steve,
    I have had the exact same issues after adding a WD Thunderbolt Duo external drive to a Mid 2011 iMac and then daisy chaining the Dell U2410 monitor off that.
    My Mini DP to DVI cable ceased working properly - sleeps issues.
    After buying one of these adapters of Ebay:
    http://www.ebay.com.au/itm/3-in-1-Mini-Displayport-to-HDMI-with-audio-DVI-DP-ada pter-3in1-convertor-Macbook-/110861703462?pt=US_Audio_Cables_Adapters&hash=item1 9cfdf5926
    I then tried all the different cables that came originally with the Dell U2410 with that adapter, and none of then would put the U2410 to sleep properly. The backlight would stay on, or "No Displayport Cable" would float around the Dell display with the backlighting still on. Or otherwise the Dell would try to go to sleep and then wake up again and cycle like you found.
    Apples Mini DP to VGA adapter was sleep successful with the VGA cable (Analogue) but the output picture was not as sharp as DVI or Displayport, plus there was RF interference with the cable.
    After lots of internet searching I have found a near perfect solution:
    A HDMI to DVI cable with the HDMI end connected to the Ebay 3 in 1 adapter, which then connects to the Thunderbolt port.
    Connect this to DVI-D 1 on the Dell U2410.
    On the Dell in Menu - Other Settings,  disable DDC/CI
    Now in OSX Settings - energy Saver you will have to tick:
    "Put Hard Disks to sleep where possible" and select a short time frame for "Computer Sleep"
    I have found that the display would go black but the backlighting on the Dell U2410 would stay on, when the display went to sleep on the Mac as per the Energy Saver "Display Sleep" setting.
    The backlighting on the Dell would only turn off when the time for 'Computer Sleep" has elapsed and the external Thunderbolt hard disk went to sleep as well.
    The Dell U2410 would then wake up correctly as well when my iMac woke, with this setup.
    Cheapest solution for you would be to try an Apple or Ebay HDMI to DVI adapter and then use the DVI - DVI cable that came with the Dell.
    If that fails get the 3 in one Adapter and use my Mini DP/Thunderbolt to Ebay Adapter to DVI-DVI cable setup.
    I'm assuming your new Macbook Pro comes with the HDMI port ?
    I believe the Sleep Issues with this monitor are all related to appropriate signal on the cable, and only the HDMI to DVI solution will work correctly on Mac's connected to the Dell U2410.
    Good Luck. :-)

  • External hard drive issue - PC to Mac (weird problem...)

    Hi everyone,
    this is my first post and new to Macs, so apologies if this may have been covered elsewhere (though I can't find an answer!), but I'm getting seriously frustrated with this issue!
    I've just recently been given an iMac and I'm trying to access my files and use my previously PC-mounted external hard drive as my iTunes library and general storage for everything else. However, I'm having permission issues in that it will only allow me read-only status. I followed instructions from other forums and google searches that said I should install macFUSE and NTFS-3G drivers and this would solve the issue, which it did. Then my girlfriend turned off the hard drive accidently at the wall socket and once I remounted it, it has returned to read-only once again and even re-installing the drivers makes no difference!!!
    I'm running an iMac PowerMac G4, Mac OS X 10.5.6 if that has any relevance?
    Any help????
    Thanks,
    Adam

    Hi Adam;
    Personally instead of attempting to use NTFS, I would suggest that you reformat to HFS+.
    Using NTFS on a Mac is always a kluge at best. It will always give you problems. If you reformat to HFS+ then you are using the native format and everything should work much better for you.
    Allan

  • Windows 8.1 and IOMEGA External Hard Drive Issues

    Since I upgraded from Windows 7 to 8.1 my computer will not now recognize my IOMEGA external hard drive.  How could just updating Windows not allow my hard drive to be accessed?  Please help?  I do taxes on the side and all my clients's
    tax returns are on this external drive and need to be accessed.  I have a laptop with Windows 7 and it recognizes the hard drive with no problem.  Only problem is I do not want to do taxes on my laptop.  Is there a patch somewhere to help? 
    If not,how much trouble is it to go back to Windows 7 because this issue is a serious one with me?  I know I am not the only one with this issue because if you search on IOMEGA the issue is going on with others.  I just have not seen a real
    solution to the problem yet. Thanks in advance to anyone who can help me.

    Hello Dewayne H,
    What is your current situation?
    Have you tried the solution as britishdhez mentioned?
    Best regards,
    Fangzhou CHEN
    Fangzhou CHEN
    TechNet Community Support

  • Stardom External Hard Drive Issue

    Hey all,
    Hopefully someone can help me out with a small issue I'm having with a new external hard drive.
    I recently purchased a Stardom External Storage system (SohoTank ST2-WBS3) 2 bay, usb 3.0.for creating backups of my data currently stored on other usb 3.0 hard drives.  The hard drives I bought are Western Digital 3TB formatted to Mac OS Extended (Journaled).  The drives mount fine but when I started coping data to them, the drives would unmount themselves after a random period of time, sometimes straight away, other times after 10 to 30 seconds, sometimes a few minutes etc.  The drives also unmount themselves even when no data is being transfer and again this happens at random (sometimes after 5-10 minutes).  Also the drives re-mount automatically if they unmount themselves as well as if I manually unmount them.
    The computer I'm using is a new iMac 27" (Late 2013) 3.5 GHz i7 running OSX 10.9
    I've been trouble shooting the issue by:
    Restating the computer (Have you tried turning it off and on again!)
    Reformatting the hard drives again (Mac OS Extended Journaled (but haven't tried any other formats)
    Only having 1 hard drive in the enclosure at a time
    Trying the hard drive number 1 in bay 1 and bay 2
    Trying the hard drive number 2 in bay 1 and bay 2
    Connecting the enclosure to different usb ports
    Different usb 3.0 cable
    Disconnecting all other peripheral devices like other hard drives (except keyboard and might mouse)
    Copying data from the iMac fusion drive as opposed to data from another external usb 3.0 hard drive.
    And now for the kicker!  I then tried connecting the stardom to my new 13" retina MacBook Pro with no issues at all.  The drives work perfectly.  Data was able to be copied to them and when you manual unmount the drives they don't re-mount themselves.
    Anyway hopefully someone might be able to help me out or has come across a similar issue before
    Cheers
    Troy.

    Thank you for your reply. The drive does come up in the Disk Utility after I reboot and connect the cable. You can click on the hard drive in Disk Utility and it indicates the volume (drive size). If you try to partition the drive the spinning wheel displays and it doesn't appear to do anything but lock up Disk Utility and it needs a Force Quit to close. Disk Utility displays the drive as 232.9 GB LaCie Group SA and below that text it says disk3s3 and is greyed out. I have tried to erase and partition the drive but the Disk Utility locks up. Is there a way to get disk back to its original factory install condition so I may attempt to format it? Is there a UNIX disk utility that could force an erase and partition? Thanks for your help.

  • Iphoto and external hard drive issues

    I have backed up my Iphoto onto an external hard drive and then upgraded my iphoto and can't access any photographs. How do I restore my iphoto library from the external hard drive?

    There are 9 different versions of iPhoto and they run on 9 different versions of the Operating System. The tricks and tips for dealing with issues vary depending on the version of iPhoto and the version of the OS. So to get help you need to give as much information as you can. Include things like:
    - What version of iPhoto.
    - What version of the Operating System.
    - Details. As full a description of the problem as you can. For example, if you have a problem with exporting, then explain by describing how you are trying to export, and so on.
    - History: Is this going on long? Has anything been installed or deleted? - Are there error messages?
    - What steps have you tried already to solve the issue.
    - Anything unusual about your set up? Or how you use iPhoto?
    Anything else you can think of that might help someone understand the problem you have.

  • Time Machine backup & External Hard drive issue

    Hello,
    I have a MBP running Snow Leopard. I use two external Hard drives for Time Machime backups. The first one Seagate2TB is working with TM just fine. 
    The second one Seagate3TB worked with TM just fine for about a year until two days ago. Since two days ago, TM doesn't backup any new data (or file changes) anymore to this 3TB drive. It back's up only a few kb and cleans up, while it should backup at least 200Mb that I just uploaded to my MBP.
    Here are two (maybe) useful additional info:
    - I used disk utility to verify this 3TB hard drive and it returned okay. I also use this 3TB hard drive to backup a different Macbook and it still works just fine. 
    - At the same time, my TM woks on my other 2TB hard drive.
    Can someone please let me know what the issue is and how to fix it?
    Thank you very much.
    PS: These hard drives are connected to my MBP via a USB cable not time capsule.

    thanks for the suggestions -- actually, the "real" issue is that my technophobe spouse needs the "documents" file backed up. TimeMachine "should" work --does not. And because working from dropbox (which is a great idea and already installed) would mean opening up a file other than "documents" - it would cause such anxiety, I was hoping to write an apple script to back up the file daily to someplace else without me having to physically do it myself.
    Here is what I am trying --I will put the entire folder on DB and then create an alias (that looks like the same title as the original) and leave that on the computer -- I wonder if that will work?! 
    Or maybe I am confused. I thought I needed to work from the document in DB in order for it to sync there...
    Thanks again for the ideas!

  • Time Capsule/External Hard-drive issues

    Hello - I'm thinking about investing in a Time Capsule mainly to back-up my data and in particular the massive amount of photos (34,000) that I think are slowing this machine down! I just wanted to ask once I have the photos on the Time Capsule am I able to delete them from my hard-drive?
    As an aside, I do have a couple of WD Hard-Drives but I amhaving issues with them in that I cannot get into the hard-drive. This has happened around the same time that I updated to OS X 10.9.2. I did read online that others were having issues with this too. Im not quite sure what to do as having spent the money on these hard-drives it's a little disappointing to have to consider buying a new external hard-drive - although probably a very worthwhile investment. Anyone having this problem too?
    Thanks for your advice in advance it is much appreciated.

    Since you have an iMac my advice would be to buy 2 external drives.  Now you can decide to move some of your data off your iMac to one of the drives for archiving and then use the other drive as a Time Machine backup of both the iMac and the archive.  You don't want a solution that has key data sitting on a single drive.
    But...before you buy two drives, I must ask.  How much space are you using currently on your iMac.  Just having 34000 pictures won't slow down your machine unless it is running out of space.  Are you running out of space?  If you aren't, then a single large drive to backup your iMac is sufficient.  Just don't delete the photos so you have a redundant copy of each.
    Finally, I personally don't like backing up over wifi unless with a notebook.  You have an iMac, a dedicated drive for backup should not be a problem behind that big screen.  It will be more reliable than a wifi backup and a heck of a lot faster.

  • SAP R/3 to External System RFC issue

    Hi Experts,
    We have one Peculiar issue in our SAP R/3. Request you to help me in resolving this.
    Order Processing:
    During Sales Orders Processing, for every line item a RFC is being initiated from SAP R/3 to an external system called Trilogy Pricer to get the Pricing data.  Trilogy Pricer sends the Pricing data to SAP R/3 and the respective Orders are being processed in SAP R/3.
    Current Issue:
    The issue we are facing is that, once the Pricing data is sent to SAP R/3, Trilogy Pricer expects an acknowledgement (RFC_OK) from SAP R/3 in order to release the RFC connection.  Intermittently, Trilogy Pricer is not receiving this or any kind of acknowledgement from SAP R/3 causing the connection to hang which is causing several problems.
    For example:
    On every business day, there will be 50,000 Sales orders.
    So, 5 or 10 sales orders are getting hanged every day.
    We tried to simulate this issue in Dev and Stage environments by processing 30,000 to 40,000 sales orders.
    But we were unsuccessful, which means all the RFC connections were being closed as the external system is able to get the acknowledgements for all those orders from SAP R/3.
    We are having this problem only in Prod.
    Any thoughts to solve this issue is highly appreciated.
    Advance thanks for your great help.
    Thanks and Regards,
    Srinivasa

    Hi I am not sure if it was similar issue, but I once had a kindaa problem I solved using
    CALL FUNCTION func STARTING NEW TASK task
                  [DESTINATION {dest}]
                  [{PERFORMING subr}|ON END OF TASK].

  • SAP R/3 to External System RFC issue during Sales Order Processing

    Hi Experts,
    We have one Peculiar issue in our SAP R/3. Request you to help me in resolving this.
    Order Processing:
    During Sales Orders Processing, for every line item a RFC is being initiated from SAP R/3 to an external system called Trilogy Pricer to get the Pricing data. 
    Trilogy Pricer sends the Pricing data to SAP R/3 and the respective Orders are being processed in SAP R/3.
    Current Issue:
    The issue we are facing is that, once the Pricing data is sent to SAP R/3, Trilogy Pricer expects an acknowledgement (RFC_OK) from SAP R/3 in order to release the RFC connection.  Intermittently, Trilogy Pricer is not receiving this or any kind of acknowledgement from SAP R/3 causing the connection to hang which is causing several problems.
    For example:
    On every business day, there will be 50,000 Sales orders.
    So, 5 or 10 sales orders are getting hanged every day.
    We tried to simulate this issue in Dev and Stage environments by processing 30,000 to 40,000 sales orders.
    But we were unsuccessful, which means all the RFC connections were being closed as the external system is able to get the acknowledgements for all those orders from SAP R/3.
    We are having this problem only in Prod.
    Any thoughts to solve this issue is highly appreciated.
    Advance thanks for your great help.
    Thanks and Regards,
    Srinivasa

    Hi I am not sure if it was similar issue, but I once had a kindaa problem I solved using
    CALL FUNCTION func STARTING NEW TASK task
                  [DESTINATION {dest}]
                  [{PERFORMING subr}|ON END OF TASK].

  • ISE 1.2/1.2.1 license consumption issues

    Hi all, I know this topic is somewhat done to death but I want to know whether anyone else is experiencing this issue. In summary my ISE deployment (right this minute) has 17 Active sessions with 17 base and 17 plus licenses consumed. My issue with this is that of the 17 active sessions only 8 of these sessions are utilising a plus feature ie the registration status in the authorisation policy. In short at all times the plus license consumption always matches the base license consumption.
    I have continually had this issue with all ISE deployments whereby the license consumption does not reflect Cisco documentation and my configurations. Without giving screenshots I can say with certainty that the only plus feature been used is the BYOD onboarding and subsequent registration status in the authz policy. The rest of my policies are straight forward CWA guest and EAP-TLS machine cert authorisations with no profiling information used in the policy. I have gone so far as to turn off profiling and removing BYOD policies with the same results.
    The following document clearly states what should and shouldn't consume a license:
    http://www.cisco.com/c/en/us/products/collateral/security/identity-services-engine/datasheet-c78-730772.pdf
    Any input would be appreciated.

    The bug is listed as fixed, but I don't see which software it is fixed in. I must admit I've seen this problem for months, probably over a year now. It was already the case on 1.1.4 at least. I have some customers using 1300 of 500 advanced licenses.
    It would be nice if it functioned exactly as the documentation always said. It would give you a warm feeling that things will keep working when the advanced license expires entirely (I'm sure we'll find out soon).
    At one point I was told it was under discussion whether to fix the problem, or to fix the documentation to fit the problem, but last I heard it would be fixed at some point in the future. Every time we get a call regarding new software (1.2.1, 1.3) I make sure I ask them that the trust based licensing continues. We're OK as long as trust based licensing continues, but it's scruffy and hard to explain to customers why it shows 3 times as many advanced users as they already have. And then on occasions you see their eyes light up when they realise they can run 3000 advanced and Cisco will be none the wiser, or alternatively that they could have got away with a 100 user license and you've just cost them a 5000 user license that nobody can tell if they are using or not.

  • External LCD TV issues with Snow Leopard

    Ever since I updated to Snow Leopard, my LCD TV is overscanning the image. If I Maximize Firefox, the outside controls are cropped off. This never used to happen in Leopard. I go to the display settings and disable "Overscanning" and it underscans the image leaving an inch of black space on the screen all around the image, which is more underscanning than it ever used to it.
    Also, the image on my LCD seems a bit blurrier. I read about this issue and tried the Text Smoothing tip here http://blog.petersendidit.com/post/blurry-text-on-external-monitor-with-snow-leo pard/ but that didn't change anything either.
    Any ideas?
    Thanks!

    There should be an underscanning slider in the Displays preference you can fiddle with (or is that what you were referring to?).
    Does your TV have a "full pixel" mode (or similar words)?  Does your TV have it's own overscan/underscan settings?
    Which video card?  How is the TV connected to that video card?

  • Lenovo X201 external monitor resolution issue

    Hi,
    I'm having issues connecting my Lenovo X201 through the docking station -> display port -> Dell 3011.  The native resolution for the monitor is 2560x1600.  However, I currently can only set the resolution to 1920x1080 (ugly!) as any high resolution results in the monitor entering power save mode.
    I'm using xrandr to set the video mode in my .xinitrc (running dwm).  This creates a good Xinerama config for dwm.
    I'm currently using the line
    xrandr --output DP1 --mode 1920x1080 --above LVDS1
    to set my resolution.  When I change to --auto or --mode 2560x1600, or 1920x1200 etc I get the blank screen on the external monitor.  I'm using the xf86-video-intel-sna driver package (I tried the -uxa as well to no avail).
    Any hints?

    I was able to get it by having arandr help generate the config, here's the solution that worked for me:
    xrandr --output HDMI1 --off --output LVDS1 --auto --right-of DP1 --output DP1 --pos 0x0 --rotate normal --auto --output VGA1 --off

  • ABC Analysis of Planned Consumption(Issue against Reservation).

    Hi Experts,
    Is there any standard report is available for ABC Analysis of Planned Consumption(material issued against Reservation)?
    thx in advance...

    Hi,
    I allready tested with Tcodes such as MC.9 (gives details of total & unplanned consump. not for Planned consump.) & MB51(gives details for only one Mov. Type say either 261 or 262 not possible to do ABC ana. for balance of both)
    Is there any other std report as ABC analysis of planned consp.
    Thx in advance...

Maybe you are looking for