Control IDs

This falls into the "there has to be a way to do this":
I've got a page constructed by nesting dataTables - something along the line of this minimal example:
<h:dataTable value="#{Bean.reportProxies}" var="proxy">
..<h:dataTable value="#{proxy.fragments}" var="fragment">
....<h:selectOneMenu value="#{fragment.selectParameterValue}">
......<f:selectItems value="#{fragment.allowableValues}" />
....</h:selectOneMenu>
.... <h:inputText value="#{fragment.inputParameterValue}" />
..</h:dataTable>
</h:dataTable>
Works fine. Now I want to add some javascript to the selectOneMenu so that when it changes, the inputText is updated. Can't figure out how to do that without getting the inputText control ID, and don't see how to do that.
Any suggestions?

Noy,
     Unfortunately it seems that you're using a .NET dll published by the camera manufacturer, so questions about the functionality of their code would likely be better answered by them.

Similar Messages

  • Implementing Mitigation Control IDs

    Hi,
    We are planning to implement mitigation control ids in GRC. Currently we are only having 1 mitigation control id and all the users are mitigated into this id.
    Now, the plan is to include the mitigation control advise/comments by the SOD approvers into the GRC and thus by introducing multiple mitigation control id we could achieve this.
    In our system users are mapped as per the Business Unit and we have around 25-30 business units. so each BU is have a seprate mitigation control approval (SOD Approver).
    We have around 150 Risk IDs.
    We are not able to understand how to design mitigation control IDs in such case? Is it a best practice to create mitigation control ID for each Risk ID in the system (May be we can group similar Risk IDs)? Your help is appreciated.
    Thanks,
    Umesh

    Hi Umesh,
    No, for 1 Mitigation COntrol there are serveral Monitors and users who are mitigated are added to only 1 mitigation control id.
    Which means you have multiple people monitoring every risk in your system. Does all of the monitors belong to the same functional group?? If yes, what happens if there is a risk in other functional groups? How they can identify and monitor it??
    If no, why a FI functional group monitor, needs to monitor the risk related to other groups?
    Can you pls explain more on primary and secondary functions?
    If the risk is related to one functional area only, the respective functional area will own it. If it is a cross functional risk, then it will be owned by both the functional area managers, which is often referred as primary and secondary functions.
      and what are the disadvantage of creating 1 mitigation control id for each risk (may be grouping some risks) considering the fact that we have 25 business units.
    It is just like giving 1 coke with 100 straws while you still have a stock in your refrigerator
    Regards,
    Raghu

  • EDK Web Controls - Unique Control IDs

    After following the EDK Web Controls Developer Guide and making all the control IDs unique by appending the PortletID, the LinkButton controls in the portlet lose their OnClick Event Handlers.
    The portlet works perfectly when not modifying the ControlIDs.
    If I comment out all the portal specific code, modify the ControlIDs, and run in a standard web page, I also lose the Event Handlers.Any suggestions....

    ------- Jonathan Gilbert wrote on 28/01/05 03:34 -------How are you modifying the IDs? By changing the ID property? You can do it this way but you need to be careful when you do it (otherwise the control won't find it's state in the viewstate). I'd recommend changing the ClientID property - this will only affect how it gets rendered on the page, not how ASP.NET treats it.
    Jonathan,
    Here is the code below. I cannot modify the ClientID because the property is read-only.
    privatevoidUniqueControlIDs(Control control)
    foreach(Control ChildControl incontrol.Controls)
    if(ChildControl.ID != null)
    ChildControl.ID += PortletID;
    UniqueControlIDs(ChildControl);
    protectedoverridevoidOnPreRender(EventArgs e)
    base.OnPreRender(e);
    UniqueControlIDs(this.Page);

  • Problem with control IDs

    I have two different panels in my program with various controls. The .h file
    created by Labwindows for my .uir is partially reproduced below:
    #include
    #ifdef __cplusplus
    extern "C" {
    #endif
    /* Panels and Controls: */
    #define PANEL 1
    #define PANEL_DATE 2
    #define PANEL_FILE 3
    #define PANEL_EWTR 4
    #define PANEL_PROCESS 5
    #define PANEL_CONVERT 6
    #define PANEL_DONE 7
    #define PANEL_PRINT 8
    #define PANEL_SAVE 9
    #define PANEL_TEXTBOX 10
    #define PANEL_TEMP 11
    #define PANEL_RH 12
    #define PANEL_ATM 13
    #define PANEL_MARKER_FREQ 14
    #define PANEL_MARKER_DB 15
    #define PANEL_MARKER_MIN 16
    #define PANEL_MARKER_MAX 17
    #define PANEL_MARKER_RIGHT 18
    #define PANEL_MARKER_LEFT 19
    #define PANEL_GRAPH 20
    #define PANEL_SCALE 21
    #define PANEL_MARKER 22
    #define PANEL_TEXTMSG_3 23
    #define PANEL_TEXTMSG_4 24
    #define PANEL_TEXTMSG_2 25
    #define PANEL_TEXTMSG 26
    #define PANEL_2 2
    #define PANEL_2_GRAPH 2
    #define PANEL_2_N_5 3
    #define PANEL_2_N_4 4
    #define PANEL_2_N_3 5
    #define PANEL_2_N_2 6
    #define PANEL_2_N_1 7
    #define PANEL_2_LED_5 8
    #define PANEL_2_LED_4 9
    #define PANEL_2_LED_3 10
    #define PANEL_2_LED_2 11
    #define PANEL_2_LED_1 12
    #define PANEL_2_DONE 13
    #define PANEL_2_MARKER_FREQ 14
    #define PANEL_2_MARKER_DB 15
    #define PANEL_2_MARKER_MIN 16
    #define PANEL_2_MARKER_MAX 17
    #define PANEL_2_MARKER_RIGHT 18
    #define PANEL_2_MARKER_LEFT 19
    #define PANEL_2_PRINT 20
    #define PANEL_2_BUTTON_5 21
    #define PANEL_2_BUTTON_4 22
    #define PANEL_2_BUTTON_3 23
    #define PANEL_2_BUTTON_2 24
    #define PANEL_2_BUTTON_1 25
    #define PANEL_2_CURRENT 26
    #define PANEL_2_TEXTMSG_2 27
    #define PANEL_2_TEXTMSG_3 28
    #define PANEL_2_TEXTMSG_4 29
    #define PANEL_2_TEXTMSG 30
    #define PANEL_2_MARKER 31
    The problem is that Labwindows has assigned the same control ID to controls
    in the two panels, for example, PANEL_MARKER_MIN and PANEL_2_MARKER_MIN have
    the same ID, i.e. 16. If I try to use both of these controls in the same
    "case" statment, I get an error "Duplicate case label '16'." If I try to
    modify the .h file manually, and change the ID for PANEL_2_MARKER_MIN to
    216, there is no error and the program executes but it no longer recognizes
    mouse clicks on the PANEL_2_MARKER_MIN control.
    Is there some way to fix this problem? Is there a way to force Labwindows
    to assign different IDs for all controls, regardless of what panel they are
    in?
    Thank you for your help in advance.

    "...The problem is that Labwindows has assigned the same control ID to
    controls
    in the two panels, for example, PANEL_MARKER_MIN and PANEL_2_MARKER_MIN have
    the same ID, i.e. 16. If I try to use both of these controls in the same
    "case" statment, I get an error "Duplicate case label '16'." ..."
    UIR editor counts controls inside the single panel they are in. In your
    example, PANEL_MARKER_MIN and PANEL_2_MARKER_MIN have the same ID 'cause
    both are the 16th control in their panel, rare case but it happens...
    There is no way to force UIR editor to assign specific IDs to controls,
    unless you add in one panel decoration controls or text messages and put
    them before the other control in 'panel order' (ctrl+t in the editor): with
    that trick you put in one panel all controls star
    ting with order 0 (that is,
    with control ID starting from 1 in the .h file), while in the second you
    have non-operative contrls with lower IDs and operative controls or
    indicator with higher IDs. This is NOT a polite solution since it relies on
    the number of controls in the panels: every time you add new controls to a
    panel, you should manage how IDs are assigned to them in order to avoid this
    problem...
    The best solution is to have two nested cases in your code, first one to
    manage different panels, second one to manage different controls:
    switch (panel) {
    case PANEL:
    switch (control) {
    case PANEL_MARKER_MIN:
    break;
    // other controls of PANEL must be put here
    break;
    case PANEL_2:
    switch (control) {
    case PANEL_2_MARKER_MIN:
    break;
    // Other controls of PANEL_2 here
    break;
    That way you avoid any possible confusion and control mismatching that can
    c
    ause bizarre beaviour to your progrma.
    Hope that helps
    Roberto

  • Display Window Control IDs and other information

    I am attempting to get control of certain controls on a 3rd party software window from my labWindows CVI application and I was wondering if there is a way to get a list of the controls on a specified window along with the control's ID using the WinAPI calls.
    It would be ideal if I had a script that I could run that would give me a list of all controls (on an open window) with their ID, Child seq, & control name. Is there such a call in WinAPI to do this?
    Thanks

    It's most likely possible to do this with ActiveX.  I've included a link to a tutorial below.  As well, you will want to take a look at the following forum: http://forums.ni.com/t5/LabWindows-CVI/Is-it-possible-to-access-control-the-device-handles-of-contro...
    Building ActiveX Servers in LabWindows/CVI
    http://zone.ni.com/devzone/cda/tut/p/id/2714

  • Web Control 2.2 B and body .. tags & duplicated control IDs samples

    1) Release note says that body, head, html tag are strupped out. However, I can see these extra tags when I do view source. Did I forget somehing?
    2) Do you have any sample that actually changes the control id in OnPreRender() method? None of the samples I have seen so far do not change the control ID! Without changing the control ID I guess I would run into the Unique Naming issue if I have 2 portlets created from the same Plumtree Web Service? FYI: I did not change the control ID and the 2 portlets work (!?) .. until I added OnPreRender() then it stops working!?
    Thanks

    <%@ Pageanguage="c#" Codebehind="OGJ.aspx.cs" AutoEventWireup="false" Inherits="RSS.OGJ" trace="false"%> <%@ Page language="c#" Codebehind="OGJ.aspx.cs" AutoEventWireup="false" Inherits="RSS.OGJ" trace="false"%><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" ><html> <head> <title>OGJ3</title> <meta name="GENERATOR" Content="Microsoft Visual Studio .NET 7.1"> <meta name="CODE_LANGUAGE" Content="C#"> <meta name="vs_defaultClientScript" content="JavaScript"> <meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5"> </head> <body> <form id="Form1" method="post" runat="server" ptrender="true"> <asp:Label Runat="server" ID="lblMessage"></asp:Label> <br> <img src="<%=_ImageServerUrl%>Halliburton/Portlets/All/OilandGasJournal/new1_ogj_logo.gif"> <asp:DataGrid id="grdData" runat="server" ShowHeader="False" CellSpacing="0" CellPadding="2" BorderWidth="0" EnableViewState="True" AutoGenerateColumns="False" AllowPaging="True" AllowCustomPaging="True"> <ItemStyle CssClass="gContentSectionGray"></ItemStyle> <AlternatingItemStyle CssClass="gContentSection"></AlternatingItemStyle> <PagerStyle Mode="NumericPages"></PagerStyle> <Columns> <asp:HyperLinkColumn DataTextField="Title" DataNavigateUrlField="URL" Target="_blank"></asp:HyperLinkColumn> </Columns> </asp:DataGrid> </form> </body></html>

  • GRC CUP 5.3 SP16.3 Mitigation Controls automation removal

    Does anyone know that if you create any user requests to remove roles from a user, that if any mitigation controls were assigned to the users for those roles, the mitigating control ids can also be automatically removed from RAR during auto provisioning of the request?
    Right now, GRC CUP, if configured properly, during auto provisioning, will assign the mitigation controls automatically to the userid in RAR to mitigate the risks when the request is processed if the new access will give any SOD violations.  But if you remove the roles from a user and he/she had any mitigation ids assigned in RAR, can the request also automatically remove the mitigated control id associated with it if the user will no longer have that risk?  I have not seen the request automatically remove the mitigated id from RAR when the role was removed from the user id during auto provisioning. But I'm not sure if this requires additional workflow configuration or not.
    Will greatly appreciate if any1 is aware of this issue and how to resolve it. Or is the only solution to manually remove it from RAR..but this can be tiresome..bc then you have to run the report every week or month in RAR to remove the excessive controls assigned if the users do not have the risks anymore..comparing reports from current to previous month, etc.
    Thanks,
    A.

    Hi Alley,
    It is not possible to automate the removal of mitigation controls through a workflow in CUP. The only solution is to review on a regular basis and remove them manually from RAR
    We also has the same issue and performing manual review at regular intervals of the user & role assigned mitigation controls
    Best Regards,
    Srihari.K

  • Are there any standard mitigation IDs available in SAP GRC

    Hi Folks,
    Can someone help me out ,as to whether there are any "Standard Mitigation Control IDs" like how we have the "Standard Risk IDs".
    If "NO" to Standard One's atleast few examples on the Mitigation Controls, you guys have designed.
    Thanks in Advance,
    Preethi

    Hi Preethi,
    Risk IDs are delivered as standard, but you can customize them as per your need though.Mitigation controls are defined by the company based on their naming standards.
    One such example is below.
    For the S014 risk -- which is for the conflict between sales order processing and the delivery processing.
    Create the mitigation ID with <companyname><businessprocess><division>S014
    Eg: PHBUCS014
    As I said earlier, it depends on the naming standrads which the company maintains..
    Rakesh

  • Mitigation control ID validity extension -easy way

    I work in GRC AC 5.3. All Mitigation control IDs have a validity expiration on same date in near future. Our GRC has many mitigation control IDs with mitigated users. How can I change the valid to date in convenient way?
    It may be extended for all mitigated users separately/individually, but it will take huge time.

    You can download all of them in a text file, make changes and upload it back via the import/export utility under mitigation tab,
    Alpesh

  • Tab Control Defines

    I have two tab controls on my main panel, both are loaded with the same uir which gets the same controls and callback functions.
    When I execute the same callback from the different tab controls i get
    panel = 4 control = 93 from the 1st tab control and
    panel = 13 control = 93 from the 2nd tab control.
    This is what I was expecting.
    The control is defined in the .h file for the uir as  #define  LASER_SEED_ENABLE                93
    My question is are there define constants that I can use for the panels (4 and 13)? 
    How does the tab control determine the panel number?  Is there an include file or is the panel number determined at runtime?
    Solved!
    Go to Solution.

    Paul_Knight_Lockheed_Martin wrote:
    My question is are there define constants that I can use for the panels (4 and 13)? 
    How does the tab control determine the panel number?  Is there an include file or is the panel number determined at runtime?
    Hi,
    you should better not use constants because every time you edit the UI you are at risk that the assignment of control/panel id's is changed. At run time, you can obtain the panel handle of tab panels using
    GetPanelHandleFromTabPage ( main_panel_handle, PANEL_TAB, 0, &tabpanel_1_handle );
    Note that control ids are not unique, only the combination of panel id / control id is.
    In the UI editor, you can use the menu View / Preview User Interface Header File.
    Hope it helps.

  • How does the .h file macro map to CVICALLBACK control parameter?

    I created 8 command buttons and created same callback for all the buttons. Also have a 2x4 array initialized to value of 1. When user clicks any button the 2x4 array value should change to 0 (as command button does not change value to 1 when selected). In order to fill the array I thought of using control from CVICALLBACK. 
    int ctr_btns[2][4] = {{1,1,1,1},
                                            {1,1,1,1}};
    int CVICALLBACK Button_cb (int panel, int control, int event,
    void *callbackData, int eventData1, int eventData2)
      int row = -1;
        int val = 1;
    switch (event)
    case EVENT_COMMIT:
                         GetCtrlVal (panelHandle, control, &val);
                          if(control >= 2 && control <= 5)
                                    row = 0;
                          else if(control >= 6 && control <= 9)
                                       row = 1;
                          else if(control >= 10 && control <= 13)
                                        row = 2;
                           else
                                         row = 3;
                            ctr_btns[row][control] = val;
                       break;
    The issue is that even after I changed the #define value of the control in .h file, it does not uses the defined value. Where is the control parameter value coming from?
    TIA.
    CLD,CTD
    Solved!
    Go to Solution.

    Hi, this is a common isue that has been discussed several times on the forums and does not have a fast response.
    First of all, you should not modify the include file associated to the UIR file, as stated on top of it, since the system automatically regenerates it every time it saves the UIR. Additionally, the ID assigned to the controls depends on the tab order you define on the panel, so it is subject to change. FYI, this is a discussion on this subject that you may want to read: as you can see, it originates from a question very similar to yours.
    Despite what I have said, control IDs actually can be used to discriminate between controls, so in your situation, and provided the buttons are assigned a progressive ID with the tab editor (Ctrl+T on the panel and assign the IDs clicking on the controls), your code could be rewritten this way:
    if(control >= PANEL_BUTTON1 && control <= PANEL_BUTTON4)
    row = 0;
    else if(control >= PANEL_BUTTON5 && control <= PANEL_BUTTON8)
    row = 1;
    else if(control >= PANEL_BUTTON9 && control <= PANEL_BUTTON12)
    row = 2;
    else
    row = 3;
    For the same reason, you cannot use 'control' as an index on the array, as you have no possibility to foreseen the ID value. That is, even if rewritten the way I told you, that code is not likely to work...
    In my opinion the correct way of discriminating between controls is to add a switch inside the callback:
    switch (control) {
    case PANEL_BUTTON1: ctr_btns[0][0] = 1; break;
    case PANEL_BUTTON2: ctr_btns[0][1] = 1; break;
    case PANEL_BUTTON5: ctr_btns[1][0] = 1; break;
    ( but you should create a 4x4 array of values).
    Proud to use LW/CVI from 3.1 on.
    My contributions to the Developer Zone Community
    If I have helped you, why not giving me a kudos?

  • How can I increment the label of a control panel?

    I would like to place data into several controls in one panel. These controls are labeled CTR_0 through CTR_63 . I would like to use a function like:
    int value[64]
    for (x=0; x<64; x++)
    SetCtrlValue (panelHandle, PANEL_CTR_x, value[x]);
    Anyone have an idea short of setting each one on a seperate line?
    Any help would be appreciated.

    When I have a larger amount of equal controls (e.g. channels), I usually
    place only one of the controls into the .uir file, and then build the
    remaining controls programmatically in a loop, using the DuplicateCtrl()
    function. The advantages are, that I can set (and change) the control
    attributes (position, size, label, colors, callbackfunction ... ) only at
    one place in the .uir file, and besides I can store the control ids in an
    array from where the controls can be easily accessed.
    digOutPanel = LoadPanel (0, "DigitalPanel.uir", DIGO_PANEL);
    /* buttons for digital outputs */
    GetCtrlAttribute (digOutPanel, DIGO_PANEL_SETOUT, ATTR_WIDTH, &width);
    GetCtrlAttribute (digOutPanel, DIGO_PANEL_SETOUT, ATTR_LEFT, &left);
    digOutSet[0]=DIGO_PANEL_SETOUT;
    for(
    i = 1; i < MAX_DO; i++)
    sprintf(buf, "%02d", i);
    digOutSet[i] = DuplicateCtrl (digOutPanel, DIGO_PANEL_SETOUT,
    digOutPanel, buf, VAL_KEEP_SAME_POSITION, left + (width+2)*i);
    Regards,
    Manfred
    zener schrieb in im Newsbeitrag:
    [email protected].​.
    > I would like to place data into several controls in one panel. These
    > controls are labeled CTR_0 through CTR_63 . I would like to use a
    > function like:
    >
    > int value[64]
    >
    > for (x=0; x<64; x++)
    > SetCtrlValue (panelHandle, PANEL_CTR_x, value[x]);
    >
    > Anyone have an idea short of setting each one on a seperate line?
    >
    > Any help would be appreciated.

  • Can we move personalizations from one responsiblity to another ??

    Hi All,
    I have a requirement where I would like to move the personalizations done at responsbility like Manager Self Service -ABC to another responsibility like Manager Self Service -xyz ?
    Is there a way to achieve the same ?
    Any help,will be appreciated ..
    Regards
    Jujaar

    In the standard, no - this is not provided.
    However it IS technically feasible with a little hack.
    Set a break point in the location shown by the screen shot below, then go to the admin transaction and copy the SMEN flavor to a new name. When the process stops at the break point, change the transaction code in field gs_flavid_db-tcode after this line, using the replace feature of the debugger.
    Now while this will work, you have to handle this with caution. It only makes sense to copy hack a flavor from one transaction to another if the two transactions are VERY similar, like in many cases the Display and Change transactions of the same object, for instance. Like Change Sales Order / Display Sales Order. However even then, you may encounter some weird problem or even slight differences between these transactions can cause unexpected effects.
    Under no circumstances is this supported by SAP though
    So in case of any problem resulting from doing this, you're on your own.
    However in your case, since you copied a standard transaction to a custom one, this will probably not work because the program name of the copied transaction is different, so the resulting control IDs of your custom transaction will then also be different. The flavor has customization for different controls than the ones on the screen, so you'll then end up with the flavor looking like the Basic View. I never tried to do this on such a copied transaction, but that's my expectation.

  • Can we move flavor from one tcode to another..?

    Hi,
    I have created a custom transcation zsmen in SAP by copying smen transcation ( SAP Easy access screen) . Now when i create a flavor in smen , can i move the flavor to zsmen tcode. Is that possible.
    Regards,
    Sivaganesh

    In the standard, no - this is not provided.
    However it IS technically feasible with a little hack.
    Set a break point in the location shown by the screen shot below, then go to the admin transaction and copy the SMEN flavor to a new name. When the process stops at the break point, change the transaction code in field gs_flavid_db-tcode after this line, using the replace feature of the debugger.
    Now while this will work, you have to handle this with caution. It only makes sense to copy hack a flavor from one transaction to another if the two transactions are VERY similar, like in many cases the Display and Change transactions of the same object, for instance. Like Change Sales Order / Display Sales Order. However even then, you may encounter some weird problem or even slight differences between these transactions can cause unexpected effects.
    Under no circumstances is this supported by SAP though
    So in case of any problem resulting from doing this, you're on your own.
    However in your case, since you copied a standard transaction to a custom one, this will probably not work because the program name of the copied transaction is different, so the resulting control IDs of your custom transaction will then also be different. The flavor has customization for different controls than the ones on the screen, so you'll then end up with the flavor looking like the Basic View. I never tried to do this on such a copied transaction, but that's my expectation.

  • Report to view commitments on a vendor

    hi Guru
    Please tell me if on the MM side if there exists a report to view commitments on a vendor
    Best Regards

    hi,
    Expediting Report [by Vendor] [PSv8.9]       
    Expediting Report [by Vendor] (POY4007)
    Introduction
    Purpose of the Report
    The report displays a detail listing of outstanding Purchase Orders (PO) sorted by vendor. PO details include due date, late days, vendor ID/name and ship to ID. The run control page allows the user to specify a date range, vendor Set ID, vendor ID, buyer and agency PO Business Unit.
    Three reports can be produced from the same run control page: Expediting Report by Buyer (POY4006), Expediting Report by Vendor (POY4007), and Expediting Report by Due Date (POY4008).
    This report is used to determine which POs may require expediting.
    Type of Report
    Crystal
    Legacy SAAAS/CAS Reports
    Option 15 Purchasing Reports, Option 16 Accounts Payable Reports
    CAS ACRE 58 Active Commitments u2013 Detail, ACRE 59 Commitment Analysis - Summary
    Role(s) Needed for Access the Reports
    Purchasing Module Report Maker
    Navigation Path to the Report
    Purchasing > Purchase Orders > Reports > Expediting
    Suggested Run Times
    Ad hoc
    Report Request Parameters
    General Notes:
    Select an existing Run Control ID or enter a new one
    For reports that are run on a regular basis, user should select a Run Control ID naming convention that can be easily identified (e.g. PO_Expediting_Vendor)
    An asterisk * preceding the field name indicates input is required
    Go to tips and tricks for additional help in entering Run Control IDs and report parameters
    Report Request Parameters                                                          see screenshots below
    In This Field      Enter      Notes
    From Date:      type date or use the lookup to select      
              o to display one day  - enter same date in both fields
              o to display a date range u2013 enter beginning and end date
              o to display year to date u2013 enter 07/01/YYYY and current date
    Through Date:      type date or use the lookup to select
    Vendor Set ID      Type STATE or use the lookup to select      Use STATE for most purchasing reports
    Vendor ID:      type vendor ID or use the lookup to select      leave blank to display all vendor IDs for selected report parameters
    specify vendor ID to display data for one vendor ID
    Buyer      type buyer or use the lookup to select      leave blank to display all buyers for selected report parameters
    specify buyer to display data for one buyer
    Business Unit      type agency PO Business Unit or use the lookup to select      user must enter agency PO Business Unit. For example, enter DOCM1 for Department of Correction
        Save      push the save button to  save report parameters      save reports that you want to run on a regular basis
    Run
    push the run control button      on the Process Scheduler Request page:
    select server (PSNT or PSUNIX) from the dropdown menu or leave blank
    select one, two, or all three reports (by buyer, by vendor, by due date)
    format u2013 change format to PDF; XLS (MS Excel format) is also available
    push the OK button
    Report Request Parameters (continued)                                    see screenshots below
    In This Field      Enter      Notes
        Process Monitor      
    click the Process Monitor link on the Report Request Parameters page      on the Process List tab
    view the processing status of the report
    click the refresh button until the Run Status is u201CSuccessu201D and the Distribution Status is u201CPostedu201D
    click the details link
    on the Process Detail page:
    click the view log/trace link
    on the View Log/Trace page:
    click the report name.PDF link to view the report
    Example of Report Output
    Example of rows generated for an Expediting Report by Vendor (POY4007) (Crystal format) with the suggested parameters.
    Rewards welcome
    Thanks & Regards
    SwathiSri

Maybe you are looking for

  • How to select One Check Box at a time

    Dear All I have 10 records in details blok and also I have 10 check boxes . I want user can only check one check box at a time . For example If first record I have checked and i am trying to check the last record then the first record UNCHECKED and t

  • Passing Values from a Trigger to a procedure

    Hi, How do i pass my OLD and NEW values from a Trigger to a Procedure. THe procedure will contain statements which will insert one record for each column with the OLD and NEW value.( I may have 31 inserts in the LOG table) Basically we have a table w

  • Table Cell Editor (Urgent)

    I would like to know if it is possible to set different cell editor for each cells within the same column. I want to have Combo boxes with different items for several cells within the same column. Plz tell me how to do so if this is possible Thanks,

  • I have gone through 4 charging cables for my iPhone 5. Is it possible to claim one free of charge from Apple?

    I have gone through 4 charging cables for my iPhone 5. Is it possible to claim one free of charge from Apple?

  • Installing 9.2.0.0 hangs at 1% help pls

    I was installing oracle software (database) 9.2.0.1 it begins ad stops at 1% (installing enterprise Manager Minimal Integration (copying oracle_ice5.jar I amon window 2000 pro with service pack 4 any help