Table where data of a Variant saved will be stored.

Hi All,
        In normal Custom reports we will be saving some variants so that we can put the same variant after some time for executing the report. Variant will be having a unique name which will be stored in some table and the data(selection screen entries) which we are saving also will be saved some where in SAP tables. If any one of you has knowledge of those tables please help me out.
Thanks in advance,
Shyam.

Hi
VARIT--> Variant texts
VARID--> Variant directory
Using values from Table TVARVC is especially useful in background processing. You do not have to create a new variant for each minor change of values or repeatedly change an existing variant, since you only have to change the values stored in TVARVC.
However, note that every change of a value in Table TVARVC affects all variants using this particular variable.
Reward all helpfull answers
Regards
Pavan

Similar Messages

  • Tables where the survey questionnaire and response information gets stored

    Dear experts,
    Could you please help me with the information on the tables where the survey and survey responses will get stored in the system?
    Thanks and regards,
    Ranjan

    Hi,
    These are all talbes in SRM relates to Survey.
    ROST_LANG_QSTN        Language Selection for Question 
    ROST_PCAT_QSTN        Assign Product Category and Questionnaire to Lan 
    ROST_SEL_PRODCAT    Product Categories for Regis 
    ROST_WS_QSTN            Web Survey Questionnaire 
    ROS_BP_PC_SURVEY    Assign Vendor, Product Category, Survey 
    CRMD_IC_SCRATTR        Script/Survey attributes (Interactive Script Editor) 
    ROST_WS_QSTN            Web Survey Questionnaire 
    ROS_BP_PC_SURVEY    Assign Vendor, Product Category, Survey 
    TUWS_SURVEY              Survey 
    TUWS_SURVEY_LOG     Survey Log 
    TUWS_SURVEY_PUB      Survey Publishing 
    TUWS_TAROBJ               Survey: Recipients 
    TUWS_TAROBJ_ATTR    Survey: Recipient Attributes 
    Regards,
    yaniVy
    reward if helps

  • Database Table where MRP Run results are saved-Urgent

    Hi Gurus
    i need your help in identifying the database table where the MRP Run results are saved , this is needed for creating a custom report similar to MD45(but for entire plant) where i can look and pull the sum of all the receipts and issues, ATP Quantity for a given material in a particular plant
    and ignore zero quantities in the receipts and issues field
    i tried in <b>MDTB</b> table, MDTB-MNG01 Quantity received or quantity required but it has no entries maintained in it and so it cannot be used.
    So can you please help me with the table where i can get this information asap
    thank you very much for your time and solution

    Please use the code below which will help you in extracting data from MRP table.
    You can enhance this program basing on your requirement.
    *+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    A sample program to extract data from the MRP table.
    *+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    REPORT ZMRPTABLE.
    TABLES: MDKP,  "Header Data for MRP Document
            MDTB,  "MRP table
            MDTC,  "Aggregated MRP table items
            T457T. "Description of MRP elements
    DATA: BEGIN OF MDTBX OCCURS 0.
            INCLUDE STRUCTURE MDTB.
    DATA: END   OF MDTBX.
    SELECT-OPTIONS: PLANT FOR MDKP-PLWRK OBLIGATORY,
                    MATNR FOR MDKP-MATNR OBLIGATORY.
    CLEAR: MDKP, MDTB.
    SELECT * FROM MDKP WHERE DTART EQ 'MD'
                         AND MATNR IN MATNR
                         AND PLWRK IN PLANT.
        WRITE:/ MDKP-MATNR, MDKP-PLWRK.
        IF MDKP-CFLAG EQ 'X'.
           CLEAR MDTBX. REFRESH MDTBX.
           IMPORT MDTBX FROM DATABASE MDTC(AR) ID MDKP-DTNUM.
           LOOP AT MDTBX.
             MOVE MDTBX TO MDTB.
             SELECT SINGLE * FROM T457T WHERE SPRAS = 'E'
                                          AND DELKZ = MDTB-DELKZ.
             IF MDTB-PLUMI = '-'. MULTIPLY MDTB-MNG01 BY -1. ENDIF.
             WRITE:/ MDTB-DAT00, T457T-DELB1, MDTB-VSTAT,
                                              MDTB-MNG01, MDTB-LGORT.
           ENDLOOP.
        ELSE.
           SELECT * FROM MDTB
                         WHERE DTNUM EQ MDKP-DTNUM
                         ORDER BY PRIMARY KEY.
             SELECT SINGLE * FROM T457T WHERE SPRAS = 'E'
                                          AND DELKZ = MDTB-DELKZ.
             IF MDTB-PLUMI = '-'. MULTIPLY MDTB-MNG01 BY -1. ENDIF.
             WRITE:/ MDTB-DAT00, T457T-DELB1, MDTB-VSTAT,
                                              MDTB-MNG01, MDTB-LGORT.
           ENDSELECT.
        ENDIF.
    ENDSELECT.
    This is taken from www.sap-img.com
    Hope this helps you.

  • Where the create or replace packagebody will  be stored?

    Friends,
    can anybody clear this doubt pls?...
    writing create or replace packagebody in the sql*plus will be stored in the database.
    but if i write the same create or replace packagebody in the forms where it will be stored?
    will it store in the database or in temp memory?
    thanks

    Like Francois said...
    When you create a program unit in forms, it will be stored in the form module.
    It's not available on the database.
    When you call a package in forms, it will first look in the form.
    If the package doesn't exist, it will check the libraries attached to the form.
    If the package doesn't exist in a library, it will check the database.
    I hope this helps...

  • How do I identify records in table where dates overlap?

    Hi
    In a table I can have multiple records per Code. But if you look at the Start and End dates of the last two records they overlap.
    Unique ID Code Start Date End Date
    1 143     28-MAY-02     16-OCT-02     
    2 143     17-OCT-02      22-NOV-02     
    3 143     13-NOV-02     12-MAR-03
    I want to be able to identify these and then change the values to be     
    Unique ID Code Start Date End Date
    1 143     28-MAY-02     16-OCT-02     
    2 143     17-OCT-02      12-NOV-02     
    3 143     13-NOV-02     12-MAR-03
    i.e. set the End Date of the 2nd record to be a day less than the start date of the 3rd record.
    Can anyone please help with how I can do this?
    Thanks
    GB

    You have to make the ordering unique, so I added the column end_date to the ordering.
    And the solution prevented was buggy, so I replaced it with a new SQL statement:
    SQL> create table test_table
      2  as
      3  select 1 uqid, 143 code, date '2002-05-28' start_date, date '2002-10-16' end_date from dual union all
      4  select 2, 143, date '2002-10-17', date '2002-11-22' from dual union all
      5  select 3, 143, date '2002-11-13', date '2003-03-12' from dual union all
      6  select 1, 100, date '2007-02-01', date '2007-02-14' from dual union all
      7  select 2, 100, date '2007-02-15', date '2007-02-15' from dual union all
      8  select 3, 100, date '2007-02-15', date '2007-05-05' from dual
      9  /
    Tabel is aangemaakt.
    SQL> select uqid
      2       , code
      3       , start_date
      4       , end_date
      5       , next_date -1 as replacement_date
      6    from ( select uqid
      7                , code
      8                , start_date
      9                , end_date
    10                , LAG(start_date) over (partition by code order by start_date desc) as next_date
    11             from test_table
    12         )
    13   order by code
    14       , start_date
    15  /
    UQID  CODE START_DATE          END_DATE            REPLACEMENT_DATE
        1   100 01-02-2007 00:00:00 14-02-2007 00:00:00 14-02-2007 00:00:00
        2   100 15-02-2007 00:00:00 15-02-2007 00:00:00
        3   100 15-02-2007 00:00:00 05-05-2007 00:00:00 14-02-2007 00:00:00
        1   143 28-05-2002 00:00:00 16-10-2002 00:00:00 16-10-2002 00:00:00
        2   143 17-10-2002 00:00:00 22-11-2002 00:00:00 12-11-2002 00:00:00
        3   143 13-11-2002 00:00:00 12-03-2003 00:00:00
    6 rijen zijn geselecteerd.
    SQL> select uqid
      2       , code
      3       , start_date
      4       , greatest
      5         ( least
      6           ( lead(start_date,1,end_date+1) over (partition by code order by start_date, end_date) - 1
      7           , end_date
      8           )
      9         , start_date
    10         ) replacement_date
    11    from test_table
    12   order by code
    13       , start_date
    14       , end_date
    15  /
    UQID  CODE START_DATE          REPLACEMENT_DATE
        1   100 01-02-2007 00:00:00 14-02-2007 00:00:00
        2   100 15-02-2007 00:00:00 15-02-2007 00:00:00
        3   100 15-02-2007 00:00:00 05-05-2007 00:00:00
        1   143 28-05-2002 00:00:00 16-10-2002 00:00:00
        2   143 17-10-2002 00:00:00 12-11-2002 00:00:00
        3   143 13-11-2002 00:00:00 12-03-2003 00:00:00
    6 rijen zijn geselecteerd.Regards,
    Rob.

  • Table where service PO and PR details will be avilable

    Hi All,
    In which table does details(like service master number,quantity,gross price and unit) of service PR and PO will sit.
    Thanks in advance
    Pavan

    Hi,
    Please check EKKO, EKPO for Service Order.
    EBAN, EBKN is for Service PR & for Service in Service Order and Service Pr is ESLL.
    Regards,
    Mahesh Wagh

  • Table where data of  material against WBS is maintained

    Hello Experts.
                         Is there any table to look upon which fetches data related to material assignment against WBS and vice versa.?
    Please suggest.
    Regards
    Edited by: ankur_sau on Feb 15, 2012 11:47 AM

    Thanks A Lot Andreas Mann !!!
    regards
    Ankur

  • Return rows where date between sysdate +- 2 years

    Hi,
    Please let me know how to select rows from table where date = sysdate +- 2 years
    if sysdate is 27/07/2012 then select rows where date between 27/07/2010 to 27/07/2014

    you need all date ? or only specific date ?
    Specific date Purvesh already provided solution
    All
    SELECT * FROM ( SELECT SYSDATE+LEVEL AFTER,SYSDATE-LEVEL befor FROM dual connect BY LEVEL<=365*2 )Or specific
    SELECT Max(AFTER),Min(befor) FROM
    ( SELECT SYSDATE+LEVEL AFTER,SYSDATE-LEVEL befor FROM dual connect BY LEVEL<=365*2 )

  • Need the TABLE where SALES TEXT of a material is stored

    I need the table where the sales text of a material is stored. This can be onbtained from MM03 --> SALES TEXT. Here we can pick it up from the language.I need the table where it is stored.

    Hi Gurpreet
    Please follow the below steps:
    1. Go to MM02.
    2. Select View: <b>Sales Text</b>
    3. When you are in the editor, use menupath: Goto->Header
    Here we can get the details of Text-ID, Text Name, Language, Text Object.
    Use these details for FM: READ_TEXT.
    We can retreive all text in the output of the FM.
    Hope this helps you.
    Kind Regards
    Eswar

  • Table where CU50 configuration data is saved

    Hello All
                           Can you please tell me if there is a table in SAP where i can see the charecteristic value selections in CU50 screen, i mean i am looking for a Table where all th charecteristic values selected for a configurable material in Cu50 or VA02?
    Thanks in Advance

    Dear friend,
    Please have a look at standard structure RCUKO  (there is no table, only the structure).
    You can try to get the data using some functional modules, I guess try the
    CU_SINGLE_CONFIGURE
    Good luck!

  • Tables where BEx query variants are saved (BI 7.0)

    Hi Experts,
    I'm looking for the BI tables where BEx 7.0 saves query variants, but I don't find nothing.
    In BW 3.5 there were Table RSRVARIANT, but in BI 7.0?
    Could someone help me?
    Thanks in advanced
    Fede

    Hi Sunmit,
    thanks, I found my query variants RSRPARAMETRIZA.
    In RSRPARAMETRIZA there aren't information about single variable who make the variant!
    In RSRVARIANT I find only variants I have created with Business explorer 3.5.
    All variants of queries I have created with BEx 7 aren't in RSRVARIANT,
    Should I have them in RSRVARIANT?!
    or There is another table for those information about variant query of BEx 7.0...
    bye
    Fede

  • Select data from table where field is initial

    I have table that has 10 million records.
    I want to select data from this table where certain date field is blank.
    *SELECT * FROM table*
    INTO TABLE internal table
    WHERE PSTNG_DATE = BLANK.
    Does anybody know how to select data from data base table when certain field is blank.
    I cont select all data once and delete which i dont want, the table is big, it will blow up app server.
    thanks in advance,
    Sachin
    Moderator: Pls do not lock the posting instead provide me the link, its disrespecting.

    Respect the forum rules and common sense, and you will be respected.
    "how to select data from a database table when the field is blank" is very basic, and basic questions will be locked, because they have been asked many times and you can find the answer yourself with a little effort. There is nothing disrespectful about it.
    Thread locked.
    Thomas

  • Table name where Broadcaster precalculation variables are saved

    Please help me with the table name where Broadcaster precalculation variables are saved. Thanks.

    Hello Jinal
    Please go to transaction SE11 and there search  in database table for tables starting with
              /BIC/OB*
    My table for example is named as following /it is the first precalculated value set:
    Transparent table -> /BIC/OB00000001
    description           -> Calculate with Broadcast Setting Z_CCUSTOMER_PRECALC_01
    However table class is L, where so I don't knwo how to see the data..
    In case you know please let me know
    Best regards
    Christian

  • From where can i find/download it's tables and data? ("Oracle iDS Froms:...

    i have Student Guide named => "Oracle iDS Froms: Build Internet Application I" from
    Oracle Corporation, part number D32772, May 2001. it uses "The Summit Sporting Goods Schema"
    as an example throughout the book.
    from where can i find/download it's tables and data?
    will be thankful for guidence.
    Arif.

    from where can i find/download it's tables and data? ("Oracle iDS Froms:... Jan 22, 2004 6:34 PM
    Reply
    i have Student Guide named => "Oracle iDS Froms: Build Internet Application I" from
    Oracle Corporation, part number D32772, May 2001. it uses "The Summit Sporting Goods Schema"
    as an example throughout the book.
    from where can i find/download it's tables and data?
    will be thankful for guidence.
    Arif.

  • Wifi is not available where I come from. I have broadband connection where data transmission is through cell sites then to USB modem connected to a computer. The modem draws power from the computer. Will this setup work with the ipad?

    Wifi is not available where I come from. I have broadband connection where data transmission is through cell sites then to USB modem connected to a computer. The modem draws power from the computer. Will this setup work with the ipad?

    iPad requires Wifi (or 3G /LTE) to connect to the Internet. You cannot connect a USB modem to the iPad.
    You can create your own WiFi hotspot through your computer for your iPad to connect to, if your computer supports this functionality. All Wifi Macs and many Wifi PCs do. Check your computer manual for how to do it.

Maybe you are looking for