Transaction for table used by programs

Hi All,
I want to know the table TOA01 is used by program.
Please let me know any transaction is theare for this.
Thanks and regards,
zubera

Hi,
follow these navigation steps,
->SE11
->Enter the Table name as TOA01
->Hit (CtrlShiftF3) or Click on Where-Used-List from Application toolbar
->Select Programs, Deselect Other options(if u want only program names)
->Click on Continue
Bye,
KC

Similar Messages

  • Create transaction for table

    Hi experts,
    Can anybody help how to create transaction for table maintenance generation?
    Thanks in advance,
    Zak.

    Hi
    Check this:
    Table maintennace generator is used to create screen to maintain values in a table. Once you create maint generator you can goto transaction SM30 and add data to table . In SAP it is more relevant to customizing data.
    Create a table maintance program for a z table :
    In transaction SE11, in the attribute tab of your z table check table maintenance check box. Go to SM30 transaction, enter the ztable name and click on maintain button. Here you can enter new entries into the ztable .
    Or
    You can create a PARAMETER TRANSACTION for the transaction for SM30 .
    Follow these steps :
    1. go to transaction SE93 , give your own transaction code say ztran_tab, for maintaining your ztable.
    2. Click on create button and check the radio button Transaction with parameters (PARAMETER TRANSACTION) and click on the tick button.
    3. In the next screen enter default values:
    transaction : SM30
    check the check box skip initial screen
    4. Scroll down you will find a table control for default values
    Name of the screen field | value
    VIEWNAME | your ztable name
    SHOW | X
    Save your work.
    Now as you have created a custom transaction for maintaining your ztable this transaction can be called from any program with CALL transaction 'XXX'.
    Regards,
    Vishwa.

  • Synchronizing Two Custom Z Tables Using Abap Program

    Hi,
        My requirement is Synchronizing two custom z tables using abap program me.
    I have vendors in two tables, i have to select the common vendors from first which are existing in second  table also.
    In first table each vendor can have more than one supplier types in one field only. In second table these supplier types are divided into
    different fields.
         My requirement is I have to check supplier types in first table and i have to pass X to corresponding supplier types in second table vendor.
    I have to pass X value for each depending in Second table depending upon supplier type in first table.
    . How to do it can any one suggest with code.
    Thanks in Advance,
    Vivek
    <subject edited by moderator>
    Message was edited by: Manish Kumar

    Hi,
    Imho, you need to get (meaning, extract into separate fields) the different supplier types from Table1 first. Your key for Table1 is the vendor no, which is also the key in Table2 (or the key for Table2 is Vendor no & Type).
    For better performance, better select multiple/all required entries from Table1 instead of doing a select endselect.
    Depending on the format of the vendortypes in Table1, put them in a new itab (for our purpose named Table1New where vendor no & type are the only 2 fields. For example, if the type length is fixed to 2 chars, or divided by space,... use your coding accordingly.
    Next step is to select all vendor no's in Table2 which you have selected in Table1. If in Table2, the vendor no is the only key (and the all vendor types are filled in a single record), then loop check the vendor types from Table1New against the types in Table2.
    If the key of Table2 is vendor no & vendor type, then do a read table for the key.
    The logic in pseudo-code:
    Select from Table1 into table. If you'd like to limit the selection size, add package size statement.
         extract the vendor types in to itab Table1New.
         Select the vendor & types from Table2 by using the for all entries option (better performance).
         loop at Table1New
              check in Table2:
                   if the unique key is vendor no: check all fields for the vendor type from Table1New
                   if the unique key combo is vendor no & type: check by using a read table.
              If not found => add entry to Table2
         endloop.
    endselect Table1 (when using package size)
    I guess the most difficult step is to extract the types from Table1 into separate fields, all the rest seems straight forward. Please keep in mind the itab type definitions for a better performance.
    Good luck!
    Best regards,
    Zhou

  • Access table using ABAP program in other database

    Dear SAP Expert,
    We have requirement that related to SAP interface.
    Our SAP system run on Oracle database 11g (Unix).
    Illustration: SAP system = A non SAP system = B
    We need to access a table using ABAP program (from SAP system A) in other database (system B) that are not necessarily SAP database. The non-SAP system using SQL Server 2008 (Windows).
    What is the best practice for this interface
    Do we need database link? If yes, please help to inform me the details step to configure it.
    Thanks and Regards

    Hi Friend,
    You try using an intermediate system..passing your input required to fetch the data..and PI should call the respective query to retrive record..once the full flow is completed you should get the return through some table in the calling program.
    else.
    ask the other system guy to write a function with select query and ask him to expose as RFC and that RFC we have to call it as RFC in our program to get the required values and only thing we need here is a proper connector in place.
    Regards
    S.Janagar

  • How to create transaction for table maintinance generator

    what is the procedure(steps) to create transaction for a table maintinance generator

    Hi,
    The link will be useful for ur requirement.
    allaboutsap.blogspot.com/2007/04/table-maintenance-in-sap-step-by-step.html
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/8129f164-0a01-0010-2a8e-8765287250fc
    REgards,
    Sarosh

  • TO FIND TABLES USED IN PROGRAM ?

    Hi
    How to List all the Tables used in the Report or Module pool Program
    I need to find all the tables which is declared and as well as  used in the program
    any way
    I used ST05 transaction , Se49 not available ......
    Any Function module available to do this or any tools...........
    Jude

    Hi all
    the Solution is given as a program
    REPORT  ztesttables.
    DATA line(100) TYPE c .
    DATA:itab TYPE TABLE OF line,
         wa_tab LIKE LINE OF itab.
    PARAMETER program TYPE sy-repid.
    CALL FUNCTION 'GET_TABLES'
      EXPORTING
        progname   = program
      TABLES
        tables_tab = itab.
    SORT itab BY line.
    DELETE ADJACENT DUPLICATES FROM itab COMPARING line.
    LOOP AT itab INTO wa_tab.
      WRITE wa_tab-line.
    ENDLOOP.
    Regards,
    B.Jude

  • Parameter transaction for table maintenance - multiple tables?

    Hello,
    I am very familiar with creating a parameter transaction to call SM30 for a specific Z-table of ours.
    However, I have 14 tables that a group of users will need to maintain. Rather than create 14 different transactions in SE93, what are my options?
    When creating a parameter transaction in SE93, I get the error that the field 'VIEWNAME' is used more than once. There has to be a way to achieve this with only one transaction.
    Thank you very much,
    Michael

    I dont think you can create a single transaction with multiple VIEWNAME's.Options I would suggest you is create a simple report with radio buttons for each table and call the FM "VIEW_MAINTENANCE_CALL" with the viewname based on user selection and create a single transaction to the report or create transaction for each and create a Area menu with all the 14 transaction.

  • Transaction for Table

    Hello all,
       how to create a T-code for table?
        Pls help me with all step wise,
       Thanks in Advance....
       Perfect answer will be rewrded.....

    Hi,
    We can create Tcode for a table.
    follow the procedure as below.
    1. create table maintenace generator in se11.
    2.adjust the entrie in table using se14 use SAVE radiobutton while adjusting.
    3.go to se93 select Transaction with parameters .
    4.provide THE FOLLOWING PARAMETERS.
    VIEW <TABLEVIEW NAME >
    UPDATE 'X'.
    SAVE THE TCODE .
    THIS WILL CREATE THE TCODE FOR A TABLE .
    <b>Reward if it useful to you</b>.

  • Exporting and importing table using R3trans program between 2 clients

    Hi,
    How to export and import a table between to clients in a same system using R3trans program?
    I need to copy a table from Client 020 in a system to client 040 of the same system using R3 trans. I need to know the procedure.
    Can any one advice
    Regards,
    Suresh

    This is how you do a export and import of table entries.
    Export:
    Open Notepad and type the following,
    export
    client = 020
    file = 'clone.export.<sid>.<client no>.data'
    select * from <client_dependent_tablename1>
    select * from <client_dependent_tablename2>
    select * from <client_dependent_tablenamen>
    Save the file as export.ctl
    Run R3trans export.ctl
    and the data of these files will be stored in a file called clone.export.<sid>.data in the directory from which you have called R3trans
    Import:
    Open Notepad,
    import
    client = 040
    file = clone.export.<sid>.<client no>.data
    buffersync = yes                                               
    Save the file as import.ctl
    Run R3trans import.ctl
    Cheers!
    Bidwan
    Message was edited by:
            Bidwan Baruah

  • How to clear previous data entries in sm30 transaction for table maintainen

    Whenever i maintain 8-10 records in sm30 for table maintenanace  and again when  I go to SM30 for entering new records i am able to view previous entries .
    then i click on new entries where data is cleared.
    Now what i need is i want to clear the data before clicking  "new entries".
    means for user it should appear as a fresh screen.
    is it possible if yes HOW?
    please anyone suggest me  way to do it immediately

    hi Nilesh,
    when u r clicking new entries data is not cleared but u r going to other screen,so it will apppaer as blank screen.If u want to delete all the records ,then write the logic in ur code.
    CASE SY-UCOMM.
    when 'NEWENTRIES'
    USe delete dbtable statemnt...then commit work.it will delete all the entries.
    ENDCASE.
    regards,
    Nagaraj

  • How to create a transaction for table maintanence?

    Hi Experts,
      How can i create a transaction for insert/modify/delete entries for a table?

    Hi,
    First u nee dto create Table maintenace genaertor for that table.
    go to se11.--> table name --> change
    Mebu options: > Utilities> table maintenace gen (or Tcode SE55)
    Fill the following
    Authorisation group : &NC&( or group specified by Functiopnal owner)
    Function group:
    Maintrenace type: 1 step
    Maint screen: 6
    SAVE.
    Now after craeting Table maintenace genarator, u haveto attach tcode.
    Go to SE93
    Give ur tcode  for table.
    Check : Transaction with parameters.
    continue...
    Transaction :   SM30
    check SKIP INITIAL SCREEN
    Check all the check boxes of GUI support.
    under Name of screen field :
    TABLE VIEW             : table name
    UPDATE                    : X
    Rvert back if nay issues.
    Reward with oints if helpful.
    Regards,
    Naveen.

  • Locate Database table used in Program / Transaction

    Hi  Friends,
        I wanted to know that Is there any standard method which would show all the Database tables/query used in that program/Transaction.
       I heard there was Program in 4.6 version as i am unaware of that as well.
       Please if anybody can help me on this
    Thanks

    Hi,
    You can use SQLTrace.
    Check this link.
    How to know the List of Tables that are updated through a ABAP Program
    Kindly reward points by clicking the star on the left of reply if this is useful.

  • Creating transaction for tables

    Hai,
    This is very urgent, pls give me an idea for converting table into a transaction.
    ie, by running transaction the particular table should display the contents.

    Hi,
    Table Maintenance generator is required to do Manual entries in the Table.
    If the requirement is to update the table only programmatically
    and not manually then table maint generator is not required.
    Manual entries in table can be maintained ( New record can be inserted / existing can be modified )
    using transaction SM 30, if the table maintenance for the table is generated.
    http://help.sap.com//saphelp_470/helpdata/EN/a7/5133ac407a11d1893b0000e8323c4f/frameset.htm
    How to activate Table maint.
    Goto SE11 and open the table.
    Click UTILITIES -> Table Maint. Generator, Enter the details and click on Save. Then activate the table.
    chk a sample 1.
    refer.
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/abap/how%20to%20implement%20events%20in%20table%20maintenance.doc
    how to create a a T-code of that
    Go to se93.
    Then create the new T.code.
    Under that select parameter Transaction.
    Then give the sm30 in the t.code in default values tab.
    check the checkbox skip initial screen.
    in classification tab.
    click checkbox inherit gui attributes..
    Now below..
    In the default values..
    WRITE
    viewname = give ur table name.
    show = X
    save and check it once...
    now u can able to call ur table through ur new t.code...
    Regards,
    Padmam.

  • RRi for query using ABAP program

    For a report, we are using RRI (jump to target) functionality to see invoices in R/3 system using an ABAP program. I do not have much idea on R/3 systems how invoices are setup in R/3 Dev, test and prod. The ABAP report is done by a backend person. I need to place that in RSBBS. Here, my doubt is that do we need to follow the same procedure for this to move it to production system i.e, first create that RRI and ABAP in respective dev systems and transport both to test and then to Prod? Could anyone please explain me the steps on how this will work in real-time?
    Points will be assigned.
    Thanks

    Hi,
    I am not able to find how the two reports are conncted.
    You can check in RSBBS t-code. RRI will be defined here to jump from One Query yo another and many more options.
    My work is to copy the parent query a nd do some modification to it. Please let me know how to check and achieve that.
    You can do this BEx Query Designer itself.
    Regards,
    Suman

  • Project for web using the program Director 11

    I have a project, a game for kids, that want to run on a web site. I developed it, originally to use it in the computer. But now, I want to migrate it to a web site (the game´s web site), the kids will play it on line. The idea is to have a web site and in the web site an option to play it on line, by clicking that option, the game will start (in order to play it, you have to pay a fee).-
    So, I published it for web (I click the option ".html", saved it and published it). I downloaded the "Adobe shockwave Player", installed it and everything, opened the project (wich is in my computer) using a browser, and works perfectly.-
    But .... I uploaded to a hosting and doesn´t work.-
    My question is:
    What should I do in order to run perfectly the project on line (having the project in the hosting ...). The hosting should have a special requirements? Should I program the icon that opens the project in a special way?? The project should be in a different (new) window when the persons click the icon?
    I will appreciate all the information and help about it!!!!

    I have taken a quick look at you site.
    yes, I am seeing your problem
    sometimes says 'unable to find '***.dir"    not .drc?
    also some of the pathnames had capital letters in them - which might make a difference.
    an example:-
    Director Player Error
    Unable to open file "http://www.mggim.com.ar/pantallaFinal.dir"
    It seems that your site is cut into many different .dcr programs.
    I'll take a longer look at them - and get back to you...
    I normally inbed my '.dcr' files (linked - to the file stright from the web) into my main controlling program - then I do a 'preLoadNetThing' routine, to make sure it's preloaded before I jump to it.
    ( I use the file > import > internet > "File URL: http://www.mggim.com.ar/lola.dcr" )
    But their are a few different ways to control shockwave files
    I'm going to do a test and see if you can jump to another 'dcr' file without preloading it, or inbedded it first.

Maybe you are looking for

  • Receiver Mail Adapter: transformation of Content tag

    Hi, I have a problem with the transformation of the tag Content in  the e-mail message. I'm very ignorant about xsl and java transformation, but my problem is quite simple. My message, coming from an R/3 system, is this: <ns:Mail xmlns:ns="http://sap

  • Upgrading SSD's in my macbook pro retina

    I'm just wonding if its possible to upgrade from a 256gig SSD in my macbook pro retina to a larger SSD. I'm assuming you have to use a certain type of SSD. Anyone knoe what type and how ?

  • Re: Unauthorized payments have been made to my acc...

    I am using Skype number service and the subscription is going to expire in few days later. I am informed by my bank customer service (credit card) this morning that Skype is going to charge me certain amount of money but being rejected by the bank co

  • Using Stored Procedures with TopLink / JPA : Success explanation

    For those who have to use Stored Procedures in TopLink this is my success history : To call an Stored Procedure from the persistence, we have to use the direct JDBC connection because my TopLink version ( Essentials 10g ) ? to date ( 10g ) does not h

  • Help Needed With Mail and Reminders Vs. To Do Apps

    I am running Yosemite 10.10.3 and IOS 8.2 on a Late 2012 Mac Mini. I have been all over the place trying to find a perfect To Do List App that fully integrates with Mac Mail.   I have versions of Things, Todoist, and Wanderlist that will work, but I