Table that shows variants?

Dear GURUS
I need to know if there is a table that holds the variants which are used in reports.
Best Regards
SP

> VARID
> VARIT
> VARI <- this is the table that holds variant values,
> but unfortunately they are stored in a cluster and
> hence not easy to read.
Could you please open a little bit. about the table VARI / i need to finds variant's values. how to read that table?
thanks

Similar Messages

  • Tables That Show a Specific Field

    Hello,
    The same field is used in many transactions and tables, for example Purchase Groups and Validity Dates.  Can anyone tell me if there is a transaction or table that would tell me what other transactions or tables use a particular field as part of the criteria?
    Thank you in advance.
    Judi

    Press F1 on the field you want to know..
    and you will see a popup, there click the technical information
    tab..
    you will see table , field & data element...
    Double click on Data element..
    it will take you to Next screen..
    there clcik the Where- used List( Three Arrows) CtrlShiftF3..
    you will get the options for tables, transactions , Programs etc..
    Tick what you want to see
    for that  particular field ...
    and execute..
    Thx
    Raju
    Edited by: Manohar Raju on Mar 12, 2008 12:53 PM

  • Process Chains! is there a table that shows how long a PC works?

    hi all
    I've got many process chains in my system, i need their statistical data about how long they keep working once a day,
    so, do you know a table that keeps the data i need?
    regards,
    Mete

    If you run/receive the Early Watch report, it has some info on Process Chains, a sample of the info pasted below (apologies on some of the alignment).  Also tran ST03 in Expert mode has some Process Chain info as well.
    Main Chain     #Total Subchains     #Total Steps     #Runs     Total Runtime [min]     Avg. Runtime [min]     Med. Runtime [min]     Avg. Proc.Type Runt. [min]
    ZTV_D_LOAD     0     24     4     964     241     236     267
    ZSR_D_ALL_META     18     113     4     740     185     169     111
    ZFM_D_TRAN_METACHAIN     9     63     4     363     91     81     120
    ZPM_D_METACHAIN     6     46     4     328     82     30     83
    FI_DAILY_TRAN_METACHAIN     8     51     4     280     70     68     118
    ZADM_R_RSRV     0     6     1     145     145     145     254
    ZSRMD_WK_META     4     68     1     111     111     111     111
    ZMD_D_METACHAIN     7     93     4     103     26     26     27
    ZTC_D_METACHAIN     3     56     4     72     18     18     18
    ZMM_D_META_2     2     17     4     58     15     8     14
    ZADM_D_METACHAIN     2     16     4     52     13     14     13
    ZFI_12PM_TRAN_XTRA     3     11     7     48     7     8     7
    ZFI_3PM_TRAN_XTRA     6     20     7     45     7     7     7
    ZARS_W_TRAN     0     9     1     40     40     40     39
    ZFI_5PM_TRAN_XTRA_START     12     38     7     37     6     6     6
    ZFI_D_TRAN_ZSLGS_01     0     3     4     34     9     7     9
    ZMM_D_META_1     1     17     4     31     8     7     8
    ZFI_X_ARAPGL_TRAN     6     40     1     30     30     30     47
    ZFI_5AM_TRAN_XTRA_META     9     29     2     28     14     14     14
    ZMD_W_TEXT_PROBLEMS     0     4     1     18     18     18     18

  • Cannot Drop Table that Shows in dba_tables

    In my IDE I see two tables that I no longer need. I created them as a test to see the difference between LOGGING vs NOLOGGING. Now I want to drop the tables.
    I issue the command drop table customers_no_logging.
    The system responds with ORA-00942: table or view does not exist.
    However, select table_name from dba_tables returns the table names in question.
    Even in sqlplus I get the same result:
    SQL> select table_name from dba_tables where owner = 'RUB';
    TABLE_NAME
    CUSTOMERS
    INV_ITEM_MASTER
    INV_SITE
    CUSTOMERS_w_log
    CUSTOMERS_no_log
    5 rows selected.
    SQL> drop table CUSTOMERS_no_log;
    drop table CUSTOMERS_no_log
    ERROR at line 1:
    ORA-00942: table or view does not exist
    How can I drop these tables?
    Thanks,
    Gregory

    I was connected as RUB in my IDE and SYS in SQLPlus.
    I have connected as RUB in SQLPlus and tried
    SQL> drop table "RUB.CUSTOMERS_no_log";
    drop table "RUB.CUSTOMERS_no_log"
    ERROR at line 1:
    ORA-00942: table or view does not exist
    Maybe I need to stop and restart the DB?
    Gregory

  • Workflow table that shows whether a TS is a background type

    Hi,
    does anyone know the name of the SAP table that tells you whether a workflow task is a foreground or background type?
    Thanks,
    Jerry

    Hi Rose,
    Thank you. The SE11 table description for HRS1201 doesn't reflect what's in the table.
    Regards,
    Jerry

  • Checkboxes in table that show value

    Hello,
    I have a series of questions that I want the user to be able to answer yes or no by selecting or deselecting a checkbox. I have this working fine now, except when it is loaded again all the checkboxes are unchecked, even though some of my values are 'true'.
    I've tried setting the 'selected' property on the checkbox to a binding of the value in the table, as #{row.answer}, but that did nothing. I got it to work by using a #{row.answer == 'true'}, but then the checkbox became read only, which destroys the purpose.
    Lastly, I tried having two separate checkboxes, one that was selected by default and one that was unselected, then I set the render property to #{row.answer == 'true'} or #{row.answer == false}, respectively. This works the first time I load the page but after I submit or change sections they all show as unselected again.
    How can I get the checkboxes to reflect the current value?
    Thanks,
    -N

    Hi Frank,
    Thanks, that's exactly what I'm looking for.
    I'm getting stuck though and I can't figure out why. I got the sample application to work very easily, but when I try to adapt it to my new project it doesn't show any value for StatusAsBoolean. I tried using the same table even and it remains blank.
    Here's what I've done:
    Created an entity object for the table.
    Created a view object based on the entity and added another attribute (StatusAsBoolean) and uncheck everything, set as type Boolean and Always Updatable.
    Created a new class (SettingsViewRowImpl.java) and used the same code as in the class in the sample file.
    Created a table on the .jsp page.
    One thing I've noticed is that when I make a view object, it creates a SettingsViewImpl.java file. I tried putting the code in there but that crashes the application.
    I hope I'm not frustrating you, I've been trying really hard to get this to work and I'm sure it's a really obvious mistake.
    Thanks

  • Regarding table that shows tcode info

    Hi all,
           Is there a table in SAP which shows all the users who used a particular tcode. Can any one suggest me if there is one like that.
       Let me know if any additional information is required.
    Thanks in advance.
    Ravi Boppana

    Hi Ravi,
    I think ST03N tcode is used to check the history of transaction usage by the users. I think you will have logs upto 5 months.
    You can also go to SUIM and check which users have access to a particular tcode.
    Hope this helps.
    Regards,
    Kiran Kandepalli.

  • Is there a table/report that shows a list of the original tcodes vs tcodes?

    How to I find out the calling tcode of a transaction other than using SE93?
    e.g
    ABUM 's original tcode is AB01.
    Is there a table/report that shows a list of the original tcodes vs tcodes?

    Table TCDCOUPLES gives a list of called tcodes for a particular tcode.
    e.g
    For parameter tcode 1KEF  , called-tcodes are :
    1KE1
    1KEF
    1KEG
    OKKS
    BUT this table does not show which called-tcode is the original tcode.
    Using se93, I see that 1KEG is the original tcode.
    Is there a table that will show only the parameter tcodes vs orginal tcodes?

  • BSP That shows me the entrys of a table in R/3 System

    Hi There,
    i need a simple code...
    I have a table in my R/3 System called. ZRP_DATEN
    What i want is a BSP Page that shows all the Entys in the table..
    Can somebody help here?
    Thanks
    Bjoern

    Hi ,
    Create a BSP application ZBSP_SHOWMAT , Create a BSP page..
    Eventhandler...OnCreate.
    Select * from zrp_daten into table gt_daten .
    Layout:
    <%@page language="abap" %>
    <%@extension name="htmlb" prefix="htmlb" %>
    <htmlb:content design           = "design2003"
                   controlRendering = "SAP" >
          <htmlb:page title="Show data from teble">
    <htmlb:form id="empconfirm" >
    <htmlb:gridLayout columnSize  = "1"
                              rowSize     = "1"
                              cellSpacing = "10"
                              cellPadding = "2" >
    <htmlb:gridLayoutCell columnIndex = "1"
                                    rowIndex    = "1" >
    <htmlb:tableView id                     = "material"
                                     headerText          = "Materials"
                                     headerVisible       = "true"
                                     design              = "alternating"
                                     visibleRowCount     = "5"
                                     fillUpEmptyRows     = "true"
                                     selectionMode       = "MULTILINEEDIT"
                                     filter              = "SERVER"
                                     emptyTableText      = "No items found for specified search criterion"
                                     table               = "<%= gt_daten %>" />
    </htmlb:gridLayoutCell>
    </htmlb:gridLayout>
    </htmlb:form>
        <htmlb:page>
    </htmlb:content>
    Type Definitions..
    TYPES: tt_daten type table of zrp_daten
    Page Attributes:
    gt_daten TYPE tt_daten
    Search the forum for tutorials
    Regards,
    Anubhav

  • A matrix column that shows a field from a linked table

    Hello,
    I'm creating a custom UI form for a UDO of type document.
    This UDO (say FATHER) has one child table (say CHILD). I show its data in a matrix.
    Every line in CHILD links to a sales order line (RDR1).
    In the matrix I'd like to show:
    A) some columns from CHILD (I succeded)
    B) a linked button column that links to ORDR using CHILD.U_OrderEntry (I succeded)
    C) a column that shows RDR1.DocDueDate (how?)
    D) a linked button column that shows RDR1.ItemCode and links to OITM (how?)
    Something similar is done by B1 in pick list standard form (id 85), for instance.
    Can you help me solving issues C and D?
    I guess I should link my CHILD.U_OrderEntry and U_OrderLine with RDR1.DocEntry and LineNum.
    Many thanks!

    Hi Simone,
    I agree, my explanation was partial.
    When I am creating a new form, I'm basing every single piece of the UI on DataTable (I never use DBDataSource and UserDataSources only for Folders). One for the header, one for each Matrix/grid, etc.
    By doing this, it allows me to have the correct layout and validate the UI with the project manager (or the Customer, when this is me the project manager ).
    Then, I am creating the queries, to extract data from the DB exactly as the previously defined DataTables are expecting these data (so, calculating the LineId from the query...).
    And finally, this is the beauty of the design, DataTables allows to to extract (since 2007PL47?) the data from a DataTable as an xml String and to import it in a different DataTable.
    So, to make the full picture, I have a specific DataTable to execute queries, from which I'm extracting the xml definition to load it in the "UI's DataTable". It ends with a matrix.LoadFromDataSource...
    Definitions are staying as defined, querying and loading is sub-second time (depending on your SQL expertise), layout doesn't flicker...
    If you need an excerpt of code (frankly, I'd prefer you to write it with this "how to"), just ask.
    Regards,
    Eric

  • Table borders show up with Firefox or IE but not Safari (Win or MAC)

    This very simple site (http://www.brandondean.net) has two table borders that show up under FF and IE but not Safari (either Win v4.0 or Safari for MAC, same result). I'm not an expert but I did the work using Dreamweaver 2004 MX as XHTML compliant, tested every page at W3C.org to make sure they comply with XHTML, and they do (except for my not putting in "alt" on images). I even downloaded Dreamweaver CS4 to run the "clean up the code" command and nothing is fixing the problem. I'm hoping someone out there has seen this before and can help us out. Thx.

    Hi Gary,
    It's probably just because the border widths you are specifying are too small (or WebKit is interpreting picas differently to Firefox/IE - I say WebKit as the same problem is visible in Google Chrome and that uses WebKit like Safari as well).
    Try setting using this instead:
    .borders {
    font-family: Verdana;
    font-size: 10px;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    color: #cccccc;
    text-decoration: none;
    border: 1px solid #888888;
    That seems to do the trick for Firefox and Chrome on this Linux machine I'm using at the moment.

  • Trying to create a query that shows Sales Order/Invoice Totals as well as Paid/Outstanding/Available Down Payments

    Currently working on SAP B1 v8.82
    I'm looking to generate a query that will give an overall report for a given customer that shows Sales Order No, Invoice No, Sales Order Total, Invoice Total, Amount Paid on Invoice, Amount Remaining on Invoice, Down Payments Available, Open on Sales Order.
    I'm not sure what the best way to select the columns in bold above.  Invoice Total should be self-explanatory.  Amount Paid should be any down payments or applied payments on the invoice.  The balance due on the invoice (which seems to be T0.DocTotal if I'm not mistaken) should = 'Invoice Total' - 'Amount Paid on Invoice'. In the Down Payments Available column I want the total amount of money on the account or on down payments that aren't tied to a Sales Order.  If a client overpaid in the past for instance and there's a credit on their account, then it should contribute to this sum.  Open on Sales Order should be pretty easy.  I guess it's just the sum of everything that is still open on the Sales Order.  I'm just not sure what the best way to sum all the un-delivered freight, tax, and line items is.  Here's what my query looks like so far.
    SELECT DISTINCT T4.[DocNum] [Sales Order No],
    T0.DocNum [Invoice No],
    T4.DocTotal [Sales Order Total]
    T0.DocTotal [Amount Outstanding],
    FROM OINV T0
    INNER JOIN INV1 T1 ON T0.DocEntry = T1.DocEntry
    INNER JOIN DLN1 T2 ON T1.BaseEntry = T2.DocEntry AND T1.BaseLine = T2.LineNum
    INNER JOIN RDR1 T3 ON T2.BaseEntry = T3.DocEntry AND T2.BaseLine = T3.LineNum
    INNER JOIN ORDR T4 ON T3.DocEntry = T4.DocEntry
    INNER JOIN OSLP T5 ON T4.SlpCode = T5.SlpCode
    WHERE T0.CardName Like '%%[%0]%%'
    GROUP BY T4.DocNum, T0.DocNum, T0.DocTotal, T4.DocTotal
    I tried doing a little searching around for queries similar to what I need, but I could find exactly what I was looking for and I'm very unfamiliar with OJDT, JDT1, and ITR1 tables which I think might be important to finding unapplied payments...

    Thanks.  There's a few problems though.
    1)  It seems that OINV DocTotal != Balance Due.  I'm seeing a number of invoices where there was a balance due, but we applied additional money (either we took another incoming payment and applied it or applied money from the account balance, etc.) and yet it still shows a total.
    2)  It's pulling incoming payments from different customers.  I think this is because the table was joined based on "RCT2 T4 on T4.[DocEntry]  =  T3.[DocNum] and T4.[InvoiceId] = T2.[LineNum]"  In one example I have 2 incoming payments 446 and 614.  Both have the DocEntry 542, but one relates to A/R Invoice 542 (for a different client) while the other relates to Down Payment Invoice 542.  *I was able to fix this by adding WHERE T5.CardCode = [%0]*
    3)  I'm going to work with this a little bit and see if I can alter it to make it work for me.  Basically this query falls a little short on the following:
    -  Doesn't include incoming payments that aren't linked to a down payment invoice.
    -  Does not give the Invoice Total (I'd like to know how much of the SO was invoiced.  DocTotal seems to give me Amount Invoiced - Down Payments.  I'm not sure the best way to get this number.  Maybe I could do the sum of each line * tax + freight)
    -  Does not give the outstanding amount on an invoice.  The ARtotal [DocTotal] column gives me how much was owed when the invoice was created, but it doesn't tell me what is currently owed.
    -  Lastly it may complicate the query too much and could be left off, but it would be nice to see if they have any money from credits or incoming payments that has not been applied.  Perhaps this would be easily accomplished by simply pulling in their account balance.

  • Std. Report that shows PSG linked to WBS (Pdt. hier. defined)

    Hi Experts,
    Is there any standard report that show, which Profit segment is derived and receives settled costs and revenues for a particular WBSE?
    Our scenario:
    (1) Billing WBS element is assigned to SO Line item, and billing plan is created and accordingly invoicing happens.
    (2) Product hierarchy is defined in MM and linked to COPA for derivation of PSG.
    Thanks in advance.

    Hi Aditya,
    There are no standard reports in PS which will give you this information. You need to check with your CO counterparts to get it.
    Most probably i think there won't be any standard report available to give you that detail. Try creating a custom report.
    Use the table COBRA and COBRB with RPSCO or COSP/COEP table with PRPS to get the desired results.
    Cheers
    Sammar

  • How do you find a table that doesn't have a specific word in it.

    I have two questions.
    questions 1
    How do you find a table that doesn't have a specific word in it by using a query on the whole database?
    questions 2
    How would i list all of my cars names in my database not showing duplicates?
    I have tried, tried and tried some more to get both of these, but I guess i don't know how to query a specific word.
    I also don't know how to query everything in just 1 column name.
    If anyone could help with these that would be great I have been trying queries for over an hour now and no luck.
    Thanks

    798837 wrote:
    I tried the all_tab_columns, just like you did it, however that just gives me the column name I am looking for what is not in a column.
    For example I need to find all the tables where mustang is not = 'red' but using a single query i need to find all of the tables.
    As for number 2
    I am looking for something like this
    select distinct column_name
    from all_tab_columns
    where column_name ='AcertainColumn';Now I'm even more confused. In your example, is MUSTANG a column name? Or is it the value of a MODEL column in the CARS table? And how could that possibly relate to something that exists in multiple tables?
    If your data model is at all reasonable, I would expect that you would just want
    SELECT *
      FROM cars
    WHERE model = 'Mustang'
       AND color != 'Red'but I can't see how this would relate to data stored in multiple tables.
    Justin

  • Need a formula for a date in one table to show on a calendar on a "summary" sheet

    Hello,
    I have created a simple table for my daughter to keep track of her monthly bill's due dates which are in one row of the table. I'd like to create a "summary" sheet which consists of a calendar that shows those dates at one look, it would also show which bill that is due.
    I am just beginning to learn about formulas and have created some simple ones, but this is beyond my talents!
    I would TRULY appreciate anyone's help!
    I tried to search for this subject first, so apologies if this has been answered already.

    Here is what I came up with:
    A couple things to remember:
    1. I ended up using a VERY large IF function; you can see the multi-colored line of text at the top of the above screenshot (I hope it comes thru alright)
    2. You will need to change what date is referenced in the first part of the function. In the first line of the calendar you need to reference cell A2 (as in the screenshot), but in others you will need to use the cell that contains the proper date.
    3. This does not work if you have more than one bill due on the same date. I will try and work that out.
    4. iCal would be MUCH easier. Not only can you set these due dates as recurring events, but iCal can keep things color coded, send you reminders, etc.

Maybe you are looking for

  • Laptop-mode-tools/cpufrequtils Questions [SOLVED]

    I am running a Sony Vaio VGN-FW480J and am trying to optimize these two tools to save battery life and hard drive life span.   I have added @laptop-mode to my daemon array and acpi-cpufreq to modules. A few issues I immediately notice: 1) cpufreq doe

  • Add Zoom option to my filter plugin

    Hi all, How can I add the Zoom in and Zoom out options to my filter? Does the inputRate parameter of FilterRecord relates to this topic? I really need help on this one Thanks alot Inbal

  • Problem Converting Keynote Quicktime to WMV with Flip4Mac

    HI All I can see that perhaps one other person may have had this issue. I have a continuous presentation exported from Ketnote as a Quicktime Movie. This plays from end to end without a hitch. I am using Flip4Mac to convert to WMV, something I have d

  • Delta control Mechanism

    Hi Experts, Can any one give full Information about Delta Control Mechanism: 1.How it works? 2.When Deltas are loaded from ODS to Cube,If I want to delete Delta Either from a Cube or from an ODS how it can be done. Thanx in Advance.

  • Problem with adapters

    Hello all,         I have installed PI7.0 Server newely. I created sample scenario file to file in that PI7.0 Server. Messages are Picking by Sender Adapter but when i am checking in SXMB_MONI there are No messages. I also checked in AdapterMonitorin