Get Archived IDocs based on IDoc creation date

Save Our Environment. Save Yourself.
Hi Experts!!!
We need to get the archived idocs based on the idoc creation date. If I give some date, then I should get all the idocs that are archived in that period. How can this be possible?
One more doubt is - I checked the logical path in FILE for archived idocs. But when I go to that in AL11, I can not see any data in that. Where can I find the details of all the archived idocs?
I serached in SCN for the same but in vain.
Please help me out. Thanks.
- I'm not an environmentalist.  I'm an Earth warrior.

Please find the code to read archeived idocs
FORM read_datarecord.
  STATICS ls_open TYPE boolean VALUE false.
  DATA: ld_tabix TYPE sytabix,
        lt_edidc TYPE STANDARD TABLE OF edidc,
        ld_edidc TYPE edidc.
  MOVE syst-tabix TO ld_tabix.          
  IF int_edidc-mandt IS NOT INITIAL.
  ELSE.
    IF gd_use_as IS INITIAL.
      IF ls_open = false.
        CALL FUNCTION 'ARCHIVE_OPEN_FOR_READ'
          EXPORTING
            object         = 'IDOC'
          IMPORTING
            archive_handle = gd_archive_handle
          TABLES
            archive_files  = gt_arch_sel.
        MOVE true TO ls_open.
      ENDIF.
      CLEAR ld_edidc.
      WHILE ld_edidc-docnum <> int_edidc-docnum.
        CALL FUNCTION 'ARCHIVE_GET_NEXT_OBJECT'
          EXPORTING
            archive_handle = gd_archive_handle
          EXCEPTIONS
            end_of_file    = 1.
        IF syst-subrc IS INITIAL.
          REFRESH lt_edidc.
          CALL FUNCTION 'IDOC_ARCHIVE_GET_TABLE'
            EXPORTING
              archive_handle   = gd_archive_handle
              record_structure = 'EDIDC'
            TABLES
              t_data           = lt_edidc.
          READ TABLE lt_edidc INTO ld_edidc INDEX 1.
          IF ld_edidc-docnum = int_edidc-docnum.
            CALL FUNCTION 'IDOC_ARCHIVE_GET_TABLE'
              EXPORTING
                archive_handle   = gd_archive_handle
                record_structure = 'EDIDD'
              TABLES
                t_data           = int_edidd.
          ENDIF.
        ELSE.
          EXIT.
        ENDIF.
      ENDWHILE.
    ELSE.
      CALL FUNCTION 'EDI_IDOC_GET_FROM_ARCHIVE'
        EXPORTING
          docnum                       = int_edidc-docnum
        TABLES
          int_edidd                    = int_edidd
        EXCEPTIONS
          idoc_not_in_infostructures   = 1
          idoc_read_error_from_archive = 2
          archive_close_error          = 3
          others                       = 4.
      IF sy-subrc <> 0.
      ENDIF.
    ENDIF.
  ENDIF.
  IF ls_open = true AND ld_tabix = anz_int_edidc.
    CALL FUNCTION 'ARCHIVE_CLOSE_FILE'
      EXPORTING
        archive_handle = gd_archive_handle.
  ENDIF.
ENDFORM.                               " READ_DATARECORD
PS if you don't have auth to SARA then get auth . you need to talk to your business owner or talk to basis to get auth

Similar Messages

  • How can we trigger an IDOC based on Orders creation.

    Hiii...experts,
                            After searching alot in SDN i am taking this very commonly asked to experts in the hope of a better understanding.
    If i create a sales order means.. i want to trigger a IDOC based on certain Condition on ORDER data .. how can we do this..
    when ever i'm creating a sales order it should be automatically trigger a IDOC , Because when ever sales ordre was created in R/3 system it should be transferred to some destination...
    And pls tell me about the reports that does the job of collecting required data from the sales order and converts it into a IDOC.
    so, how can we trigger an IDOC based on Orders creation..
    pls help.
    Ram.

    Use IDOC_OUTPUT_ORDERS for creating IDOC
    you need to maintain condition records & output type
    <REMOVED BY MODERATOR>
    Edited by: Alvaro Tejada Galindo on Apr 10, 2008 4:18 PM

  • Production declaration based on order creation date in R/3

    Hi,
    Can we do the production declaaration in R/3 (mfbf) for PPDS planned orders sent to R/3 from APO based on order creation date?
    This is because we need to differentiate between SNP and PPDS planned orders in R/3.
    As there is no differentition in SNP and PPDS orders in R/3, while production decalration,
    it's not possible that only PPDS orders will get consumed (in mfbf).
    SO can we do production declaration based on order creation date instead of order number?
    Please share the information.
    Thanks,
    Vinayak

    Hello Santosh
    Production versions are selected on the standard system according to the basic finish date, however, you can change the standard system behavior with the implementation of the following note:
    351773 - Selection of production versions for planned order
    Alternatively, you may use BAdI MD_MODIFY_PRODVERS to create your own logic to select the production versions.
    BR
    Caetano

  • Move files into folders based on EXIF Creation Date

    Hi all,
    Being a novice with Applescript I have read what I can find on this forum, but are not able to find exactly what I'm looking for. I think that the posting "Using AppleScript to create folders and place files in them" is the closest I get to what I want but I want to create the folders based on EXIF creation date.
    Let me explain.
    I have a folder that contains thousands of jpg, mp4, mov and avi files; all created by different cameras. I want to bring some order to this and place files in folders based on year, month and date that the file was created (the photo taken or the video captured). This date is stored in the EXIF creation date.
         Take all files in folder A
          foreach file find the EXIF creation date
          move each file into directory tree (at same location is ok) where toplevel is YEAR, next directory level is named accoring to EXIF creation date as MMDDYY
          if no EXIF creation date can be found, fallback to creation date (file property?)
          if no good date is found, leave file alone in folder A for manual sorting; do not use modification date as this may have been altered
         this would create a structure as
         2002
                011602
                        File 1 taken Jan 16 2002
                        File 2 taken Jan 16 2002
                082002
                        File 1 taken Aug 20 2002
                        File 2 taken Aug 20 2002
          2003
                 etc 
         2004
             |   etc
         2014
                 010114
                        File 1 taken Jan 1 2014
    etc etc

    Well, technically that's correct, Frank, but the same could be said of much of AppleScript - the core functionality is limited, but there's a lot you can do.
    For example, it's actually trivial to use Image Events get any given EXIF tag of an image:
    set theFile to (choose file)
    tell application "Image Events"
              set f to open theFile
              set cD to value of metadata tag "CreationDate" of f
      close f
    end tell
    Now, cD will have the value of the CreationDate tag (assuming it exists, of course - you'll need to wrap this in a try/end try statement). Once you have that it shouldn't be too hard to extract the date components, work out the target directory name and move the file.

  • How to Sort transported KM content based on the creation date

    Hi ,
         I transported KM content through ICE offline transfer.  all the files are copied. but the problem is all are copied with the todays date as modified date.
    but I need to sort these based on the creation date.
    all these files are with the xml templates.
    Can only help in this regard
    Thank you

    Hi,
    Enter the format that you have defined in the configuration of the property in the Additional Metadata parameter. Use the syntax customFormat=<pattern>.
    In this link, you have at the end screenshots where to navigate in KM to see the property metadatas of your property:
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/645d4357-0701-0010-07bd-a2ea8c4d0aaf
    Here see the Defenitions of the KM Metadata Properties:
    https://wiki.sdn.sap.com/wiki/display/KMC/DefenitionsoftheKMMetadata+Properties
    Regards,
    Praveen Gudapati

  • Creating folders based on file creation date

    Hi,
    I have a folder full of images and I am looking for an Automator workflow/app/script that can look at the files sequentially, read the creation date and then create folder name based on the file creation date (Year-Day-Month). Then move the file to the respective folder.
    Appreciate any input you can provide.
    Regards
    Tom Erik

    Open the AppleScript Editor in the /Applications/Utilities/ folder and run:
    tell application "Finder"
    repeat with this_file in (get files of window 1)
    set the_date to creation date of this_file
    set folder_name to ((year of the_date as string) & "-" & day of the_date & "-" & month of the_date)
    try
    make new folder in window 1 with properties {name:folder_name}
    end try
    move this_file to folder folder_name
    end repeat
    end tell
    (75533)

  • Image copy to folder with name based on image creation date

    Hi all,
    I am new to Mac OS X and automator so I would like to know the following,
    Is it possible to have an automated action that triggers when I attach my camera to USB, and who copies all images to a folder which is named according to the date when the image was created?
    Example:
    I attach my camera and it shows up as disk image named "NIKON D70" and the images are contained in subfolders "DCIM/100NCD70" (or actually in DCIM/*). I then want all images in these folders copied to my home directory in a subdirectory called something like "Pictures/D70/2007/20070605" where the year folder name and the date folder name should be according to current image creation date (which of course can be different for each image).
    I have created a simple automation script that copies images from my camera to a folder named according to current date, but that's not good enough.
    Anybody having any hints or ideas of how I can accomplish this?
    Regards
    Anders
    Mac Pro, 2x2.66GHz, 5GB, ATI X1900 XT   Mac OS X (10.4.9)  

    Open the AppleScript Editor in the /Applications/Utilities/ folder and run:
    tell application "Finder"
    repeat with this_file in (get files of window 1)
    set the_date to creation date of this_file
    set folder_name to ((year of the_date as string) & "-" & day of the_date & "-" & month of the_date)
    try
    make new folder in window 1 with properties {name:folder_name}
    end try
    move this_file to folder folder_name
    end repeat
    end tell
    (75533)

  • To get supplier name based on latest approved date

    hi
    in PO SUPER USER -Purchase Order Summary ,when we enter the item number in Item,rev field a new form Purchase Order Lines opens
    in this form there are many lines of PO numbers ,suppliers(vendors),approved date ,can we get the supplier name for which the approved date is most recent
    kindly guide
    thanking in advance

    hi
    in my system i can see the latest approved date wise but i have to add an inline query on the most recent vendor based on approved date to an already existing query
    meaning just the first row data(most recent supplier) should be captured in the query
    when i do the following query , i am taking an eg of the item_no 1020101001
    select msib.segment1,max(pha.approved_date) from
    po_headers_all pha,
    po_lines_all pla,
    po_vendors pv,
    mtl_system_items_b msib
    where
    pha.po_header_id = pla.po_header_id
    and pla.item_id = msib.inventory_item_id
    and pv.vendor_id=pha.vendor_id
    and msib.segment1='1020101001'
    --and pha.approved_date=max(pha.approved_date)
    group by
    --item_id.
    msib.segment1
    this is the output i get
    segment1           MAX(PHA.APPROVED_DATE)
    1020101001    1/9/2011 3:16:48 PMwhen i do the following query
    select msib.segment1,max(pha.approved_date) ,pv.vendor_name from
    po_headers_all pha,
    po_lines_all pla,
    po_vendors pv,
    mtl_system_items_b msib
    where
    pha.po_header_id = pla.po_header_id
    and pla.item_id = msib.inventory_item_id
    and pv.vendor_id=pha.vendor_id
    and msib.segment1='1020101001'
    --and pha.approved_date=max(pha.approved_date)
    group by
    --item_id.
    msib.segment1
    ,pv.vendor_name
    segment1           MAX(PHA.APPROVED_DATE)  VENDOR_NAME
    1020101001    7/21/2008 9:09:20 AM   TRIZAC  ABU DHABI
    1020101001   1/9/2011 3:16:48 PM        SAUDI CEMENT COMPANY
    1020101001   2/14/2010 4:03:46 PM     UNION CEMENT NORCEM CO.
    1020101001  5/19/2010 3:08:32 PM      AS CIMENTO SANAYI VE TICARET A.S.i require the most recent vendor_name for a particular item ( i require the output as below)
    segment1 MAX(PHA.APPROVED_DATE) VENDOR_NAME
    1020101001 1/9/2011 3:16:48 PM SAUDI CEMENT COMPANY
    kindly guide me
    thanking in advance

  • Cross tab: Getting the count based on three consecutive dates

    Hi All,
    I have a crosstab which as Ticket_no and Date columns. here is the sample  report data.
            Ticket_no          Date
                  1                1-Jan-2013
                  1                2-Jan-2013
                  1                3-Jan-2013
                  2                1-Jan-2013
                  1                1-Jan-2013
    count of tickets which are raised for consecutive 3 days in a month. Here ticket_No 1 is raised for the first 3 days..so count will be 1. 
    Can any one help me in this case.
    Thanks in advance.
    Regards,
    Krishna

    Krishna, Bring Ticket_No as Dimension from universe,
    In web I, create a variable
    = Count([Ticket_No])

  • Archiving in H264 while keeping folders/file creation date

    *Hi, I just wanted to share with you a script that helps to convert the content of the FCP "capture scratch" folder into H264, to move the converted files into a Device, put the h264 files in the correct client folder.*
    *Into this client folder, it creates folders with the original production name, while it keeps the original creation file date.*
    *So it keeps the original folder hierarchy and date for my archives, because to browse with the final cut server client is great, but sometimes you just want navigate in your file system to work with your videos.*
    *STEP 1* : Original Assets Cataloging (production scan)
    I have a Scheduled Production scan of my "capture scratch",
    (Capture scratch is on our SAN, so all Edit suites are capturing in the same "capture scratch" folder)
    *STEP 2*: Detect to which client the asset belongs to (thanks to the location name) and set the proper [Owner ]metadata asset
    NB: for that I ask all editors to put the name of the client at the beginning of the name of their FCP projects. ex CBS_snow in paris.fcp
    I have Subscriptions that filters created assets location to see if the location "begins with" the client name, then give a "response" that set the correct [Owner] metadata, and also change the "statut" to "WAITINGFORENCODE" (you have to create it into Lookup/Status)
    So I have as many Subscriptions/Reponse as actual Clients
    *STEP 3 :* I have a subscription that filters Modified Assets that have a status of "WAITINGFORENCODE"
    then gives 3 responses.
    +Response 1:+ Set Asset Metadate Status to "ENCODING" ( yeah, Status are made for collaborating tags.. but here we are...)
    +Response 2:+ Copy in H264 (that's where Matrox is great!) into a "transcode folder"
    +Response 3+ (the tough one): Copy the transcoded asset to the right archive location and keep original creation date, create an asset and put it in the same production as the original, and set the original Asset Metatadata Status as "ENCODED"
    Run Script
    Command Path: //path to the script.
    In the command parameters you'll need to enter: [File name] [Location] [Owner] [Asset ID]
    So here is the Script. It's a LOT inspired from Andy Sykes http://fcsvoodoo.blogspot.com/2009/07/add-newly-created-asset-to-originating.htm l
    A big thank to him for publishing it.
    #!/bin/bash
    FILENAME=$1
    PLACE=$2
    CLIENT=$3
    IDFILE=$4
    FILENAME_ESCAPED=$(echo -n "$FILENAME" | \
    perl -pe's/([^-_.~A-Za-z0-9])/sprintf("%%%02X", ord($1))/seg');
    LOCATION_ESCAPED=$(echo -n "$PLACE" | \
    perl -pe's/([^-_.~A-Za-z0-9])/sprintf("%%%02X", ord($1))/seg');
    # Set the location to the fcsvr_client binary
    PATH_TO_BINARIES="/Library/Application Support/Final Cut Server/Final Cut Server.bundle/Contents/MacOS/fcsvr_client"
    # Set the location of the Archives NAS Client Folder
    PATH_TO_TARGET="//Volumes/NASARCHIVES/""$CLIENT""/Footages"
    # Set the location of the Transcoding folder
    PATH_TO_TRANSCODE="//Volumes/EditSAN/Transcode"
    # Set the location of the Original File folder
    PATH_TO_ORIGINAL="//Volumes/EditSAN/Capture Scratch/"
    # Make a folder and move the file in it
    mkdir "$PATH_TO_TARGET""$PLACE"
    mv "$PATH_TO_TRANSCODE"/"$FILENAME" "$PATH_TO_TARGET""$PLACE"/
    #Set Copied File and Folder Date from original
    ORIGDATE=$(GetFileInfo -d "$PATH_TO_ORIGINAL""$PLACE"/"$FILENAME")
    ORIGDATEFOLDER=$(GetFileInfo -d "$PATH_TO_ORIGINAL""$PLACE")
    echo $ORIGDATE
    echo $ORIGDATEFOLDER
    Setfile -d "$ORIGDATE" "$PATH_TO_TARGET""$PLACE"/"$FILENAME"
    Setfile -d "$ORIGDATEFOLDER" "$PATH_TO_TARGET""$PLACE"
    # Determine original Production "address" by searching for the "location" (since this is the same as the Production name)
    PROJECTNAME=$("$PATH_TO_BINARIES" search --crit "$PLACE" /project | grep -i -o -e "/project/[0-9]*")
    echo $PROJECTNAME
    # Create asset and associate it with the project
    OUTPUT=$(sudo "$PATH_TO_BINARIES" createasset pa_asset_actua --projaddr $PROJECTNAME /dev/11/"$CLIENT""/Footages""$LOCATION_ESCAPED"/"$FILENAME_ESCAPED" CUST_ASSET_STATUS="INRAID6")
    echo $OUTPUT
    # Change Original metada asset status
    SETMETA=$(sudo "$PATH_TO_BINARIES" setmd /asset/$IDFILE CUST_ASSET_STATUS="TRANSCODED")
    echo $SETMETA
    Weekness of the script is when you're converting non .MOV files (or different extension in the H264 copy than the original), I could not figure out how Andy Skypes managed with the extensions in his script, so I just pass it.
    Now it's working like a charm after I had a lot of Issues due to the escape characters, but thanks the the perl command ,it's good now. But you will still need to ask editors to avoid / and & and () in file names...
    Well, I just make it work yesterday, so now I breath cause I couldn't figure out if investing if FCS would be more a sufferance than a relieve because lot of people saying that you have to totally rethink the way you work with assets, and forget about your folder hierarchy...but this, I couldn't hear It, especially when I saw the mess that was about to happen with thousands of P2 clips.
    My conclusion would be: Metadatata is great, but folder hierarchy can save you if you loose your DB or want to migrate ...
    au revoir.

    here we go
    #!/bin/bash
    FILENAME=$1
    PLACE=$2
    CLIENT=$3
    IDFILE=$4
    FILENAME_ESCAPED=$(echo -n "$FILENAME" |
    perl -pe's/([^-_.~A-Za-z0-9])/sprintf("%%%02X", ord($1))/seg');
    LOCATION_ESCAPED=$(echo -n "$PLACE" |
    perl -pe's/([^-_.~A-Za-z0-9])/sprintf("%%%02X", ord($1))/seg');
    # Set the location to the fcsvr_client binary
    PATH_TO_BINARIES="/Library/Application Support/Final Cut Server/Final Cut Server.bundle/Contents/MacOS/fcsvr_client"
    # Set the location of the Archives NAS Client Folder
    PATH_TO_TARGET="//Volumes/ARCHIVES/""$CLIENT""/Footages"
    # Set the location of the Transcoding folder
    PATH_TO_TRANSCODE="//Volumes/EditSAN/Transcode"
    # Set the location of the Original File folder
    PATH_TO_ORIGINAL="//Volumes/EditSAN/Capture Scratch/"
    # Make a folder and move the file in it
    mkdir "$PATH_TO_TARGET""$PLACE"
    mv "$PATH_TO_TRANSCODE"/"$FILENAME" "$PATH_TO_TARGET""$PLACE"/
    #Set Copied File and Folder Date from original
    ORIGDATE=$(GetFileInfo -d "$PATH_TO_ORIGINAL""$PLACE"/"$FILENAME")
    ORIGDATEFOLDER=$(GetFileInfo -d "$PATH_TO_ORIGINAL""$PLACE")
    echo $ORIGDATE
    echo $ORIGDATEFOLDER
    Setfile -d "$ORIGDATE" "$PATH_TO_TARGET""$PLACE"/"$FILENAME"
    Setfile -d "$ORIGDATEFOLDER" "$PATH_TO_TARGET""$PLACE"
    # Determine original Production "address" by searching for the "location" (since this is the same as the Production name)
    PROJECTNAME=$("$PATH_TO_BINARIES" search --crit "$PLACE" /project | grep -i -o -e "/project/[0-9]*")
    echo $PROJECTNAME
    # Create asset and associate it with the project
    OUTPUT=$(sudo "$PATH_TO_BINARIES" createasset pa_asset_actua --projaddr $PROJECTNAME /dev/11/"$CLIENT""/Footages""$LOCATION_ESCAPED"/"$FILENAME_ESCAPED" CUST_ASSET_STATUS="INRAID6")
    echo $OUTPUT
    # Change Original metada asset status
    SETMETA=$(sudo "$PATH_TO_BINARIES" setmd /asset/$IDFILE CUST_ASSET_STATUS="TRANSCODED")
    echo $SETMETA

  • ABAP to select all AL11 files based on creation date

    Hi,
    I want to create an ABAP that can select all the files in all the subdirectory folders for a given SAP Directory. The files I want to retrieve will be based on the creation date, i.e. when the file was written to the server, it must be greater than 1 hour and less than 3 hours. The problem I have is, I don't know of any table that stores this type of information. Can any one hepl?
    Thanks, D

    Hi,
    here's a sample-prg.:
    REPORT zzzz66 .
    TABLES epsf.
    PARAMETERS dir  LIKE epsf-epsdirnam DEFAULT '/home/user1/'.
    PARAMETERS file LIKE epsf-epsfilnam DEFAULT 'file001.dat'.
    DATA mtime TYPE p DECIMALS 0.
    DATA time(10).
    DATA date LIKE sy-datum.
    CALL FUNCTION 'EPS_GET_FILE_ATTRIBUTES'
         EXPORTING
              file_name              = file
              dir_name               = dir
         IMPORTING
              file_size              = epsf-epsfilsiz
              file_owner             = epsf-epsfilown
              file_mode              = epsf-epsfilmod
              file_type              = epsf-epsfiltyp
              file_mtime             = mtime
         EXCEPTIONS
              read_directory_failed  = 1
              read_attributes_failed = 2
              OTHERS                 = 3.
    PERFORM p6_to_date_time_tz(rstr0400) USING mtime
                                               time
                                               date.
    WRITE: / mtime,
           / date, time.
    pls reward useful answers
    thank you!
    Andreas

  • Automator- create file names with creation date and time

    I have photo files that I want to rename with a base name, plus a sequential number, based on the creation date (and ideally time). It appears that Automator does not honor the time of the source file when date stamping a new set of files. If there is anyway to use date + time so I can recreate a date_timestamp in addition to a base filename, that would be great.

    Hi Nikhil_BI_Dev,
    According to your description, you find your report runs properly in BIDS but shows blank after deploying onto report server. Right?
    In this scenario, it might be the issue on retrieving data in SQL 2005. Here is a thread with same issue, please refer to the link below:
    Detail report is blank after deploying
    Reference:
    Using SQL Server 2005 Reporting Services with SQL Server 2005 Express Edition
    If you have any question, please feel fee to ask.
    Best Regards,
    Simon Hou

  • How to view creation date using 'ls' command?

    Hi all,
    Anyone know how to get the 'ls' command to display creation date? When I do 'ls -la' I get the mod date, but cannot figure out how to view the creation date.
    Thanks!
      Mac OS X (10.4.2)  

    While there is NO way to do this as ls will only show the mod time there is using another program
    DL this HFSDebug.
    Running it on any file will display to you Create, Mod and access times. An example for you
    sudo hfsdebug /usr/local/bin/hfsdebug\ 2.04\ BETA\ G5
    path = Firefly:/usr/local/bin/hfsdebug 2.04 BETA G5
    # Catalog File Record
    type = file
    file ID = 20112378
    flags = 0000000000001010
    . File has a thread record in the catalog.
    . File has security data (ACLs).
    reserved1 = 0
    createDate = Wed Dec 14 00:57:14 2005
    contentModDate = Wed Dec 14 00:57:14 2005
    attributeModDate = Wed Dec 14 00:57:14 2005
    accessDate = Thu Dec 15 20:42:53 2005
    backupDate = Fri Jan 1 00:00:00 1904
    # BSD Info
    ownerID = 0 (root)
    groupID = 20 (staff)
    adminFlags = 00000000
    ownerFlags = 00000000
    fileMode = -rwxr-xr-x
    linkCount = 0
    textEncoding = 0
    attrBlocks = 0
    # Finder Info
    fdType = 0
    fdCreator = 0
    fdFlags = 0000000000000000
    fdLocation = (v = 0, h = 0)
    opaque = 0
    # Data Fork
    logicalSize = 121744 bytes
    totalBlocks = 30
    fork temperature = not a hot file
    clumpSize = 101 bytes
    extents = startBlock blockCount % of file
    0x362cd4 0x1e 100.00 %
    30 allocation blocks in 1 extents total.
    30.00 allocation blocks per extent on an average.
    # Resource Fork
    logicalSize = 0 bytes
    Enjoy!
    Peter
    PowerMac G5 DP 2.5Ghz   Mac OS X (10.4.3)  

  • Transaction code creation date

    Hi,
    Can anybody please help me, in which table we can get the info about transaction code creation date?
    Point will be rewarded.
    Thank you.

    Hi,
    Do you mean by the date on which a particular document is created. If it is so it would be available in the header data of that document. For example if you are looking for sales order creation date, then u will get it in VBAK. If you r looking for deli doc creation date then u can get it in LIKP and for billing in VBRK.
    Hope I am answering to ur query.
    Kind Regards
    Chakradhar

  • Tranaction code creation date

    Hi,
    Can anybody please help me, in which table we can get the info about transaction code creation date?
    Point will be rewarded.
    Thank you.

    In SE93 typically you can check the program that a t-code is pointing to. You can then check table TRDIR for when the program got created. Granted that this will not tell you exactly when a t-code was created but this will let you know when a program gets created. So essentially you can estimate the approx time when the T Code got created.

Maybe you are looking for

  • Function module in BW for Balance Sheet

    Dear all, i have a request to create a FM for BW module.I'm new at abap in BW so i want kindly to ask you to help me with some material or knowledge that you have. The specific request is for Balance Sheet. It is done in BW with routine but i have to

  • HDV won't play out to Z1u

    I'm having a tough time getting my HDV timeline to playout to a Sony Z1U HDV camera. I keep selecting View/external video/All frames and the Z1U screen stays blue. It won't even flicker. My sequence settings are Compressor=HDV 1080i60 editing timebas

  • Cannot access c160 after reverting OS

    I tried to revert an OS upgrade and now I can't access my c160.  When attempting to connect via the serial console, I get prompted for credentials, then the following

  • Setting up number range for projects in cProjects

    Hi, I am new to cProjects & my apologies if my question may sound very naive. My client wants an alpha-numeric number range to be set up for numbering of projects. Is this possible & if yes how? Which is the object for setting the number range? (I be

  • Is APICS useful? What are my exit options after SAP ?

    Hi, I have completed my MBA and will be joining SAP as business process consultant in supply chain. As I will be doing SAP certifications in the company, I was thinking of doing APICS certifications (CPIM/CSCP), first I wanted to understand whether i