Time Capture of XI when it enters to R3

Hi Experts,
I need to capture the timestamp for when the data entered XI. This timestamp should be mapped to each:
for eg.,
Book
    ram 
    raju
    ravi

Hi Chirag,
I will explain you in detail...and thanks for your response
Scenario : JMS to RFC using XSLT Mapping
Client wants a timestamp for when the data entered XI. This timestamp should be mapped to each:
for eg.,
BOOK                     Element          1...unbounded
       Ramu                Attribute         required
       Ravi                  Element          1
       Raju                  Element          0 ...1
XI receives xml-files in the interface which are mapped to SAP.
Client wants to be able to report on the time it takes for the data to enter XI until it is created in SAP.
                       Therefore we need to create a timestamp in XI. Let's say that a file enters XI 14:15:03 today. the file is then processed and mapped to SAP 15 minutes later, let's say 14:30:45. On each BOOK mapped to SAP should then the timestamp 14:15:03 be attached.
How to do this ...
Is this possible??
Regards,
Jeevan.

Similar Messages

  • Would like to verify Time Machine backup but when I enter TM and then open iPhoto, it only provides me a gray window telling me the size of the file. How do I make sure all iPhoto pictures have been backed up on Time Machine?

    Would like to verify Time Machine backup but when I enter TM and then open iPhoto, it only provides me a gray window telling me the size of the file. How do I make sure all iPhoto pictures have been backed up on Time Machine?

    HaJo-aus-BS wrote:
    Since Snow-Leo time machine offers an option to verify backups, but I have found that it does not work for external disks attached by USB or FireWire.
    Yes, that's for network backups only. 
    What can I do to make sure that the backups are OK?
    You can tell if the File System (the various directories, catalogs etc.) is ok by repairing your backup drive, per #A5 in Time Machine - Troubleshooting.
    You can "spot check" whether the Time Machine "Star Wars" display seems correct.
    You can do a full system restore to another disk per #14 in Time Machine - Frequently Asked Questions, then start up from it and see if things are there and seem to work.
    You can keep "secondary" backups (always a good idea).  See #27 in the FAQ post for some suggestions.

  • My screen won't work the only time it does is when i enter in my passcode. what is wrong with it?

    my screen won't work the only time it does is when i enter in my passcode. what is wrong with it?

    Try resetting the iPod:
    Reset iPod touch:  Press and hold the On/Off Sleep/Wake button and the Home
    button at the same time for at least ten seconds, until the Apple logo appears.
    - Next try connecting the iPod to your computer and restoring the iPod from backup via iTunes.
    - If itunes does not see the iPod, see if placing the iPod in recovery mode will make it visible so you can restire it.  For recovery mode see:
    iPhone and iPod touch: Unable to update or restore

  • Hi. I am using a time capsule for few PC s. I have made 5 different account to access time capsule. but in windows when i enter account name and password for one account, i cannot access other accounts, because windows saves username

    Hi. I am using a time capsule for few PC s. I have made 5 different account to access time capsule. but in windows when I enter account name and password for one account, i cannot access other accounts, because windows saves username. how can i prevent this from happenning. I really need to access all my accounts and dont want it to save automaticlly.

    Why have 5 accounts if you need to access all of them.. just have one account?
    Sorry I cannot follow why you would even use the PC to control the Time Capsule. Apple have not kept the Windows version of the utility up to date.. so they keep making it harder and harder to run windows with apple routers.

  • My iPhone rejects my passcode when I enter it the first and the second time

    My iPhone rejects my passcode when I enter it the first and the second time. Why?

    Is it random? Does it occasionally accept the passcode, or does the passcode seem to be changed?
    See Kappy's list on how to deal with passcode problems:
    Re: Passcode being rejected   https://discussions.apple.com/message/23376400#23376400

  • When I enter my password to start my atv it tells me, that "there was a problem connecting to the network."  My Ipad works fine but not my new atv.  I have reset my password multiple times with no help.  I have also rebooted my wireless server.take it bac

    When I enter my password to start my atv it tells me, that "there was a problem connecting to the network."  My Ipad works fine in my house, but not my new atv.  I have reset my password multiple times with no help.  I have also rebooted my wireless server.  Do I take it back?

    Where is everyone????  Does anyone have an answer???
    Allik1

  • Having problem buying online.need your help since it's my first time here.apple is asking for my billing address but when i enter my address here in qatar,it's saying i should enter a valid zip code within the u.s.does it mean i can't buy online

    having problem buying online.need your help since it's my first time here.apple is asking for my billing address but when i enter my address here in qatar,it's saying i should enter a valid zip code within the u.s.does it mean i can't buy online even if it wil be shipped within u.s. only?

    To buy in for delivery in Qatar, you should be starting from the Apple Qatar site:
    http://www.apple.com/qa/
    Do you have an Apple-ID? if you do, then you should not have to enter your Address again, and may be able to sidestep the US Zip Code issue.

  • How to populate date & time when user enter data for custom table in sm30

    Can anyone tell me How to populate system date & time when user enter data for custom table in sm30..
      Req is
      i have custom table and using sm30 user can enter data.
    after saving date i want to update date & time in table
    Pls let me know where to write the code?
    Thanks in Advance

    You have to write the code in EVENT 01 in SE54 transaction. Go to SE54, enter your Ztable name and in the menu 'Environment-->Events'. Press 'ENTER' to go past the popup message. In the next screen, click on 'New Entries'. In the first column, enter 01 and in the next column give some name for your routine(say UPDATE_USER_DATE_TIME). Then click on the souce code icon that appears in blue at the end of the row. In the code, you need logic like below.
    FORM update_user_date_time.
      DATA: f_index LIKE sy-tabix.
      DATA: BEGIN OF l_total.
              INCLUDE STRUCTURE zztable.
      INCLUDE  STRUCTURE vimtbflags.
      DATA  END OF l_total.
      DATA: s_record TYPE zztable.
      LOOP AT total INTO l_total.
        IF l_total-vim_action = aendern OR
           l_total-vim_action = neuer_eintrag.
          MOVE-CORRESPONDING l_total TO s_record.
          s_record-zz_user = sy-uname.
          s_record-zz_date = sy-datum.
          s_record-zz_time = sy-uzeit.
          READ TABLE extract WITH KEY l_total.
          IF sy-subrc EQ 0.
            f_index = sy-tabix.
          ELSE.
            CLEAR f_index.
          ENDIF.
          MOVE-CORRESPONDING s_record TO l_total.
          MODIFY total FROM l_total.
          CHECK f_index GT 0.
          MODIFY extract INDEX f_index FROM l_total.
        ENDIF.
      ENDLOOP.
    ENDFORM.                    " UPDATE_USER_DATE_TIME
    Here ZZTABLE is the Z table and ZZ_USER, ZZ_DATE, and ZZ_TIME are the fields that are updated.

  • Does anyone know why my finder window resizes when I enter time machine?

    Can anyone explain why my finder changes size when I enter time machine? I'm pretty sure this didn't happen on Snow Leopard but it does since I installed Lion. It's only a small glitch but it's rather annoying since I have positioned and resized the finder window on my desktop to the place I want it - in the centre of the screen and showing all the folders in my sidebar list. When I enter time machine the finder window becomes shorter, therefore not showing all the sidebar folders. I wouldn't mind if when I exit time machine it reverts back to the way it was but it doesn't so I have to resize over again!
    Anyone know why this happenes?

    Take a snapshot of this issue and send it to Apple. I think it may be a small glitch.

  • My time capsule says it only has 473.24 gb for my back up of 534gb.  the only back up I can access when I enter the time machine was yesterdays so what has happened?

    my time capsule says it only has 473.24 gb for my back up of 534gb.  the only back up I can access when I enter the time machine was yesterdays so any idea what is happening? I have the latest irmware update.
    Marmimag

    There is an issue with latest Lion update.. it is killing TM.
    https://discussions.apple.com/message/19858557#19858557
    Otherwise check via the airport utility if there is something else using space on the hard disk.

  • I am installing CS6, for the first time, on a Mac, from a CD.  I have a valid serial number that I just obtained.  When I enter the serial number, it is not validated and I cannot continue.

    I am installing CS6, for the first time, on a Mac, from a CD.  I have a valid serial number that I just obtained.  When I enter the serial number, it is not validated and I cannot continue.

    Error "The serial number is not valid for this product" | Creative Suite

  • How do I view the photos ? I backed up with iPhoto closed as is recommended , when I enter time machine and click on iPhoto library is calculates there is 11gb so photos are there when I click on view using iPhoto nothing happens ????

    how do I view the photos ? I backed up with iPhoto closed as recommended but when I enter the Time Machine and click on iPhoto library it calculates there is 11gb in there so files must be present but when i click on open with iPhoto nothing happens ? any help welcome please !!??

    The external hard drive must connect to your Mac using a USB or FireWire connection.
    Note that the hard drive must be formatted in Mac OS Extended (Journaled) to work correctly with the iPhoto Library and be backed up to the Time Capsule and with the backups of your Mac.
    We are really talking about iPhoto uses here, so you should post in the iPhoto Support area for more details about this. The link is just below.
    iPhoto for Mac

  • HT2240 When I enter the Quick time 7 to register the pro version all it does is cycle back to the name field. I have check the info that I entered and it seems correct. How do I register?

    When I enter the Quick time 7 to register the pro version all it does is cycle back to the name field. I have check the info that I entered and it seems correct. How do I register?

    Enter in the name, exactly as in the email Apple sent you, and the key, and then press the Tab key. Do not press the Enter/Return key.
    Hope this helps.

  • I would like to format cells with time only.  when I enter a time of day the current date is still in the cell which is not necessarily so

    I would like to format cells with time only.  when I enter a time of day the current date is still in the cell which is not necessarily so.  THere are  no options for just  date .

    christine275 wrote:
    ... (this is a time worked by date and not always entered on the date worked)--
    "Time" in Numbers is always "Time of Day", and is always part of a Date and Time value. "Amount of Time" is a Duration value, which may be displayed in a similar format to "Time of Day," but is a different type of value.
    If you are entering the number of hours and minutes worked, format the column as Duration, set the units and the format in which you want to have the value appear.
    The Date column will still contain a Date and Time value (Jan 1, 2011 00:00:00 in the cell shown in the example), but the "Time Worked" cells will contain only a Duration value.
    Incidently, the Date in A2 was entered as "jan 1" (without the quotes). Numbers automatically adds the current year and the default time value, then displays the result in the closest format to what you've entered, or in the Date and Time format you have chosen.
    The Duration value in B2 was entered as 3:15 (as displayed). Note that in the entry bar the duration is displayed as 3h 15m, probably to distinguish it from a similarly formatted (Date and) Time value.
    Regards,
    Barry

  • when I ''ENTER TIME MACHINE'', I only see desktop items!!!

    New to TM, when I ''enter time machine'' the only windows I have access is my desktop... How can I have access to my HD??? What about going back in Mail???
    Thank you

    nichols wrote:
    New to TM, when I ''enter time machine'' the only windows I have access is my desktop... How can I have access to my HD???
    click on the hard drive in the sidebar and the view will switch.
    What about going back in Mail???
    start TM while Mail is the front application.
    Thank you

Maybe you are looking for