Source tables for ST03 data - can only find structures!

Does anyone know which tables feed the structures (e.g. STA1) for ST03?  I've searched all over the place and all I can find are structures.  I need to run a query against the source tables.  Thanks for your help.

Hi,
See whether ST03N will meet your needs?
For more options see SAP and SAP notes for MONI or TCOLL or ST03(N) (e.g. SAP notes 12103, 143550 and function module SAPWL_ACCNT_GET_SYSTEM_USAGE).
Cheers,
Julius
This coding also helps to understand it a bit:
*&      Form  TRANSLATE_TCODE_REPORT
*       Translate/repair report and tcode names of statistic records   *
*  -->  TCODE     transaction code
*  -->  DYNPN     dynpro number
*  -->  ttype     task type
*  -->  USER      user name
*  -->  TERMNL    terminal ID
*  <->  REPO      report
*  <--  ENTID     entry ID
FORM translate_tcode_report     USING
                                   tcode LIKE sapwlpfnrm-tcode
                                   dynpn LIKE sapwlpfnrm-dynpronr
                                   ttype LIKE sapwlpfnrm-tasktype
                                   user  LIKE sapwlpfnrm-account
                                   terml LIKE sapwlpfnrm-terminalid
                                   repo  LIKE sapwlpfnrm-report
                                   entid TYPE entry_id_type.
  CLEAR entid.
  entid-type = 'R'. "field TCODE_OR_REPORT contains a report name
  CASE ttype.
    WHEN tt_autoabap.
      entid-tcode_or_report = repo = 'AutoABAP'.
      EXIT.
    WHEN tt_bufref.
      entid-tcode_or_report = repo = 'Buf.Sync'.
      EXIT.
* 5.0 bei Tasktypen ALE, RFC, CPIC wird der TCODE mitgeliefert
    WHEN tt_ale.
      IF NOT ( tcode IS INITIAL ).
        entid-type   = 'T'.
        entid-tcode_or_report = tcode.
        repo = 'ALE'.
      ELSE.
        entid-type = 'R'.
        entid-tcode_or_report = repo = 'ALE'.
      ENDIF.
      EXIT.
    WHEN tt_rfc.
      IF NOT ( tcode IS INITIAL ).
        entid-type   = 'T'.
        entid-tcode_or_report = tcode.
        repo =  'RFC'.
      ELSE.
        entid-type = 'R'.
        entid-tcode_or_report = repo = 'RFC'.
      ENDIF.
      EXIT.
    WHEN tt_cpic.
      IF NOT ( tcode IS INITIAL ).
        entid-type   = 'T'.
        entid-tcode_or_report = tcode.
        repo = 'CPI-C'.
      ELSE.
        entid-type = 'R'.
        entid-tcode_or_report = repo = 'CPI-C'.
      ENDIF.
      EXIT.
  ENDCASE.
  CASE repo.
    WHEN 'SAPMSYST'.
      CASE dynpn.
        WHEN '0011'.
          entid-tcode_or_report = repo = 'Logoff'.          "#EC NOTEXT
        WHEN '0020'.
          entid-tcode_or_report = repo = 'Login_Pw'.        "#EC NOTEXT
        WHEN '0040'.
          entid-tcode_or_report = repo = 'MainMenu'.        "#EC NOTEXT
        WHEN '0010'.                   "nicht mehr R2 Lgout !!
*          entid-type            = 'T'.
*          entid-tcode_or_report = '/LON'.
*          repo                  = 'R2 Lgout'.
          entid-tcode_or_report = repo.
        WHEN '0050'.
          entid-type            = 'T'.
          entid-tcode_or_report = '/LON'.                   "#EC NOTEXT
          repo                  = 'R2 Login'.               "#EC NOTEXT
        WHEN '0200'.
          entid-tcode_or_report = repo = 'New Pswd'.        "#EC NOTEXT
        WHEN OTHERS.
          entid-tcode_or_report = repo.
      ENDCASE.
    WHEN 'SAPMSSY0'.                   "Logon and other system exits
      CASE dynpn.
        WHEN '0120'.
          IF tcode = 'SE38' OR tcode = 'SA38' OR tcode = 'SE80'.
            entid-tcode_or_report = repo = 'Rep_List'.
          ELSE.
            entid-tcode_or_report = repo = 'Login_Ok'.
          ENDIF.
        WHEN OTHERS.
          entid-tcode_or_report = repo.
      ENDCASE.
    WHEN 'SAPMSSY2'.                   "BTC Control
      CASE dynpn.
        WHEN '4004'.
          entid-tcode_or_report = repo = '(B)SCHDL'.
        WHEN '4005'.
          entid-tcode_or_report = repo = '(B)STRTR'.
        WHEN '4006'.
          entid-tcode_or_report = repo = '(B)ZOMBI'.
        WHEN '4007'.
          entid-tcode_or_report = repo = '(B)EVDRI'.
        WHEN '4008'.
          entid-tcode_or_report = repo = '(B)EXTSC'.
        WHEN '4009'.
          entid-tcode_or_report = repo = '(B)AUTOD'.
        WHEN '4010'.
          entid-tcode_or_report = repo = '(B)SWTCH'.
        WHEN OTHERS.
          entid-tcode_or_report = repo = '(B)OTHER'.
      ENDCASE.
    WHEN 'SAPMSSY3'.                   "ABAP Debugger
      entid-tcode_or_report = repo = 'Debugger'.            "#EC NOTEXT
    WHEN 'SAPMSSY4'.                   "Update control
      entid-tcode_or_report = repo = 'Upd Ctrl'.            "#EC NOTEXT
    WHEN 'SAPMSSY6' OR 'SAPMSSY8'.     "Auto ABAP (SAPMSSY8 since 4.5)
      entid-tcode_or_report = repo = 'AutoABAP'.            "#EC NOTEXT
    WHEN 'SAPMSSY7'.                                        "Scheduler
      entid-tcode_or_report = repo = 'Schedulr'.            "#EC NOTEXT
    WHEN 'SAPMSEDT'.                                        "Editor
      entid-tcode_or_report = repo = 'Rep_Edit'.            "#EC NOTEXT
    WHEN OTHERS.
      IF repo IS INITIAL.
        IF dynpn IS INITIAL.
          IF user = sapsys_user.
            IF terml IS INITIAL AND ttype NE tt_btc.
              entid-tcode_or_report = repo = 'System'.      "#EC NOTEXT
            ELSE.
              entid-tcode_or_report = repo = '?'.
            ENDIF.
          ELSE.
            entid-tcode_or_report = repo = 'Aborted'.       "#EC NOTEXT
          ENDIF.
        ELSE.
          entid-tcode_or_report = repo = '?'.
        ENDIF.
      ELSEIF tcode = 'SE38'   OR
             tcode = 'SA38'   OR
             tcode = 'SE80'   OR
             tcode = 'SARP'   OR       "SARP ausfiltern (Berichtsbaum)
             tcode = 'SART'   OR       "SART ausfiltern (Berichtsbaum)
             tcode = 'GR55'   OR       "GR55 ausfiltern (Berichtsbaum)
             ttype = tt_btc   OR
             tcode IS INITIAL.
        entid-tcode_or_report = repo.
      ELSE.
        entid-tcode_or_report = tcode.
        entid-type            = 'T'.
* removed in release 6.30
*        IF entid-tcode_or_report(3) CA space OR
*           entid-tcode_or_report    CA '!'.
*          entid-tcode_or_report = '!XYZ'.
*        ENDIF.
      ENDIF.
  ENDCASE.
ENDFORM.                               " TRANSLATE_TCODE_REPORT

Similar Messages

  • Looking for Desktop image, can only find alias, which is broken

    Hi,
    I'm trying to find the file that is currently set as my desktop wallpaper.  I've looked in ~/Library/Preferences/com.apple.desktop.plist and found a file name that looks right, DSCF0038.JPG.  The path itself is pretty scrambled (see below for full string) but using 'find' in Terminal I came up with a path for an alias with that name.  Unfortunately the alias is broken.  Assuming all the steps I've taken so far are correct I should be able to access the file somehow; the desktop does.  Any ideas?
    Mike
    plist entry: bplist00ÑZBackgroundÓ.X69670144WdefaultX69670848×  VChange]TimerPopUpTag^ImageFileAlias]ImageFilePath_CollectionStringZChangePathY PlacementUNeverOææ¿~)ÍH+€t€‹¶uê$ ÿþÿÿÿÿ€t€s€rN®?>Ðk× DSCF0038.JPG Macintosh HD<KYfyƒ•¤·ËÌÍÆ34xyz{|}¢£¤¥¦§¨©ª8«

    Hi Mike,
    Os it here?
    /Users/YourUserName/Library/Safari/Safari Desktop Picture.jpg
    /Users/YourUserName/Library/Safari/Safari Desktop Picture.png
    But could be .gif or a few more as far as extensions.
    Safe Boot , (holding Shift key down at bootup), use Disk Utility from there to Repair Permissions, test if things work OK in Safe Mode.
    Then move these files to the Desktop for now...
    /Users/YourUserName/Library/Preferences/com.apple.finder.plist
    /Users/YourUserName/Library/Preferences/com.apple.systempreferences.plist
    /Users/YourUserName/Library/Preferences/com.apple.desktop.plist
    /Users/YourUserName/Library/Preferences/com.apple.recentitems.plist
    Reboot & test.
    PS. Safe boot may stay on the gray radian for a long time, let it go, it's trying to repair the Hard Drive.

  • Error while filling set up tables for 2LIS_11  data sources

    hello All ,
    I tried to fill setup tables for 2LIS_11 data sources in OLI7BW , but the job RMCVENUA is getting cancelled. below is the Job Log ,
    Job started
    Step 001 started (program RMCVNEUA, variant &0000000000005, )
    Start of order processing
    Error determining rate: foreign curr. local curr. INR date 10.09.2008 (doc. 1)
    Job cancelled
    Is there any setting required in R3 side before filling setup tables of SD ?
    I am able to fill the setup tables for 2LIS_05 ( Notifications) successfully.
    Regards ,
    Amol Kulkarni
    Edited by: Amol Kulkarni on Dec 4, 2008 3:59 AM
    Edited by: Amol Kulkarni on Dec 4, 2008 4:00 AM

    Hi,
    one of the sales document currencies is not maintained properly in the system and therefore its failing.
    you need to correct those documents before filling the set up tables.
    Either you can chose the option fault document toleration limit to 1000...so that 1000 records wrong records can be tolerated or you have to crrect it first before filling up the set up tables.
    This will generally happen in test systems.... but very rare in production...so try to maintain currrency again in the system.
    generally you will see the sales doc number in the error for which its failing.
    May be at the time of filling some óne was working on some sales document and tried it save it.
    correct that doc and fill the set up tables again.
    Thanks
    Ajeet

  • TO FIND TABLES  FOR MASTER DATA TRANSACTIONS

    HI , When we create a customer, the information is updated in structure RF02D and some tables like KNA1 are updated ..
    How can we find the tables for master data transactions.?
    please reply...
    thanks.

    Hi,
    I entered into the TC : ST05, Activated the trace then I created a customer, then I came back and deactivated trace, then I clicked on display it gave me a list ( yellow color list ) ... Wat do u mean by update methods here ...
    Thanks
    SK SIDDIQUI

  • Can I install Mac OS X 10.5 on a Powerbook G4 already running Mac OS X 10.6? I lost my disc of 10.6 and can only find my 10.5 disc as I'm selling my MacBook and wiping the hard drive for a complete reset.

    Can I install Mac OS X 10.5 on a Powerbook G4 already running Mac OS X 10.6? I lost my disc of 10.6 and can only find my 10.5 disc as I'm selling my MacBook, and wiping the hard drive for a complete reset.

    A PowerBook G4 can't run Snow Leopard OS 10.6, however, it can run Leopard OS 10.5. But you must use a retail (black) Leopard install DVD.
    What does the selling of your MacBook have to do with installing Leopard on your PowerBook?
     Cheers, Tom

  • Have a serial number for Acrobat 9 Standard but need a download and can only find download for Pro version.

    I did a factory reset on my old laptop and lost my Adobe Acrobat 9 Standard. I have the serial number but need a download and can only find download for Pro version. When I enter my serial number (standard) into the Pro Installation it says the number is invalid. Any idea where I can download Standard version of 9? Thanks.

    Kimg68365882 did you purchase Acrobat 9 Standard from Adobe directly?  If so and you choose to download the software instead of receive a CD then please see Find a download link on Adobe.com.
    If you originally received the software on CD then please use a computer with an optical drive to copy the contents of the CD to a USB drive.

  • Acrobat Standard XI, but can only find the CD for windows.  I have a mac (I have access to an external CD drive and I have the product keys for windows).  What is the best way for me to install it?

    Hi, I purchased Acrobat Standard XI, but can only find the CD for windows.  I have a mac (I have access to an external CD drive and I have the product keys for windows).  I have never installed it anywhere else.  What is the best way for me to install it?

    Hi lintonm86921521,
    I can understand your concern & will guide you through this.
    I am so sorry to inform you that Acrobat XI Standard is not available on Mac, you can only use it on your Windows computer.
    You can also refer to the system requirements at : System requirements | Acrobat family of products—older versions (XI, X, 9)
    In case if you have any further query please let us know, we will be happy to help you.
    Regards,
    Aadesh

  • HT4059 is there an ibook app for the mac?  I can only find it for the iPhone or the ipad...  I like to read on my computer so what gives?

    I am looking for an ibook app form my MAC  and can only find it for the iphone and the ipad.  I like reading on my computer.... so what gives?  I enjoy using my iphone but it becomes tedious and I dont need an ipad.

    In OS X Mavericks, to be released this Fall, there is a built-in iBooks app.
    http://apple.com/osx/preview#ibooks

  • How do i re install premiere elements 11, i can only find the download for 12.

    I would like to install premiere elements 11 onto a different computer but can't find the download. I can only find 12

    AlaskaBreeCharlie
    Did you purchased Premiere Elements 11 from an Adobe download? If so, did you double check http://www.adobe.com Welcome AlaskaBreeCharlie/My Orders and My Products for the download? Or, did you have an installation disc instead?
    Depending on the circumstances, you could contact Adobe via its Adobe Chat to inquire about getting additional Premiere Elements 11 download
    http://helpx.adobe.com/contact.html?product=premiere-elements&topic=orders-refunds-and-exc hanges
    Click on the above link. When it opens, click on the statement "I still need help" to bring up the Adobe Chat to discuss
    "Orders, Refunds, and Exchanges".
    Also, you might consider downloading the Premiere Elements 11 tryout from the following web site and inserting your purchased Premiere Elements 11 serial number in it.
    http://prodesigntools.com/photoshop-elements-11-direct-download-links-pse-premiere-pre.htm l
    It is important that you read carefully the Note: Very Important Instructions message at the web site. Otherwise, you will run into Access Denied message.
    Please review and let us know the outcome.
    Thank you.
    ATR

  • I need safari 5 to update safari 4.02 for new email provider have leopard on a g5 powermac can only find 5.1 download for snow leopard

    i need safari 5 to update safari 4.02 for new email provider have leopard on a g5 powermac can only find 5.1 download for snow leopard is 5 still available

    Click here for it.
    (59866)

  • I have two iphones using the same computer and I can only find a backup for my iphone and not my girlfriends.  She uses itunes a lot more often then I do but cant find it

    I have two iphones using the same computer and I can only find a backup for my iphone and not my girlfriends.  She uses itunes a lot more often then I do but cant find it.  Really need some help.  Shouldnt her apps and details be saved online in the itunes store?  Even her apps wont appear

    If you create an Apple ID for your daughter, signing out of the existing Apple ID with the iTunes & App Store on her iPhone will not change anything on your iPhone.
    All apps include DRM protection which is tied to the Apple ID that was used to download the apps.
    If she starts using her Apple ID to download apps, when there is an app update for an app on her iPhone that was downloaded with the current shared Apple ID, she will need to use that Apple ID and password to download the app updates.

  • Just purchased Lightroom (stand alone) and asks for a previous serial number. I don't have one only an students version of photoshop for which I can't find the serial number

    Just purchased Lightroom (stand alone) and asks for a previous serial number. I don't have one only an students version of photoshop for which I can't find the serial number

    If it is asking for a serial number for a previous version then you purchased an upgrade version rather than a standalone version.  You should be able to determine this based on the price you paid.  If you do not own an earlier version then you need to purchase a full version rather than an upgrade.  If you did purchase a full version but acquired an upgrade version then you will need to acquire the full version.
    Contact Adobe support thru chat to help get resolution...
    Get help with orders, refunds, and exchanges (non-CC)
    http://helpx.adobe.com/x-productkb/global/service-b.html ( http://adobe.ly/1d3k3a5 )

  • Aspire V5-572G - No drivers for Windows 10 available. Can only find drivers for Windows 8.1

    Hi, I have upgraded my PC and have my touchpad is not working.Have search for new drivers for Windows 10, but there are no drivers for Windows 10 available. Can only find drivers for Windows 8.1 Please advice how I can solve my problem...

    There are Windows 10 drivers available: 
    AudioRealtekAudio Driver6.0.1.7553444.7 MB2015/07/28DownloadBluetoothAtherosBluetooth Driver (NFA222)10.0.1.059.2 MB2015/07/28DownloadBluetoothBroadcomBluetooth Driver12.0.1.65328.2 MB2015/07/28DownloadCardReaderRealtekCard Reader Driver10.0.10125.2127712.8 MB2015/07/27DownloadChipsetIntelChipset Driver10.1.1.72.7 MB2015/07/27DownloadIRSTIntelIRST (Intel® Rapid Start Technology) Driver14.5.0.108111.4 MB2015/07/27DownloadLanRealtekLAN Driver10.1.505.201512.5 MB2015/07/27DownloadMgmtEngineIntelME (Management Engine)Driver11.0.0.115360.7 MB2015/07/27DownloadTouchPadALPSTouchpad Driver8.100.2020.21260.7 MB2015/07/28DownloadTouchPadELANTECHTouchpad Driver15.6.0.388.8 MB2015/07/27DownloadTouchPadSynapticsTouchpad Driver19.0.9.4148.4 MB2015/07/28DownloadVGANVIDIAVGA Driver353.24649.5 MB2015/07/28DownloadWireless LANAtherosWireless LAN Driver (NFA222)10.0.0.31859.2 MB2015/07/28DownloadWireless LANBroadcomWireless LAN Driver7.35.267.044.5 MB2015/07/29Download

  • I have a late 2008 Mac Book Pro and would like to upgrade to 8G, any suggestions on a brand?  I can only find Ramjet or Cruical for the upgrade and there is a $30 difference in price.

    I ahve a late 2008 Mac Book Pro and would like to upgrade the memory to 8g.  I can only find 2 options Crucial and Ramjet.  There is a $40 difference in the cost.  Does anyone know if one is better than the other?

    I have gotten my RAM from either Crucial or Macsales. They are both excellent.

  • How can I synchronize my iPhoto events? my iTunes doesn't read them and with the app Images in the iPad I can only find Photos, Albums, Faces and Places, not Events.

    How can I synchronize my iPhoto events? my iTunes doesn't read them and with the app Images in the iPad I can only find Photos, Albums, Faces and Places, not Events.

    I had a problem a couple of months ago when iPhotos suddenly rearranged the order of my Events (Why won't iPhoto let me arrange my photos?) .  I was told "Use albums not events - events are not a good way to organize - albums and folder are designed for organisation and are very flexible".
    Haha!  I should have paid attention and read between the lines!  My iPhotos were highly organised groupings - not according to date but the way I wanted them - and it was so easy to do!  I see now that if I had them all in albums, as per the Apple Apologist suggestion, I wouldn't have this unholy mess I have been left with just to make iPhone & iCloud users happy.  I am now going through Photos and making Albums (of what used to be in my Events)  ... maybe I'll get this finished before they do another non user friendly update!

Maybe you are looking for