Agreement Configuration for B2B and BPEL integration

I configured a listening channel on B2B to pick up custom xml files from a folder. I have a BPEL SOA composite that has a B2B adapter as a service to receive the custom xml files from B2B through direct integration. Since B2B has to send the xml file only to a SOA composite and not to another trading partner, how do I configure the agreement in B2B?
Appreciate your help.

Hi Naresh and Anuj,
Thanks a lot for your responses.
This is the problem that I am facing now.
As per your suggestion, I deployed an inbound agreement that specifies that the Sender is the Other TP (EPCOD) and the Receiver is the Host TP EPCOZ). Also I left the channel for the Host TP blank in the agreement - did not select anything from the drop down.
When I drop the file into the folder specified in the internal listening channel, with the following naming convention (EPCOZ_PayableInvoice_1.0_Custom_1234.xml), the file gets picked up, but I get the following error message:
Description: Agreement not found for trading partners: FromTP EPCOZ, ToTP EPCOZ with document type PayableInvoice-1.0-OUTBOUND.
For some reason, it thinks that both the sender and the receiver are the same. If I reverse the file name as EPCOD_PayableInvoice_1.0_Custom_1234.xml, then it thinks that the From TP is EPCOZ and the To TP is EPCOD.
Any ideas? Appreciate your help.
Thanks.
Raja

Similar Messages

  • Oracle MDS cache for B2B and BPEL performance Issue

    Hi All,
    We have xmx set to 4GB and we have set the b2b.mdsCache to 400 MB.
    Our process runs as JMS --> B2B --> JMS --> Composite app(mediator and BPEL)--> OSB
    In composite application in one of the step mediator publishes events to EDN.
    Now when we dont have B2B MDS cache set to 400 MB, The composite process completes within a second
    But when we have b2b mds cache in b2b-config.xml set to 400 MB then the composite app takes 20 sec to complete. when we analyzed this we found that mediator is taking 10 second to publish the even to EDN which inturn increasing the over all processing time as message is being published to END twice in this composite app.
    Even subscribing to event is very slow almost 9 sec.
    Env Details :
    Soa 11.1.1.5 on linus 5.1, in dev mode with default settings
    xms - xmx = 2GB - 4GB
    We set the b2b.mdscache to 400 mb as per the Oracle doc as below:
    A ratio of 5:1 is recommended for the xmx-to-mdsCache values. For example, if the xmx size is 1024, maintain mdsCache at 200 MB
    Regards
    SVS

    Unfortunatly, the only way to tune the cach buffer chains latch is on the application side.
    Look for ways to eliminate subqueries by replacing them with inline views and joins. Given the high fetch rate in the buffer cache, this would appear to be the problem.

  • Understanding configuration of Quartz and BPEL

    can you please briefly explain configuration of Quartz and BPEL .
    If possible could you please step by step procedure to schedule simple hello world BPEL process.
    Thanks inadvance. It would be great help.

    Hi Praveen
    public class CronTrigger
    extends Trigger
    A concrete Trigger that is used to fire a JobDetail at given moments in time, defined with Unix 'cron-like' definitions.
    For those unfamiliar with "cron", this means being able to create a firing schedule such as: "At 8:00am every Monday through Friday" or "At 1:30am every last Friday of the month".
    A "Cron-Expression" is a string comprised of 6 or 7 fields separated by white space. The 6 mandatory and 1 optional fields are as follows:
    Field Name Allowed Values Allowed Special Characters
    Seconds 0-59 , - * /
    Minutes 0-59 , - * /
    Hours 0-23 , - * /
    Day-of-month 1-31 , - * ? / L W C
    Month 1-12 or JAN-DEC , - * /
    Day-of-Week 1-7 or SUN-SAT , - * ? / L C #
    Year (Optional) empty, 1970-2099 , - * /
    The '*' character is used to specify all values. For example, "*" in the minute field means "every minute".
    The '?' character is allowed for the day-of-month and day-of-week fields. It is used to specify 'no specific value'. This is useful when you need to specify something in one of the two fileds, but not the other. See the examples below for clarification.
    The '-' character is used to specify ranges For example "10-12" in the hour field means "the hours 10, 11 and 12".
    The ',' character is used to specify additional values. For example "MON,WED,FRI" in the day-of-week field means "the days Monday, Wednesday, and Friday".
    The '/' character is used to specify increments. For example "0/15" in the seconds field means "the seconds 0, 15, 30, and 45". And "5/15" in the seconds field means "the seconds 5, 20, 35, and 50". You can also specify '/' after the '*' character - in this case '*' is equivalent to having '0' before the '/'.
    The 'L' character is allowed for the day-of-month and day-of-week fields. This character is short-hand for "last", but it has different meaning in each of the two fields. For example, the value "L" in the day-of-month field means "the last day of the month" - day 31 for January, day 28 for February on non-leap years. If used in the day-of-week field by itself, it simply means "7" or "SAT". But if used in the day-of-week field after another value, it means "the last xxx day of the month" - for example "6L" means "the last friday of the month". When using the 'L' option, it is important not to specify lists, or ranges of values, as you'll get confusing results.
    The 'W' character is allowed for the day-of-month field. This character is used to specify the weekday (Monday-Friday) nearest the given day. As an example, if you were to specify "15W" as the value for the day-of-month field, the meaning is: "the nearest weekday to the 15th of the month". So if the 15th is a Saturday, the trigger will fire on Friday the 14th. If the 15th is a Sunday, the trigger will fire on Monday the 16th. If the 15th is a Tuesday, then it will fire on Tuesday the 15th. However if you specify "1W" as the value for day-of-month, and the 1st is a Saturday, the trigger will fire on Monday the 3rd, as it will not 'jump' over the boundary of a month's days. The 'W' character can only be specified when the day-of-month is a single day, not a range or list of days.
    The 'L' and 'W' characters can also be combined for the day-of-month expression to yield 'LW', which translates to "last weekday of the month".
    The '#' character is allowed for the day-of-week field. This character is used to specify "the nth" XXX day of the month. For example, the value of "6#3" in the day-of-week field means the third Friday of the month (day 6 = Friday and "#3" = the 3rd one in the month). Other examples: "2#1" = the first Monday of the month and "4#5" = the fifth Wednesday of the month. Note that if you specify "#5" and there is not 5 of the given day-of-week in the month, then no firing will occur that month.
    The 'C' character is allowed for the day-of-month and day-of-week fields. This character is short-hand for "calendar". This means values are calculated against the associated calendar, if any. If no calendar is associated, then it is equivalent to having an all-inclusive calendar. A value of "5C" in the day-of-month field means "the first day included by the calendar on or after the 5th". A value of "1C" in the day-of-week field means "the first day included by the calendar on or after sunday".
    The legal characters and the names of months and days of the week are not case sensitive.
    Here are some full examples:
    Expression Meaning
    "0 0 12 * * ?" Fire at 12pm (noon) every day
    "0 15 10 ? * *" Fire at 10:15am every day
    "0 15 10 * * ?" Fire at 10:15am every day
    "0 15 10 * * ? *" Fire at 10:15am every day
    "0 15 10 * * ? 2005" Fire at 10:15am every day during the year 2005
    "0 * 14 * * ?" Fire every minute starting at 2pm and ending at 2:59pm, every day
    "0 0/5 14 * * ?" Fire every 5 minutes starting at 2pm and ending at 2:55pm, every day
    "0 0/5 14,18 * * ?" Fire every 5 minutes starting at 2pm and ending at 2:55pm, AND fire every 5 minutes starting at 6pm and ending at 6:55pm, every day
    "0 0-5 14 * * ?" Fire every minute starting at 2pm and ending at 2:05pm, every day
    "0 10,44 14 ? 3 WED" Fire at 2:10pm and at 2:44pm every Wednesday in the month of March.
    "0 15 10 ? * MON-FRI" Fire at 10:15am every Monday, Tuesday, Wednesday, Thursday and Friday
    "0 15 10 15 * ?" Fire at 10:15am on the 15th day of every month
    "0 15 10 L * ?" Fire at 10:15am on the last day of every month
    "0 15 10 ? * 6L" Fire at 10:15am on the last Friday of every month
    "0 15 10 ? * 6L" Fire at 10:15am on the last Friday of every month
    "0 15 10 ? * 6L 2002-2005" Fire at 10:15am on every last friday of every month during the years 2002, 2003, 2004 and 2005
    "0 15 10 ? * 6#3" Fire at 10:15am on the third Friday of every month
    Pay attention to the effects of '?' and '*' in the day-of-week and day-of-month fields!
    NOTES:
    Support for the features described for the 'C' character is not complete.
    Support for specifying both a day-of-week and a day-of-month value is not complete (you'll need to use the '?' character in on of these fields).
    Be careful when setting fire times between mid-night and 1:00 AM - "daylight savings" can cause a skip or a repeat depending on whether the time moves back or jumps forward.
    Hope this answers all your questions and helps you!
    Cheers
    Anirudh Pucha

  • I will be buying the new IMac 27 inch in December. Would like input on the best configuration for photographic and possibly video processing-dream machine!

    I will be buying an IMac 27 inch in December. What is the best configuration for photo and possibly video processing.Does one need a Mac Pro? Dream machine!

    Just to explain what I just wrote to Laundry Bleach:
    Why is there no iDVD on my new Mac?
    https://discussions.apple.com/docs/DOC-3673
    UPDATE & ADDENDUM:
    But even though you can still buy iLife 11 that includes iDVD 7 from Amazon, Apple now make it difficult to install:
    Poster jhb21939 posted this in another thread:
    “when I attempted to load iDVD into a new iMac. A notice came up on the screen stating that the 'Authorisation Licence' had expired on 25 March this year (2012).
    I contacted the Apple support team and eventually, I was told that the Licence had been withdrawn and could no longer be used.”
    In other words Apple are now so adamant that we don’t use iDVD that they have tried to make it impossible to install.
    In response, Old Toad posted this solution:
    “You can still use it one all of your Macs.  If you get an invalid certificate message just set your Mac's clock to sometime before early 2011 and run the installer.  After you're done reset the time back to the correct time.” He added this comment:
    “It began after iDVD and iWeb were discontued and they were dropped from the Apple Store. All I can think of is the certificate was set to expire after a certain time period after the intitial iLife disc was released.
    I've been able to use the installer even without setting back the date.  I just clicked on the Continue button and it would work as expected.  For some it would not continue unless the date was set back.”
    The latest anorexic iMacs just announced do not even include a CD drive! Proof positive that Apple virtually prohibit the use of DVDs - although the newly announced Mac Minis do include a Superdrive.
    Yet, they still include iMovie! Heaven alone knows or understands what you are supposed to do with your newly edited masterpiece - except make a low quality version for YouTube?

  • SAP Cloud For Customer and Gmail Integration

    Hi Experts,
    Is it possible to integration SAP cloud for customer with Gmail ?
    Please share your valuable thoughts on this post.
    Many Thanks
    Mithun

    Hi Mithun,
    There is no Add-In for Gmail as we have for Outlook and Lotus Notes in the current release of the system.
    You can only integrate Gmail as you do for other email services:
    http://scn.sap.com/community/cloud-for-customer/blog/2014/04/14/enabling-ios-push-notifications-on-cloud-for-customer
    You can also integrate Gmail via IFTTT to enable iOS Push Notifications:
    http://scn.sap.com/community/cloud-for-customer/blog/2014/04/02/guide-how-to-configure-workflow-to-send-email-notifications-and-create-tasks
    Hope it helps.
    Best Regards,
    Cristiano

  • Urgent : Search a Demo with B2B and Ebiz integration

    Hi all,
    I'm in a search for a Demo with a scenario for outbound or inbound flows, integrating Oracle B2B and Ebiz, if the Ebiz Adapter is used it will be great.
    Thanks for your help.

    If you are an Oracle employee then please get in touch with B2B PM's otherwise drop a note to my id (in my profile)
    Regards,
    Anuj

  • Oracle data guard configuration for primary and standby db_name

    I am working on configuring an active data guard for one primary DB and one standby DB. I have a few questions:
    1. Can I use different db_name, db_unique_name and instance_name for primary and standby. For example: primary(db_name, db_unique_name and instance_name)=chicago. When I create standby DB with Rman backup and copy of pfile and control file from primary DB or use Grid control to create standby database. Oracle document or Grid control all keep standby db_name=chicago. Only make standby db_unique_name and instance_name=boston. Due to my application system condition, I want to make db_name=boston, not keep it as the same as primary=chicago. Is this valid configuration?
    2. In primary datafiles, application system generate datafile name like this: hr_chicago_01.dbf, fn_chicago_01.dbf. When I move datafiles to standby server, if I plan to use db_name=boston for standby DB, can I rename datafiles as
    hr_boston_01.dbf, fn_boston_01.dbf? In this way, datafile name match up with db_name. but I will create standby log group and members on primary and standby identically. If in future switching over, DB will not have problems.
    3. If I don't use primary DB backup. Instead, I copy all datafiles, redo_log files (no control files) to standby. Then "alter database backup controlfile to trace" from promary and also " create pfile='/xxx/initSTANDBY.ora' from primary. Then modify init.ora and controlfile. Then run control.sql to bring standby DB up. After that, configure redo log shipping and apply with data guard or SQL. Is this a acceptable way to create physical standby DB?
    Please advise your comments. Thanks in advance.

    I want to make db_name=boston, not keep it as the same as primary=chicago. Is this valid configuration?NO. DB_NAME must be the same ("chicago") at both sites. The Standby will be using a different DB_UNIQUE_NAME (e.g. "boston") and can be using a different Instance name / SID (e.g. "boston").
    can I rename datafiles Yes. The database file names can be changed.
    If I don't use primary DB backup. Instead, I copy all datafiles, redo_log files (no control files) to standbyWhat is the difference between the first sentence (a backup of the primary) and the second sentence (a copy of the primary) ? A Copy is a backup.
    Are you intending to differentiate between an RMAN Backup and a User-Managed (aka "scripted") backup ?
    Normally, for DataGuard, tou can use non-RMAN methods to copy the database but there's no value add in this.
    You'd still have to setup DataGuard ! (and I wonder if you'd have complications setting up Active DataGuard).
    But remember that you MUST create the Standby controlfile from the Primary and copy it over to your Standby -- particularly as you are planning to use DataGuard. This is not created by 'alter database backup controlfile to trace' , but by 'ALTER DATABASE CREATE STANDBY CONTROLFILE AS 'filename''
    Hemant K Chitale

  • R/3 configuration for 0SD_C01 and 2LIS_01_S001

    Hi guys,
    I have activated the infocube 0SD_C01, the complete flow. I created an infopackage for its infosource 2LIS_01_S001 and made an extraction. I got an error with a delta initialization and with a full upload I got that there is no that data in R/3. I’m currently using BI 7.0 and R/3 ECC.
    Is there something I need to do first in R/3, some kind of configuration for that datasource? They told me for the datasources 2LIS* used the transaction LBWE, but I don’t see 2LIS_01_S001 on that transaction.
    What do I need to do in R/3, in order to do extractions? Does someone have a manual for this Datasource/Infosource that would like to share? My email is [email protected]
    Thanks a lot
    Vic

    Hi,
    There is no LO datasource , you have to use LIS ..i.e, 2LIS_01_S001.
    I hope you know the steps to activate and load data into BW using LIS.
    Steps are as follows:
    1) Activating LIS update - goto OMO1 transaction code
    In the Updating – Info Structures(S001) - double-click the Updating radio button for Info structure S001.
    In the Parameters dialog box select Synchronous updating and choose ok.
    2) Goto OLI7 Transaction code - run the statistical update.
    3) Goto OLIX transaction code - setup version &( will be copied to actual version 000 for reporting
    4)Go back to OMO1 do deactive the LIS Update, check radio button to "No Update"
    5)Now goto LBW0 and choose option "Deactivate" Delta updating in LIS.
    6) In BW, Replicate DataSource, and run info Package with Initilization.
    7) Now again in R/3 we need to "Activate" Delta option from transaction code LBW0.
    8) and last step is to goto OMO1 to activate LIS Update to Synchronous updating and save.
    From now on you can run your Delta Infopackage
    Hareesh

  • Fault policies  for Mediator and BPEL

    Hi
    Can i use same fault-policies.xml for both mediator and BPEL or i need to create different fault-policies.xml

    Yes you can use the same file, just you need to mention the BPEL/Mediator name with in component tag. Like below in fault policy file.
    <component faultPolicy="FusionMidFaults">
    <name>MediatorName</name>
    <name>BPELName</name>
    </component>
    You can refer the below URL.
    https://blogs.oracle.com/ateamsoab2b/entry/fault_management_framework_by_example
    *7) Give points - it is good etiquette to reward an answerer points (5 - helpful; 10 - correct) for their post if they answer your question.*
    thanks,
    Vijay

  • PC configuration for Premiere and AE (CC)

    Hallo everybody!
    I'm an Italian filmaker and I'm going to buy a new workstation but I don't know anything about hardware.
    I use Premiere for editing and AE for compositin and motion graphics.
    A couple of years ago a friend of mine suggested me this HW configuration:
    MSI Z87-G43 z87 4*DDr3 Gen 3.0 sk1150 Vga/Hdmi ATX
    Corsair 16GB Kit 2*8GB DDR-1600 CMZ16GX3M2A1600C10 XMS3-12800 serie Vengeance CAS10
    Inte Core i7 4770 3.40GHz Cache 6MB Haswell LGA1150 BOX
    Samsung MZ-7PD256BW SSD 256GB 840PRO SataIII 540/520MB/s 100K IOPS OE
    WesternDigital HDD 1TB Enterprose RE4 64Mb 7200 rpm SataII
    Zalman CNPS9900MAXBLUE Silenziosa Led Blue sk1155/1156/1366/775/AMD
    Corsair Carbide 300R Middletower No-Power ATX
    LG BH16NS40 Bluray Writer 10x 3D
    Digitus 3.5" Card reader USB 2.0 port
    Logitech keyboard K120 Business
    Corsair 750 CX 750watt EPS Pci-E PFC active 80+ Bronze
    MSI NVIDIA GeForce GTX770 OC Gaming TF IV 2GB 256bit Dvi/Hdmi/DP PCI-E 3.0
    Budget: almost 2000€
    Can anyone help me finding a new configuration with the same budget but with new-recent hw components?

    Double the RAM to 32 GB at a minimum.
    Use a full size case, not a mid-size.  You'll get better air circulation and have room for expansion.
    Add a couple more hard drives.
    Get a 850w gold power supply.

  • System configuration for ITS and for BSP

    Hi,
    I´m looking for the parameters needed in a system to connect to an ITS and also to BSP.
    I have created one system to be able to connect to ITS and another one to be able con connect to BSP, both of type SAP Load Balancing system.
    The system I created to connect to ITS has the following configuration I entered:
    Connector:
    SAP Client = 350
    Internet Transaction Server (ITS)
    ITS Description = myDescription
    ITS Host Name = myhostname:port
    ITS Path = /sap/bc/gui/sap/its/webgui
    ITS Protocol = http
    Thats it that´s the only configuration I´ve made.
    For the BSP system I entered:
    Connector:
    SAP Client = 800
    Web Application Server (Web AS):
    Web AS Description = myDescription
    Web AS Host Name = myhostname:port
    Web AS Path = /sap/bc/bsp/sap
    Web AS Protocol = http
    My question is this, is this configutation enough?,
    It is working fine with this configuration but I´ve seen some other information where they fill more parameters in the  connector section, would this extra parameters in the connector section help in any way or they will just simply be ignored?, We will be using Web Dispatcher for both.
    does somebody knows the answer? Is there some documentation on this?
    Thanx in Advanced!!
    Kind Regards,
    Gerardo J

    The connector properties are only required if you are planning on utilizing the SAP connector to connect to your backend system.
    What you have configured so far should suffice for ITS and BSP applications. I hope you have configured the system aliases already.
    Have a look at the following links for some additional inputs:
    http://wiki.sdn.sap.com/wiki/display/EP/MinimumSettingsforaSystem
    http://wiki.sdn.sap.com/wiki/display/EP/HowtoCreateSystemObjectinthePortalforConnectingtoSAPbackend+System
    - Shanti

  • FI 6248 Pre Licenced ports(1-12) configuration for Ethernet and FC

    Hello UCS Gurus,
    I am setting up a new UCS lab with 1 5108 Chassis,pair of FI 6248 and FEX2104.My query about the FI 6248 is that
    1) I have 12 pre-licenced Unified ports on my FI 6248 and I need to configure 1-10 for Ethernet and 11th/12th for FC port.,,,,Is it a valid configuration?
    2) If yes tomorrow if I buy the licence for the remaining ports 13-32. Can i continue using them as Ethernet and FC ports in alternate.I know
    Ethernet ports/FC ports must be grouped together in a block and they should end with even numbered port.
    Looking for your response on this....

    Hello Padma,
    I am stucked at a point of configuration on my lab and need your valuable advice.
    I have 8 SFP-H10GB-CU3M and 4 Nos SFP-10G-SR in my BOM.
    My confusion is I have to accomodate these SFPs only in my currect environment.I cant wait for the entire process of re-ordering new SFPs.
    So I will have to split SFPs between the pair of FIs and IOMs.
    So is it that I am short of SFPs? because my understanding says that I will be needing atleast 4 SFPs(Cu) on both FIs.
    So for FI1----> 2 SFPs(Cu) for Server ports,2 SFPs(Cu) for Uplink Ethernet ports
    for FI2------> 2 SFPs(Cu) for Server ports,2 SFPs(Cu) for Uplink Ethernet ports
    That means all my 8 SFP-H10GB-CU3M are exhausted.
    I dont have more SFPs to connect to my 2104 IO Modules.Please suggest me some workaround.I am in process of creating a lab so performance and bandwidth is not an issue for me.
    Regards
    Deepak

  • Documentation for SalesCloud and Rightnow integration.?

    Documentation for SalesCloud and Rightnow integration

    Unfortunately I could not find any references for such documentation. You may want to contact support to see if they have had similar questions.
    Jani Rautiainen
    Fusion Applications Developer Relations
    https://blogs.oracle.com/fadevrel/

  • Encoding configuration for signed and encrypted emails

    I have a 8820 device (no BES server)  - I have certificates downloaded and trust on the device.  I can attach the requisite certificates to the message, but I do not have the option to select signing or encrypting encoding.  the menu does not give me this option.  I have the S/MIME package installed.  Any thoughts / pointers?

    The S/MIME support package is only supported with a BES. You might try Djigzo for BlackBerry. Djigzo for BlackBerry is an add-on to the Djigzo Email Encryption Gateway which can be used to send and receive S/MIME digitally signed and encrypted email from a BlackBerry smartphone. An installation of the Djigzo gateway is required.
    Djigzo for BlackBerry and the Djigzo gateway is open source and can be freely used.
    For more information see www.djigzo.com
    Djigzo open source email encryption

  • Configuration for Message Exchange in integration process

    Hi,
    I'm a beginner in SAP XI (7.0) and trying to develop an integration process for a purchase order.
    There will be sent a message via Http to a receiver with Ftp.
    So for the integration process are two communication channels necessary which will be defined in the integration directory:
    One for the Sender: Http.
    One for the receiver: Ftp.
    Within the integration process are some sender and receiver steps with Bapi's.
    My questions are:
    - how and where could these sendings to a Bapi (send step) and from a Bapi (receive step) be configured?
    - is it possible at all to configure a communication channel for these sending and receiving steps within a integration process?
    Thanks for your help!
    Zoran

    Hi Zoran
    While using BPM as well you will need to have communication channels.
    BPM - > BAPI request.
    BAPI response -> BPM
    both sender and receiver channels are required for you.
    1.Demand for a material is send via HTTP to XI
    2.XI does a material availability check to the SAP system
    3.A material reservation has to be done if there are any materials available in the stock (inventory) to the SAP system
    4.If there is no material available a purchase order to a supplier (no SAP) has to be done via FTP
    5.Parallel to the purchase order a purchase order confirmation is send to the the SAP system.
    6.The supplier sends a purchase order confirmation to XI
    7.The XI sends a purchase order confirmation to the SAP system
    If i understood your requirement correctly and you want to use BPM. You need to do following in BPM
    Receivestep1(receive HTTP post) -> transform1(mapping to BAPI request) ->send step1(Send BAPI request to SAP) -> Receivestep2 (Receive BAPI response from SAP) -> Transform2 (Map BAPI response to File)-> send2(File post to non SAP supplier)-> Receive3(receive purchase order confirmation)-> transform3(map to SAP purchase order confirmation)-> send3(Purchase order confirmation to sap)
    You need no of channels
    1.Receive 1 - (HTTP)
    2.Send1/Receive2 - (RFC)
    3.Send2 - (FTP)
    4. Receive3( HTTP or FTP)
    5. For purchase order confirmation.
    Thanks
    Gaurav

Maybe you are looking for