System is not picking up approvers from BADI in Item level workflow

Hi All,
My problem is that
1. when I creat the shopping cart the system is picking up the correct approver from BADI and showing it in approval preview.
2. My first level approver is a general task so Workitem going to the correct persons.
3. after first level approver I am fillng approver in BADI for 2 nd level.
4. But after first approval the SC is directly getting approved finally as system is not picking up approvers from the BADI.
I dont understand the problem. even We applied SP9 as well, but the problem is not resolved.
Please suggest something.
Thanks
Smita

Hi ,
I am pasting the code of my BADI.  Let me know if i need to do some changes.
Regards,
smita
if lv_wf = '4'.
1st approval step executed for indices 1 and 0
      IF actual_approval_index LE 1.
First approval step (General task)
endif.
2. approval step executed for indices 2,1 and 0
      IF actual_approval_index LE 2.
*break-point.
**get the approver for the commodity
         LOOP AT lt_item INTO ls_item WHERE del_ind IS INITIAL.
We consider only items, which are not deleted (del_ind = 'X')
Set the product category
            MOVE ls_item-category_id TO lv_call_value1.
Find the approver of this item based on the customizing table ZCOMMODITY
CALL FUNCTION 'ZWF_COMODITY_ITEM_APPROVAL_GET'
   EXPORTING
     SC_GUID                          = ls_header-guid
     ITEM_GUID                        = ls_item-guid
   APPROVAL_DESCRIPTION             =
    HIDE_ITEMS_NOT_RESPONSIBLE       = 'X'
     CRITERION1                       = 'COMMODITY'
     CATEGORY_ID                      = ls_item-category_id
     ITEM_VALUE                       = ls_item-VALUE
     APPROVAL_INDEX                   = '2'
   CHANGING
     APPROVAL_TABLE                   = approval_table
     ITEM_APPROVAL_TABLE              = item_approval_table
    ITEM_APPROVAL_OBJ                = item_approval_obj
endloop.
*ELSEIF actual_approval_index EQ 2.
don't process 2nd step
         no_further_approval_needed = 'X'.
endif.
endif. " if lv_wf = '4'.
FUNCTION ZWF_COMODITY_ITEM_APPROVAL_GET.
""Local Interface:
*"  IMPORTING
*"     VALUE(SC_GUID) TYPE  BBP_GUID
*"     VALUE(ITEM_GUID) TYPE  BBP_GUID
*"     VALUE(APPROVAL_DESCRIPTION) TYPE  BBP_STEP_DESCRIPTION OPTIONAL
*"     VALUE(HIDE_ITEMS_NOT_RESPONSIBLE) TYPE  BOOLEAN OPTIONAL
*"     REFERENCE(CRITERION1) TYPE  BBP_WFL_APP_CRITERION
*"     VALUE(CATEGORY_ID) TYPE  ZBBP_CATEGORY_ID
*"     VALUE(ITEM_VALUE) TYPE  BBP_VALUE
*"     VALUE(APPROVAL_INDEX) TYPE  SWH_NUMC10
*"  CHANGING
*"     REFERENCE(APPROVAL_TABLE) TYPE  BBPT_WFL_APPROVAL_TABLE_BADI
*"     REFERENCE(ITEM_APPROVAL_TABLE) TYPE  BBPT_WFL_ITEM_APPROVAL_BADI
*"     REFERENCE(ITEM_APPROVAL_OBJ) TYPE  BBPT_WFL_ITEM_APPROVAL_OBJ
*"       OPTIONAL
this Function Module is for getting the commodity approvers
for the commodity items, in the Shopping cart
  DATA:
    ls_approval_table      TYPE bbp_wfl_approval_table_badi,
    ls_item_approval_table TYPE bbps_wfl_item_approval,
    ls_approval_def        TYPE bbpt_wfl_lia_def,
    ls_item_approval_obj   TYPE BBPS_WFL_ITEM_APPROVAL_OBJ.
  DATA:
    lv_app_obj_guid   TYPE bbp_guid_32,
    lv_is_new_approval_object TYPE boolean.
**structure for commodity data
data : ls_commodity type zcommodity.
data : lv_value1 type BBP_WFL_APP_PROPERTY.
  CONSTANTS:
      c_agent_is_user TYPE otype VALUE 'US'.
First find the right approval object the item belongs to.
All items of an approval object are approved togheter in
this approval step, and therefore only one workitem is
created for this items. IF possible use this standard function
BBP_WFL_DIN_APP_OBJ_GET for creating the approval object.
lv_value1 = category_id.
CALL FUNCTION 'BBP_WFL_DIN_APP_OBJ_GET'
  EXPORTING
    SC_GUID                      = sc_guid
    CRITERION1                   = criterion1
  CRITERION2                   = ''
  CRITERION3                   = ''
   VALUE1                       = lv_value1
  VALUE2                       = ''
  VALUE3                       = ''
IMPORTING
   APPROVAL_OBJ_GUID            = lv_app_obj_guid
  IS_NEW_APPROVAL_OBJECT       =
  TABLES
    ITEM_APP_OBJ                 = item_approval_obj
              CALL FUNCTION 'BBP_WFL_DIN_APP_OBJ_GET'
                EXPORTING
                  SC_GUID                      = sc_guid
                  CRITERION1                   = criterion1
                 CRITERION2                   = ''
                 CRITERION3                   = ''
                 VALUE1                       = lv_value1
                 VALUE2                       = ''
                 VALUE3                       = ''
                 IV_ITEM_VALUE                = ITEM_VALUE
               IMPORTING
                 APPROVAL_OBJ_GUID            = lv_app_obj_guid
                 IS_NEW_APPROVAL_OBJECT       =
                TABLES
                  ITEM_APP_OBJ                 = item_approval_obj.
CALL FUNCTION 'BBP_WFL_DIN_APP_OBJ_GET'
   EXPORTING
     sc_guid                 = sc_guid
     criterion1              = criterion1
  CRITERION2              = ''
  CRITERION3              = ''
     value1                  = category_id
  VALUE2                  = ''
  VALUE3                  = ''
  IMPORTING
If 2 items of the same shopping cart have the same
values for the criterias, this function returns the
same (!!!) approval object guid
    approval_obj_guid       = lv_app_obj_guid
   TABLES
This table saves the criterias  for which the approval object
was created. For example:
|approval object1| "cost center" | 1000   |
|approval object2| "cost center" | 1200   |
|approval object3| "prod categ " | office |
    item_app_obj            = item_approval_obj
Check if this approval object already exists in the approval
table
  READ TABLE approval_table INTO ls_approval_table
          WITH KEY approval_object_guid = lv_app_obj_guid
                   approval_index       = approval_index.
  IF sy-subrc EQ 4.
    lv_is_new_approval_object = 'X'.
  ENDIF.
  IF lv_is_new_approval_object = 'X'.
Now read your own approval table based on your criteria's
**now check whether the category id is a commodity material and
*find the responsible person for that and
*check if the amount of item is falling in the approval limit of the comodity manager
select single * from zcommodity into ls_commodity
where CATEGORY_ID = category_id
and ( ZFROMAMT <= item_value and ZTOAMT >= item_value ).
   SELECT * FROM bbpt_wfl_lia_def
            INTO CORRESPONDING FIELDS OF ls_approval_def
            WHERE
                  app_crit_name1  = criterion1 AND
                  app_crit_value1 = value1
   ENDSELECT.
    IF sy-subrc NE 4.
Fill approval table (who is responsible for which approval
object in which approval step)
      ls_approval_table-approval_index       = approval_index.
     CONCATENATE c_agent_is_user ls_approval_def-approval_agent1
                             INTO ls_approval_table-approval_agent.
CONCATENATE c_agent_is_user ls_commodity-person
                              INTO ls_approval_table-approval_agent.
      ls_approval_table-name = ls_commodity-name.
      ls_approval_table-approval_description = approval_description.
      ls_approval_table-approval_object_guid = lv_app_obj_guid.
      ls_approval_table-hide_items_not_responsible =
                              hide_items_not_responsible.
      APPEND ls_approval_table TO approval_table.
     IF ls_approval_def-approval_agent2 IS NOT INITIAL.
Second approver for the same workitem exists
       CONCATENATE c_agent_is_user ls_approval_def-approval_agent2
                           INTO ls_approval_table-approval_agent.
       ls_approval_table-name = ls_approval_def-agent_string2.
       APPEND ls_approval_table TO approval_table.
     ENDIF.
    ENDIF.
  ENDIF.
Fill item table (Which items belongs to which approval object)
  ls_item_approval_table-approval_object_guid = lv_app_obj_guid.
  ls_item_approval_table-approval_item_guid   = item_guid.
  APPEND ls_item_approval_table TO item_approval_table.
**Fill Item approval object
ls_item_approval_obj-sc_guid = sc_guid.
ls_item_approval_obj-APP_CRIT_NAME1 = CRITERION1.
ls_item_approval_obj-APP_CRIT_VALUE1 = CATEGORY_ID.
ls_item_approval_obj-APPROVAL_OBJECT_GUID = lv_app_obj_guid.
append ls_item_approval_obj to ITEM_APPROVAL_OBJ.

Similar Messages

  • In J1IS system is not picking net value from PO automatically

    Dear Experts,
    I want to send rejected material to vendor back, so I have done return delivery against MIGO material document, in MIGO, in Excise Invoice Tab i have selected no exicse Entry document. At the time of J1IS sytem is not picking net value from PO. This field is editable. Our requirement is, system should pick net value from PO.
    In this case I am not makeing any RETURN PO
    Could any body guide me? Is there any configuration required?
    Thanks & Regards,
    Trupti.

    There is no link between p.o & excise inv. creation using J1IS.
    In J1IS,Enter return material document no,Ref doc. type - MATD,Doc Year,series group,excise group,series group & finally vendor in selection.
    In excise invoice automatically details like material code,qty will appear.
    You need to enter assesable value & excise duties manually.
    Note :
    Be cautious while entereing excise duties bcoz you may be returning partial quantity to vendor,
    so calculate excise duties in a seperate excel sheet before entering it in J1IS.

  • While creating the Transfer Order system is not picking Sale order stock?

    Hi All,
    In the B2B  process the system is not picking the stock from from sale order stock while creating the transfer order? Please suggest.
    Summary : Here we are creating the PR in the sale order and STO is created using the same PR to procure the materials from the WM plant to sale order plant. Since here intialy we are moving the stock to our sale order in WM plant and then picking the same. But while creating the Transfer order system is not picking the sale order stock in WM plant.
    Regards.

    C S Javali
    Check in schedule line in transaction flow whether Transfer Req /assembly is checked or not
    Regards
    Pradeep

  • System is not picking up the WBS element from Asset in PO.

    Hi,
    While creating Purchase Order with account assignment category
    as "A"(i.e.Asset), system is not picking up the WBS element from Asset
    Master, even though it is defined in the asset master.
    Please help.
    Thanks,
    Ninad

    Hello Ninad,
    Please, see the SAP Note 21583. I think it might be of help for your case.
    Best regards,
    Esther.

  • PO not picking Purchasing org from info record

    Hi All,
    While creating PO system is not picking Purchasing org??? Rest capturing everything whatever is maintianed.
    Please tell me the solution
    Rgrds
    SS
    Edited by: SunilSisodia on Dec 14, 2011 8:59 PM

    Hi,
    Info record is combination of plant,material and vendor master record,all data from MMR  and Vendor get copied into Info record which flow IN PO while creating PO,
    when we enter vendor code and material master in PO then info-records come in PO
    check following like also
    [Info Record: Plant Vs Purchasing Org Level;
    [http://help.sap.com/saphelp_46c/helpdata/en/75/ee102f55c811d189900000e8322d00/content.htm]
    Regards
    Kailas Ugale

  • Sender file adapter is not picking the file from windows server

    Hi Experts,
    We have a sender file adapter running on Unix server. Now we have changed the source directory path from Unix to Windows in file access parameters.  It is not picking the files from windows directory and not showing any error.
    In this scenario, input file for sender adapter is *.xml and no content conversion.
    Could any one please let me know is there anything needs to changed in file adapter.
    Thanks in advance,
    Sridhar. M

    Sridhar,
    What do you have in the directory path?
    If it is a shared drive in unix then the directory in windows should also be a shared drive from XI system. Else if it is FTP check the address.
    Regards,
    ---Satish

  • XI is not picking the file from source dir after exported from DEV to QA

    Hi Experts,
    We have moved one XI object from Dev to QA. It was working fine Dev but in QA XI system not picking the file from the source directory.
    I have checked Communication Channel monitoring and receiver determiniation everything is fine. But still it is not picking the file.
    Could you please help us.
    Regards
    Sowmya

    Hi
    We have used the CMS to transport XI objects. Everything has been configured automatically. I checked all the configuration and everthing seems to be fine.
    Could you please give any more suggestions.
    Regards
    Sowmya

  • Sender JMS Synchronous communication channel not picking up files from JMS

    Hello,
    One of our Sender JMS synchronous communication channel (used Sync/Async bridge in the module section to make it Synchronous) is not picking up files from JMS system though the channel looks to be active (greeen).
    When I am trying to stop the channel, it is giving error as "1 of 1 administered and selected channels have not been stopped", and after this when I start the cannel again it shows green but not picking up any files.
    if anyone is haivng any solution for this, please reply back.
    Thanks in advance.

    Messages available in JMS system? please check queue's if message were there and it is not picking up then some thing wrong with cc.
    simple solution create new communication channel with same details and try to use the same.

  • System should not pick reserved stock

    Dear, MM Experts, i am sd Guy
    i want to block Reserved stock while creating sales order
    ex: 150 qty kept In reserve for customer , Total plant stock 1000
    Now if user created sales order with 150 qty Normally system will pick 150 qty From reserved stock ( 412 E)
    Here user requirement system should not pick Reserved stock 150   Bz in critical situation is there Like non production of stock
    ex total stock in the plant 175 only there ( ex 155,180,200,170) So in this  situation only system will pick Reserved stock 150
    Otherwise Reserved stock should be in reserved place only bz if is not like this always we have keep stock in reserve
    Thanks 

    Dear ,
    as per my Knowledge If we Reserve the stock By OVZ9 Include sales req check box it will be unrestricted it wont go to sales order
    when stock is not there you can reverse the stock to normal stock by using 411E
    i think this is only solution
    How to block material for a particlar sales order   
    Regards
    venu

  • JMS sender adapter is not picking up message from MQ

    Hi Experts,
    I have configured the JMS sender adapter for getting message from Websphere MQ. In RWB the adapter and the communicaiton channel all looking good. The trace file tells me the connection to the queue has been established.
    But the problem is this JMS sender adapter is not picking up message from the Queue defined on the MQ site.
    Any Idea what could be wrong?
    Thanks!
    Jason
    Jason

    Hi,
    1) Can you activate the JMS adapter again ( edit save and activate it )
    2) Check whether the right Queue is addressed.
    Regards
    Agasthuri Doss

  • ADG is not picking up changes from this getter

    My ADG is not picking up changes from this getter, is it because the whole class needs to implement IEventDispatcher ?
    <mx:AdvancedDataGridColumn headerText="Delete" dataField="reviewDate" visible="{userModel.loggedInUser.deleteReview}" id="deleteColumn">
    UserModel.as
        [Bindable(event="propertyChange")]
            public function get loggedInUser():User
                return _LoggedInUser;
        public function set loggedInUser(value:User):void
                _LoggedInUser = value;
                //loggedInUserModified.dispatch();
                eventDispatcher.dispatchEvent (new Event ("propertyChange"));

    Hi ,
    This is due to the query cache not getting updated for portal
    view this problem can be solved by only refreshing the query
    and u can get the help of basis people if there are anyother
    way for this .
    Assigning points is the way of saying thanks in SDN
    Regards ,
    Subash Balakrishnan

  • WRT54GX2 does not pick up time from the network...

    I have a WRT54GX2 running firmware 1.01.14 and it does not pick up time from the network. I have PacBell (now AT&T) as an ISP and a DSL link. My old Netgear router picks up the time immediately. I am trying to figure out if I have a defective unit or if this is a firmware bug. Without the time, I can not use any of the scheduling functions, nor measure uptime.
    Does anyone have this router with the time working? I have set the appropriate time zone.
    Thanks,
    Martin

    mneiman wrote:
    Thanks for you ideas.
    The backup file appears to be binary. However in searching through it I did see 3 time related text strings, namely: clock.stdtime.gov.tw, time-b.nist.gov and time.nist.gov. I can successfully ping clock.stdtime.gov.tw and time.nist.gov. This reinforces my belief that my ISP (AT&T nee PacBell) is not blocking access.
    however ntp works on TCP port 123. ping works on udp 7 afaik. if your old netgear works i guess this is a router problem.
    have you reset the router yet? afaik press reset button for 10 seconds.
    you will however loose all settings and need to enter them again. it may however fix the issue.Message Edited by linksysinfo on 07-09-2006 03:09 AM
    Regards Simon
    NAS: TS-459 Pro - 3.6.1 Build0302T - 4 x 1TB Samsung HD103SJ : EXT4 - APC ES 700VA UPS
    QPKG: WordPress 3.4, TwonkyMedia 6.0.39 QPKG - Zenphoto1.4.2.1 [7802] - phpMyAdmin v3.3.10
    Network: Netgear DG834G V4.01.40 - DGTeam Rev. 0849 -> Cisco RV220W 1.0.4.13, Cisco SLM2008, Dlink DSM-520, Xbox360

  • My Macbook Air does not pick up wifi from Airport but iMac, iPad and iPhone do. Help please.

    My Macbook Air does not pick up wifi from Airport but iMac, iPad and iPhone do. Help please.

    Are you testing in the same room as the TC?
    Power cycle the TC.. does it show up now?
    Has it ever showed up .. ie is this a problem that just started from an existing setup, or has never worked?
    Is the TC new? If old how old?
    If you continue to have issues.. setup the TC from iMac and preferably using ethernet.
    Change the wireless names to SMB compatible ones, short no spaces, pure alphanumeric.
    Use WPA2 Personal security only.
    Then set the wireless channels manually.. try 11, 6, 1 for 2.4ghz and try 36 or 40 at 5ghz.
    Tell us how that goes.

  • XI Adapter Engine Not picking the data from FTP Server ?t

    Hi All
    We have upgraded oracle in our landscape
    from 10.0.2.0.2  to 10.2.0.4.0
    we have Redwood System , which runs the interfaces
    Redwood initiates Our Satellite  XI  system to pick  the data from the ftp server
    but after the upgrade , it is not able to pick the data from the ftp server .
    when checked in the Satellite XI Adapter engine getting following error
    "XI Engine Error occurred while connecting to the ftp server  java.net.socketException:Connection Reset"
    but we are able to ftp from Satellite XI Adapter engine to  ftp  system manually  but why Satellite XI Adapter engine is not the
    picking the file (ie data) from the ftp server.
    Immediate Response  is highly appreciated
    Regards
    Edited by: sidharthmellam on Nov 23, 2009 11:54 AM

    Hi Sidharth,
    Please give me the FTP connection parameters mentioned in the channel.
    Did you try stopping and starting the channel ?
    If not please stop and start the channel.
    Also catch the default trace and paste it.
    Cheers...,
    Raghu.

  • SFTP listening channel is not picking the file from remote location

    Hi,
    We are facing an issue in B2B 11g while connecting to the remote trading partner through SFTP.
    It is not picking file from root as trading partner has given the file location as ' . ' root only.
    They have provided us one certificate file (.dat file) and I copied that file in one folder called .ssh (which i have created)
    and mentioned that certificate file location in B2B Listening channel configuration -> Private key = /home/srijna.saxena/.ssh
    I have configured the following parameters:
    Host Name,Port Number = 22 ,Polling interval =60 , path =., username ,password,confirm password,Private key =/home/srijna.saxena/.ssh , minimum age =120000
    Please let us know as soon as possible as it is pretty urgent, if any other parameter I need to set.
    It is showing the error in the logs :
    ' skipping endpoint as it is not for delivery channelPAT_KRR_SFTP '
    Please see the logs for the same:
    [2010-12-15T05:38:09.408-08:00] [soa_server1] [TRACE] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [SRC_CLASS: oracle.tip.b2b.system.DiagnosticService] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] [SRC_METHOD: synchedLog_J] QueryManager: getMDSSession: Enter Label null
    [2010-12-15T05:38:09.410-08:00] [soa_server1] [TRACE] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [SRC_CLASS: oracle.tip.b2b.system.DiagnosticService] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] [SRC_METHOD: synchedLog_J] QueryManager: getMDSSession: Enter Label null
    [2010-12-15T05:38:09.410-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: getting endpoint list for deliverychannel PAT_KRR_SFTP
    [2010-12-15T05:38:09.411-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: skipping endpoint as it is not for delivery channelPAT_KRR_SFTP
    [2010-12-15T05:38:09.411-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: skipping endpoint as it is not for delivery channelPAT_KRR_SFTP
    [2010-12-15T05:38:09.412-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: name = host value = 63.64.39.140
    [2010-12-15T05:38:09.412-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: name = port value = 22
    [2010-12-15T05:38:09.412-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: name = polling_interval value = 60
    [2010-12-15T05:38:09.413-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: name = folder value = .
    [2010-12-15T05:38:09.413-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: name = user value = sybron
    [2010-12-15T05:38:09.413-08:00] [soa_server1] [TRACE] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [SRC_CLASS: oracle.tip.b2b.system.DiagnosticService] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] [SRC_METHOD: synchedLog_J] oracle.tip.b2b.security.SecurityUtility - getPasswordCredentialAsString - In getPasswordCredentialAsString method - key: sYMReT249791539808797642
    [2010-12-15T05:38:09.414-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: name = password value = *****
    [2010-12-15T05:38:09.415-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: name = privateKey value = null
    [2010-12-15T05:38:09.415-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: name = passPhrase value = null
    [2010-12-15T05:38:09.416-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: name = useProxy value = false
    [2010-12-15T05:38:09.416-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: name = filename_format value = null
    [2010-12-15T05:38:09.416-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: name = directoryname_format value = null
    [2010-12-15T05:38:09.417-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: name = MinimumAge value = 60000
    [2010-12-15T05:38:09.417-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: name = archive_dir value = null
    [2010-12-15T05:38:09.417-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: name = preserve_filename value = false
    [2010-12-15T05:38:09.418-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: name = is_binary value = false
    [2010-12-15T05:38:09.418-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: name = marker value = false
    [2010-12-15T05:38:09.418-08:00] [soa_server1] [TRACE] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [SRC_CLASS: oracle.tip.b2b.system.DiagnosticService] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] [SRC_METHOD: synchedLog_J] Repository:Repository:getReceivingEndPointList() SFTP Using Password
    [2010-12-15T05:38:09.419-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: Putting sftp://63.64.39.140:22/.
    [2010-12-15T05:38:09.419-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: put: Putting sftp://63.64.39.140:22/. for delivery channel CHANNEL_lG-4556589010171674161
    [2010-12-15T05:38:09.419-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: skipping endpoint as it is not for delivery channelPAT_KRR_SFTP
    [2010-12-15T05:38:09.419-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: skipping endpoint as it is not for delivery channelPAT_KRR_SFTP
    [2010-12-15T05:38:09.419-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: skipping endpoint as it is not for delivery channelPAT_KRR_SFTP
    [2010-12-15T05:38:09.419-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: skipping endpoint as it is not for delivery channelPAT_KRR_SFTP
    [2010-12-15T05:38:09.420-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: skipping endpoint as it is not for delivery channelPAT_KRR_SFTP
    [2010-12-15T05:38:09.420-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: skipping endpoint as it is not for delivery channelPAT_KRR_SFTP
    [2010-12-15T05:38:09.420-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: skipping endpoint as it is not for delivery channelPAT_KRR_SFTP
    [2010-12-15T05:38:09.420-08:00] [soa_server1] [TRACE] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [SRC_CLASS: oracle.tip.b2b.system.DiagnosticService] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] [SRC_METHOD: synchedLog_J] QueryManager: getMDSSession: Enter Label null
    [2010-12-15T05:38:09.422-08:00] [soa_server1] [TRACE] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [SRC_CLASS: oracle.tip.b2b.system.DiagnosticService] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] [SRC_METHOD: synchedLog_J] QueryManager: getMDSSession: Enter Label null
    [2010-12-15T05:38:09.422-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: getting endpoint list for deliverychannel BUR_KRR_FTP
    [2010-12-15T05:38:09.422-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: skipping endpoint as it is not for delivery channelBUR_KRR_FTP
    [2010-12-15T05:38:09.422-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: skipping endpoint as it is not for delivery channelBUR_KRR_FTP
    [2010-12-15T05:38:09.423-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: skipping endpoint as it is not for delivery channelBUR_KRR_FTP
    [2010-12-15T05:38:09.423-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: skipping endpoint as it is not for delivery channelBUR_KRR_FTP
    [2010-12-15T05:38:09.423-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: skipping endpoint as it is not for delivery channelBUR_KRR_FTP
    [2010-12-15T05:38:09.424-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: name = host value = corp.burkhartdental.com
    [2010-12-15T05:38:09.424-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: name = polling_interval value = 60
    [2010-12-15T05:38:09.424-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: name = folder value = .
    [2010-12-15T05:38:09.425-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: name = user value = EDIKerr
    [2010-12-15T05:38:09.425-08:00] [soa_server1] [TRACE] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [SRC_CLASS: oracle.tip.b2b.system.DiagnosticService] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] [SRC_METHOD: synchedLog_J] oracle.tip.b2b.security.SecurityUtility - getPasswordCredentialAsString - In getPasswordCredentialAsString method - key: XTLbtCC5548752345566824008
    [2010-12-15T05:38:09.426-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: name = password value = *****
    [2010-12-15T05:38:09.426-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: name = channel_mask value = None
    [2010-12-15T05:38:09.427-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: name = cipher_suites value = null
    [2010-12-15T05:38:09.427-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: name = control_port value = null
    [2010-12-15T05:38:09.427-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: name = data_port value = null
    [2010-12-15T05:38:09.428-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: name = useProxy value = false
    [2010-12-15T05:38:09.428-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: name = filename_format value = "BURKHART_*"
    [2010-12-15T05:38:09.429-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: name = directoryname_format value = null
    [2010-12-15T05:38:09.429-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: name = sourcefile_encoding value = null
    [2010-12-15T05:38:09.429-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: name = minimum_age value = 60000
    [2010-12-15T05:38:09.430-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: name = archive_dir value = null
    [2010-12-15T05:38:09.430-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: name = preserve_filename value = false
    [2010-12-15T05:38:09.430-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: name = is_binary value = false
    [2010-12-15T05:38:09.431-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: name = type value = binary
    [2010-12-15T05:38:09.431-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: name = van value = false
    [2010-12-15T05:38:09.431-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: name = ccc value = false
    [2010-12-15T05:38:09.432-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: name = keep_connections value = false
    [2010-12-15T05:38:09.432-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: name = marker value = false
    [2010-12-15T05:38:09.432-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: name = timestamp_format value = null
    [2010-12-15T05:38:09.433-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: name = timestamp_offset value = null
    [2010-12-15T05:38:09.433-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: name = timestamp_source value = null
    [2010-12-15T05:38:09.433-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid:
    Regards,
    Divya

    Please refer to below thread:
    java.lang.NullPointerException for FTP listening channel in B2B

Maybe you are looking for

  • Hotmail push mail service on Nokia E7 temporary un...

    Hi i bought my nokia E7 three months ago and since last week my hotmail push mail service has stopped. I tried to solve by deleting mail box from my nokia E7 and re setup it. However, since last whole week it has been giving an error saying service t

  • Problem with transforming coordinate systems

    Hiho, i've got a problem with transforming coordinate systems. When I'm trying to transform a sdo_geometry object to another coordinate sytem and then back to the old system, the coordinates are not the same. Here's an example: StartSystem SRID is 82

  • Dual NICs and Caching Server

    Hi All - We currently have a Mac Mini and utilize its caching server functionality on our "normal" subnet.  We also have a "guest" subnet which is abstracted from our normal subnet (used for guest wireless devices/BYOT).  Would it be possible to use

  • Can't test development newsstand app

    Hi there,   Having recently acquired the enterprise functionality we'd like to upgrade our existing (multi folio with iTunes subscription) newsstand iPad/iPhone app to feature a custom storefront. We've been advised that this requires us to create a

  • Inforecord in APO inbound Q again and again !

    Even after excluding the info record and the associated materials and locations from all the integration models, the inbound Q error points to the same info record in all intergration model activation (one by one in desired order and also in backgrou