How to populate the Sender and Receiver GLN/ID  in the Seeburger Message Tracking

HI Team,
Scenario :
ECC--> PI--> Party
Sending GS1 XML Message to party (Not EDI).  Sender Party and Receiver Party appearing as expected.
BUT User expecting to see the Sender GLN and Receiver GLN in Seeburger Message Tracking.
It should be dynamically picked form GS1 Message. Should Appear in RED BOXES Shown below.What Module Parameters Should be used for this.
I have Tried destTargetMsg  and destSourceMsg. But did'nt work.
can anyone please Help

Hi Veman
You are correct. For XML to XML, you do not need BIC module.
However, since you are not using BIC module, you will not be able to enrich the metadata using the archiveXI parameter during processing at the adapter framework.
Another place to enrich the metadata would be during message mapping. You can call a custom UDF to populate the metadata and create an entry in Seeburger Message Tracking.
Please refer to the Seeburger manual for Message Tracking Function for more details on how to create the UDF.
Rgds
Eng Swee

Similar Messages

  • I am having trouble with iMessage being activated. It has worked up until yesterday and now won't activate and is saying no address in the send and receive section. My number is there but not ticked. Any suggestions on how to fix this?

    I am having trouble with iMessage being activated. It has worked up until yesterday and now won't activate and is saying no address in the send and receive section. My number is there but not ticked. Any suggestions on how to fix this? I have shut down my phone, but still no luck!

    iMessage and FaceTime went down yesterday for some people. Mine is still down. My iMessage is saying the same thing about being activated. Sounds like you are still down too. Ignore the status page that says everything is fine - it lies.

  • How do you get the sender and receiver pics to show up in iMessage

    How do you get the sender and receiver pics to show up in iMessage

    '''If this is a new Pop mail account''',
    Those folders do not appear until you have actually Sent or saved a Draft email.
    check settings:
    Tools > Account Settings > Copies & Folders
    * select: 'place a copy in'
    * select: 'Sent' folder on the mail account
    For Archive
    * select 'keep message archives in:'
    * choose ' 'Archives' folder on mail account
    For Drafts and Templates
    * choose 'Drafts' folder on mail account
    * choose 'Templates' folder on mail account
    * click on OK
    '''If you have an IMAP mail account''',
    you need to make sure you have selected to subscribe to see those folders.
    Then make sure your settings use those folders.
    Tools > Account Settings > Copies & Folders
    * select: 'place a copy in'
    * select: 'Other' and choose the sent folder on the server mail account
    * If you want all Archive, Drafts and Templates to also be saved to the server folders, choose 'Other' and the respective folder on the server mail account.
    * Click on OK to save changes.
    More info on synchronising:
    * https://support.mozilla.org/en-US/kb/imap-synchronization
    Info on IMAP gmail:
    * https://support.mozilla.org/en-US/kb/thunderbird-and-gmail
    I note that you are using a gmail mail account. Please note that the gmail 'All Mail' folder is gmails archive copy of all of your emails, so if you subscribe to see this folder it will double the amount of space used. It is suggested that you do not subscribe to see this folder.
    Read section under 'All Mail':
    * http://kb.mozillazine.org/Using_Gmail_with_Thunderbird_and_Mozilla_Suite

  • Code to retrive the sender and receiver interface names using custome adapter module

    Hello Team,
    I want to develop an custom adapter module which could retrieve the names of the sender and receiver interfaces of the scenario and for that i am trying to use com.sap.aii.af.service.administration.api.monitoring.ProcessContextFactory.ParamSet but i don't know whether this API will support or not and also i don't know how to develop the code using this API so please suggest me some code for it so that i could retrieve the names.
    Thanks you all in advance.
    Regards,
    Avinash.   

    Hi,
    Just ASMA setting will do the needful. Are you planning to rename your target file name. If yes then only you will require UDF.
    Update: Since your directory name will be taken from source file name then you have to use mapping for this, else it will not be possible.
    I don't know if creating a new module for this will help you solve the issue, but in that case rather creating adapter module, mapping will be easier.
    Regards,
    Sarvesh
    Edited by: Sarvesh Singh on Dec 7, 2009 3:04 PM

  • TS2755 I have 3 phones on one Icloud account. It has been this way for over a year with no issues. After and update on of the lines started getting text messages from all 3 phones. We fixed the send and receive and it was fixed. It is doing it again.

    I have 3 phones on one Icloud account. They have been this way for over a year. After an update last week one of the phones started getting messages for all of the other lines. We fixed this under the send and receive under settings. It was fine for a few days. Suddenly it started happening again. Yesterday after two hours on the phone I changed my apple id and it is still happening. Before that Verizon had told me to turn off my imessage when that happened I could not get any texts at all from other Iphone users.

    Make 3 different iCloud accounts and use ONLY for iMessage.   That will permanently fix your issue.

  • How do setup multiple send and receive domain on single virtual ironport?

    HI all
    how do i setup multiple send and receive domain on single virtual ironport?
    Daemien

    Please use the admin guide to assist you for setup/configuration:
    http://www.cisco.com/c/dam/en/us/td/docs/security/esa/esa8-0/user_guide/ESA_8-0-1_User_Guide.pdf
    On the VESA - the Recipient Access Table (RAT) will control which domains your appliance accepts for.  
    AsyncOS uses a Recipient Access Table (RAT) for each public listener to manage accept and reject actions for recipient addresses. Recipent addresses include these:
    •Domains
    •Email addresses
    •Groups of email addresses
    This is covered in detail in the "Overview of Accepting or Rejecting Connections Based on the Recipient’s Address" section.
    Please see the "Configuring the Gateway to Receive Email" section for configuration of appliance for domains.
    Please see the "Defining Which Hosts Are Allowed to Connect Using the Host Access Table (HAT)" section for configuration of appliance for sending.
    I hope this helps!
    -Robert
    (*If you have received the answer to your original question, and found this helpful/correct - please mark the question as answered, and be sure to leave a rating to reflect!)

  • Email Func:BCS Classes-Customizing the sender and receiver

    Hi All,
    In my functionality previously, I used FM 'SO_DOCUMENT_SEND_API1' wherein I can freely customized the sender and recipient.  But I need to change it to BCS class due to 50 character limitation in Subject.
    Please see thread Email Functionality:How to create Email Subject w/ more than 50 CHAR Length.
    DATA: recipient          TYPE REF TO if_recipient_bcs.
    *SENDER*
    "Set Sender
          sender = cl_sapuser_bcs=>create( sy-uname ).
          CALL METHOD send_request->set_sender
            EXPORTING
              i_sender = sender.
    The code above would always trigger the email of the owner of SY-UNAME.  In my case, I need a custom one email, let's say, a hard coded non SY-UNAME email.
    What I did:
    Change the data definition of sender as follow, but this would give me not compatible type parameter.
    DATA: sender             TYPE REF TO if_sender_bcs.
    "sender = cl_sapuser_bcs=>create( '<sender_email_literal_goes_here>' ).
    Question: Is this possible? or the class is fixed to SY-UNAME's email?

    Hi ArS, it's working now as a program.
    Still part of the thread.
    Now I want to create a FM for this:
    In my Function Group>TOP INCLUDE, I have
    DATA:  sender           TYPE REF TO if_sender_bcs,
                 w_sender     TYPE ad_smtpadr.
    In my FM code:
    IMPORT Parameter:
        SENDER TYPE  AD_SMTPADR
    sender = cl_cam_address_bcs=>create_internet_address( w_sender ).
          CALL METHOD send_request->set_sender
            EXPORTING
              i_sender = sender.
    SYNTAX ERROR: The field "SENDER" cannot be changed.

  • Poor battery usage just recently. Constantly sending and receiving. Hourglass on the screen a LOT.

    Hello, friends,
    The above symptoms just started a few days ago.  I have not changed any software (I have very little installed, and no extra communications software).  This has been going on for about 1 week.  Battery only lasts 3/4 of a day because it appears that the phone is sending and receiving all the time.
    Any help would be appreciated.  Thanks.
    Sean

    Check your file free number at Options > Status. What is it?
    Also, here are some good battery-usage tips. Read them:
    http://www.blackberrynews.com/2008/05/20/battery-use-tips-for-your-maximum-battery-life/
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Why won't my number highlight in the send and receive when using iMessage and FaceTime

    My imessage and facetime turned off and won't turn back on and in my send and receive section it will only highlight my email not my phone number

    Hello Torijada,
    After reviewing your post, it sounds like you linked the phone number to iMessage and iMessage wont turn on. I would recommend that you read these articles, they may be helpful in troubleshooting your issue.
    iOS and OS X: Link your phone number and Apple ID for use with FaceTime and iMessage - Apple Support
    The telephone number will be dimmed when you view these settings on an iPhone.
    If you get an error when trying to activate iMessage or FaceTime - Apple Support
    Thanks for using Apple Support Communities.
    Have a nice day,
    Mario

  • How do I get my iPhone number to be the sender and receiver of the iMessages? It was until I created and logged in to my iCloud account, but after that it shows it as my email.

    I need to know how to be able to set my iPhone number as my iMessage sender &amp; receiver. It shows my number, but it's like blacked out where I can't choose it.. PLEASE HELP! It's about to drive my crazy!

    Is there a tick mark beside your number?
    What options you have under "Start new conversation from"?

  • How do I create, send and receive ethernet packets to UUT

    I need to create and send ethernet packets to control and communicate with an RF board. I would also like to receive ethernet packets back which would be parsed and interpreted.

    There you are!
    I was wondering how this project was going.
    As I said before, we need to know what protocol is being used.
    Let me eaxplain. (Please refer to the diagrams and tutorial on pages 752-755 of 2002 NI catalog.)
    802.3 is the spec for ethernet. It defines how packets will be transmitted on the wire.
    Real Life analogy:
    US Mail service.
    It moves messages from one place to another. It defines that messages should be in an envelope. The Envelope must have a address so they know where it should be delivered to. You should also have a return address (but this is not enforced). Inside the envelope, you can put any kind of message you want as long as the person recieving it knows how to read it. The
    reciever can look at the message and say "oh, this is english, I will read it in english".
    Ethernet is similar. Ethernet (ignoring the electrical specs) defines a packet as consisting of
    Source address (return address in US mail)
    Destination address (delivery address)
    Protocol (pretend there was a mark on the envelope that said this letter is in French).
    Data (the letter itself)
    Checksum (letter pages number as 1 of 4, 2 of 4, etc).
    So what you have told me so far is that you want to send a letter!
    You have been asking me how to comunicate with the other person but you have not told me what language they speak!
    There are many different languages (i.e. protocol's) possible with 802.3.
    Examples are
    TCP/IP ( say this is English)
    UDP (French)
    etc....
    LV has built in VI's to take a message and convert it to the protocol (lanuage) you want and send it on it's way.
    So my question to you once more is;
    What protocol are you using?
    Ben
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

  • Transport the sender and Receiver Structures of Retraction

    Hi,
    I would like to transport the sender structure which has been created in UPB_STRUCT and UPB_RULE.
    COuld some one tell me how to transport these objects.Points will be assigned.
    Thanks,
    Subha

    Hi,
    When u open UPB_RULE screen, first tab u can see Rules -> Transport which prompts for transport request. Same is the case with UPB_STRUCT, sender structure -> transport
    Bindu

  • Is it possible to send and receive a package on the same PC?

    I have a PC with two Ethernet connections. I want to send a package from one through a switch an back to the other connection. Normally it takes the fastest way - internally on the PC.
    The thing I want to test is the switch and the connection on the switch. I have considered using the ping command.
    How can I be sure that the package takes the LONG way?
    Is it possible to do that in LabVIEW?
    How is it done?
    Please help me - I have no control over XP

    The best way is to do a traceroute to a device you know is on the distant port. ("tracert" command from the DOS prompt)  This will give you information on all the nodes along the way. Incidentally, from Windows 2000 and later, you can actually assign multiple IP addresses to a single Ethernet card...although I'm not exactly sure why you would want to do that.  Anyway, traceroute is what you'd want to use.
    eric

  • Modify the ASMA without defining the Sender and Receiver Interface

    Hi All,
    I am developing a scenario where I am picking files from NFS and putting in FTP.
    For this I am using only the ID and no IR content.
    So far so good.
    But Now we have a requirement to dynamically extract the target folder names from the File name.
    e.g
    Sourc File: ABC_FN_PQR
    Folder name shouild be FN
    For this the solution would be UDF.
    But now my question is that where do i put this UDF as there is no IR at all.
    Please suggest.
    regards,
    Piyush

    Hi,
    Just ASMA setting will do the needful. Are you planning to rename your target file name. If yes then only you will require UDF.
    Update: Since your directory name will be taken from source file name then you have to use mapping for this, else it will not be possible.
    I don't know if creating a new module for this will help you solve the issue, but in that case rather creating adapter module, mapping will be easier.
    Regards,
    Sarvesh
    Edited by: Sarvesh Singh on Dec 7, 2009 3:04 PM

  • How to correctly configure send and receive connectors for SBS2011 exchange to connect to EOP

    Hello SBS fans,
    we have a customer with SBS2011 and exchange.  The server email is setup for Exchange Online Protection.
    It passes the Remote Connectivity Analyzer for inbound and outbound email.  It shows a warning for the spf, saying it cannot find the spf record, BUT MXtool box passes everything associated with their domain name, including the spf record.
    They are now getting some bounced email from yahoo servers, referencing this ip
    65.55.169.249, which is a valid Microsoft ip.
    I checked the bounce back email header carefully, and found a reference to an internal ip, 192.168.11.14, which just happens to be the ip of the user's desk PC!! - NOT the local addr of the sbs2011 server (which should not be there anyway)
    I will guess that there is an incorrect setting in one or both of the hub transports?  There is a correct smart host connector.
    I am no longer sure about the other connectors!
    Any ideas on this?
    ewholz
    Network and Server Installs

    Hi,
    à
    It shows a warning for the spf, saying it cannot find the spf record
    Would you please let me know the complete warning message that you can get? Meanwhile, would you please let
    me know how long ago you add the SPF record? Be
    more than 72 hours?
    Please also refer to following article and check if can help you.
    Configuring
    Exchange 2007 Hub Transport role to receive Internet mail
    If any update, please feel free to let me know.
    Hope this helps.
    Best regards,
    Justin Gu

Maybe you are looking for