To check where a table is used in other programes

how do i check where a table is used in other programes, i tried using se37, which is for checking functions but it doesnt help.

Not sure if this is simply a matter of going into SE11, put the table name in, and there is a where used option on the toolbar ?
From here you can select what objects you want to search in.
Is there a more complex requirement ?

Similar Messages

  • How to check where a table is used in other programes

    Hi all,
    I am facing one problem... there is a z-table created long back and still being used to store data.
    There may be some transactions to fill / update this table. Those programs are not coming in where-used list.
    As per the requirement, i already have one transaction to fetch data from this table... but this program is also not coming in the where-used list. So it means there might be some other programs also which are using this table.
    So please help me in finding such programs.
    Thanks,
    Sujeet

    Gr8,
    There you hit...
    "DYNAMIC SELECTS".
    Didnt come to my mind at all

  • I have a disc of Creative Cloud 6. Acrobat Pro does not work. I have used the other programs and they are fine, but when I try to open Acrobat Pro nothing happens. I am using Microsoft System 7.

    I have a disc of Creative Cloud 6. Acrobat Pro does not work. I have used the other programs and they are fine, but when I try to open Acrobat Pro nothing happens. I am using Microsoft System 7.

    what's creative cloud 6?  do you mean cs6?
    what version of acrobat pro do you have installed and what are you clicking to start it?

  • Lightroom Library in use by other program.

    My current library is no longer available. I get the message "Library in use by other program" but there are no other programs open.  Is there any way to get back to the original library?  I can start a new library but I would need to re-import all the photos.

    First make sure all Lightroom processes are dead, then delete the .lock file.
    Hint: On Windows, use task manager to 'End' all lightroom.exe processes, if there are any. (not sure about Mac)
    Or, just restart your computer... (windows or mac)
    R

  • "files used by other program" - cannot eject

    I've got two iPods - a nano and a 60GB. Nano gives me trouble ejecting - I get this "flash" saying something like:
    IPod "NN" cannot be ejected, because it contains files, which are used by other programs. (I get the message in Danish, and I'm not able to make the right translation in English....)
    I cannot use the "safe removal of hardware" og eject. And I cannot figure out which other program uses files in my nano.
    Thanks for helping...
    Ulla
    hp   Windows XP  

    Uh - I really don't know... But I dont't think so!!!
    I tried to turn off my pc after like half an hour, and unplugged nano. Succes. After opening iTunes again - same ting happend. But it does not happen to the 60 GB iPod (whatever that is called - it is not the small nano, which is my daughters and the one that makes the trouble)
    I will survive with this lille problem, but of course I would like it to vanish... ;o)
    thanks!

  • Report needed for checking where pers. nr. is used in SAP

    Hello,
    I am currently searching if there is a report available which is checking where in SAP a Pers. nr. is used. e.g. partner in an open order or responsible of a costcenter or appraiser in an appraisel, open workflow document etc. This is needed to confirm that all the tasks of the emplloyee has been transferred to another employee before the leave action is made.
    With kind regards,
    Ronald van Eeuwen

    Hi,
    There are more than 9000 programs and classes where field PERNR is used.
    You have to be more specific with your question.
    You can see all programs where PERNR is used by starting transaction SE11, enter data type PERNR, display and then CtrlShftF3.
    Cheers

  • Checking Records in multiple screens using module pool programming

    Hi,
        I created student registration form using module pool programming.In first SCREEN i designed like the Below.
              Name:     <INPUT/OUTPUT Field>
             Emailid:    <INPUT/OUTPUT Field>
             Password:<INPUT/OUTPUT Field>
              CREATE<Push Button>    SIGNIN<Push Button>       cancel<Push Button>
    in  screen 1000 I created like the above screen and i wrote the code for it.It's successfully inserted records in ZSTUDENT database.
    BUT
        when i call the second screen 2000.I design the screen like below.And database table is ZSTU_LOGIN.
          username : <INPUT/OUTPUT Field>
         password  : <INPUT/OUTPUT Field>
             LOGIN<push Button>   EXIT<Push Button>
    AND i created Third screen 3000.Like full of detail of student details like First Name,Last Name,DOB,Education Details,Contact Details etc...
    BUT I'm facing the pbm is
                  whatever the record is stored in table ZSTUDENT-Name & password when i call the screen 2000 that USERNAME & PASSWORD are same
    Then go to THIRD screen 3000.BUT i wrote the code for second screen 2000 by using SELECT statement.without my code check it will go to third
    screen 3000 By the Statement of Call screen 3000.
    PLZ any one help me HOW to CHECK the Exact Record From second Screen 2000 to First Screen 1000.
    HOW to Check the code AND can u provide me any code available.
    thanks,
    Anusha

    Hi vikram,
        I wrote the code for screen 2000 like below.
    MODULE STATUS_2000 OUTPUT.
    *  SET PF-STATUS 'xxxxxxxx'.
    *  SET TITLEBAR 'xxx'.
       TABLES : ZSTUDENT_ENTER.
      TYPES: BEGIN OF ST_TAB1,
          USERNAME TYPE ZSTUDENT_ENTER-USERNAME,
         PASSWORD1 TYPE ZSTUDENT_ENTER-PASSWORD1,
         END OF ST_TAB1.
       DATA : W_TAB1 TYPE ZSTUDENT_ENTER.
       DATA : IT_TAB1 TYPE STANDARD TABLE OF ZSTUDENT_ENTER.
       DATA : USERNAME TYPE CHAR50,
             PASSWORD1 TYPE CHAR25.
    ENDMODULE.                 " STATUS_2000  OUTPUT
    *&      Module  USER_COMMAND_2000  INPUT
    *       text
    MODULE USER_COMMAND_2000 INPUT.
    CLEAR W_TAB1.
       MOVE-CORRESPONDING W_TAB TO W_TAB1.
    IF SY-SUBRC EQ 0.
       SELECT SINGLE MAILID PASSWORD
         INTO CORRESPONDING FIELDS OF W_TAB
           FROM ZSTUDENT_INFO
           WHERE USERNAME = W_TAB-MAILID AND
                PASSWORD1 = W_TAB-PASSWORD.
           CALL SCREEN 2000.
           ENDSELECT.
                 ELSEIF SY-SUBRC NE 0.
               MESSAGE 'INVALID USERNAME/PASSWORD'.
               ELSEIF SY-UCOMM = 'LOGIN'.
                 CALL SCREEN 3000.
                 ENDIF.
    ENDMODULE.                 " USER_COMMAND_2000  INPUT
    But i could not found whether code is write or not.
    syntax error is USERNAME is Unknown.
    could solve me my pbm anybody.....
    Thanks,
    Anusha

  • Tools to list all table-field used by a program

    Hello everyone
    Is there any available tool providing the list of fields used by a program?
    There are several tools to list the tables used by a program but I need to have a list of the fields of those tables.
    Here is a scenario.
    DATA: lv_matnr TYPE matnr.
    SELECT SINGLE matnr INTO lv_matnr FROM mara WHERE mtart = 'FERT'
    WRITE:/ lv_matnr.
    The list should contain the following information:
    MARA-MATNR
    MARA-MTART
    Because both fields are used by the program. None of the other fields of the table mara should be listed.
    Regards
    dstj

    All BlackBerry device use the same APN blackberry.net. This is unique accross all carrier.
    tanzim                                                                                  
    If your query is resolved then please click on “Accept as Solution”
    Click on the LIKE on the bottom right if the post deserves credit

  • How to create a java card library (jar file to be used in other programs)

    Hi all,
    I am working on JCOP and writing quite a bit of applets for the java card . Now i have lots of code that could be reusable for example sending SMS, encryption routine, etc.. So this part of the code i want to put into a utility class and create a package out of it. This utility package i must be able to import into my programs what i write.
    I tried the normal way of creating the jar by renaming the CAP file of the utility class, also tried including the /javacard/* files also into the jar file as indicated by sfarmer(active forum member here). But none seems to work. I tried contacting NXP folks and they indicated that it may be possible only by way of Sharable Objects.
    But some how i am not convinced why i should use Sharable object for this. So if any one can throw some light into this regard it will be immensely helpful to me and my project.
    Regards
    Prakash

    Hi,
    Well the variable defined are as below
    public static byte[] msgdata = new byte[255];
    private static final byte[] HEADER_TEMPLATE = {
              (byte) 0x81, (byte) 0x03, (byte) 0x01, (byte) 0x21, (byte) 0x00, // Command details tag
                   (byte) 0x82, (byte) 0x02, (byte) 0x81, (byte) 0x02, // Device Identities tag
                   (byte) 0x8D, // Text String tag
                   (byte) 0x00, // length
                   (byte) 0x04, // Text String tag
    the msgdata is declared public so that i can access this as a Class member in my other program doing Utilities.msgdata. But the problem is now that if i dont declare it as final then the compiler gives me the below error
    "library has initialized array for non-final, non-static field Utilities, msgdata, [B, attr jc-field: tok 0, public static"
    If i make it final then i cannot change it... So now i am stuck..
    Any help will be highly appreciated...
    Regards
    Prakash                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Webcam 3100 says being used by other program but isn't

    i have a webcam 3100 when i try to open "capture" i get the "may not be connected or maybe being used by another program..." . but when i open "monitor" all is fine. if i try to open capture (at the top right of the window) when i am in monitor  i get the same " maynot be connected  or maybe being used...). I also have skype i removed it from my computer and tried again same thing happened. whe i reinstalled skype i did get the webcam after it was installing. i did remove windows 7 and replaced windows 7 earlier. the webcam (capture) did work before i did remove windows 7. it was just suggested by a friend to try to reinstall the drivers from HP site. will try but will still post this.
    please help

    Hello @mikegiar1,
    Welcome to the HP Forums, I hope you enjoy your experience! To help you get the most out of the HP Forums I would like to direct your attention to the HP Forums Guide First Time Here? Learn How to Post and More.
    I have read your post on how the capture-feature for your webcam worked on your desktop previously, and I would be happy to assist you in this matter!
    To ensure your system has all of the software and hardware drivers, I recommend following this document on Using Recovery Manager to Restore Software and Drivers (Windows 7). Once the software is re-installed, please ensure your software is up to date Using HP Support Assistant (Windows 7). 
    Please re-post with the results of your troubleshooting, and I look forward to your reply!
    Regards
    MechPilot
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the right to say “Thanks” for helping!

  • Mail blocks using my other programs

    I have Mavericks 10.9.5, and my Mail program has worked fine until this past week.  Fine means that I can open a new email to send and then go to another archive email for test , copy it and then paste it in the new email, etc all while my other programs like Safari are still open.  However, now, when I open a new email to send, my second monitor goes grey ( where Excel and Safari are open) , all icons below and above on monitor 1 ( MAcBook Pro) disappear and only the new email that I am creating is active.
          The only changes I can tell are that I had a system upgrade last week that may have changed some setting.

    I found the answer.  I had accidentally clicked the two arrows in the top right corner of the Mail page.  After clicking them again , the programs work like normal.

  • How to find out where a table is used in the code ?

    I have a huge database, and I am adding a column to a table...
    is there a query to find out if this would impact the code ? I mean I want to find all the places in the code with
    insert into mytable, or update mytable.....
    how to include both insert into mytable, and update mytable in dba_source ?

    Use DBA_DEPENDENCIES:
    select owner,name,type from dba_dependencies where referenced_name = 'TABLE_NAME'
    and referenced_owner = 'TABLE_OWNER';For example:
    SQL> select owner,name,type from dba_dependencies where referenced_name = 'EMP'
      2  and referenced_owner = 'SCOTT';
    OWNER                          NAME                           TYPE
    PUBLIC                         TABLE1                         SYNONYM
    SCOTT                          SELECT_EMP                     PROCEDURE
    SCOTT                          EMP_DEPT_VW                    VIEW
    SCOTT                          PP                             SYNONYM
    SCOTT                          EMP_MV                         MATERIALIZED VIEW
    SCOTT                          EMP_VIEW                       VIEW
    6 rows selected.
    SQL> However, keep in mind DBA_DEPENDENCIES stores statis references only. If your code references table in question in dynamic SQL you will have to parse DBA_SOURCE and in some cases, even that will not give you all answers.
    SY.

  • Protools wont launch -1118 used by other program

    Loaded protools/MBOX. When i got to launch program it says
    -1118
    program used by another while loading DAE..Is there a way to unblock programs and get this to open...??

    Welcome to Discussions - you'll get a better answer if you post to the Final Cut Pro forum here:
    http://discussions.apple.com/forum.jspa?forumID=939
    Good luck,

  • Constant skipping while using any other program

    Im sure this has been answered somewhere but couldnt find it in a basic seacrh...
    itunes constantly skips whenever i am using any very basic program - even one internet browser or outlook. one of my roomates had the exact same problem and reinstalled itunes and everything worked fine. ive tried that and nothing improves. ideas?

    There's a similar thread going over here:
    http://discussions.info.apple.com/webx?128@@.68aca9a0
    However I'm disheartened to see you are experiencing this on Windows as I believe the posters on this other thread are Mac users like me. Is it an iTunes app prob???

  • In which procedure a table is used

    Hi,
    I am using oracle 9iR2 on red hat 4 (64 bit).
    I want to check a specific table is used in which procedures?
    Thanks

    Hi,
    you find referenced tables for procedure
    select *  from DBA_DEPENDENCIES
    where OWNER = <your_procedure_owner>
      and REFERENCED_TYPE='TABLE'
      and TYPE= 'PROCEDURE'
      and NAME = <procedure_name>;Regards
    Mahir M. Quluzade
    www.mahir-quluzade.com

Maybe you are looking for

  • Can a thunderbolt port take hdmi in?

    Macbook Pro Early 2011 15" 10.9.2 If I were to take an Xbox 360 and plug it into a thunderbolt port via a thunderbolt to hdmi cable, could I run the display on my computer like a TV? Or does the thunderbolt only put display out? Thanks.

  • User Exit / BAdI to update the External Patient ID.

    Hello SAPients! I've been searching everywhere and I can't find a BAdI or User Exit to automatically update the External Patient Identification Number (NPAT-EXTNR). I've just found BAdIs to validate the correctness of the field but not a way to autom

  • Transactional Replication - SQL Server 2012

    Newbie to Replication. Configured transactional replication on a database and everything run's fine, but out of all the tables one of the table with couple of columns as VARCHAR(MAX) and with about 3 million records takes 80% of replication duration.

  • What is the maximum number of webcam users in Adobe Connect 9?

    I'd like to know how many simultaneous webcam users can Adobe Connect handle. Also, has anyone had any experience using a large number of webcam users? If so, how was the performance? Thanks

  • Adobe LiveCycle Designer Plug-in for Rational

    Hi, I am trying to download Adobe LiveCycle Designer Plug-in for Rational but I can't find it on Adobe site. Can anyone guide me to find the link to download it please?