Message Header details ?

Hi Guys,
Our business partner is unable to process the MessageHeader, they proposed to use the MessageHeader that they send in the request message to fill in the header of the response. Is this  possible in the ccBPM.
I need to put everything that is under <SenderParty> in the Request into <RecipientParty> of the response, and everything that is under <RecipientParty> in the request under <SenderParty> of the response, we need to create an exact “mirror” MessageHeader regarding Party-Tags so that they can process the message successfully.
any help would be appreciated
Thanks,
srini

Hi Matias,
I have filled the sender & receiver party and service details in the receiver agreement and i have used java mapping to extract these runtime parameters.
I am able to see sender party details but the receiver party is null. I am using the following code to retreive the runtime parameters
Rceiver Party
String constant;
java.util.Map map;
map = container.getTransformationParameters();
constant = (String) map.get(StreamTransformationConstants.RECEIVER_PARTY);
return constant;
Receiver Party Schema
String constant;
java.util.Map map;
map = container.getTransformationParameters();
constant = (String) map.get(StreamTransformationConstants.RECEIVER_PARTY_SCHEME);
return constant;
any help would be appreciated
Thanks,
srini

Similar Messages

  • Access Message header details in Adapter module

    Hi
    I tried to find out solution for accessing sender service and namespace in adapter module...However I couldn't make out correct procedure to access the same. Incase any one aware of accessing sender service details in Module, please let me know...
    Thanks a lot...

    Hi Yadagiri,
    It is possible to acess the Service Name and user Interfaces Please check the API provided for the Module Development.
    https://help.sap.com/javadocs/pi/SP3/xpi/index.html
    Thanks
    Sunil Singh

  • Header Details of Actionable Message

    Hi,
    Can it possible to remove actionable message Header details while displaying message details?
    Madhu

    Venkata,
    Please let us know if you still need help w/ this post.
    Thank you.

  • Significance of Message header in SAP Enterprise Service

    Hi All,
    What is the significance of the MessageHeader in an SAP Enterprise Service?
    regards,
    Piyush

    Hi Pisyush.
    Are you talking aboiut PI message Header or Enterprise Service Header??
    Messahe Header hold the information about Basic details like to Identify the service.
    If you are trying to call one enterprise service from one application it could be Composite application or VC or NWDS using some proxy class or what ever.you give the message header details in proxyy class,so it direclty make a call to Enterprise Service.
    it is my understanding.
    Regards,
    RAJ

  • Merging Header, detail messages

    hello all..
    I'm receiving 2 files from this system.and im merging them using BPM, thats just fine.
    The problem is that the first file acts like a header, and can have several records...like this...
    _HEADER_
    1,TEXTA
    2,TEXTB
    3,TEXTC
    4,TEXTD
    and the second one can also have several records, but it can be less than the first one.
    _DETAIL_
    3,*XXX*
    4,*YYY*
    I need to the messages in a way that they endup with a father child relationship like this.
    HEADER
    1,TEXTA
    2,TEXTB
    3,TEXTC
              *XXX*
    4,TEXTD
             *YYY*
    Any ideas on how to accomplish this???
    Points will be rewarded of course.
    Thanks in advance.

    >
    Swarup Sawant wrote:
    > If you can share the exact structure of source and target side Messages then probably I could try to convert it in source code. But I will suggest to try the above logic.
    >
    > Thanks
    > Swarup
    Hi... i think that i got your point, and i will try to do something like that...
    if you can give me a hand with the code it will be wellcome.
    Bellow is the exact source and target structure.
    <ns0:">
          <Header>
             <NumAsiento/>
             <Cuenta/>
             <Fecha2/>
             <Leyenda/>
             <DebeHaber/>
             <Importe/>
             <Cantidad/>
             <Dolares/>
             <vNumItem/>
          </Header>
          <Details>
             <NumAsiento/>
             <NumItem/>
             <CentroCosto/>
             <Porcentaje/>
          </Details>
    </ns0:>
    and this is the desired message.
    <ns0:">
          <Header>
             <NumAsiento/>
             <Cuenta/>
             <Fecha2/>
             <Leyenda/>
             <DebeHaber/>
             <Importe/>
             <Cantidad/>
             <Dolares/>
             <vNumItem/>
             <Details>
                <NumAsiento/>
                <NumItem/>
                <CentroCosto/>
                <Porcentaje/>
             </Details>
          </Header>
    </ns0:>
    thanks again.

  • Issue in displaying header details in ALV report

    Hi,
    I have used slis_t_listheader and REUSE_ALV_COMMENTARY_WRITE to display the header details in ALV report.I want the details to be displayed as below.
    Requester : ----------------------                                                                               Page: 1
    Program: -----------------------                                                                                Date:---------
                                                                     Title of Report
    But when I use the structure slis_t_listheader to display the header details,all the fields are coming one below the other.
    How can I get the fields as shown in the above format
    Edited by: Abaper12345 on Jun 25, 2009 7:54 AM

    Hi,
    Go through following code... its showing the data exactly the way you want....
    REPORT  TEST3.
    TYPE-POOLS:slis.
    TABLES:MARA.
    *Type Declaration
    TYPES:BEGIN OF t_mara,
          matnr TYPE mara-matnr,
          ersda TYPE mara-ersda,
          ernam TYPE mara-ernam,
          END OF t_mara.
    *Internal Table
    data:it_mara type standard table of t_mara.
    *Work Area
    data:wa_mara type t_mara.
    DATA:i_repid TYPE sy-repid .
    i_repid = sy-repid.
    *Declaration for field catalog
    DATA : fcat TYPE slis_t_fieldcat_alv,
           wa_fcat TYPE slis_fieldcat_alv.
    *Declaration for Layout
    data : WA_LAYOUT type SLIS_LAYOUT_ALV.
    *Initializing ColumnWidth_Optimize For Layout
      WA_LAYOUT-COLWIDTH_OPTIMIZE = 'X'.
    START-OF-SELECTION
    START-OF-SELECTION.
    *Fetching data into internal tables
      PERFORM get_data.
    *Buil Fieldcatalog
      PERFORM build_fcat.
    *Display ALV Report
      PERFORM alv_display.
    *Build Fieldcat
    FORM build_fcat .
      wa_fcat-tabname = 'IT_MARA'.
      wa_fcat-fieldname = 'MATNR'.
      wa_fcat-inttype = 'C'.
      wa_fcat-seltext_m = 'Material Number'.
      wa_fcat-outputlen = 25.
      wa_fcat-col_pos = 1.
      APPEND wa_fcat TO fcat.
      CLEAR wa_fcat.
      wa_fcat-tabname = 'IT_MARA'.
      wa_fcat-fieldname = 'ERSDA'.
      wa_fcat-inttype = 'C'.
      wa_fcat-seltext_m = 'Date'.
      wa_fcat-outputlen = 25.
      wa_fcat-col_pos = 1.
      APPEND wa_fcat TO fcat.
      CLEAR wa_fcat.
      wa_fcat-tabname = 'IT_MARA'.
      wa_fcat-fieldname = 'ERNAM'.
      wa_fcat-inttype = 'C'.
      wa_fcat-seltext_m = 'User'.
      wa_fcat-outputlen = 25.
      wa_fcat-col_pos = 1.
      APPEND wa_fcat TO fcat.
      CLEAR wa_fcat.
      endform.
    *&      Form  GET_DATA
          text
    -->  p1        text
    <--  p2        text
    form GET_DATA .
    select matnr ersda ernam from mara into table it_mara.
    endform.                    " GET_DATA
    *&      Form  ALV_DISPLAY
          text
    -->  p1        text
    <--  p2        text
    form ALV_DISPLAY .
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
      I_INTERFACE_CHECK                 = ' '
      I_BYPASSING_BUFFER                = ' '
      I_BUFFER_ACTIVE                   = ' '
       I_CALLBACK_PROGRAM                = i_repid
      I_CALLBACK_PF_STATUS_SET          = ' '
      I_CALLBACK_USER_COMMAND           = ' '
      I_CALLBACK_TOP_OF_PAGE            = ' '
       I_CALLBACK_HTML_TOP_OF_PAGE       = 'HTML_TOP_OF_PAGE'
      I_CALLBACK_HTML_END_OF_LIST       = ' '
      I_STRUCTURE_NAME                  =
      I_BACKGROUND_ID                   = ' '
      I_GRID_TITLE                      =
      I_GRID_SETTINGS                   =
      IS_LAYOUT                         =
       IT_FIELDCAT                       = fcat
      TABLES
        t_outtab                          = it_mara
    EXCEPTIONS
       PROGRAM_ERROR                     = 1
       OTHERS                            = 2
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    endform.                    " ALV_DISPLAY
    *&      Form  html_top_of_page " I_CALLBACK_HTML_TOP_OF_PAGE  "
    FORM html_top_of_page USING document TYPE REF TO cl_dd_document.
    CALL METHOD document->add_text
      EXPORTING
        text          = 'Program'
        sap_color     = document->list_group
        sap_fontstyle = document->standard
       sap_emphasis  = document->strong.
    CALL METHOD document->new_line
      EXPORTING
        repeat = 1
    CALL METHOD document->add_text
      EXPORTING
        text          = 'Requester'
        sap_color     = document->list_group
        sap_fontstyle = document->standard
       sap_emphasis  = document->strong.
    CALL METHOD document->new_line
      EXPORTING
        repeat = 1
    CALL METHOD document->add_gap
      EXPORTING
         width      = 125
    CALL METHOD document->add_text
      EXPORTING
        text          = 'This Is Test Data'
        sap_color     = document->list_group
       sap_fontsize  = document->LARGE
       sap_fontstyle = document->standard
       sap_emphasis  = document->strong.
    ENDFORM.                    "HTML_TOP_OF_PAGE
    Thanks & Regards
    Ashu SIngh

  • Retrieve the message put in message header using variable substitution

    hi,
    i am using dynamic configuration to put some information in the message header.is it possible to retrieve the message using variable substitution and if it is possible then how it be done using variable substitution.
    regards,
    Meenakshi

    Variable Substitution does not allow you to read all the messaeg header elements only some of them can be read/ access....for more info on how to read the message header elements refer: /people/jin.shin/blog/2007/04/27/sap-netweaver-xi-variable-substitution-with-adapter-specific-message-attributes-via-dynamicconfigurationbean
    From the above blog:
    When using Variable Substitution, only certain standard message header attributes can be used/accessed (e.g. sender_party,
    sender_service, receiver_party, receiver_service, interface_name, interface_namespace, message_id)
    Better use Dynamic Configuration to read the parameters.
    I am wondering why you need to read the message header parameters when you are putting them using Dynamic Configuration.....cant you just get the details from the dynamic configuration UDF itself?
    Regards,
    Abhishek.
    Edited by: abhishek salvi on Dec 10, 2009 1:18 PM

  • Envelope missing in SOAP message header (SAP XI Extension)

    I have scenario where in I am sending a file from XI to PCK. BUt i am getting a following error.
    <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    - <!--  Call Adapter
      -->
    - <SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="">
      <SAP:Category>XIProtocol</SAP:Category>
      <SAP:Code area="PARSER">ITEM_MISSING</SAP:Code>
      <SAP:P1>Envelope</SAP:P1>
      <SAP:P2 />
      <SAP:P3 />
      <SAP:P4 />
      <SAP:AdditionalText />
      <SAP:ApplicationFaultMessage namespace="" />
      <SAP:Stack>XML tag Envelope missing in SOAP message header (SAP XI Extension)</SAP:Stack>
      <SAP:Retry>M</SAP:Retry>
      </SAP:Error>
    I am enclosing the file i am trying to send.
    <?xml version="1.0" encoding="UTF-8" ?>
    - <ns0:CFP_SENDER_MT xmlns:ns0="HTTP://PCKXI.WORLDBANK.ORG">
    - <SEND>
      <TF_Number>12</TF_Number>
      <TF_Desc>1212</TF_Desc>
      </SEND>
      </ns0:CFP_SENDER_MT>
    Can somebody please enlighten me about this error? Points would be rewarded immediately
    Regards,
    Manish

    Dear Manish,
    quite often the reason for this kind of error
    is the fact that the receiver of the XI message is
    returning a http response to the Integration Server.
    As of XI3.0 SP21 / PI7.0 SP13 this response
    is also properly parsed and visible in the error
    header of the XI message.
    For almost all prior support package levels an
    advanced correction is available as per OSS note:
    1064346 Improved error output for connection problems
    Please check whether this applies to your system.
    If so, you will see detailed information on the error
    in the error header object of the XI message as soon
    as this issue re-occurs.
    Best Regards,
    Harald Keimer
    XI Development Support
    SAP AG, Walldorf

  • IHC errors valid clearing partner not found and no header details found while idoc creation after f110

    IHC errors :valid clearing partner not found and no header details found while idoc creation after f110
    Please let me know where the config is missing for ihc automatic payment program.in we02 status is not 53.
    Please help

    Hi
    Please share the error message in the IDOC.
    If the error message is IHC204 "No valid clearing partner was found", it may be due to the missing correct configuration in Set Up Creation of Payment Requests for Inbound IDoc in FI, which links the clearing partner, ALE logical system partner type and IHC account number.
    Cheers
    taro

  • Discovery response message header encapsulation failed

    Hey All,
    i get this from an AP any ideas why this may be happening?
    Last Error Occurred
    Failed to send Lwapp discovery response
    Last Error Occurred Reason
    Discovery response message header encapsulation failed
    Last Join Error Timestamp
    Sep 19 15:56:36.771
    running WLC version
    7.0.98.0

    This is what it tells me:
    flashfs[0]: 4 files, 2 directories
    flashfs[0]: 0 orphaned files, 0 orphaned directories
    flashfs[0]: Total bytes: 7741440
    flashfs[0]: Bytes used: 1755648
    flashfs[0]: Bytes available: 5985792
    flashfs[0]: flashfs fsck took 9 seconds.
    Reading cookie from flash parameter block...done.
    Base ethernet MAC Address: 00:13:19:c8:f9:b6
    Initializing ethernet port 0...
    Reset ethernet port 0...
    Reset done!
    ethernet link up, 100 mbs, full-duplex
    Ethernet port 0 initialized: link is up
    Loading "flash:/c1200-rcvk9w8-mx/c1200-rcvk9w8-mx"...################################################################################################################################################################################
    File "flash:/c1200-rcvk9w8-mx/c1200-rcvk9w8-mx" uncompressed and installed, entry point: 0x3000
    executing...
                  Restricted Rights Legend
    Use, duplication, or disclosure by the Government is
    subject to restrictions as set forth in subparagraph
    (c) of the Commercial Computer Software - Restricted
    Rights clause at FAR sec. 52.227-19 and subparagraph
    (c) (1) (ii) of the Rights in Technical Data and Computer
    Software clause at DFARS sec. 252.227-7013.
               cisco Systems, Inc.
               170 West Tasman Drive
               San Jose, California 95134-1706
    Cisco IOS Software, C1200 Software (C1200-RCVK9W8-M), Version 12.3(7)JX9, RELEASE SOFTWARE (fc1)
    Technical Support: http://www.cisco.com/techsupport
    Copyright (c) 1986-2007 by Cisco Systems, Inc.
    Compiled Tue 17-Jul-07 00:44 by tinhuang
    Image text-base: 0x00003000, data-base: 0x0033DA20
    Initializing flashfs...
    flashfs[1]: 4 files, 2 directories
    flashfs[1]: 0 orphaned files, 0 orphaned directories
    flashfs[1]: Total bytes: 7741440
    flashfs[1]: Bytes used: 1755648
    flashfs[1]: Bytes available: 5985792
    flashfs[1]: flashfs fsck took 2 seconds.
    flashfs[1]: Initialization complete....done Initializing flashfs.
    cisco AIR-AP1231G-A-K9     (PowerPC405GP) processor (revision B0) with 14838K/1536K bytes of memory.
    Processor board ID FTX0907J0E8
    PowerPC405GP CPU at 196Mhz, revision number 0x0145
    Last reset from power-on
    1 FastEthernet interface
    32K bytes of flash-simulated non-volatile configuration memory.
    Base ethernet MAC Address: 00:13:19:C8:F9:B6
    Part Number                          : 73-8704-08
    PCA Assembly Number                  : 800-23211-09
    PCA Revision Number                  : A0
    PCB Serial Number                    : FOC09024TMB
    Top Assembly Part Number             : 800-23304-08
    Top Assembly Serial Number           : FTX0907J0E8
    Top Revision Number                  : A0
    Product/Model Number                 : AIR-AP1231G-A-K9
    Press RETURN to get started!
    *Mar  1 00:00:04.402: %SYS-5-RESTART: System restarted --
    Cisco IOS Software, C1200 Software (C1200-RCVK9W8-M), Version 12.3(7)JX9, RELEASE SOFTWARE (fc1)
    Technical Support: http://www.cisco.com/techsupport
    Copyright (c) 1986-2007 by Cisco Systems, Inc.
    Compiled Tue 17-Jul-07 00:44 by tinhuang
    *Mar  1 00:00:05.380: %LINK-3-UPDOWN: Interface FastEthernet0, changed state to up
    *Mar  1 00:00:06.380: %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0, changed state to up
    ap>
    ap>en
    ap#debug lwapp console cli
    LWAPP console CLI allow/disallow debugging is on
    ap#debug lwapp client event
    LWAPP Client EVENT display debugging is on
    ap#debug lwapp client error
    LWAPP Client ERROR display debugging is on
    ap#debug capwap client event
               ^
    % Invalid input detected at '^' marker.
    ap#debug capwap client error
               ^
    % Invalid input detected at '^' marker.
    ap#
    ap#
    ap#
    ap#
    *Mar  1 00:00:23.416: LWAPP_CLIENT_EVENT: lwapp_ip_address_change - ADDING IP 10.0.0.1, 255.255.255.0; resolvemethod 1, ip_dhcp_addr 0
    *Mar  1 00:00:23.419: LWAPP_CLIENT_EVENT: lwapp_set_ip_address - Seting Static IP 10.0.0.1        255.255.255.0   on FastEthernet0
    *Mar  1 00:00:23.419: LWAPP_CLIENT_EVENT: lwapp_set_ip_address - Seting Default Gateway IP to 10.0.0.2
    *Mar  1 00:00:23.425: LWAPP_CLIENT_EVENT: spamResolveStaticGateway  - gateway NOT found
    *Mar  1 00:00:23.425: %LWAPP-5-CHANGED: LWAPP changed state to DISCOVERY
    *Mar  1 00:00:23.431: LWAPP_CLIENT_EVENT: parse_lwapp_config: hostname AP0013.19c8.f9b6
    end
    *Mar  1 00:00:23.447: LWAPP_CLIENT_EVENT: lwapp_crypto_init_mic_keys_and_certs : MIC not present
    *Mar  1 00:00:23.453: LWAPP_CLIENT_EVENT: lwapp_crypto_init_ssc_keys_and_certs found key(1) label CISCO_IOS_SSC_Keys
    *Mar  1 00:00:23.458: LWAPP_CLIENT_EVENT: lwapp_crypto_init_ssc_keys_and_certs Certs Keylen 294
    *Mar  1 00:00:23.459: LWAPP_CLIENT_EVENT: lwapp_crypto_init_ssc_keys_and_certs Public Key Match Found CISCO_IOS_SSC_Keys
    *Mar  1 00:00:24.036: LWAPP_CLIENT_EVENT: spamResolveStaticGateway  - gateway NOT found
    *Mar  1 00:00:34.036: LWAPP_CLIENT_EVENT: spamHandleDiscoveryTimer: Could not discover any MWAR
    *Mar  1 00:00:34.036: LWAPP_CLIENT_EVENT: spamResolveStaticGateway  - gateway NOT found
    *Mar  1 00:00:44.036: LWAPP_CLIENT_EVENT: spamHandleDiscoveryTimer: Could not discover any MWAR
    *Mar  1 00:00:44.036: LWAPP_CLIENT_EVENT: spamResolveStaticGateway  - gateway NOT found
    *Mar  1 00:00:54.036: LWAPP_CLIENT_EVENT: spamHandleDiscoveryTimer: Could not discover any MWAR
    *Mar  1 00:00:54.036: LWAPP_CLIENT_EVENT: spamResolveStaticGateway  - gateway NOT found
    *Mar  1 00:01:04.036: LWAPP_CLIENT_EVENT: spamHandleDiscoveryTimer: Could not discover any MWAR
    *Mar  1 00:01:04.036: LWAPP_CLIENT_EVENT: spamResolveStaticGateway  - gateway NOT found
    *Mar  1 00:01:14.036: LWAPP_CLIENT_EVENT: spamHandleDiscoveryTimer: Could not discover any MWAR
    *Mar  1 00:01:14.036: LWAPP_CLIENT_EVENT: spamResolveStaticGateway  - gateway NOT found
    *Mar  1 00:01:24.036: LWAPP_CLIENT_EVENT: spamHandleDiscoveryTimer: Could not discover any MWAR
    *Mar  1 00:01:24.036: LWAPP_CLIENT_EVENT: spamResolveStaticGateway  - gateway NOT found
    *Mar  1 00:01:34.036: LWAPP_CLIENT_EVENT: spamHandleDiscoveryTimer: Could not discover any MWAR
    *Mar  1 00:01:34.036: LWAPP_CLIENT_EVENT: spamResolveStaticGateway  - gateway NOT found
    *Mar  1 00:01:44.036: LWAPP_CLIENT_EVENT: spamHandleDiscoveryTimer: Could not discover any MWAR
    *Mar  1 00:01:44.036: LWAPP_CLIENT_EVENT: spamResolveStaticGateway  - gateway NOT found
    *Mar  1 00:01:54.036: LWAPP_CLIENT_EVENT: spamHandleDiscoveryTimer: Could not discover any MWAR
    *Mar  1 00:01:54.036: LWAPP_CLIENT_EVENT: spamResolveStaticGateway  - gateway NOT found
    *Mar  1 00:02:04.036: LWAPP_CLIENT_EVENT: spamHandleDiscoveryTimer: Could not discover any MWAR
    *Mar  1 00:02:04.036: LWAPP_CLIENT_EVENT: spamResolveStaticGateway  - gateway NOT found
    *Mar  1 00:02:04.389: LWAPP_CLIENT_EVENT: lwapp_check_image_good: image is good now
    *Mar  1 00:02:14.036: LWAPP_CLIENT_EVENT: spamHandleDiscoveryTimer: Could not discover any MWAR
    *Mar  1 00:02:14.036: LWAPP_CLIENT_EVENT: spamResolveStaticGateway  - gateway NOT found
    AP0013.19c8.f9b6#
    *Mar  1 00:02:24.036: LWAPP_CLIENT_EVENT: spamHandleDiscoveryTimer: Could not discover any MWAR
    *Mar  1 00:02:24.036: LWAPP_CLIENT_EVENT: spamResolveStaticGateway  - gateway NOT found
    *Mar  1 00:02:34.036: LWAPP_CLIENT_EVENT: spamHandleDiscoveryTimer: Could not discover any MWAR
    *Mar  1 00:02:34.036: LWAPP_CLIENT_EVENT: spamResolveStaticGateway  - gateway NOT found
    *Mar  1 00:02:44.036: LWAPP_CLIENT_EVENT: spamHandleDiscoveryTimer: Could not discover any MWAR
    *Mar  1 00:02:44.036: LWAPP_CLIENT_EVENT: spamResolveStaticGateway  - gateway NOT found
    *Mar  1 00:02:54.036: LWAPP_CLIENT_EVENT: spamHandleDiscoveryTimer: Could not discover any MWAR
    *Mar  1 00:02:54.036: LWAPP_CLIENT_EVENT: spamResolveStaticGateway  - gateway NOT found
    *Mar  1 00:03:04.036: LWAPP_CLIENT_EVENT: spamHandleDiscoveryTimer: Could not discover any MWAR
    *Mar  1 00:03:04.036: LWAPP_CLIENT_EVENT: spamResolveStaticGateway  - gateway NOT found
    *Mar  1 00:03:14.036: LWAPP_CLIENT_EVENT: spamHandleDiscoveryTimer: Could not discover any MWAR
    *Mar  1 00:03:14.036: LWAPP_CLIENT_EVENT: spamResolveStaticGateway  - gateway NOT found
    *Mar  1 00:03:24.036: LWAPP_CLIENT_EVENT: spamHandleDiscoveryTimer: Could not discover any MWAR
    *Mar  1 00:03:24.036: LWAPP_CLIENT_EVENT: spamResolveStaticGateway  - gateway NOT found
    *Mar  1 00:03:34.036: LWAPP_CLIENT_EVENT: spamHandleDiscoveryTimer: Could not discover any MWAR
    *Mar  1 00:03:34.036: LWAPP_CLIENT_EVENT: spamResolveStaticGateway  - gateway NOT found
    *Mar  1 00:03:44.036: LWAPP_CLIENT_EVENT: spamHandleDiscoveryTimer: Could not discover any MWAR
    *Mar  1 00:03:44.036: LWAPP_CLIENT_EVENT: spamResolveStaticGateway  - gateway NOT found
    *Mar  1 00:03:44.036: LWAPP_CLIENT_EVENT: spamResolveStaticGateway  - gateway NOT found
    *Mar  1 00:03:44.036: LWAPP_CLIENT_EVENT: spamStartDhcp - AP IP FALLBACK TO DHCP
    Translating "CISCO-LWAPP-CONTROLLER.org.org"...domain server (10.1.0.254)
    *Mar  1 00:03:53.074: LWAPP_CLIENT_EVENT: lwapp_ip_address_change - ADDING IP 10.0.1.254, 255.255.255.0; resolvemethod A, ip_dhcp_addr 1
    *Mar  1 00:03:53.181: %DHCP-6-ADDRESS_ASSIGN: Interface FastEthernet0 assigned DHCP address 10.0.1.254, mask 255.255.255.0, hostname AP0013.19c8.f9b6
    [OK]
    *Mar  1 00:03:53.181: LWAPP_CLIENT_EVENT: lwapp_ip_address_change - ADDING IP 10.0.1.254, 255.255.255.0; resolvemethod A, ip_dhcp_addr 1
    *Mar  1 00:03:54.057: LWAPP_CLIENT_EVENT: spamHandleDiscoveryTimer: Could not discover any MWAR
    *Mar  1 00:03:54.057: LWAPP_CLIENT_EVENT: spamResolveStaticGateway  - gateway found
    *Mar  1 00:03:54.183: LWAPP_CLIENT_EVENT: lwapp_name_lookup - add (0) 10.0.254.253
    *Mar  1 00:03:54.183: LWAPP_CLIENT_EVENT: lwapp_name_lookup - add (1) 10.0.254.254
    *Mar  1 00:04:04.057: LWAPP_CLIENT_EVENT: spamHandleDiscoveryTimer: Could not discover any MWAR
    *Mar  1 00:04:04.057: LWAPP_CLIENT_EVENT: spamResolveStaticGateway  - gateway NOT found
    *Mar  1 00:04:15.063: %LWAPP-5-CHANGED: LWAPP changed state to JOIN
    *Mar  1 00:04:20.063: LWAPP_CLIENT_ERROR_DEBUG: spamHandleJoinTimer: Did not recieve the Join response
    *Mar  1 00:04:20.063: LWAPP_CLIENT_ERROR_DEBUG: No more AP manager IP addresses remain.
    *Mar  1 00:04:20.063: %SYS-5-RELOAD: Reload requested by LWAPP CLIENT. Reload Reason: DID NOT GET JOIN RESPONSE.
    *Mar  1 00:04:20.064: %LWAPP-5-CHANGED: LWAPP changed state to DOWN
    And this is on the controller:
    (Cisco Controller) >show ap join stats summary 00:13:19:c8:f9:b6
    Is the AP currently connected to controller................ No
    Time at which the AP joined this controller last time...... Not applicable
    Type of error that occurred last........................... Failed to send Lwapp discovery response
    Reason for error that occurred last........................ Discovery response message header encapsulation failed
    Time at which the last join error occurred................. Nov 29 17:23:35.793
    (Cisco Controller) >show ap join stats detailed 00:13:19:c8:f9:b6
    Discovery phase statistics
    - Discovery requests received.............................. 97
    - Successful discovery responses sent...................... 94
    - Unsuccessful discovery request processing................ 100
    - Reason for last unsuccessful discovery attempt........... Discovery response message header encapsulation failed
    - Time at last successful discovery attempt................ Dec 03 20:07:22.259
    - Time at last unsuccessful discovery attempt.............. Nov 29 17:23:35.793
    Join phase statistics
    - Join requests received................................... 0
    - Successful join responses sent........................... 0
    - Unsuccessful join request processing..................... 0
    - Reason for last unsuccessful join attempt................ Not applicable
    - Time at last successful join attempt..................... Not applicable
    - Time at last unsuccessful join attempt................... Not applicable
    Configuration phase statistics
    - Configuration requests received.......................... 0
    - Successful configuration responses sent.................. 0
    - Unsuccessful configuration request processing............ 0
    - Reason for last unsuccessful configuration attempt....... Not applicable
    - Time at last successful configuration attempt............ Not applicable
    --More-- or (q)uit
    - Time at last unsuccessful configuration attempt.......... Not applicable
    Last AP message decryption failure details
    - Reason for last message decryption failure............... Not applicable
    Last AP disconnect details
    - Reason for last AP connection failure.................... Not applicable
    - Last AP disconnect reason................................ Not applicable
    Last join error summary
    - Type of error that occurred last......................... Failed to send Lwapp discovery response
    - Reason for error that occurred last...................... Discovery response message header encapsulation failed
    - Time at which the last join error occurred............... Nov 29 17:23:35.793
    AP disconnect details
    - Reason for last AP connection failure.................... Not applicable
                                                                               Ethernet Mac : 00:00:00:00:00:00  Ip Address : 10.0.1.254
    (Cisco Controller) >

  • How to acces the filename from Message Header during variable substitution

    Hi,
    We need to access the attribute filename from Message Header during Variable Substitution.We are able to access the following attributes of Message Header
    sender_party, sender_service, receiver_party, receiver_service, interface_name, interface_namespace,
    message_id (message ID with hyphens, for example 9fbe1ff1-9a0d-11d9-8665-cbf10a126331)
    message_id_hex (message ID in hexadecimal format, for example 9fbe1ff19a0d11d98665cbf10a126331)
    For example, if we want to specify the interface name from the message header in the target directory or in the file name scheme, we enter message:interface_name as the reference.
    In the same way i need to access the filename which we get in the Message Header(which we get in the Message Header when we check the Adaptor specific message properties and filename in sender CC).Any suggestions on the same
    Thanks and Regards,
    Bhargav
    Message was edited by:
            bhargav gundabolu
    Message was edited by:
            bhargav gundabolu

    Hi Bhargav,
    Use this UDF to retreive the file name from the Dynamic Configuration Payload in the mapping.
    getFileName(UDF) -
    > Filename(node in the target structure).
    public String getFileName(Container container)
       //write your code here
    DynamicConfiguration conf = (DynamicConfiguration) container.getTransformationParameters().get(StreamTransformationConstants.DYNAMIC_CONFIGURATION);
    DynamicConfigurationKey key = DynamicConfigurationKey.create("http://sap.com/xi/XI/System/File","FileName");
    String ourSourceFileName = conf.get(key);
    return  ourSourceFileName; 
    Create a node in the target structure top hold the filename returned by the UDF.
    Now your payload will have the filename along with the actual data.
    U can use the variable substution now as u use for the other data in the payload since the filename is now a part of your payload.
    Regards
    San

  • Problem in mapping xml data with header details from IPM 11g to BPEL

    Hi,
    I want to map xml data as a supporting content from IPM application to BPEL.
    My xml is
    <?xml version="1.0" encoding="utf-8"?>
    <DocumentFile xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://tempuri.org/Document.xsd">
    <Document DocumentType="Invoice">
    <DocumentImage>
    <Filename>\\10.205.0.209\Img\10883212.TIF</Filename>
    </DocumentImage>
    </DocumentFile>
    If I remove header details from root element <DocumentFile> i.e. modified xml is
    <DocumentFile>
    <Document DocumentType="Invoice">
    <DocumentImage>
    <Filename>\\10.205.0.209\Img\10883212.TIF</Filename>
    </DocumentImage>
    </DocumentFile>
    it works fine but i need to pass header details as well.
    Please suggest.
    Thanks,
    Priya

    Hi Naveen,
    In sxmb_moni the content transmitted to the adapter(RFC)is as follows
    <?xml version="1.0" encoding="UTF-8" ?>
    - <ns:ZRFID_EQUIP xmlns:ns="urn:sap-com:document:sap:rfc:functions">
    - <RECORDS>
    - <item>
      <FLOC>f1-01-01</FLOC>
      <RFID_NO>I006</RFID_NO>
      </item>
    - <item>
      <FLOC>f1-01-02</FLOC>
      <RFID_NO>I002</RFID_NO>
      </item>
    - <item>
      <FLOC>f1-01-03</FLOC>
      <RFID_NO>I003</RFID_NO>
      </item>
    - <item>
      <FLOC>f1-01-04</FLOC>
      <RFID_NO>I004</RFID_NO>
      </item>
    - <item>
      <FLOC>f1-01-05</FLOC>
      <RFID_NO>I005</RFID_NO>
      </item>
    - <item>
      <FLOC>f1-01-06</FLOC>
      <RFID_NO>I001</RFID_NO>
      </item>
      </RECORDS>
      </ns:ZRFID_EQUIP>
    At r/3 side the field floc and rfid_no gets mapped to floc which is of char30
    eg floc=f1-01-01I006
       rfid_no=

  • Accessing SAP:HopList element in message header from JAVA-mapping

    Dear Experts,
    Is it possible to access the SAP:HopList element from message header in JAVA-mapping? 
    I need this to get the list off all receivers of current message (I have a ReceiverDetermination with two receivers, without any conditions, so both receivers are receiving each message and in InterfaceDetermination to one of the receivers I have a JAVA-mapping, in which I need to know the name of another receiver. And the SAP:HopList is containing this information).
    Or maybe where is some other solution?
    Best Regards,
    Artsiom Anichenka

    That's tricky, since the proper way of doing it would be through BPM.
    Anyway, if you expose your XI interface as a WebService (Soap sender cc) you could access it through Mapping Lookup (lookup works for RFC, DB and Soap lookups). Check https://help.sap.com/javadocs/NW04S/current/pi/index.html
    But be aware that Mapping Lookup API is not intended for inserts/updates (since it doesn't contain any transacational handling), just mere lookups (selects in tables), so I'm not sure it is the best approach for your case.
    Regards,
    Henrique.

  • In BDC VA02 i am uploading header details in BILLING PLAN tab.

    Hi Friends,
    In BDC VA02 i am uploading header details in BILLING PLAN tab.
    I am having sales order no in flat file.
    While i am clicking BILLING PLAN tab its showing 1 POPUP screen for Milestobe For billing plan (INPUT AS NETWORK NO).
    Some sales order nos this popup is not coming.
    How to code this bdc?

    CLOSED

  • ALV list Header details scattered

    Hi All,
    I have a ALV-LIST report output but the header details displayed are scattered in output. Can you suggest how to align all deatils properly aligned.

    Hi again,
    1. first of all how are u writing / displaying
       the alv header ?
    2. using documentary write ?
       then also, u can use one variable of
      length 100 and use this concept.
    3. If u are using top_of_page
      event,
      in this event, WE CAN use WRITE.
      (i have used it, and it
      works fantastic)
                  (not in case of alv grid)
    4. My point is, what ever u are using,
       use on variable of length 100.
      WRITE value INTO variable.
      using offset
      and then proceed further.
    regards,
    amit m.

Maybe you are looking for

  • Can't  translate a selfmade Cube with MouseTranslate!

    hello, 1st i'm very new to java3d, so please forgive me my unexpierience. Why is it impossible to translate (via MouseTranslate) the cube in the middle of the view? MouseRotation seems to be work fine. (i hope the pasted code is not to much, feel fre

  • I can't install Creative Cloud on my Windows 8.1 PC.

    I have been trying to install the creative cloud application on my computer, using the creative cloud set up tool. It gets about halfway and then says, 'Creative Cloud desktop failed to install. (Error code: 1) Searching through these forums and on g

  • U-Exit, BADi for MM01/MM03

    Hi, I was thinking if there is any enhacement for my scenario : Thing is quiet simple, user wants to change some data of the material index in MM02, but because there are some limitations f.e werks, lgort, etc. user must to click appropriate tabstrip

  • App Store Featured page stuck

    I try to access featured page on App Store. It always show my itemd you've requested is not currently available in the Thai Store. I try to sign out and sign in again. it is the same. Is any apple support here? I need your hand. Thanks,

  • Query timeout limits

    How is it possible to implement limits on query timeouts, so that excessive query runtimes are avoided? We want to automatically stop queries that have executed for more than ten minutes. Regards, Frederick