FTP Adapter setting filename at runtime not working

Hi,
I am facing an issue SOA 11.1.1.5 with FTP Adapter setting the filename at runtime. I have a process that reads a file from local server and puts it over to a remote FTP Server.
I want to use the same filename that is picked up locally and placed on the ftp location. Below is the snippet of FTP Invoke and the filename is read from a variable which is set before the invoke
<invoke name="Invoke_PutFile"
inputVariable="Invoke_PutFile_PutFile_InputVariable"
partnerLink="PutFile" portType="ns2:PutFile_ptt"
operation="PutFile" bpelx:invokeAsDetail="no">
<bpelx:inputProperty name="jca.file.TargetFileName" variable="targetFileName"/>
</invoke>
Here is the FTP jca file snippet
<endpoint-interaction portType="PutFile_ptt" operation="PutFile">
<interaction-spec className="oracle.tip.adapter.ftp.outbound.FTPInteractionSpec">
<property name="LogicalDirectory" value="FtpDir"/>
<property name="FileType" value="ascii"/>
<property name="Append" value="false"/>
<property name="TargetFileName" value="setAtRunTime"/>
<property name="NumberMessages" value="1"/>
</interaction-spec>
</endpoint-interaction>
But when I test I am getting an error, it's complaining Cannot set JCA WSDL Property. Error while setting JCA WSDL Property. Property setTargetFileName is not defined for oracle.tip.adapter.ftp.outbound.FTPInteractionSpec Please verify the spelling of the property. ".
  Fault Details : com.oracle.bpel.client.BPELFault: faultName: {{http://schemas.oracle.com/bpel/extension}bindingFault} messageType: {{http://schemas.oracle.com/bpel/extension}RuntimeFaultMessage} parts: {{ summary=Exception occured when binding was invoked.
Exception occured during invocation of JCA binding: "JCA Binding execute of Reference operation 'PutFile' failed due to: Exception occured when binding was invoked. Exception occured during invocation of JCA binding: "Could not instantiate InteractionSpec oracle.tip.adapter.ftp.outbound.FTPInteractionSpec due to: Cannot set JCA WSDL Property.
Error while setting JCA WSDL Property. Property setTargetFileName is not defined for oracle.tip.adapter.ftp.outbound.FTPInteractionSpec Please verify the spelling of the property. ".
The invoked JCA adapter raised a resource exception. Please examine the above error message carefully to determine a resolution. ".
The invoked JCA adapter raised a resource exception. Please examine the above error message carefully to determine a resolution. ,detail=Cannot set JCA WSDL Property.
Error while setting JCA WSDL Property. Property setTargetFileName is not defined for oracle.tip.adapter.ftp.outbound.FTPInteractionSpec Please verify the spelling of the property. ,code=null}
  If I use *<property name="FileNamingConvention" value="%yyMMddHHmmssSS%_%SEQ%.txt"/>* inside the jca file it works but I want to use the filename at runtime and be the same name as it's picked up.
Any idea what I am doing wrong.
Thanks

.bpel file
<?xml version = "1.0" encoding = "UTF-8" ?>
<!--
  Oracle JDeveloper BPEL Designer
  Created: Mon Jun 03 10:33:49 CDT 2013
  Author: 
  Type: BPEL 1.1 Process
  Purpose: Empty BPEL Process
-->
<process name="SharedServiceFtpFileMove"
               targetNamespace="http://xmlns.oracle.com/SOALocal/SharedServiceFtpFileMove/SharedServiceFtpFileMove"
               xmlns="http://schemas.xmlsoap.org/ws/2003/03/business-process/"
               xmlns:client="http://xmlns.oracle.com/SOALocal/SharedServiceFtpFileMove/SharedServiceFtpFileMove"
               xmlns:ora="http://schemas.oracle.com/xpath/extension"
               xmlns:bpws="http://schemas.xmlsoap.org/ws/2003/03/business-process/"
         xmlns:ns1="http://xmlns.oracle.com/pcbpel/adapter/file/SOALocal/SharedServiceFtpFileMove/FilePoller"
         xmlns:ns2="http://xmlns.oracle.com/pcbpel/adapter/ftp/SOALocal/SharedServiceFtpFileMove/PutFile"
         xmlns:bpelx="http://schemas.oracle.com/bpel/extension"
         xmlns:xsd="http://www.w3.org/2001/XMLSchema"
         xmlns:xp20="http://www.oracle.com/XSL/Transform/java/oracle.tip.pc.services.functions.Xpath20"
         xmlns:bpel="http://docs.oasis-open.org/wsbpel/2.0/process/executable"
         xmlns:oraext="http://www.oracle.com/XSL/Transform/java/oracle.tip.pc.services.functions.ExtFunc"
         xmlns:hwf="http://xmlns.oracle.com/bpel/workflow/xpath"
         xmlns:ids="http://xmlns.oracle.com/bpel/services/IdentityService/xpath"
         xmlns:bpm="http://xmlns.oracle.com/bpmn20/extensions"
         xmlns:xdk="http://schemas.oracle.com/bpel/extension/xpath/function/xdk"
         xmlns:xref="http://www.oracle.com/XSL/Transform/java/oracle.tip.xref.xpath.XRefXPathFunctions"
         xmlns:ns5="http://xmlns.oracle.com/SharedServiceEmailNotification/xsd/V1"
         xmlns:ns4="http://xmlns.oracle.com/pcbpel/adapter/opaque/"
         xmlns:ldap="http://schemas.oracle.com/xpath/extension/ldap">
  <!--
     ORCHESTRATION LOGIC                                              
     Set of activities coordinating the flow of messages across the   
     services integrated within this business process                 
  -->
  <partnerLinks>
    <partnerLink name="FilePoller" partnerLinkType="ns1:ReadFile_plt"
                 myRole="ReadFile_role"/>
    <partnerLink name="PutFile" partnerLinkType="ns2:PutFile_plt"
                 partnerRole="PutFile_role"/>
  </partnerLinks>
  <variables>
    <variable name="Receive_ReadFile_InputVariable"
              messageType="ns1:ReadFile_msg"/>
    <variable name="sourceFileName" type="xsd:string"/>
    <variable name="targetFileName" type="xsd:string"/>
    <variable name="Invoke_PutFile_PutFile_InputVariable"
              messageType="ns2:PutFile_msg"/>
    <variable name="FtpJndi" type="xsd:string"/>
  </variables>
  <faultHandlers>
    <catchAll>
      <sequence name="Sequence1">
        <terminate/>
      </sequence>
    </catchAll>
  </faultHandlers>
  <sequence name="main">
    <receive name="Receive" createInstance="yes"
             variable="Receive_ReadFile_InputVariable"
             partnerLink="FilePoller" portType="ns1:ReadFile_ptt"
             operation="ReadFile">
      <bpelx:property name="jca.file.FileName" variable="sourceFileName"/>
    </receive>
    <assign name="Assign_Data">
      <copy>
        <from variable="sourceFileName"/>
        <to variable="targetFileName"/>
      </copy>
      <copy>
        <from expression="'eis/Ftp/FtpAdapter'"/>
        <to variable="FtpJndi"/>
      </copy>
    </assign>
    <assign name="Assign_Invoke">
      <copy>
        <from variable="Receive_ReadFile_InputVariable" part="opaque"/>
        <to variable="Invoke_PutFile_PutFile_InputVariable" part="opaque"/>
      </copy>
    </assign>
    <invoke name="Invoke_PutFile"
            inputVariable="Invoke_PutFile_PutFile_InputVariable"
            partnerLink="PutFile" portType="ns2:PutFile_ptt"
            operation="PutFile" bpelx:invokeAsDetail="no">
      <bpelx:inputProperty name="jca.ftp.TargetFileName" variable="targetFileName"/>
      <bpelx:inputProperty name="jca.jndi" variable="FtpJndi"/>
    </invoke>
  </sequence>
</process>File Adapter Poller jca
<adapter-config name="FilePoller" adapter="File Adapter" wsdlLocation="FilePoller.wsdl" xmlns="http://platform.integration.oracle/blocks/adapter/fw/metadata">
  <connection-factory location="eis/FileAdapter" UIincludeWildcard="*-*.txt"/>
  <endpoint-activation portType="ReadFile_ptt" operation="ReadFile">
    <activation-spec className="oracle.tip.adapter.file.inbound.FileActivationSpec">
      <property name="DeleteFile" value="true"/>
      <property name="LogicalArchiveDirectory" value="FtpLocalArchive"/>
      <property name="MinimumAge" value="0"/>
      <property name="Recursive" value="true"/>
      <property name="PollingFrequency" value="15"/>
      <property name="LogicalDirectory" value="FtpLocalFiles"/>
      <property name="IncludeFiles" value=".*-.*\.txt"/>
      <property name="UseHeaders" value="false"/>
    </activation-spec>
  </endpoint-activation>
</adapter-config>Ftp Adapter put jca
<adapter-config name="PutFile" adapter="FTP Adapter" wsdlLocation="PutFile.wsdl" xmlns="http://platform.integration.oracle/blocks/adapter/fw/metadata">
  <connection-factory location="eis/Ftp/FtpAdapter"/>
  <endpoint-interaction portType="PutFile_ptt" operation="PutFile">
    <interaction-spec className="oracle.tip.adapter.ftp.outbound.FTPInteractionSpec">
      <property name="LogicalDirectory" value="FtpDir"/>
      <property name="FileType" value="ascii"/>
      <property name="Append" value="false"/>
      <property name="TargetFileName" value="setAtRunTime"/>
      <property name="NumberMessages" value="1"/>
    </interaction-spec>
  </endpoint-interaction>
</adapter-config>Thanks

Similar Messages

  • Sender file adapter - filename containing  *  does not work

    Hi All,
    I am doing simple file-file scenario wherein my filename is something like
    MATMAS05_XI20070911-150159-088.xml 
    there are many files having similar kind of  name which are supposed to be picked
    so simply I can go on writing <b>MATMAS05_XI*.xml</b> in filename
    it is not working.. communication monitoring gives error <i>Error occurred while connecting to the FTP server "10.25.117.237:21": java.lang.NullPointerException</i>
    But  when I use character '?' then it works fine - '?'  placeholder for each extra character
    I am on SP 20.My adapter is configured properly. FTP server working fine with '?' or simple filename. So bit confused why it is not working with *
    Are there some BASIS settings which have to be in place to work it out with * ?
    All your inputs are welcome !!
    Thank You,
    Mugdha kulkarni

    Hi
    this error is not related to multimple files or sending with the * char.. you can use it
    see the below link
    /people/mickael.huchet/blog/2006/09/18/xipi-how-to-exclude-files-in-a-sender-file-adapter
    The error related to the server connection.. also check the ip address is correct or not you configured correctly or not..
    also clarfity the correct error description ..
    Chilla

  • I have an ipod touch it is either a second or third edition and i have just had to restore it to factory setting as it was not working and now the wifi on the device is no longer working. Is there anything i can do about this?

    i have an ipod touch it is either a second or third edition and i have just had to restore it to factory setting as it was not working and now the wifi on the device is no longer working. Is there anything i can do about this?

    Is it this:
    iOS: Wi-Fi or Bluetooth settings grayed out or dim
    One user reported that placing the iPod in the freezer fixed the problem. A trick that works frequently with iPhones:
    Settings > AirPlane Mode ON, Do Not Disturb ON
    Power down and wait 5-10 minutes
    Power up
    Settings > AirPlane Mode OFF, Do Not Disturb OFF
    If not successful, an appointment at the Genius Bar of an Apple store is usually in order.
    Apple Retail Store - Genius Bar
    Otherwise:
    Does the iOS device connect to other networks?
    Does the iOS device see the network?
    Any error messages?
    Do other devices now connect?
    Did the iOS device connect before?
    Try the following to rule out a software problem:                 
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Power off and then back on the router
    - Reset network settings: Settings>General>Reset>Reset Network Settings
    - iOS: Troubleshooting Wi-Fi networks and connections
    - Wi-Fi: Unable to connect to an 802.11n Wi-Fi network
    - iOS: Recommended settings for Wi-Fi routers and access points
    - Restore from backup. See:
    iOS: How to back up
    - Restore to factory settings/new iOS device.
    If still problem make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
    Apple Retail Store - Genius Bar

  • The RAW setting in Bridge is not working. When I open Bridge I can see only icons, no images. The RA

    The RAW setting in Bridge is not working. When I open Bridge I can see only icons, no images. The RAW tool icon is grey, not active. I am going on a trip Tomorrow and I need Bridge to be working. It was working earlier.

    I never notied that icon before, and I've been using Bridge for 7 years.
    Usually, when you have no image previews for raw files, this means that your Camera Raw plug-in is older than your camera. People always come across this problem when they use a new camera with older software.
    To be sure, we need to know which camera you are using, and which version of Camera Raw. To save typing this out for the three-thousandth time, please follow this page which I wrote earlier:
    http://yphotography.co.uk/articles/get-adobe-camera-raw-acr-open-photos/
    This covers the subject, which is by far the most commonly asked question about opening raw files by a country mile.
    If everything checks out fine, let us know. If not, give us more information and we may be able to fix this for you.
    PS. Please just open one discussion per problem. There are three threads on this now. It makes it difficult to follow.

  • I'm running OS X Yosemite, Version 10.10 My Adobe Illustrator CS6 is not opening. I have install the legacy Java SE 6 runtime, not working

    I'm running OS X Yosemite, Version 10.10 My Adobe Illustrator CS6 is not opening. I have install the legacy Java SE 6 runtime, not working
    Also when I click on More Info... button I  I get support.apple.com  website page, which is blank.  When I click on the OK button, same result.
    I need help with this,  is anyone  out there experiencing the same phenomena?

    How about this one
    Apple Java for Mac | MacUpdate
    or
    Java for OS X 2014-001

  • [svn] 4323: Bug: LCDS-544 - Scenario where two components have seperate channel sets with overlapping channels not working .

    Revision: 4323
    Author: [email protected]
    Date: 2008-12-15 19:23:10 -0800 (Mon, 15 Dec 2008)
    Log Message:
    Bug: LCDS-544 - Scenario where two components have seperate channel sets with overlapping channels not working.
    QA: Yes
    Doc: No
    Checkintests Pass: Yes
    Details:
    * Hunting to a new channel within a channelset never triggered a disconnect from the previous channel(s). This isn't a problem in general, but does becomes a problem when an app defines two distinct channelsets containing at least one shared channel at the head of the list. In this case, the first channelset hunts past it and connects on a later channel. But when the second channelset hunts through (triggering a connect fault when it hits that initial shared channel that can't connect), the fault is processed by the first channelset as well (incorrectly).
    Ticket Links:
    http://bugs.adobe.com/jira/browse/LCDS-544
    Modified Paths:
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/ChannelSet.as

    Running the script by python2 solves it for me:
    su - mythtv -c "nice -n 19 python2 /usr/bin/tv_grab_nl_py --output ~/listings.xml"
    Best regards,
    Cedric

  • My notification tone when set to 'Silent" is not working even when setup on lolipop

    my notification tone when set to 'Silent" is not working even when setup .
     My notification tone when set to  'Silent" is not working even when setup . It still keeps ringout . This is highly disappointing

    Hello, Yes I have tested this with Android Lollipop and found that when the tone is set to silent within the BBM settings I do not receive any audible notification. Testing summary: Access the More menu - Settings - Tone dropdown and set Tone to BBM
    - Send a test message and an audible notification occursAccess the More menu - Settings - Tone dropdown and set Tone to Silent
    - Sent a test message and no audible notification occurs To allow us to assist further please follow the steps below to create a support ticket and submit logs. Once submitted someone will contact you to troubleshoot the issue.
    1) Browse to www.BBM.com/support/blackberry
    2) Locate the Need more help section is the bottom right of the page
    3) Select Contact us for additional assistance
    4) Complete the web form, provide as much detail as possible such as PINS involved and timestamps
    5) Select Submit to create the support ticketOnce the ticket has been submitted you will receive an email with your ticket number. This ticket number can then be used to submit logs. To collect logs use the following KB:
    KB35080 - "How to submit logs from BBM for Android, iPhone, and Windows Phone" - www.blackberry.com/btsc/kb35080 Thanks,
    Daniel

  • BPEL 10.1.2 Correlate with Ftp Adapter Header filename

    Hi,
    How can I create correlation sets with the filename provided by the Ftp
    Adapter Header??
    Or if it is not straightforward ? How can I implement a workaround?
    We are using the 10.1.2 version (OCS and Content Services constraints).
    The idea beyond the requirement is to implement a process similar to the CorrelatedHelloWorld sample but instead of creating the correlation with the file content, we'd like to use the filename returned in the Ftp Adapter Header.
    An asynch process is initiated with a filename as an input, then blocks on a receive activity with the Ftp Adapter. The process terminates when a file is polled whose filename corresponds to the one given as an input of the process.
    Thanks
    JO

    IMHO this is not working in 10.1.2, I thought it was an issue in this release. It could be solved in 10.1.3

  • System set up freshly - WIFI not working

    Hey there,
    after some virus problems I set up my system from the scratch, formating the harddrive and reinstalling Windows. I also downloaded the Lenovo System Updater, installed all updates and downloaded the ThinkVantage Solution Center. Now, the PC works again BUT the WiFi adapter does not work. It seems to be non-existent, if I press F9 it says I am suppossed to press the hardware switch. I have a ThinkPad Edge 15, it does not have such a switch at all.
    In the hardware manager i find one network device without driver, so I suppose this is it. However, no driver seems to work. I downloaded the WiFi dirver(s) from the Lenovo website and installed them, nothing happens. What can I do?
    Here are my specifications:
    -Thinkpad Edge 15
    -Windows 7 Home Premium (OEM)
    - the driver I installed which did not work: Intel Wireless LAN (bg, abg, abgn) for Windows 7 (32-bit, 64-bit), XP - ThinkPad
    Thank you so much in advance for you help!!! I am pretty certain that the hardware works, before I set uo the system WiFi was not at all a problem.
    Best Wishes
    Tobias
    Solved!
    Go to Solution.

    @pastaohnenamen...
    did you get the first driver pack from here:
    http://support.lenovo.com/en_US/research/hints-or-tips/detail.page?DocID=HT072025 ?
    have you tried any of the other driver packs? maybe:
    ThinkPad 11b/g/n Wireless LAN Mini-PCI Express Adapter II for Windows 7 (32-bit, 64-bit) - ThinkPad
    or
    ThinkPad 11b/g/n Wireless LAN Mini-PCI Express Adapter II for Windows XP - ThinkPad
    depending on your os.
    eta: based on some further searching, i'm pretty sure that the driver i've referenced will work for you.
    please post back once you've had a chance to test.
    cheers.
    English Community   Deutsche Community   Comunidad en Español   Русскоязычное Сообщество
    Community Resources: Participation Rules • Images in posts • Search (Advanced) • Private Messaging
    PM requests for individual support are not answered. If a post solves your issue, please mark it so.
    X1C3 Helix X220 X301 X200T T61p T60p Y3P • T520 T420 T510 T400 R400 T61 Y2P Y13
    I am not a Lenovo employee.

  • DVI to Video Adapter with NVIDIA 8800 GT not working

    Hi all. I have the new Mac Pro Octo (mar '08) with the NVIDIA GFORCE 8800 GT card. I cannot find anywhere what may be wrong. Only on the Apple Website for the adapter that the only Mac Pro it works with is the Mac Pro (with ATI X1900 XT). However, both tech support and Apple's Store staff said this would work, prior to buying it. Well, my computer does not recognize the TV monitor hooked up via S-Video. I've powered everything down, restarted, unplugged and replugged in both orders, and switched inputs on the TV and receiver both. Nothing.
    Any one know if this does or does not work with this computer???
    Thanks.

    Never mind. Found this out via Apples own website. Thanks APPLE TECH SUPPORT and STORE STAFF for getting me to buy a useless cable!
    Mac Pro Computers (January 2008)
    The Mac Pro computers with Quad-Core Intel Xeon 5400 Series microprocessors were introduced in January 2008. The Mac Pro’s graphics subsystem interfaces to the North Bridge via a 16-lane PCIe 2.0 bus. For information on the PCI Express graphics support and expansion, refer to PCI Developer Note.
    The following sections describe the Mac Pro’s graphics subsystem.
    Graphics Cards
    Supported graphics cards have dual-link DVI connectors, supporting 30-inch Apple Cinema HD Displays on both ports.
    For information on video memory, power, and features refer to Table 1.
    All of the supported graphics cards support dual displays in either extended desktop or video mirroring mode; for more detail, see “External Display Modes.”
    Table 1 Supported Graphics Cards
    Graphics card
    Video SDRAM
    Power usage
    ATI Radeon HD 2600 XT (standard)
    256 MB (GDDR3)
    50 W
    NVIDIA GeForce 8800GT (configure to order)
    512 MB (GDDR3)
    110 W
    NVIDIA Quadro FX 5600 (configure to order)
    1536 MB (GDDR3)
    175 W
    The GeForce 8800GT graphics card requires that a booster cable be connected from the PCI slot to the auxiliary power connector. The Quadro FX 5600 graphics card requires two booster cables be connected from the PCI slot to the auxiliary power connector. For additional information, refer to the PCI Developer Note.
    The Mac Pro supports the 20-inch Apple Cinema Display at a resolution of 1680 x 1050, the 23-inch Apple Cinema HD Display at a resolution of 1920 x 1200, and the 30-inch Apple Cinema HD Display at a resolution of 2560 x 1600. All ports support a maximum resolution of 2048 x 1536 at 32-bit with 85 Hz refresh rate. Multiple PCI Express graphics cards can support three or more displays.
    The table below lists the displays supported by port 1 and port 2.
    Table 2 Port 1 and Port 2 support
    Graphics card
    Port 1
    Port 2
    Radeon HD 2600 XT
    20”, 23”, 30” Apple displays
    20”, 23”, 30” Apple displays, DVI to Video Adapter
    GeForce 8800GT
    20”, 23”, 30” Apple displays
    20”, 23”, 30” Apple displays
    Quadro FX 5600
    20”, 23”, 30” Apple displays
    20”, 23”, 30” Apple displays
    For information on video ports, see “Video Monitor Ports.” For information on PCI Express expansion slots, refer to PCI Developer Note.
    Video Monitor Ports
    The Mac Pro has a DVI connector for an external video monitor. For a description of the DVI connector, refer to Figure 4 and Table 30.
    The graphics data sent to the digital monitor use transition minimized differential signaling (TMDS). TMDS uses an encoding algorithm to convert bytes of graphics data into characters that are transition-minimized to reduce electromagnetic interference (EMI) with copper cables and DC balanced for transmission over fiber optic cables. The TMDS algorithm also provides robust clock recovery for greater skew tolerance with longer cables or low-cost short cables.
    Note: The Mac Pro computer includes a DVI to VGA Adapter.
    DVI to Video Adapter
    The Radeon HD 2600 XT graphics card supports an optional DVI to S-video/composite adapter that provides S-video and composite output to a PAL or NTSC video monitor or VCR. When a display is connected by way of the video adapter, the computer detects the type of adapter and enables the composite and S-video outputs. The settings for the resolutions and standards (NTSC or PAL) are then selectable in the Display pane in System Preferences.
    Note: The DVI to Video Adapter does not come packaged with the Mac Pro computer and must be purchased separately.
    The video output connector is a 7-pin S-video connector. Figure 5 shows the arrangement of the pins and Table 31 shows the pin assignments on the composite out and S-video connector.
    The Mac Pro computer provides video output at picture sizes and frame rates compatible with the NTSC and PAL standards; the picture sizes are listed in Table 32. Those picture sizes produce under-scanned displays on standard monitors.

  • RFC adapter in XI 3.0 not working properly with BAPI in R/3 4.6C

    Here is the scenario.
    An XML file is received from our customer. This file contains purchase order information that is used to create a sales order in our SAP 4.6C system. Once the sales order is created an acknowledgement is generated and this is returned back to our customer in an XML format.  This scenario is working perfectly fine in our XI 2.0 system but is not working properly in our XI 3.0 test environment. Our custom function module in R/3 is a wrapper function that uses a standard SAP BAPI to create the sales order. Part of the function module does use the statement
    call function 'BAPI_TRANSACTION_COMMIT'
    The last thing the BAPI does is call another function module that using an RFC destination that will return and order acknowledgement.
    Here is what happens within XI and our SAP system.
    The XML file is received and mapped to our imported RFC. The RFC adapter is called and the information is passed onto SAP where our customer function module executed. The sales order is created within SAP without any problems and the second function module is called which references an RFC destination assigned to our XI 3.0 system. The information is sent back to XI and an appropriate file is created for our customer.  All seems to be working properly except that when the original RFC is sent from XI to SAP,  SAP creates a short dump stating
    "call to messaging system failed: com.sap.aii.af.ra.ms.api.DeliveryException:" Then it is put back into the que where 5 minutes later it executes again and trys to recreate the sales order in SAP. (again, this same function module executing from XI 2.0 works fine)
    I believe I have everything configured properly because the SAP side is being executed and I am successfully passing information back from SAP to XI. However the original function module in SAP is failing with the above error message. It appears that the original function module cannot communicate back with XI. I have had SAP looking at this issue and they have not been successful yet in solving this problem.
    Any ideas.
    Thanks,
    Jim d'Hulst

    Hi,
    I think the problem is with the send back of acknowledgement to XI. Does the DeliveryException state something about the sender agreement? I guess you are using a statement like below:
    CALL FUNCTION 'ZABCD'
    destination <tcp/ip destination>
    exporting
    input = ack.
    In that case, check whether the TCP/IP destination is working fine. Also, to be able to exchange message, the structure of the Function Module ZABCD needs to be identified as the sender in XI Configuration (Integration Directory).
    Also, check your config with the blog mentioned below:
    <a href="/people/arpit.seth/blog/2005/06/27/rfc-scenario-using-bpm--starter-kit">/people/arpit.seth/blog/2005/06/27/rfc-scenario-using-bpm--starter-kit</a>
    Regards,
    Amitabha

  • Characteristic "Master Data" setting in Query definition not working?

    Hi,
    I am having a problem with a query definition. (BI 7.0)
    The query comprises the following definition which relate to displaying Milestone dates for respective projects in a time series so the dates are populated in the correct column in a time series:
    Filter
    Project Definition = Fixed Single Project Definition
    Fiscal Year Variant = K4
    Project Profit Centre = Hierarchy Node
    Project Plant = Fixed Single Value
    Free Chars
    Network
    Network Activity
    Activity Element
    Rows
    Project Plant
    Project Profit Centre (With hierarchy)
    Project Definition
    Milestone Type  (Setting in characteristic to pick up Master Data)
    CSR Relevant    (Setting in characteristic to pick up Master Data)
          Structure
               Actual
               Scheduled
        (Actual:  Value type = Actual,  Origin = Manual ,Event = Start)
        (Scheduled:  Value type = Actual,  Origin = Scheduled ,Event = Start)
    Columns
    Key Figure structure of 12 key figures in a time series
    Selection
    Key Figure = Date
    Fiscal Year/Period = Current Fiscal Year / Period (SAP EXIT) (With Offset 1 to 12)
    FYI
    When I run the above it comes back correctly. However when I add "MILESTONE" (Characteristic setting (Posted Values) to the Query Definition immediately after the "Milestone Type" and before CSR it does not work it just is hanging for a considerable time.
    I am not using "Master Data" for the "Access Type for Result Vales" for the additional characteristic "MILESTONE" just "Posted Values".
    I was expecting that it would just show all Milestone types as per Master Data but just the Milestones that are posted for this result.
    I would appreciate a solution to this issue and an explanation to why it hangs when I add the "MILESTONE" characteristic to the definition as explained above.
    Thanks in advance..
    Stevo

    Hello there,
    Putting Milestone in the rows in the query definition is not being hang there (i.e., while creating and saving the query) right?
    It is stucked while executing the query isn't it so?
    That's because you have too many records to be desaggregated by milestone characteristic, and this is indepently of posted values in the characteristic settings.
    Putting milestone characteristic in the free characteristics will allow you to run the query, but desaggregate it (add it to the rows) will be to much information to read from your dataprovider (this is just a guess).
    If it is being stucked in query execution whike milestone is in the rows. Try this for example:
    Add milestone to the free chars. Execute the query. Filter milestone characteristic while still in the free rows and choose a value that you are pretty sure has the smallest records in the Dataprovider (could be for example value #). Than drill down milestone to the rows. You'll see that it can be executed without any problem.
    Diogo.

  • "Show all filename extensions" does not work!

    I want to be able to see the file extensions of all my files.  I go to Finder->Preferences->Advanced, and then I check the "Show all filename extensions" checkbox, yet it still does not work!  I tried rebooting my computer and double checking if that checkbox is still checked, and it is, and it still does not work!
    Any help?

    Nevermind.  I figured it out.

  • Set time and date not working

    Set up time and date is not working, since I changed settings from Saudi Arabia to USA...want time and date from USA?!

    You need to set your location to where you are, not where you might like to be.

  • Combination of Submit report with SELECTION-SET and WITH is not working

    I tried all possibilities to make the additional parameter also pass to the report along with variant but it just does not work. Anybody faced this issue before?
    Code snipped which is not taking pernr parameter along with variant 'Report Dis'.
    SUBMIT H99CWTR0 USING SELECTION-SET 'REPORT DIS'
           WITH pernr = pernr-low
           EXPORTING LIST TO MEMORY
    AND RETURN.

    Hi,
    THis sample code worked for me
    data:params type rsparams.
    data:it type table of rsparams.
    params-low = '2003'.              "In variant ZSURESHPAGA the actual value is 2004, but it got executed for 2003.
    params-kind = 'P'.
    params-option = 'EQ'.
    params-sign = 'I'.
    params-selname = 'P_YEAR'.
    append params to it.
    CALL FUNCTION 'SUBMIT_REPORT'
      EXPORTING
        report                 = 'Z12256_TASK1'
       VARIANT                = 'ZSURESHPAGA'
       SKIP_SELSCREEN         = 'X'
    TABLES
       SELECTION_TABLE        = it
    EXCEPTIONS
       JUST_VIA_VARIANT       = 1
       NO_SUBMIT_AUTH         = 2
       OTHERS                 = 3
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    SUBMIT H99CWTR0 USING SELECTION-SET 'REPORT DIS'
    WITH pernr = pernr-low       "<----check this statemnent
    EXPORTING LIST TO MEMORY
    AND RETURN.
    Edited by: Keshav.T on May 13, 2010 4:07 PM

Maybe you are looking for

  • Broadcasting error on BW7 + Portal

    Hi, i'm trying to send a query using Broadcasting on BW7 and i get this Java system error message: call FM RSRD_X_PRODUCE_PROXY to ProgId BW-PRD_PORTAL_BIP on host BW-PRD1 with SSO not authorized: Authentication failed. How can i solve this ? thx in

  • Disable the check box

    Hi All, I have a requirement in which based on the profile option user should be able to change the value of check box. Name of profile option is acces_level. In this user level profile option two values are possible 'User' or 'Administrator' and the

  • My PDF tab is missing

    My PDF tab is missing in properties dialog box - running Windows 7 Problem started when I installed an old version of Adobe Acrobat  - Version 8 Can anyone give me ideas as to how to fix.

  • How to pass ouput from PL/SQL to perl script

    Hi ! I have a PL/SQL package which returns REF CURSOR. How can I pass this ref cursor to perl script? can any one help me in this matter, pl? it is very very urgent. Thanks ..mvp

  • DropShadowFilter and Image Distortion from Ruben noise problem

    I am using DistortImage from Ruben  (http://www.rubenswieringa.com/blog/distortimage) applying the  DropShadowFilter to an image before applying the DistortImage. The image  has noise artifacts after the shadow is added.  If shadow is not added, the