Table which contains name of the report generated from table

Hello everyone,
Is there any table which stores the report names that are created from table.
For example if my table name is 'ABC' a new report will be created for table at run time '/1BCDWB/DB/ABC'.
I also need to have table names, which stored the values when a layout is changed
For example if I have ten fields in my table, first time ill choose 5 fields, second time ill change the layout and choose 10 fields and ill save the layout.
If any Function modules are there please let me know
Please let me know, if anyone has details.
Thanks,
Gayatri.
Moderator message : Duplicate post locked. Continue with the thread - [Name of the table which stores report contents and layout changes|Name of the table which stores report contents and layout changes;.
Edited by: Vinod Kumar on Jun 14, 2011 3:42 PM

Hi,
Thanks for reply.
I know about ttxfp and tnapr. but none of the two table contain form name with its description. actully I m looking for a table which contain form name with there desription. please if you have info regarding this, Do share with me . this is really urgent
regrads,
Ruchika saini

Similar Messages

  • Looking for a table which contains Datasource and the name of DSO

    Hello,
    I need to extract a list with the datasource + Name System + DSO. If anyone know a BW table.
    Thanks in advance.
    Regards,
    Santos.

    Hi Santos,
    Please check the table "RSTRAN" -- directory of transformations in your system.
    If you have between data loading between DS and DSO, then you should have active data transformations.
    In this table, select type of source as data source and type target as DSO and execute.
    You will get list of DS and DSO which has active transformations.
    If you want details about each DS and DSO then you can check the below tables
    RSDODSO --- Directory of all ODS Objects
    RSOLTPSOURCE     --- Replication Table for DataSources in BW
    Regards,
    Venkatesh

  • How do I create a dynamic growing table which holds "copies" of the footer Row from several instances?

    Mission:        
    To create a summary table with Rows from several (yet to be determined) instances
    Coordinates of the enemy   (or Row in question):  
    ROOT.category[*].sub_category_total.sub_category_summary.Row1
    Background information:
    An order form with option for several categories (2 – 10) with subcategories (2 – 20).
    Since the finished form might be up to 20 pages long I would like to get to the point
    with a click of a button (so to speak)
    Therefore a summary list seems the only logic solution.
    Reward:
    Unending gratefulness and publishing of finished sample for others to learn from
    Additional Note:
    Should you choose to accept this mission I will never deny your existence and will
    always give credit to whom credit belongs.
    This message will NOT self-destruct.    

    Hi Steve,
    thanks for the example ... nice and close but not 100 % solution.
    The sample requires me to set up the summary table with fixed rows.
    But I don't know how many main categories & subcategories will be there - it can vary between 2 and 20.
    One solution would be to set up a table with 20+ rows and hide them if rawValue ... equals 0.
    Might work -  but is not very elegant ....
    I guess I was looking for the script that counts the instances and then creates automatically the necessary rows.
    I know it is a lot to ask in a forum ... but I guess it might be possible. Isn't it??
    Please let me know if I'm reaching for the impossible 
    Jixin

  • Find table which contains "job name" and "Mail sent to users"

    Hi Folks,
    I have a requirement” whenever I run a job(xyz), it send mail to users”, Can you please let me know the table which contains both “job name” and “successfully mail sent to users”.
    Thanks in Advance.
    Lakshmi.

    Hi,
    You can find the job name in TBTCJOB.
    Regards,
    Ravi
    Note : Please mark the helpful answers

  • Optimise query on the table which contain 1000 column

    Hi ,
    I have query on the table which contain 1000 columns
    when i am executing query on same table .It is taking time .
    Select * from abc
    where col1 between start_date and end_date ;
    abc table contain 1000 columns.
    please tell me how to optimise query

    Yeah, that was my thought as well ... 1000 columns? wtf?
    I can't think of many reasons for why you'd need to do a select * on it, and the scenarios that would require that are better addressed at the DBA level, perhaps using db replication and the data pump, etc. So to start with try selecting just the data you would need.
    One thing you can do right off the bat is to partition that table by date, and also to analyze and run statistics on it (this was a nightly operation at my last job).
    You can also create a materialzed view that refreshes overnight, just on the slice of the data you need. Use a forced fast refresh to make it current before you use it.

  • How can I put the report generated by a program into a File?

    Hi all,
       How can I put the report generated by a program into a File?It can be in TXT format or excel format which ever is possible.
    I need to export this file to memory,How can I do that??
    Regards,
    Shashank.

    Hello Shashank,
    Please ignore my previous answer... Ofcourse it works...
    There are several ways to do this...
    two of them are
    1. List -> Save -> File and press enter..
        it will ask for the format, then path where to save it. Just give the path.
    2. Using function module 'GUI_DOWNLOAD'.
    I'm giving the example bellow which explains the usage of both GUI_UPLOAD and GUI_DOWNLOAD.
    To do this... you need to have folder with name 'TEST' and a .txt file in it with name 'test'. And contents of it are :
    TEST1             ,BOT 
    TEST2             ,BOT 
    TEST3             ,BUT 
    with spaces.
    REPORT zssr_bdc .
    DATA: BEGIN OF g_t_itab OCCURS 0,
            matnr LIKE mara-matnr,
            maktx LIKE makt-maktx,
          END OF g_t_itab.
    DATA: g_t_bdcdata TYPE TABLE OF bdcdata.
    DATA: path TYPE string,
          path1 type string.
    path = 'C:\Documents and Settings\ssr3kor\Desktop\TEST\test.txt'.
    path1 = 'C:\Documents and Settings\ssr3kor\Desktop\TEST\test1.txt'.
    *contents of test.txt    *
    *TEST1             ,BOT  *
    *TEST2             ,BOT  *
    *TEST3             ,BUT  *
    CALL FUNCTION 'GUI_UPLOAD'
      EXPORTING
        filename = path
      TABLES
        data_tab                      = g_t_itab.
    LOOP AT g_t_itab.
      WRITE:/1(18) g_t_itab-matnr, 20(40) g_t_itab-maktx.
    ENDLOOP.
    CALL FUNCTION 'GUI_DOWNLOAD'
      EXPORTING
       filename = path1
       filetype                      = 'ASC'
      TABLES
        data_tab                      = g_t_itab.
    Now you will get one .txt file with name 'TEST1.TXT' in the TEST folder.
    <b>REWARD POINTS IF IT IS HELPFUL</b>
    Regards
    Sasidhar Reddy Matli

  • Send Email Attaching the Report generated in Program.

    Hi All,
    I am generating a report in list format with write statements.
    My requirement is to send an email attaching this report as an attachment.
    I wanted to know how to get the listobject of the report generated by my program from the memory. Can anyone guide me with this ?
    It will be appreciable , If any one can give me more information on sending mails attaching the reports  generated by the program.
    Thanks in advance,
    Mayank

    Hi,
    I think the problem is not clear.
    My problem is to get the listobject name which got generated after the program run.I want to attach this list report to the email. I have seen a code from one of the link.
    Here it is.
    List of Users According to Logon Date and Password Change
    NOTE: Create ALI/OTF Document in Spool
      SUBMIT rsusr200 WITH valid = 'X'
                      WITH notvalid = space
                      WITH unlocked = 'X'
                      WITH locked = space
                 EXPORTING LIST TO MEMORY AND RETURN.
    <b>* Read list from memory into table
      CALL FUNCTION 'LIST_FROM_MEMORY'
        TABLES
          listobject = lt_listobject
        EXCEPTIONS
          not_found  = 1
          OTHERS     = 2.
      IF sy-subrc <> 0.
      Error in function module &1
        MESSAGE ID '61' TYPE 'E' NUMBER '731'
           WITH 'LIST_FROM_MEMORY'.
      ENDIF.</b>
    Because listobject is of size RAW(1000)
    and objbin is of size CHAR(255) we make this table copy
      CALL FUNCTION 'TABLE_COMPRESS'
        TABLES
          in             = lt_listobject
          out            = lt_objbin
        EXCEPTIONS
          compress_error = 1
          OTHERS         = 2.
      IF sy-subrc <> 0.
      Error in function module &1
        MESSAGE ID '61' TYPE 'E' NUMBER '731'
           WITH 'TABLE_COMPRESS'.
      ENDIF.
    Here the report is sumitted with the option of exporting the list in to the memory which is later read using 'LIST_FROM_MEMORY'.
    But here i need the same report's output to be captured and want to read the list generated from memory into table.
    How can i get the listobject of the list generated by the report in the same report program itself ??
    Please let me know.
    Mayank

  • T-code to see the report generated by a Report Writer.

    Hi,
    I  am new to report writer and need your help.
    I have a output which is generated  through a report writer.
    I need to compare the code that generated this output in development and production systems.
    The only information I have is  the library name and a z report name which gives the output.(throgh t-code GR33)
    But when I try to execute the same report in Se 38, it says that te report does not exists .
    Please suggest what is the t-code to see the report generated by a report writer , so that I can compare the codes in different systems.
    Thanks,
    Suchi.

    Hi,
    Thanks for the replies.
    The actual issue is :
    I have  a report created by report writer in 2 languages in Chineese and in English.
    In the selection screen of the chineese report some of the labels are missing.
    It is getting printed as ####### instead of fiscal year , Period etc.
    This is happening only in production while in the development system it is correct (Both the chineese and the English selection screen ).
    I guess this is a transportation issue.
    Please suggest.
    I am ot able to see the Transport Requests associated with it .
    Can you please guide me for the same.
    Where can I see the TRs associated with this report.

  • List of PT TABLES which contain digital certificate

    Team,
    We have implemented self sign certicate in our environment.
    So, can someone share the list of PT TABLES which contain digital certificate .
    Because, we are going to refresh the environemnt and I dont want to lose the digital certificate after the refresh.
    Thanks

    On the safer side, I am taking export of below tables too. Please have a look.
    -- PROCESS SERVERS
    EXPORT PS_SERVERCLASS;
    EXPORT PS_SERVERDEFN;
    EXPORT PS_SERVERDEFN_LNG;
    EXPORT PS_SERVERNOTIFY;
    EXPORT PS_SERVERMESSAGE;
    EXPORT PS_SERVEROPRTN;
    EXPORT PS_SERVERCATEGORY;
    EXPORT PS_SERVERSTAT;
    --Report Node
    EXPORT PS_CDM_DIST_NODE;
    -- URL DEFINITIONS
    EXPORT PSURLDEFN;
    EXPORT PSURLDEFNLANG;
    EXPORT PS_PT_URL_PROPS;
    -- DIRECTORY
    EXPORT PSDSDIR;
    EXPORT PSDSSRVR;
    EXPORT DSCONNECTID;
    EXPORT PSDSEXT_INSTALL;
    EXPORT PSDSSECMAPMAIN;
    EXPORT PSDSSECMAPSRVR;
    EXPORT DSUSRPRFLMAP;
    EXPORT PSDSUSERPRFL;
    EXPORT PSDSSECROLERULE;
    EXPORT DSSRCH_SBR;
    EXPORT DSSRCHATTR;
    EXPORT DSSECFILTER;
    EXPORT PT_WF_NOT_DSCFG;
    -- WEB Data
    EXPORT PSWEBPROFBROW;
    EXPORT PSWEBPROFCOOK;
    EXPORT PSWEBPROFDEF;
    EXPORT PSWEBPROFILE;
    EXPORT PSWEBPROFPROP;
    EXPORT PSWEBPROFNVP;
    EXPORT PSGATEWAY;
    --Digital Certificates
    EXPORT PSCERTISSUER;
    EXPORT PSCERTDEFNDEL;
    EXPORT PSCERTDEFN;
    EXPORT PSCERTDB;
    -- Search Attribute
    EXPORT PSPTSF_ATTRS;
    EXPORT PSPTSF_ADD_PRMS;
    EXPORT PSPTSF_ATT_PROP;
    -- Search Definition
    EXPORT PSPTSF_SD;
    EXPORT PSPTSF_SD_ATTR;
    EXPORT PSPTSF_SD_ATTRH;
    EXPORT PSPTSF_SD_DCATR;
    EXPORT PSPTSF_SD_DCACL;
    EXPORT PSPTSF_SD_LANG;
    EXPORT PSPTSF_SD_PNLGP;
    EXPORT PSPTSF_SD_SRACL;
    -- Search Category
    EXPORT PSPTSF_CATADVFD;
    EXPORT PSPTSF_CATDSPFD;
    EXPORT PSPTSF_CATFACET;
    EXPORT PSPTSF_CAT_LANG;
    EXPORT PSPTSF_SRCCAT;
    EXPORT PSPTSF_SRCCATAT;
    -- Search Context
    EXPORT PSPTUS_CTX;
    EXPORT PSPTUS_CTX_DET;

  • Table which contains Start & End Destination details

    Hi All,
    I was trying to find out the table which contains the start and end destination details of a mileage claim in Travel Management.
    Can any one let me know the table names.
    Thanks and Regards
    Sri

    Hi Srinivas,
    Thanks for the reply!
    but what iam trying to find out is during mileage claim we usually enter the start destination and end destination . Now i wanted to know where will these details go and get stored as i need to amend some changes on the PDF form and i need to fetch these details to get them displayed.
    Thanks and Regards
    Sri

  • Getting the variant name when the report program is run in background

    Hi All,
    How to get the variant name for the report program when run in background? My requirement is to create an email attachement with the name 'variant.XLS', where variant = selection screen variant, when the report program is run in background. The system field SY-SLSET holds the variant name only when run online.
    Any pointers to this will be highly appreciated.
    Thanks and regards,
    Nilesh.

    Hello Nilesh,
    Please find the algo:
    1. Call the FM: GET_JOB_RUNTIME_INFO to get the background job details.
    2. Select data from TBTCP using these details:
    DATA:
    FP_EVENTID   TYPE BTCEVENTID
    FP_EVTPARM   TYPE BTCEVTPARM
    FP_ACTIVE    TYPE BTCXPGFLAG
    FP_JOBCNT    TYPE BTCJOBCNT
    FP_JOBNM     TYPE BTCJOB
    FP_STEPCNT   TYPE BTCSTEPCNT.
      CALL FUNCTION 'GET_JOB_RUNTIME_INFO'
        IMPORTING
          EVENTID                 = FP_EVENTID
          EVENTPARM               = FP_EVTPARM
          EXTERNAL_PROGRAM_ACTIVE = FP_ACTIVE
          JOBCOUNT                = FP_JOBCNT
          JOBNAME                 = FP_JOBNM
          STEPCOUNT               = FP_STEPCNT
        EXCEPTIONS
          NO_RUNTIME_INFO         = 1
          OTHERS                  = 2.
      IF SY-SUBRC <> 0.
    *   Error calling FM: GET_JOB_RUNTIME_INFO
      ENDIF.
    DATA: FP_VARIANT TYPE BTCVARIANT.
      SELECT JOBNAME JOBCOUNT STEPCOUNT VARIANT
      FROM   TBTCP
      INTO TABLE L_IT_TBTCP
      WHERE  JOBNAME   = FP_JOBNM
      AND    JOBCOUNT  = FP_JOBCNT
      AND    STEPCOUNT = FP_STEPCNT.
      IF SY-SUBRC = 0.
        SORT L_IT_TBTCP BY JOBNM JOBCNT STEPCNT.
        READ TABLE L_IT_TBTCP INTO L_WA_TBTCP INDEX 1.
        IF SY-SUBRC = 0.
          FP_VARIANT = L_WA_TBTCP-VARIANT.
        ENDIF.
      ENDIF.
    Hope this helps.
    BR,
    Suhas

  • Intenal table  as container variable in the alert category

    Hi
    Is it possible  to create   internal table as Container Variable in the alert category. If it is possible how can we pass the data to this internal table in the Run time to the funtion module SALRT_CREATE_API.I have tried this to pass the data to the container parameter
    it_container ,but i was unable to achive it .If anyone has come across this please guide me .
    Thanks and Regards,
    Venkat

    You can use the Forms "From Clause Query" as the datasource for the data block. Then you can change the QUERY_DATA_SOURCE_NAME using set_block_property, so you can use any SQL statement you like. Of course you must name/alias the columns in a consistent manner so that the number of database items on the block matches those being queried.

  • Name of the file generated not correct

    Hi all,
    We are using E-Business Suite R12. We have a concurrent request with executable Oracle Report and output type: XML. When is submitted we try to save it in Excel but the name of the file is not with the correct name/report name/ but in "hieroglyphics". The name of the report is in Cyrillic alphabet.
    The result we received:Регистър_РЅР°_факт_200212The result needed: Регистър на фактурите 200212.
    Any ideas? I'm not sure i'm asking at the right place... if not - please guide where to post thread.
    RDBMS : 11.1.0.7.0
    Oracle Applications : 12.1.3Thanks in advance,
    Bahchevanov.

    you can't get the generated filename for write operation.
    But what you can do, is to define header variable of OutboundHeader_msg type, define your own filename (based on your unique creation criteria) and then pass it to invoke activity for file creation.

  • How to create a table which contains relational data and Document data

    hai all
    i need to create a table which contains relational data(i mean coulumns whose data types are type NUMBER,VARCHAR) and documents(like xml file/html file/image)using iFS.
    when i store the document data(xml data/html data) in the iFS ,it will be stored as Document Object.so how do i relate this document object belongs to a particular row in a table.
    do guide me
    thanks

    Please see reply at http://technet.oracle.com:89/ubb/Forum36/HTML/000778.html

  • Pint user name in the report

    Hi
    I want to print the user name in the report. How can I ?
    Here username is the one which i am using to login into apex.
    Thanks
    Nav.
    Edited by: user13129164 on May 18, 2010 11:53 PM

    Use the APP_USER built-in substitution string.
    http://download.oracle.com/docs/cd/E14373_01/appdev.32/e11838/concept.htm#sthref214
    Please use the documentation to answer basic questions, and update your forum profile with a better handle than "user13129164".

Maybe you are looking for