Required a program to list out custom dependent object used in a program

sorry already in the forums
Edited by: Krishna Gowrneni on Jul 16, 2009 7:51 PM
Edited by: Krishna Gowrneni on Jul 16, 2009 7:52 PM
Edited by: Krishna Gowrneni on Jul 16, 2009 7:53 PM

Hello
There is no exist such table.
But try this snippet:
REPORT ZSEARCH.
PARAMETERS: P_NAME LIKE D010SINF-PROG.
DATA: PROGTXT(72) TYPE C OCCURS 0 WITH HEADER LINE.
DATA: TMP(72) TYPE C OCCURS 0 WITH HEADER LINE.
DATA: FUNCT TYPE RS38L_FNAM OCCURS 0 WITH HEADER LINE.
DATA: INCL TYPE RSEUINC OCCURS 0 WITH HEADER LINE.
CALL FUNCTION 'RS_GET_ALL_INCLUDES'
     EXPORTING PROGRAM    = P_NAME
     TABLES    INCLUDETAB = INCL.
LOOP AT INCL.
  READ REPORT INCL-MASTER INTO TMP.
  APPEND LINES OF TMP TO PROGTXT.
  REFRESH TMP.
ENDLOOP.
READ REPORT P_NAME INTO TMP.
APPEND LINES OF TMP TO PROGTXT.
LOOP AT PROGTXT.
  IF PROGTXT CS 'CALL FUNCTION'.
    SEARCH PROGTXT FOR ''''.
    IF SY-SUBRC = 0.
      DO.
        SHIFT PROGTXT LEFT BY 1 PLACES.
        IF PROGTXT(1) = ''''.
          SHIFT PROGTXT LEFT BY 1 PLACES.
          DO.
            SHIFT PROGTXT RIGHT BY 1 PLACES.
            IF PROGTXT+71(1) = ''''.
              SHIFT PROGTXT RIGHT BY 1 PLACES.
              CONDENSE PROGTXT.
              FUNCT = PROGTXT. COLLECT FUNCT. EXIT.
            ENDIF.
          ENDDO.
          EXIT.
        ENDIF.
      ENDDO.
    ENDIF.
  ENDIF.
ENDLOOP.
SORT FUNCT.
LOOP AT FUNCT.
  WRITE: FUNCT. NEW-LINE.
ENDLOOP.

Similar Messages

  • Listing out the plsql objects which update tables

    1) Is there a way i can list out which plsql object is doing DML statement on a table, i know we can use USER_DEPENDENCIES or DBA_DEPENDENCIES tables but it is listing out the packages or procedures even if a column is used to define a ref datatype or even if the code is commented out, i just want to see only the objects that are issuing DML statements.
    2) Is it possible to see at column level details, meaning if a column is updated in one procedure and another column is updated in another procedure, can i list out the procedures and the columns that would be updated or inserted in that procedure.
    appreciate your help, Thank you.

    Do a join of dba_dependencies and dba_hist_sql_plan/v$sql_plan
    thanks
    http://swervedba.wordpress.com/

  • How to find out internet explorer version ,using a java program?

    How to find out internet explorer version ,using a java program?

    Browser version from java?....you must be referring it from some web application....rite?
    You can read the User-Agent header using request.getUserAgent() or request.getHeader("User-Agent") in your jsp or servlet.
    for more details pls refer:
    http://www.jguru.com/jguru/faq/view.jsp?EID=12253

  • Find dictionary object used in ABAP program

    Dear All,
    Pl help me find out all the dictionary objects used in report program and dialog program.
    Input will be program name(report or module pool). output will give name of the database tables used in that program.
    thanks.

    Hi,
    Use the FM RS_PROGRAM_TABLES
    pass the object type as PROG for report and the program name for object name
    Vikranth

  • Display all objects used in a program

    Hi guys,
    i want to create a Zprogram to Display all objects used in a program.
    is there any class that can help me plzzz.
    CL_WB_PGEDITOR
    CL_WB_TBEDITOR.
    CL_WB_EDITOR.....
    thks

    Hi Oubaha,
    You can use SE80 to display objects used by a program.
    Regards,
    Chester

  • How to to find out if the objects used "Registration" color or not?

    Is it possible to find out if the objects used "Registration" color or not via scripting? Kindly advise me.
    Thanks for looking into this.

    Hi,
    May be you might read this post
    http://forums.adobe.com/thread/623432?tstart=0
    ciao , art.chrome

  • Report program to list out characteristics having dependency type procedure

    Hi folks,
    My requirement is to generate a report, in which i have to list out characteristics having dependecy type procedure(7).
    The tables are CABN(characteristic),CUOB(Assignment of Object to Dependency),CUKB(Administrative Information for Dependency Maintenance).By linking these tables we can get the result.
    Pls provide the code to achieve the above task.It's urgent.We need to write a select query for that.
    Regards,
    Ramesh

    You could use the QuickViewer to create your query, no programming involved.  It sounds like you know the tables to use and should be able to join them.
    Just a word of caution, Urgent is not a good word to use in a thread.  You may want to refer to the new Strict Guidlines: /people/michael.schwandt/blog/2008/06/23/moving-to-strict-rules-to-improve-quality-and-control

  • How to find out jre version installed ,using a java program?

    Hello,
    Is there any way to find out the installed JRE version using a java program ?
    The requirement is as follows:
    There is a html page with 4 steps to install a software. each step is a link, which upon clicking does its work.
    the first step is to install jre 1.4.2_11 if its not installed in the system. But how can i find out whether jre 1.4.2_11 is installed or not ?
    Thanks in advance

    For the hell of it... here is a list of properties you can query:
    java.version Java Runtime Environment version
    java.vendor Java Runtime Environment vendor
    java.vendor.url Java vendor URL
    java.home Java installation directory
    java.vm.specification.version Java Virtual Machine specification version
    java.vm.specification.vendor Java Virtual Machine specification vendor
    java.vm.specification.name Java Virtual Machine specification name
    java.vm.version Java Virtual Machine implementation version
    java.vm.vendor Java Virtual Machine implementation vendor
    java.vm.name Java Virtual Machine implementation name
    java.specification.version Java Runtime Environment specification version
    java.specification.vendor Java Runtime Environment specification vendor
    java.specification.name Java Runtime Environment specification name
    java.class.version Java class format version number
    java.class.path Java class path
    java.library.path List of paths to search when loading libraries
    java.io.tmpdir Default temp file path
    java.compiler Name of JIT compiler to use
    java.ext.dirs Path of extension directory or directories
    os.name Operating system name
    os.arch Operating system architecture
    os.version Operating system version
    file.separator File separator ("/" on UNIX)
    path.separator Path separator (":" on UNIX)
    line.separator Line separator ("\n" on UNIX)
    user.name User's account name
    user.home User's home directory
    user.dir User's current working directory

  • Help needed on listing out all tag names using XML Rules in ExtendScript(InDesign)

    Given a document with elements already in place, I am looking for a snippet of code to walk down the XML tree only two levels
    deep to printout the names of each of the tags (not attributes).  I am just using javascript in extendscipt to accomplish this.  Ultimately,
    I want to provide this list in a checkbox dialog and use those checked items to develop a TOC.  This latter part, I have in place.
    It is just the pushing of the tag element names into an array that seems to be cumbersome for me at this point.
    Any shortcut snippets out there that someone can provide?
    A shorter version of this request....Is there anyway to just list out all element.markupTag.name of an XML tree, not knowing the xpath naming?
    Using "//*" obviously is not working....

    well..
    Document.xmlTags.everyItem().name will get you a array of all the xml tags in the document. Maby that will help you?
    another way, and you can use it recursively:
    myObject.xmlElements.everyItem().markupTag.name
    will get you an array of tag names. use something like: http://stackoverflow.com/a/15806501 to remove duplicates.. and.. enjoy

  • Program ZZCUSOBJ - Information about custom repository objects

    Hi,
    Does anyone have the source code of the program ZZCUSOBJ? It is a program used in upgrades to gather information on customer repository objects.
    Thanks in advance. Regards,
    Gerard

    Hi Gerard,
    because the program name starts with Z* (and even more ZZ*!), it's a customer specific program.
    Sometimes SAP delivers some additional reports via OSS and customers implement them locally as Z-report - but otherwise that's individual and not standard.
    Ask a user of the customer, at which you have seen it first.
    Regards,
    Christian

  • Warped text in all programs and lists out of the blue

    Anyone else having issues with text suddenly going wonky - skewed and warped - mail, word, menus, finder, etc, etc, etc
    annoying!

    Boot into safe mode (restart holding down SHIFT key). If KP, then most likely hardware related.  Run the Apple Hardware Test suite, extended tests at least twice, followed by Rember.   See
    About kernel panics,
    Technical Note TN2063: Understanding and Debugging Kernel Panics,
    Mac OS X Kernel Panic FAQ,
    Resolving Kernel Panics,
    How to troubleshoot a kernel panic, and
    Tutorial: Avoiding and eliminating Kernel panics for more details.

  • How to find out the script name used in driver program

    Hi Folks ,
                 I want to find out the Scripts(print program) used in my driver pogram .
    How is it possible any Tcode availble for this ?
    Thanks ,
    Jaga.D

    Hi Jagadish,
    Go to transaction SE38 and open the program RSNAST00. There search for the subroutine TNAPR_LESEN.
    Set a break point at that subroutine and leave. When printing the data from a transaction to a script or form (Like VA01 or VL02N), debugger is started when the processing reaches the subroutine in RSNAST00. There double click on the field TNAPR-FONAM. continue step-by-step execution. The field will display the name of the script or form that is currently being used.
    Another way to do this is to go to transaction NACE and check the transaction for which you want to find out the script. There you will find the script and print program that have been set for a particular transaction.

  • Inserting Information into Existing Custom Data Object Using API?

    Hello,
    I have setup a Custom Object and I have the ID for this object. All we're wanting to insert in this object is First Name, Last Name, Email. I have that information in code-form and I have both the BULK API and REST api at our disposal. We are having issues figuring out the API call we want to execute to insert this information into this Custom Object.
    If someone could point us in the right direction that would be amazing. Thank you!

    I solved the problem.
    when we are selecting the image data from access database select that as getbytes
              while(rs.next())
                   count++;
                   picbarray = rs.getBytes("PICTURE");     
    when inserting to the oracle db
    PreparedStatement st1 = null;
    String sql = "insert into (colmn1,colmn2,colmn3,comn4,colmn5) values(?,?,?,?,?)";
    st1 = con.prepareStatement(sql);     
    st1.setString(1, val1);
         st1.setString(2, val2);
         st1.setString(3, val3);
         st1.setBytes(4, picbarray);     
    st1.setString(5, val5);
         st1.executeUpdate();

  • How to list an array of objects using struts in jsp and ActionForm

    I am using the struts ActionForm and need to know how to display an Array of objects. I am assuming it would look like this in the ActionForm:
    private AddRmvParts addRmv[];
    But I am not sure how the getter and setter in the ActionForm should look. Should it be a Collection or an Iterator?
    I am thinking I need to use an iterator in the jsp page to display it.
    I am also wondering if the AddRmvParts class I have can be the same class that gets populated by the retrieval of data from the database. This class has 10 fields that need to display on the jsp page in 1 row and then multiple rows of these 10 fields.
    Thanks.

    Most probably the easiest way to make it accessible in your page is as a collection.
    ie
    public Collection getAddRmvParts()
    You can use the <logic:iterate> or a <c:forEach>(JSTL) tag to loop through the collection
    As long as the individual items in the collection provide get/set methods you can access them with the dot syntax:
    Example using JSTL:
    <c:forEach var="addRmvPart" items="${addRmvParts}">
      <c:out value="${addRmvPart.id} ${addRmvPart.name} ${addRmvPart.description}"/>
    </c:forEach>

  • Editing and croping out different shap objects using photoshop version 10

    Let say I have a book laying on a dinning room table. On some photo editing programs you can simply use a cuting tool like a knife to remove the item and you then have a transparacy space for another layer to shine through. On  Adobe  version 10  all I see is an eraser.  Is there a cutting tool you can use like a pencil to cut around the book to remove it? Thanks Gary

    I would make a selection of the book with something like the Quick Selection Tool, inverse the selection, then add a layer mask.
    You can paint on the layer mask with the brush tool to clean up the selection or expand the selection (the area that is masked).
    Ther is also a photoshop elements forum (you posted in full photoshop forum)
    http://forums.adobe.com/community/photoshop_elements

Maybe you are looking for