Creation of new internal delivery channel using AQ

Hi,
I wanted to route one of Trading partner data to a different queue.(no want to use existing queues - IP_IN /IP_OUT queue).
This needs to create a new delivery channel using AQ in B2B.
I have gone thru the steps & entered all entries, but I am not able to find any queues created in B2B schema.
Do I need to create a queue using PL/SL in B2B to make it available as internal delivery channel or this setup itself will create a queue in B2B?
PFA the entirs:
for transport parameters
- transport server (B2B server IP)
- Protocol as AQ
-URI - b2b.<uri_name> (name of Queue, wanted to create)
- Hostname
- Port
-SID - b2b
-consumer - b2buser
- receiptient - null
-Polling interval - 6000
Transport server details:
Host name - (IP)
IP - Host IP
username -
Pswd - for B2B schema
Any pointers will be a great help.
Regards,
MS

As mentioned by TH in the above post, first thing is to create the data type that is used for messages - IP_MESSAGE_TYPE. This data type will already be present in the B2B database and could be reused.
For a new data type you could do the following.
==============================================================
Create a new data type using the following
==============================================================
create type IP_MSG_TYPE as OBJECT (
     MSG_ID VARCHAR2(128),
     INREPLYTO_MSG_ID VARCHAR2(128),
     FROM_PARTY VARCHAR2(512),
     TO_PARTY VARCHAR2(512),
     ACTION_NAME VARCHAR2(512),
     DOCTYPE_NAME VARCHAR2(512),
     DOCTYPE_REVISION VARCHAR2(512),
     MSG_TYPE INT,
     PAYLOAD CLOB,
     ATTACHMENT BLOB
Once you have created a new Data type ( or are reusing the existing data type), you need to create Queue Table that will hold the Outbound and Inbound message queues. The existing Queue table is "IP_QTAB" which can again be reused.
For new Queue table you could do the following
==============================================================
Create a new Queue Table using the following
==============================================================
execute dbms_aqadm.create_queue_table (     queue_table => 'MY_QTAB',
                         queue_payload_type => 'IP_MSG_TYPE',
                         multiple_consumers => FALSE);
If you need to reuse the datatype change the queue_payload_type to 'IP_MESSAGE_TYPE'.
Once we have the Queue Table that will hold the queues, we need to add and start the queues that are to be used for the inbound and outbound messages.
==============================================================
Create the new Queues into the Queue Table using the following
==============================================================
execute dbms_aqadm.create_queue (queue_name => 'B2B.MY_OUT_QUEUE', queue_table => 'B2B.MY_QTAB');
execute dbms_aqadm.create_queue (queue_name => 'B2B.MY_IN_QUEUE', queue_table => 'B2B.MY_QTAB');
execute dbms_aqadm.start_queue(queue_name => 'B2B.MY_OUT_QUEUE', dequeue => TRUE, enqueue => TRUE);
execute dbms_aqadm.start_queue(queue_name => 'B2B.MY_IN_QUEUE', dequeue => TRUE, enqueue => TRUE);
If you are reusing the queue table IP_QTAB for creation of new queues, then reference that for the queue_table in above commands.
You need to reference the queue_name eg. B2B.My_OUT_QUEUE in the B2B UI screen.
Hope this helps.
AKT

Similar Messages

  • Using Weblogic JMS for internal delivery channel

    hi,
    I want my B2B to talk to back-end application through Weblogic JMS queues. I have configured internal delivery channel for this. I am getting error message 'Max retry exceeded' in b2b_idc_transport.log
    2008.09.24 at 12:09:53:713: B2BStarter thread: (DEBUG) initialize TransportReceiver: [WLIOutbound_TServer < jms > < Wholesale >]
    2008.09.24 at 12:09:53:713: B2BStarter thread: (DEBUG) JMSReceiver.init() started ....
    2008.09.24 at 12:09:53:713: B2BStarter thread: (DEBUG) Establishing JMS Connection.
    2008.09.24 at 12:10:03:704: B2BStarter thread: (DEBUG) Establishing JMS Connection.
    2008.09.24 at 12:15:03:428: B2BStarter thread: (ERROR) Max retry exceeded, closing everything
    java.lang.Exception: Max retry exceeded
         at oracle.tip.transport.basic.jms.JMSMonitor.reconnect(JMSMonitor.java:833)
         at oracle.tip.transport.basic.JMSReceiver.init(JMSReceiver.java:333)
         at oracle.tip.transport.b2b.B2BTransport.init(B2BTransport.java:379)
         at oracle.tip.adapter.b2b.transport.AppTransportInterface.initialize(AppTransportInterface.java:282)
         at oracle.tip.adapter.b2b.engine.Engine.initialize(Engine.java:512)
         at oracle.tip.adapter.b2b.init.B2BServer.initialize(B2BServer.java:280)
         at oracle.tip.adapter.b2b.init.B2BStarter.startB2B(B2BStarter.java:297)
         at oracle.tip.adapter.b2b.init.B2BStarter.run(B2BStarter.java:143)
         at java.lang.Thread.run(Thread.java:534)
    I have applied latest patch 7322333.
    kindly let me know what is workaround for this? also, how can do debugging of this issue in B2B.
    Thanks in advance.
    Regards,
    Vaibhav
    Edited by: vaibs on Sep 26, 2008 12:15 AM

    hi Sinkar,
    Thanks for reply. I have checked connectivity from b2b server to weblogic server, using java stub. Stub can connect to the Q successfully.
    here is my b2b.log
    2008.09.24 at 12:09:49:233: main: B2B - (DEBUG) B2B initialize
    2008.09.24 at 12:09:49:233: Main thread: B2B - (DEBUG) This is Main thread executing..
    2008.09.24 at 12:09:49:233: Main thread: B2B - (DEBUG) B2B start
    2008.09.24 at 12:09:49:233: Main thread: B2B - (DEBUG) B2B start - context started
    2008.09.24 at 12:09:49:233: B2BStarter thread: B2B - (DEBUG) B2BStarter - This is B2BStarter thread executing..
    2008.09.24 at 12:09:49:233: B2BStarter thread: B2B - (DEBUG)
    Maximum Heap Size = 530907136
    Memory Allocated = 8323072
    Free Memory = 842560
    2008.09.24 at 12:09:50:544: B2BStarter thread: BusinessLogicLayer - (INFORMATION) ExecutionContextManager initialization is done
    2008.09.24 at 12:09:50:544: B2BStarter thread: BusinessLogicLayer - (INFORMATION) User's maxCachedSessions is set to 0
    2008.09.24 at 12:09:50:560: B2BStarter thread: B2B - (DEBUG) B2BStarter - Context Initialized
    2008.09.24 at 12:09:51:762: B2BStarter thread: B2B - (DEBUG) B2BStarter - Start B2B
    2008.09.24 at 12:09:51:762: B2BStarter thread: B2B - (DEBUG) B2BStarter - Starting B2B
    2008.09.24 at 12:09:51:762: B2BStarter thread: B2B - (DEBUG) B2BStarter - configuration oained
    2008.09.24 at 12:09:51:762: B2BStarter thread: B2B - (DEBUG) B2BStarter - clear global cache
    2008.09.24 at 12:09:51:793: B2BStarter thread: B2B - (DEBUG) XEngine not running. So no need to clear cached objects inside XEngine.
    2008.09.24 at 12:09:51:824: B2BStarter thread: B2B - (INFORMATION) Repository:print: [0] HL7 over MLLP Exchange
    2008.09.24 at 12:09:51:824: B2BStarter thread: B2B - (INFORMATION) Repository:print: [1] EDI X12 over AS1
    2008.09.24 at 12:09:51:824: B2BStarter thread: B2B - (INFORMATION) Repository:print: [2] Custom Document over Generic Exchange
    2008.09.24 at 12:09:51:824: B2BStarter thread: B2B - (INFORMATION) Repository:print: [3] EDI EDIFACT over Generic Exchange
    2008.09.24 at 12:09:51:824: B2BStarter thread: B2B - (INFORMATION) Repository:print: [4] RosettaNet over RNIF
    2008.09.24 at 12:09:51:824: B2BStarter thread: B2B - (INFORMATION) Repository:print: [5] EDI X12 over Generic Exchange
    2008.09.24 at 12:09:51:824: B2BStarter thread: B2B - (INFORMATION) Repository:print: [6] Custom Document over MLLP Exchange
    2008.09.24 at 12:09:51:824: B2BStarter thread: B2B - (INFORMATION) Repository:print: [7] Custom Document over AS1
    2008.09.24 at 12:09:51:824: B2BStarter thread: B2B - (INFORMATION) Repository:print: [8] EDI EDIFACT over AS1
    2008.09.24 at 12:09:51:824: B2BStarter thread: B2B - (INFORMATION) Repository:print: [9] HL7 over Generic Exchange
    2008.09.24 at 12:09:51:824: B2BStarter thread: B2B - (NIFORMATION) Repository:print: [10] Custom Document over Internet
    2008.09.24 at 12:09:51:824: B2BStarter thread: B2B - (INFORMATION) Repository:print: [11] Custom Document over ebMS
    2008.09.24 at 12:09:51:824: B2BStarter thread: B2B - (INFORMATION) Repository:print: [12] EDI X12 over Internet
    2008.09.24 at 12:09:51:824: B2BStarter thread: B2B - (INFORMATION) Repository:print: [13] EDI EDIFACT over Internet
    2008.09.24 at 12:09:51:981: B2BStarter thread: B2B - (DEBUG) Repository:constructCertSQL SELECT cert.ID, cert.CLASSTYPE FROM TIP_Certificate_ra cert, TIP_Party_ra party, TIP_DocumentExchange_ra docex WHERE cert.ID = docex.signingcredential AND cert.tradingpartner = party.ID AND party.ishosted != 'Y'
    2008.09.24 at 12:09:52:355: B2BStarter thread: B2B - (DEBUG) oracle.tip.adapter.b2b.exchange.ebms.EBMSExchangePlugin:initialize Enter
    2008.09.24 at 12:09:52:355: B2BStarter thread: B2B - (DEBUG) oracle.tip.adapter.b2b.exchange.ebms.EBMSExchangePlugin:header name: ebXML SOAP Envelope
    2008.09.24 at 12:09:52:355: B2BStarter thread: B2B - (DEBUG) oracle.tip.adapter.b2b.exchange.ebms.EBMSExchangePlugin:header name: ebXML SOAP Message Header
    2008.09.24 at 12:09:52:386: B2BStarter thread: B2B - (DEBUG) oracle.tip.adapter.b2b.exchange.ebms.EBMSExchangePlugin:initialize Exit
    2008.09.24 at 12:09:52:402: B2BStarter thread: B2B - (DEBUG) oracle.tip.adapter.b2b.document.custom.CustomDocumentPlugin:initialize Enter
    2008.09.24 at 12:09:52:433: B2BStarter thread: B2B - (DEBUG) oracle.tip.adapter.b2b.document.custom.CustomDocumentPlugin:initialize Exit
    2008.09.24 at 12:09:52:511: B2BStarter thread: B2B - (DEBUG) oracle.tip.adapter.b2b.engine.Engine:initialize Enter
    2008.09.24 at 12:09:52:511: B2BStarter thread: B2B - (DEBUG) oracle.tip.adapter.b2b.engine.Engine:initialize resetListener = true
    2008.09.24 at 12:09:52:511: B2BStarter thread: B2B - (DEBUG) oracle.tip.adapter.b2b.engine.Engine:initialize initdcx = true
    2008.09.24 at 12:09:52:543: B2BStarter thread: B2B - (DEBUG) oracle.tip.adapter.b2b.engine.Engine:initialize initialize TPAProcessor
    2008.09.24 at 12:09:52:558: B2BStarter thread: B2B - (DEBUG) oracle.tip.adapter.b2b.engine.Engine:initialize Clear TPA Cache
    2008.09.24 at 12:09:52:558: B2BStarter thread: B2B - (DEBUG) oracle.tip.adapter.b2b.engine.Engine:initialize initialize DataContext. Pool Size 0
    2008.09.24 at 12:09:52:574: B2BStarter thread: B2B - (DEBUG) oracle.tip.adapter.b2b.data.MsgListener:initialize Treat Response as Request = false
    2008.09.24 at 12:09:52:574: B2BStarter thread: B2B - (DEBUG) oracle.tip.adapter.b2b.data.MsgListener:initialize Exit
    2008.09.24 at 12:09:52:574: B2BStarter thread: B2B - (DEBUG) oracle.tip.adapter.b2b.engine.Engine:initialize initialize Transport
    2008.09.24 at 12:09:52:574: B2BStarter thread: B2B - (DEBUG) oracle.tip.adapter.b2b.transport.TransportInterface:initialize Initialize Transport Logger.
    2008.09.24 at 12:09:52:574: B2BStarter thread: B2B - (DEBUG) oracle.tip.adapter.b2b.transport.TransportInterface:initialize Transport LogLevel = STATUS
    2008.09.24 at 12:09:52:605: B2BStarter thread: B2B - (INFORMATION) Repository:getDeliveryEndPointList: Putting http://localhost
    2008.09.24 at 12:09:52:605: B2BStarter thread: B2B - (INFORMATION) oracle.tip.adapter.b2b.transport.TransportInterface:initialize: Props: http://localhost port = 7777
    PROTOCOL_ENDPOINT = null
    2008.09.24 at 12:09:52:636: B2BStarter thread: B2B - (DEBUG) initialize TransportReceiver: [Wholesale_Transport_Server < http > < Wholesale >]
    2008.09.24 at 12:09:53:682: B2BStarter thread: B2B - (DEBUG) oracle.tip.adapter.b2b.transport.AppTransportInterface:initialize Initialize AppTransport Logger.
    2008.09.24 at 12:09:53:682: B2BStarter thread: B2B - (DEBUG) oracle.tip.adapter.b2b.transport.AppTransportInterface:initialize AppTransport LogLevel = WARNING
    2008.09.24 at 12:09:53:698: B2BStarter thread: B2B - (INFORMATION) Repository:getInternalDeliveryEndPointList: Putting jms://[email protected]
    2008.09.24 at 12:09:53:698: B2BStarter thread: B2B - (DEBUG) oracle.tip.adapter.b2b.transport.AppTransportInterface:initialize main Endpoint loop jms://[email protected]
    2008.09.24 at 12:09:53:698: B2BStarter thread: B2B - (DEBUG) oracle.tip.adapter.b2b.transport.AppTransportInterface:initialize looping through transport Endpoint: jms://[email protected]
    2008.09.24 at 12:09:53:698: B2BStarter thread: B2B - (DEBUG) oracle.tip.adapter.b2b.transport.AppTransportInterface:initialize add jms transport Endpoint: jms://[email protected] {Destination Provider Properties=java.naming.factory.initial=weblogic.jndi.WLInitialContextFactory;java.naming.provider.url=t3://10.76.168.156:7010, jms.receiver.destination_password=weblogic, Connection Factory Location=weblogic.jws.jms.QueueConnectionFactory, jms.receiver.jndi_connection_factory_location=weblogic.jws.jms.QueueConnectionFactory, isTopic=false, Message Type=bytes, jms.receiver.is_topic=false, jms.receiver.factory_provider_properties=java.naming.factory.initial=weblogic.jndi.WLInitialContextFactory;java.naming.provider.url=t3://10.76.168.156:7010, transport_callout_waittime=30, jms.receiver.jndi_destination_provider_properties=java.naming.factory.initial=weblogic.jndi.WLInitialContextFactory;java.naming.provider.url=t3://10.76.168.156:7010, jms.receiver.polling_interval=10, polling_interval=10, Factory Provider Properties=java.naming.factory.initial=weblogic.jndi.WLInitialContextFactory;java.naming.provider.url=t3://10.76.168.156:7010, jms.receiver.jndi_destination_location=[email protected], jms.receiver.destination_username=weblogic}
    2008.09.24 at 12:09:53:713: B2BStarter thread: B2B - (DEBUG) initialize TransportReceiver: [WLIOutbound_TServer < jms > < Wholesale >]
    2008.09.24 at 12:35:52:276: B2BStarter thread: B2B - (DEBUG) oracle.tip.adapter.b2b.data.MsgListener:startListen Enter
    2008.09.24 at 12:35:52:276: B2BStarter thread: B2B - (DEBUG) oracle.tip.adapter.b2b.data.MsgListener:startListen Exit
    2008.09.24 at 12:35:52:276: Thread-10: B2B - (DEBUG) oracle.tip.adapter.b2b.data.MsgListener:run Thread start
    2008.09.24 at 12:35:52:276: B2BStarter thread: B2B - (DEBUG) oracle.tip.adapter.b2b.engine.Engine:initialize Exit
    2008.09.24 at 12:35:52:276: B2BStarter thread: B2B - (DEBUG) B2BStarter - B2B initialized
    2008.09.24 at 12:35:52:884: Thread-10: B2B - (DEBUG) oracle.tip.adapter.b2b.data.MsgListener:run initialize Enter
    2008.09.24 at 12:35:53:087: Thread-10: B2B - (DEBUG) oracle.tip.adapter.b2b.data.MsgListener:run initialize B2BListen turned off, will not listen on IP_OUT_QUEUE for messages
    2008.09.24 at 12:35:53:087: Thread-10: B2B - (DEBUG) oracle.tip.adapter.b2b.data.MsgListener:run start listening on message
    Thanks,
    Vaibhav
    Edited by: vaibs on Sep 28, 2008 3:20 AM

  • Unable to set Internal delivery channel in B2B 11g

    Hi
    I am very new to B2B
    I have some doubts that i want to clear
    I am not sure whether the internal delivery channel will be automatically set in B2B 11g
    I created an agreement for one of the external trading partner from host trading partner
    When I try to deploy the agreement it is failing with the validation error
    I don't know what is the error but I am believing that the internal delivery channel is not set for my host trading partner
    I have two question's here
    1. How to set Internal delivery channel in 11g B2B if it is not automatically set. If it is set what is it
    2. Where can I find the log file on server. I want to get the details of the validation error occuring while I am deploying the agreement
    Any help is greatly appreciated
    Thanks
    Vijay Sai.S

    Hi
    Now I want to define a custom IDC using HTTP.
    How Can I do that
    If go to channels tab for my TP and select HTTP as channel, I am not able to save it and the error is Unable to create an IDC with HTTP as method.
    Can you tell me how can I create custom IDC
    I don't want to use QUEUE channel for IDC.
    Secondly do I have to give proper details of my TP?
    I mean to say I that I want to just deploy an agreement for testing purpose by just giving some dummy details of my TP connection.
    What if I don't have proper details of my TP connection
    Thanks for the log file path
    I found it.
    I couldn't find any extra details in it though
    Thanks
    Vijay Sai.S

  • How to create a CUSTOM AQ internal delivery channel.

    Hi,
    I want to use a custom AQ internal delivery channel for inbound. Can someone please help me in the configuration details.

    Hi Manindra,
    You can either create a new URI or use the existing one. It's up to your requirement and use case. URI is nothing but the destination location on which B2B thread hear to pick the message and connects to pass the message.
    Regards,
    Anuj

  • Oracle 11g b2b server JMS Internal Delivery Channel Configuration

    Hi,
    I am using Oracle 11g b2b server configured with ebMS protocol. I have created a JMS internal delivery channel at host trading partner. Now the Inbound message (message from remote trading partner) will be delivered to back-end application through the jms internal delivery channel. Now I wanted to send this message to the another weblogic server domain which is hosted on another box. So where do I give the other weblogic domain details such that the message will be delivered from the host trading partner's b2b server to remote weblogic domain queue?
    Regards,
    Baskaran

    Hi Baskaran,
    As already mentioned by Nitesh, You can Create a Internal JMS Delivery channel and configure the same in your agreement to route the messages to the remote weblogic(domain) JMS queue.
    Remote weblogic domain's ip address and port details can be configured as part of JMS Internal Delivery channel, "Destination Provider" like below,
    eg.
    java.naming.provider.url=t3://<host>:<port>;java.naming.factory.initial=weblogic.jndi.WLInitialContextFactory;java.naming.security.principal=<username>;java.naming.security.credentials=<password>
    In this case the messages directly delivery to the remote JMS queue.
    Regards
    Nandagopal

  • BPEL JMS Adpater to publish message to B2B Internal Delivery Channel

    We are planning to use the JMS adapter in BPEL to publish message to B2B Internal Delivery channels. But during the JMS Adapter configuration it doesnt list the B2B Internal queues (IP_OUT_QUEUE and IP_IN_QUEUE) in the list of queues. However for AQ Adapter in BPEL, during the AQ Adapter configuration its lists the queues(IP_OUT_QUEUE and IP_IN_QUEUE) in the list of the queues. We used the same database connection and user for both the adapters. The B2B queues are in the B2B repository.
    Can we use the JMS Adapter in BPEL to publish message to B2B internal delivery channel and if so is there any other configuration we need to do?

    You can use the default AQ to pub/sub messages in/out of the IP_IN and IP_OUT Qs.
    However, if you still need to use JMS, then make the B2B listen to this JMS Q and then use the JMS adapter.
    Using the default AQ should be robust and simple. But, again we have seen several customers implementing in thrid party JMS providers as per their business scenarios.
    Regards
    Anirudh Pucha

  • B2B message Id propagated back to Internal Delivery channel.

    Hi
    I am interested to find out if there is any mechanism to get the message Id of the document sent by the B2B server back to the internal delivery channel. My requirement is to update the application that sent out a message to the partner via the B2B gateway after I receive an acknowledgment back from the TP. I am using RNIF, so I will be using the exchange level ack. I am also curious to know if B2B can send any control information about the doc exchange status through the internal delivery channel like Status, time sent, messageId etc.
    Very urgent.
    Thanks
    Anteneh

    Thanks for the quick turn around the issue. I need help on following
    I set up two b2b instances. I am sending 3A4 document as a custom document on AS2 protocol. I have two issues:
    1. my sender receives a MDN (acknowledgement) if we send syntactically correct data to partner. state of transaction when i look at the sender side 'business message status report' is changed to 'complete'.
    when we send syntactically wrong data MDN is not generated by receiver and the sender side logs show the transaction state as 'waiting for ack'. receiver side 'business message status report' show the transaction as 'Error'.
    I turned on the flag 'is acknowledgement handled by Integration b2b' to 'yes' on both sender and receiver side
    2. The positive ack which is received by the sender, which changes the state of transaction to complete, I expected it to be posted on to IP_In_queue. But I dont see it there. I am using 'b2buser' to dequeue the message.

  • Inbound MDN's are being sent back to Internal delivery channel

    AS2 over HTTPS (sync MDN's) are being sent back to inbound IDC rather than b2b consuming them , can any one point the root cause
    Thanks,
    Kalyan

    Hi Kalyan,
    Make sure that you are enabling "Is Acknowledgment Handled By Integration B2B?" in HOST trading partner.
    Oracle B2B never defaults an IDC from any other business action. Moreover agreement configuration elements are independent of business protocol being used.
    Each and every agreement will have a field "Responding Internal Delivery Channel " but this field appears if you selected "Yes" from the "Is Acknowledgment Handled By Integration B2B?" list when creating a remote trading partner on the Operational Capabilities page.
    This field of agreement is used to select the internal delivery channel to use for responding to (acknowledging) messages.
    Cross-check your business action configuration and corresponding agreement configuration again.
    Please let me know the result.
    Regards,
    Anuj

  • File Internal Delivery Channel failed

    hi all,
    i'm facing some problem with the File Internal Delivery Channel, my idea is to output the incoming message from my remote trading partner into a folder.
    i'd follow the steps in the user guide but i can see any files in the folder.
    i've try the FTP Internal Delivery Channel and i can see those files in the folder.
    can anyone help me here? how to output the incoming message into a folder using the File Transport Protocol??
    Thanks

    Hello PT,
    A part of this question is also discussed in the other post named Transport Parameters for FTP1.0 . In acme-Global Chips scenario , you might want to define the delivery channel for Acme to be picked up from an FTP folder where Global Chips is assumed to be placing the files for inbound.
    For outbound scenario, you have to define the delivery channel of GlobalChips to define the FTP end points so that B2B will put the files in the respective folder. HTH. Please let me know.
    Rgds,Ramesh

  • File Internal Delivery Channel

    I've created an internal delivery channel to poll for when a File is dropped into a specific directory on the B2B server. B2B should poll for the file and pick it up once the file appears to be sent out to our trading partner. The problem is B2B is not picking up the file and it is just sitting in the directory.
    Directory where the file is being dropped: /rootdirectory/foldername/name/location
    - directory is on the same server as b2b
    File Name: TradingPartner_DocType_MessageType_MessageID.xml
    - MessageID is unique
    Permissions: The file used for testing was put there by ‘oracle’ home user.
    Internal Delivery Channel Settings:
    Transport Details:
    Transport Protocol: File
    URI: /rootdirectory/foldername/name/location
    Polling Interval: 1
    Receiver Read Only: false
    Transport Sever Details:
    Host name: B2B box
    I created the TPA using the internal delivery channel I created. The configuration is deployed and when I drop the file there, nothing happens. Nothing seems to show up in the logs or error reports.
    It seems as if B2B is not even polling that directory. Is there some configuration setting I'm missing? Any help would be greatly appreciated.
    Thanks.

    Hello,
    sankar has already given the solution. YOu might also want to enable the transport log for further error messages. Please do so in tip.properties.
    #oracle.tip.adapter.b2b.transportTrace = c:\\oracle\\midtier\\ip\\log/transport.trc
    Rdgs,Ramesh

  • 997's sending through internal delivery channel

    Hi All,
    My scenario is , this is only for testing purpose.. I am sending PO through internal delivery channel to some other ftp in our local folder, b2b should send a 997 back to ipinqueue,, Is it possible to do that....
    Help me to resolve this issue please..
    Regards

    Hi Ramesh,
    I am getting below errror
    Machine Info: (essapt020-u009.emrsn.com)
    Description: Document Exchange protocol name "Generic" in message is different from document exchange protocol name "AS2" in agreement
    StackTrace:
    Error -: AIP-50523: Document Exchange protocol name "Generic" in message is different from document exchange protocol name "AS2" in agreement
         at oracle.tip.adapter.b2b.tpa.MessageValidator.validateDocExchange(MessageValidator.java:245)
         at oracle.tip.adapter.b2b.tpa.MessageValidator.validateMessage(MessageValidator.java:131)
         at oracle.tip.adapter.b2b.tpa.TPAProcessor.processTPA(TPAProcessor.java:769)
         at oracle.tip.adapter.b2b.tpa.TPAProcessor.processIncomingTPA(TPAProcessor.java:240)
         at oracle.tip.adapter.b2b.engine.Engine.processIncomingMessage(Engine.java:1833)
         at oracle.tip.adapter.b2b.engine.Engine.incomingContinueProcess(Engine.java:2574)
         at oracle.tip.adapter.b2b.engine.Engine.handleMessageEvent(Engine.java:2444)
         at oracle.tip.adapter.b2b.engine.Engine.processEvents(Engine.java:2399)
         at oracle.tip.adapter.b2b.data.MsgListener.onMessage(MsgListener.java:527)
         at oracle.tip.adapter.b2b.data.MsgListener.run(MsgListener.java:374)
         at java.lang.Thread.run(Thread.java:534)

  • [URGENT]Internal Delivery Channels of B2B

    Hi,
    After going through the tutorials of B2B and BPEL interoperability i am bit confused as the information is bit abstract.
    If my understanding is not wrong, the trading partners created in B2B communicate among themselves through the B2B inbound and B2B outbound channels. These B2B channels in turn use IP_IN_QUEUE and IP_OUT_QUEUE.
    But when I am connecting a Host application say BPEL with B2B to map some data fetched from oracle apps to the 850.xsd, by choosing the deployed B2B docs through WSIL browser, the default queue that is being used is AQ, which uses IP_IN_QUEUE and IP_OUT_QUEUE.
    I am confused when i am trying to view the entire setup as I feel there is some missing concepts while intregating BPEL on one side with one TP as Host and the other as Remote.
    More over Iwould also love to know if any tables like (IP_QTAB) are populated during the process of enquing and dequing.
    any comments from any corners will be beneficial.
    Thanks and regards
    Prabal
    Message was edited by:
    Prabal

    Hi Prabal,
    Firstly, in B2B there are two communication sides, one is Internal (facing internal applications such as BPEL, IC etc) and the other is External (facing Remote Trading partners, diff organizations).
    For Internal Communication B2B uses by default AQ channels.
    - IP_OUT_QUEUE is used by B2B to receive messages put in by Internal App and send them out to remote trading partners
    - IP_IN_QUEUE is used by B2B to put the messages it has received from remote trading partners to be consumed by Internal Applications.
    Note that these are not used for communication between trading partners.
    For External Communication, B2B has support for various channels such as HTTP, FTP, File etc. and some transport exchange protocols such as AS2 (EDIINT), RNIF (RosettaNet Messages), ebMS, MLLP etc. Typically with EDI documents such as X12 docs, one would you EDI over Internet (AS2) or use generic transports such as File or FTP.
    If you run Tutorial 3 (given in the B2B User Guide), it sets up X12 (850, 855, 997) over Internet (AS2). Please try and run this scenario for understand B2B.
    Please note for this you would require two separate B2B machines.
    After running the Tutorial, you can try to configure BPEL to enqueue and dequeue the messages instead of using the enq and deq scripts. Please note that one BPEL instance should be connected to one B2B instance eg. Acme (as per the tutorial) instance. You could create one process that will Enqueue the message into Acme and a second that will Dequeue the message from Acme.
    The BPEL - B2B Outbound message flow is as follows
    - BPEL picks message from Oracle APPS or any other internal application
    - BPEL will convert this to 850 format.
    - BPEL will enqueue the message into B2B. This message goes into IP_OUT_QUEUE and will be shown as an entry in the IP_QTAB. (Note both inbound and outbound show in IP_QTAB, and can be identified by the Q_Name column).
    - B2B checks for outbound messages i.e. for messages on IP_OUT_QUEUE.
    - B2B processes the outbound messages and send it out the pre-configured Trading Partner over delivery channel such as (HTTP, FTP, File etc).
    The BPEL - B2B Inbound message flow is as follows
    - B2B receives message from a remote trading partner over some pre-configured delivery channel (HTTP, FTP, File etc).
    - B2B will process the inbound message and enqueue the message into the IP_IN_QUEUE.
    - BPEL will be checking the IP_IN_QUEUE for new messages and will pick it up once it is put in by B2B.
    - BPEL will process the message and pass it to whichever internal app the message is meant for.
    Hope this helps in your understanding of B2B.
    Thanks,
    --Arun                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Block creation of new Internal Order Type

    Hello,
       We have several internal Orders types and we want to block the creation of new IO. Is there any way through customizing to do that?
       I have considering to do it using an step in a validation but I think can be a better way.
    Thanks,

    Hi,
    Ravi is right, you can restrict through authorizations. To do that, you have to modify the role assigned to users that allow them to create internal orders of any type. Use the transaction SUIM, search the role by user or by transaction (KO01). Then, in the role, there is an entry that corresponds to Controlling (CO) -
    > CO-OPA: General authorization object for internal orders (K_ORDER) -
    >
    Order Type  (AUFART)   : Select for example RA01
    Internal order authorization  (AUTHPHASE) :
    Actions for CO-OM Authorizatio (CO_ACTION) :  0000  Master Data.
    Cost Element  (KSTAR) :    
    CO-OM Responsibility Area  (RESPAREA) : 
    Usually a BASIS do the modification of the role.
    Regards,
    David Z.

  • Creation of New fast entry infotype using PA70

    Hi all,
    I am new to HR ABAP.I have got a requirement that i need to create new fast entry infotype using PA70.Please gide for the development.
    Thanks and regards,
    venkat

    Hi Venkat,
    I have  a same problem with the PA70.
    Can you please tell me how to maintin it. I tried to maintain both the tables T588Q and T588R but its stilll not working.
    Can you plz guide me abt the same.
    thank you
    Manjiri

  • I have a 2009 MacBook Pro. How do I do a backup on the new internal hard drive using my existing LaCie external drive without re backing up the entire internal drive. Just want to backup most recent changes

    I have a mid 2009 15" MacBook Pro. The existing internal drive was about to fail so I had it replaced with a 500GB western digital drive. I have been backing up my system with a LaCie 500GB external drive. I want to perform a new backup using Time Machine but I only want to backup any changes from the last 30 days or so. I want to avoid doing a total system backup thus duplicating most of the data on my external drive and pretty much filling it up. Any suggestions appreciated

    Look at this web site devoted to Time Machine:
    http://pondini.org/OSX/Home.html
    I suspect that this portion will address your situation:
    http://pondini.org/TM/15.html
    Ciao.

Maybe you are looking for

  • How can I create a Forms9i Runtime for client distribution

    Currently we have an application developed in Forms 5.0.6.8.0 our Database has been upgraded to 9i DB. The application is working fine with this combination but we want to upgrade Forms in order to get Oracle Support. We just get the Developer Suite

  • In IMovie 11 9.04 my background music loses time when I transfer it to the slide show.  How do I correct that?

    I have a slide show project which runs about 7:10 minutes.  I want to use background music that consists of 2 songs.  The first song is 3:11 minutes and the second song is 4:51 minutes.  Even when I add transitions and more images, the second song lo

  • Solaris 8 boot block

    I have a Solaris 8 machine that was having a hard drive issue. I shut the system down and then it will not boot. I booted off a CD and ran fsck /dev/rdsk/c0t0d0s0 and it came back with a superblock error and I typed yes to fix it. I then tried to boo

  • Question re: HP printer issue

    I've posted recently re: my HP LaserJet 1320 not working with my new iMac. I had a thought. Without thinking or doing much research first, I simply installed the drivers etc. from the HP disc that came with the printer. The more I read on here, I ten

  • Google icon in iweb tab/numbers on iweb app

    Why does my iwebsite tab show up with a google icon on my homepage on Firefox? Also, why does my the iweb app have a red circle with a number inside it? The number was 3 and now it's 5. Anyone know what that is? Danka!