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

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

  • 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

  • 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.

  • Workflows table is not showing up in Data Manager drop down table list

    Hi,
    I am able to see Workflows table in Console but not able to see it Data Manager drop down table list in record mode for selection.
    Even not allowed to create another workflow table.
    Thanks for any tips/clue
    -reo

    Reo,
    You will not be able to create another workflow table. There is only a single workflow table that will hold all the workflows you create through the Data Manager.
    As Vito mentioned, please make sure to load the corresponding MDMWorkflow component on the client machines running the Data Manager that you wish to create and view workflows from.
    Once the workflow component is installed you should see it as a new tab in the Data Manager. You will need Visio to create workflows.
    Thanks,
    Tim

  • Generate or modify a workflow report to show Document ID

    How can I modify or generate a workflow report that shows the Document ID? The 2 standard workflow reports (Activity Duration Report and Cancellation and Error Report) do not show the Document ID.
    Thank you in advance for your kind guidance.

    Hi Ogaitnas,
    According to your description, my understanding is that you want to add Document ID into workflow report.
    By default, there are only 2 standard workflow reports. Per my knowledge, there is not an OOB way to generate another workflow report based on Document ID. As a workaround, you can add a ‘Log to History List’ action to the workflow, and log the Document
    ID. Or, you can look up the Document ID into Email, then send email.
    I hope this helps.
    Thanks,
    Wendy
    Wendy Li
    TechNet Community Support

  • 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

  • When click Previous 10 in inner table it show error Stale Data

    In inner table when it have more than 10 records it will automatic show navigate Previous 10 and Next 10 when click Next 10 don't have any error but when click Previous 10 it error as below (show white page).
    Error: Stale Data
    The requested page contains stale data. This error could have been caused through the use of the browser's navigation buttons (the browser Back button, for example).
    Cause:
    The number of displayed records, 10, exceeds the actual number of records, 1, in view object PostFundAM.FaoBudFundSrcsTempVO_FaoBudPeriodsFundTempVL_FaoBudFundSrcsTempVO. Some of the displayed records may have been deleted.
    To proceed, please select the Close Window link at the top of the application page to return to the main menu. Then, access this page again using the application's navigation controls (menu, links, and so on) instead of using the browser's navigation controls like Back and Forward.
    Could someone help me to solve this problem.
    thanks.

    Yes, there are 2 primary key column, in VO get data from EO.
    I found some solution about navigation as below in dev guid. Is it solution for solve this problem?
    Note: If you have a wide table that requires horizontal scrolling, you can prevent the Next and Previous links from appearing off the screen by setting the Width property of the advancedTable region to 100%.
    Runtime ControlFor event handling, specify the following code in your controller's processFormRequest to check for a navigation event:
    if (GOTO_EVENT.equals(pageContext.getParameter(EVENT_PARAM))
    To check whether the Next link or Previous link is selected:
    if ((tableBean.getName().equals(SOURCE_PARAM)) &&
    (GOTO_EVENT.equals(pageContext.getParameter(EVENT_PARAM)))
    String value = pageContext.getParameter(VALUE_PARAM);
    if (value != null)
    int val = Integer.parseInt(value);
    int newRangeStart = val - 1;
    if (tableVO.getRangeStart() < newRangeStart)
    // next pressed
    else
    // previous pressed
    thanks.

  • How to create stack bar chart on answers that shows % and counts?

    Hello guys
    I currently have a table that have several columns, each column represent one product name, and one column name "units" indicating how each product is sold...
    The requirement is to create a chart view with stack bar that shows the percentage of each product''s unit sales.
    Now we are discussing whether we should customize the table to consolidate all these product columns into one "product desc" column with all the product names as row in order to fulfill this requirement..
    PLease let me know whether this is needed or not... ALso, how would I be able to create stack bar charts that shows the total sales against each product sales in percentage and counts?
    Please let me know, I really appreciate it

    I tried to do this and was a bit successful. I used the paint catalog. Created a a request with 6 columns assuming units and dollars be stacked and Year ago units to be a line:
    Brand Units Dollars 0 Year_Ago_units 1
    Added a new request (Combined with similar request and selected paint subject area): Now in this request my columns are:
    Brand 0 0 Year_Ago_Dollars Year_Ago_units 2
    Assuming Year_Ago_Dollars be standard in your case.
    Created a chart view with brand and 1 on x axis and Units, Dollars, Year_Ago_Dollars on y axis and line as Year_Ago_units.
    Now able to see what I am expecting. May be you need to tweak a bit more according to your requirement.
    Let me know if this is of any help!
    Thanks.
    Edited by: Venkata on Sep 30, 2010 12:11 PM

  • Is there a system table that stores the "create table" scripts

    Does a Oracle system table exist that contains the "create table" scripts for tables defined under a schema?
    I know I can build this with SQL by querying the user_tab_columns, but I was wondering whether the entire DML
    statement is already stored in some other system table. In the Quest Toad software you can simply go to the "Schema Brower", "Tables",
    then select the "Script" tab and it shows you the "create table" statement for the particular table that you are
    looking at. I'm wondering whether Toad behind the scenes is building this "create table" script via the user_tab_columns
    table or using another system table.
    Thank you in advance,
    Wes

    you can use the DBMS_METADATA.GET_DDL procedure to obtain the details regarding the ddl statement used to create the table.

Maybe you are looking for