List of transparent tables

Hi Gurus,
How can I get a list of data dictionary tables by functional area SD, MM etc.
Thank you !
Stefan

Hi Stefan,
You can find the list of transparent table from module wise from table DD02L by passing TABCLASS as TRANSP and APPLCLASS as your application .
Regards
Dillip Sahoo

Similar Messages

  • Field-symbol definition for a variable representing transparent tables

    Hi Gurus
    I'm trying to create a very simple report to display table descriptions and their DB number of records:
    Ex:
    MARA 50000
    MARD 123000
    I can't compile this piece of code:
    field-symbols: <table>.
    assign (DD02T-TABNAME) to <table>.
        clear n.
        *SELECT COUNT( * )*
           INTO n
           FROM <table>.
    The problem here is that <table> is not defined in the ABAP dictionary as a a table , projection view or databse view.
    1. Is there a way of defining <table> with a field-symbol data statement to make it work?
    2. Alternatively, how can you produce a list of all table DB entry counts for a dynamic list of transparent tables?
    Thanks
    Nuno

    With the code you have field symbol will "point" to a table contained in DD02T-TABNAME , not its name.
    What you need is to get the table name , not table itself
    field-symbols: <table_name>.
    assign DD02T-TABNAME to <table>.  "get table name, not its content
    clear n.
    SELECT COUNT( * )
    INTO n
    FROM (<table>).
    or simply without field symbol
    SELECT COUNT( * )
    INTO n
    FROM (DD02T-TABNAME).
    Regards
    Marcin

  • Download transparent table data in excel

    Hi all
    I have ECC 6.0 system. I have a transparent table with 112 fields. Sufficient amount of data is present in that table. I need to download this data into an excel file. But I found there are some inconsistencies:
    1. I used SE16. But we know that list output of the SE16 screen is limited to 1023 characters. Hence all the columns are not displayed. In my case it is displaying only 52 columns. Eventhough if we download this using System->List->Save->Local File->Spreadsheet, only those 52 columns are displayed in excel. So this SE16 was out of option.
    2. I used SE16n. Here I could see all the 112 columns in the screen. But if I go for Export->Local File->Spreadsheet , each row gets splitted into two rows in excel. Also last few columns are not downloaded. All in all, it is an incomplete download and is not readable. Hence this method is out of option.
    3. I used a manual method. In SE16n I copied all the data to the clip board using Ctrl+A and pasted them in a new excel document. The data got copied fully and properly. But the header line was missing.
    What could be the solution other than writing a separate ABAP program?
    Thanks,
    Prasad

    Hi Ankur,
    Thanks for the reply.
    I agree that there is ALV grid option. But that would result in point (2) I mentioned above. Evnthough, all columns are displayed, the rows gets splitted in excel. Also, last few columns does not get downloaded.
    Thanks,
    Prasad

  • ABAP dictionary : can we delete and recreate transparent table

    Hi Experts,
             I would like to know if we can delete and recreate transparent table which had already been transported to another server? Will it create any other problem?
             The reason why I want to do this is that I want to transport the table contents and the table was earlier created under the class 'Application table' . Now I want to create it under 'Customizing table' class.
    Thanks in advance

    I think you can change the table's Delivery class in SE11.
    Than you can add your entries in the transport request.
    Follow these steps:
    (1) Create a transport request
    (2) Open it, update mode
    (3) Add a line with R3TR TABU <table name>, select the line created
    (4) goto Menu, Key list and add the two keys list you have created (* is wildcard, mandt+key)
    (5) Save, release and transport your request
    No need to delete and regenerate it.
    Regards,
    Naimesh Patel

  • Can we join a table structure  and a transparent table?

    Pls let me know, whether we can join a table structure  and a transparent table and how?

    Hi rich,
         Since i dont have ur id ,iam posting my issue on this ,can u please help me on the below issue.
    below i have a set of code which would sends email along with attachtment .
    iam getting the XLS attachtment perfectly ,but for TXT attachtment there was problem with formating all the records are formated in single line .
    a solution on this would be helpfull.
    Thanks,
    vinay .
    FUNCTION Z_SHANKAR_ATTACHMENT.
    ""Local Interface:
    *"  IMPORTING
    *"     VALUE(EMAILID)
    *"     VALUE(SUBJECT)
    *"     VALUE(ATYPE)
    *"  TABLES
    *"      ATTACH_FILE STRUCTURE  SOLISTI1
    *"      BODY OPTIONAL
    This table requires information about how the data in the
    tables OBJECT_HEADER, CONTENTS_BIN and CONTENTS_TXT are
    to be distributed to the documents and its attachments.
      DATA OBJPACK LIKE SOPCKLSTI1 OCCURS  2 WITH HEADER LINE.
    This table must contain the summarized data dependent on each object type.
    SAPscript objects store information here about forms and styles,
    for example. Excel list viewer objects store the number of rows and columns
    amongst other things and PC objects store their original file name.
      DATA OBJHEAD LIKE SOLISTI1   OCCURS  1 WITH HEADER LINE.
    This table must contain the summarized content of the objects identified as binary objects.
      DATA   OBJBIN TYPE STANDARD TABLE OF solisti1 INITIAL SIZE 0
                     WITH HEADER LINE.
    This table must contain the summarized content of the objects identified as ASCII objects.
      DATA OBJTXT  LIKE SOLISTI1   OCCURS 10 WITH HEADER LINE.
    This table must contain the document recipients.
      DATA  RECLIST LIKE SOMLRECI1 OCCURS 5 WITH HEADER LINE .
    This structure must contain the attributes of the document to be sent.
      DATA: DOC_CHING LIKE SODOCCHGI1.
      DATA: TAB_LINES LIKE SY-TABIX.
    Create the internal table for body , subject
      DATA: IT_BODY LIKE SOLISTI1 OCCURS 10 WITH HEADER LINE.
    *changes added to the code by shankar.
    constants: x(1) type X value '0A'.
    *End of changes to the code
    CONSTANTS: con_cret TYPE C VALUE cl_abap_char_utilities=>horizontal_tab,
               con_tab TYPE C VALUE  cl_abap_char_utilities=>cr_lf,
               con_new type c value  CL_ABAP_CHAR_UTILITIES=>NEWLINE.
    Move Body to Internal Table (body into it_body)
      LOOP AT BODY .
        MOVE BODY TO IT_BODY .
        APPEND IT_BODY .
      ENDLOOP.
      DOC_CHING-OBJ_DESCR = SUBJECT.   "Subject of the Email
    Move the Subject and Body to OBJTXT
      OBJTXT[] = IT_BODY[].
    DESCRIBE TABLE OBJTXT LINES TAB_LINES.
    READ TABLE OBJTXT INDEX TAB_LINES.
    DOC_CHING-DOC_SIZE = ( TAB_LINES - 1 ) * 255 + STRLEN( OBJTXT ).
    CLEAR OBJPACK-TRANSF_BIN.
    OBJPACK-HEAD_START = 1.
    OBJPACK-HEAD_NUM   = 0.
    OBJPACK-BODY_START = 1.
    OBJPACK-BODY_NUM   = TAB_LINES.
    OBJPACK-DOC_TYPE   = 'RAW'.
    APPEND OBJPACK.
    Convert IT to Excel format
    IF ATYPE = 'XLS' .
      LOOP AT ATTACH_FILE .
        REPLACE ALL OCCURRENCES OF '#' IN ATTACH_FILE WITH con_cret. "  INTO objbin.
        CONCATENATE  ATTACH_FILE con_tab INTO objbin.
        APPEND  objbin.
      ENDLOOP.
    ELSEIF ATYPE = 'TXT' .
      LOOP AT ATTACH_FILE .
        REPLACE ALL OCCURRENCES OF '#' IN ATTACH_FILE WITH con_tab. "  INTO objbin.
        CONCATENATE con_new ATTACH_FILE-line  INTO OBJBIN-line .
    *changes done by shankar
    *CONCATENATE ATTACH_FILE-line con_new INTO OBJBIN-line .
        APPEND OBJBIN .
      ENDLOOP.
    ENDIF.
    ****End-Code Excel Format .
    DESCRIBE TABLE objbin LINES tab_lines.
    objhead = subject. APPEND objhead.
    Creating the entry for the compressed attachment
    objpack-transf_bin = 'X'.
    objpack-head_start = 1.
    objpack-head_num   = 1.
    objpack-body_start = 1.
    objpack-body_num   = TAB_LINES.
    objpack-doc_type   = ATYPE.
    objpack-obj_name   = 'ATTACHMENT'.
    objpack-obj_descr = 'TEST'. "Attachment File Name
    objpack-doc_size   = TAB_LINES * 255.
    APPEND objpack..
    reclist-receiver = EMAILID.
    reclist-rec_type = 'U'.
    APPEND reclist.
    CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
      EXPORTING
       DOCUMENT_DATA                    = DOC_CHING
       PUT_IN_OUTBOX                    = 'X'
       COMMIT_WORK                      = 'X'
    IMPORTING
      SENT_TO_ALL                     =
      NEW_OBJECT_ID                   =
      TABLES
        PACKING_LIST                    = OBJPACK
       OBJECT_HEADER                    = OBJHEAD
       CONTENTS_BIN                     = OBJBIN
       CONTENTS_TXT                     = OBJTXT
       RECEIVERS                        =  RECLIST
    EXCEPTIONS
       TOO_MANY_RECEIVERS               = 1
       DOCUMENT_NOT_SENT                = 2
       OPERATION_NO_AUTHORIZATION       = 4
       OTHERS                           = 99 .
    ENDFUNCTION.

  • How to find which transparent tables compose cluster tableuFF1AKONV

    How to find which transparent tables compose cluster table&#65306;KONV

    Hi,
    Welcome to SDN.
    Try doing this ....
    1). Goto se12 and display the table BSEG
    2). Click on the Delivery & Maintenanace tab
    3). Double click on the Pool/Cluster field
    4). On the next screen do a where used list
    You will find all the related tables.
    Regards,
    Amit
    Reward all helpful replies.

  • Transparent Tables for KONV

    I've seen this question before, but haven't seen a satisfactory answer.  Which transparent tables are used for KONV?  I need to check the data from outside of SAP and look into the transparent tables from a SQL Server.  I have gone into  tcode SE11 for KONV in display mode, selected delivery & maintenance tab, and displayed the Object list for cluster table KONV, then double clicked on KOCLU in pooled/cluster field.
    None of the tables in the Package VF contain the data I'm looking for.
    Now what? 
    I ask the question that has been asked countless times - how do I find the transparent tables for KONV?

    Hi
    There is no Transparent tables for KONV cluster table
    which stores the pricing info of both SD and MM modules
    You have to fetch the data from this table using the Sales order (VBAK-KNUMV), or Billing doc (VBRK-KNUMV) or Purchase Order (EKKO-KNUMV)  by linking with KONV-KNUMV which is a key field for the respective price amounts/rates.
    Some times we may use KONP table for fetching the pricing data when it is not available in KONV.
    Regards
    Anji

  • How many Transparent tables..?

    Hi ,
    How to get the following details
    1.    How many transparent tables approx hold by NGN in PRD?
    2.    What is the size of DBTABLOG table in PRD?
    Regards,
    Ravi

    Hello,
    I managed to dig up SE11 ABAP program and find this, honestly this was interesting for me too.
    To list the different types of tables you have, you need to check this.
    Login at the operating system level using ora<sid> as the userid.
    And then run the command:
    sqlplus "/ as sysdba"
    Once you are on sqlplus, this should do the trick.
    First find the different types of tables your SAP System can have using the followin sql query.
    SQL> select distinct tabclass from sapngn.dd02v;
    TABCLASS
    APPEND
    CLUSTER
    INTTAB
    POOL
    TRANSP
    VIEW
    6 rows selected.
    Once that is done, you now simply count the type of table you want to count by this sql query:
    SQL> select count(tabclass) from sapngn.dd02v where tabclass='TRANSP';
    COUNT(TABCLASS)
              77215
    SQL>
    Hope that helps.
    Regards,
    Siddhesh

  • Physical table list against Cluster Table CDPOS and PCDPOS

    Hello experts,
    For function customized requirement, we need to know the physical table
    list against Cluster Table CDPOS and PCDPOS and EDID4, just like
    Cluster Table BSEG contain with six physical tables
    BSAD/BSID/BSAS/BSIS/BSAK/BSIK. Also we want to know if there is any
    general way to find out the physical table list for any cluster table.
    My question is:
    1. How can I find all the transparent table for Cluster Table CDPOS?
    just like Cluster Table BSEG has transparent tables of
    BSAD/BSID/BSAS/BSIS/BSAK/BSIK.
    2. How can I find all the transparent table for Cluster Table PCDPOS?
    3. How can I find all the transparent table for Cluster Table EDID4?
    4. Additionally,I want to know if there is any
    general way to find out all the transparent tables for an specific
    cluster table.
    Many thanks.

    Hello,
    simply look in transaction SE11.
    Example:
    1.  SE11 -> Table CDPOS - Display. On Tab 'Delivery and Maintenance' you'll find Pool/Cluster 'CDCLS'.
    2. SE11 -> Table CDCLS -> Display. On next screen position on CDCLS-> Where-used-list -> Tables -> you'll find tables CDPOS and PCDPOS.
    Same thing with EDID4    -> EDI40 ...
    Regards Wolfgang

  • Function Module showing Transparent Table access??

    Hi Guys,
    I'm in the process of writing some programs that will archive some of our Custom tables (they are getting very full!).
    Now, instead of going through ALL the custom tables we created, I'm trying to write a small program that will bring me tables that have certain criteria...
    One of the criteria is Tables Access.  I'm trying to see when last a table has been accessed (by a program, for example).  Im not talking about the last Change Date (as per table DD02L entries) as I presume this actually indicates technical changes to the table??
    Im looking for a Function Module that can actually give me the last date any given transparent table's data has been accessed...
    Does anyone know of such a Function Module/Class?
    tks
    C
    POINTS WILL BE REWARDED FOR USEFULL AWNSERS

    Hello Christian,
    To answer your question, it is normally obtained through ST04 (DB Performance Monitor).
    However, the inherent information pertinent to Table Access made by application programs depends on the underlying Database involved. In case of DB server being ORACLE...you may use the program RSORASCC.
    Also, I would like to make a further recommendation about your methodology to identify custom transparent tables. Besides studying the table accesses, it is very important to consider the current size and the growth rate over a period of time. For doing this, use DB02 (Space Statistics for Tables and indexes) and workout the list of tables which you have to concentrate from archiving perspective.
    Hope this info helps you and resolves your query.
    With Regards
    Vijay Gajavalli

  • Hi Guru Can we Delete transparent table which store Temperaroy data.

    Hi Guru,
    Can any tell me i want to delete data from transparant table which store temperaroy data in table ARFCSDATA (ARFC Call Data (Callers) ) and ARFCSSTATE (Description of ARFC Call Status (Send)) from production server.
    Basically it stores Temp data. Any effect in production server.
    Can we delete or no . Please help me out .
    Points will rewarded.
    Thanks
    Jagnesh

    Hi,
        Try doing by using the transaction SM58. Give the date parameter and user name parameter as space. and execute it. this gives the list of errors occurred and will be equivalent to the number of entries in the table mentioned. you can select the one you want to delete and click on delete icon.
    Rewards points if it is helpful.
    Thanks,
    Prasanna

  • Storing a xml excel file in a field of type string in a transparent table

    Hello Experts,
    I have a program to maintain. There is a transparent table which stores a XML excel file. I have used where used list option to find out if there is an existing program which used that table but couldnt find one.
    In debugger mode, when I view the contents of the field, i can see list of characters, when i choose the option of viewing in xml browser, it opens me the excel file.
    My requirement is to make a simple change to the excel file and store it back to the table in the same format it is.
    Can someone explain to me, how to convert that xml excel file into string so that it is stored in a field of type string.
    Thanks Nitish.

    You can use the parser method provided in CL_XML_DOCUMENT class. Search for this particular class in the forums, you'll find many relevant post.
    BR,
    Suhas

  • Reg transparent table

    Hi,
      How to find the transparent table which uses the structure name DRSEG?

    Hi Hema,
    go to transaction SE11, mark data type, enter the name DRSEG and press display. In next screen place the cursor in the field labeled as structure and then press the Where-used list button. In the popup mark database tables and then press play.
    Here you will find some where-used locations.
    Regards Rudi

  • How to activate the transparent table along with append structure

    Hi,
    I add the new fields in existing append structure on tale VBAP.
    Initially i provide them the data type as Char with length 20.
    Similarly i added the fields in user exit on scree 8459 to add fields on screen.
    Until this eveything was working fine.
    Then my functional consultant ask me to delete one field from structure and change the length of other data types to 40 characters.
    I done this changes but when i go to activate that append structure its giving me error that certan structures in which it is been used are not adjusted and activated.
    The table is not adjusted through SE14 - Database Utlity.
    Its showing me that Runtime Object and Transparent table are different and not consistent.
    Can i delete the runtime object?
    The domains which i ave changed are also not geing activated.
    Suggest me the node of problem and solution also.
    What should be the problem.
    What should i do to solve the problem.
    Suggest me the solution if any.

    Give a trail that instead of activating all together, activate low-level objects (domains, data elements etc)first and then high levels (structures, tables) individually. With this approach you could find the errors easily and can resolve quickly.
    Regards,
    Prasanth

  • Sales Orders Transparent Tables Needed

    I am trying to create a report with SQV1 that shows
    Sales Order 
    Sales Order Status
    Material
    Rev Level on Material
    ECN Number on Material
    ECN Description on Material
    I need the transparancy tables for
    Sales Order Detail; I tried VBAP and VBAK and both do not show me the
    Sales Order Status VBSTT
    Also I need to know the Rev Level and ECN Number and description. I
    thought they would be in MARC because the rev level shows up in the
    Material Master but it is not one of the items you can select. Any idea where
    I can find it?
    Thanks,
    Linda

    Hi
    For the sales order status, you can refer to VBUK or VBUP.
    I looked for ECN number, I think the table and the field are MARC-PRENO
    Pls check whether the same is useful to you.
    Reward point if it helps.

Maybe you are looking for

  • How to show only 10 channels at a time in a Chart

    The pointer slide will show 10 channels on the chart and the array (latest readings) but I'm only able to code the legend to give the channel names. How do you code the legend to give the corresponding waveform color. Attachments: Graph_mockup.vi ‏60

  • What is the best backup plan for Archive Databases in Exchange 2013?

    Hi, We have Exchange 2013 with Hybrid setup with O365. We have On premise exchange 2013 servers with 3 copies of primary Database & Single Copy of Archival DBs. Now we have to frame backup policy with Symantec Backup Exec which has to backup our prim

  • HELP !  my mac will not boot up

    My G4 imac 512 mb 60 HD running tiger just up and died yesterday , it had been runing slowly for a wile but i chalked that up to me running heavy RAM items like photoshop,corel painter,flash , dreamweaver ..... but then in the morning i turned it on

  • Merging multiple idocs into 1 XML output

    Hi Gurus,   I've got a scenario whereby i will need to send payment documents via idocs to XI and XI will output them into an XML file. At the moment, when i perform a payment run for multiple vendors and send the idocs out, i realised that multiple

  • Auto Query in Master Detail Form using dynamic page doesn't work

    I created a Master-Detail form, and implement AutoQuery using a dynamic page with the following code : <HTML> <BODY> <ORACLE>DECLARE nre_ VARCHAR2(100); BEGIN nre_ := emp_nre; if nre_ is not null then net_portal.Popula_Agregados(nre_); net_portal.Pop