ADF: Issue in selectOneChoice - dynamic list

Hi,
On my ADF page i have two selectOneChoice drop downs, one for CompanyName and other for DepartmentId. CompanyName drop down will get populated once the user logs in based on his credentials so, this is based on a query(having a where condition: where user='aaa'). CompanyName is fetched from the COMPANY table where CompanyId is the primary key. I wish to use Dynamic list for the selectOneChoice where base data source is the view based on 'select * from COMPANY' and the list data source is the view on 'select * from COMPANY where user='aaa''.
DepartmentName is fetched from DEPARTMENT table(CompanyId is the foreign key here).
I am using Dynamic list because i need to display CompanyName on the page whereas the backing bean needs to refer to the corresponding CompanyId as the DepartmentId drop down is based on 'select * from DEPARTMENT where CompanyId=<selected CompanyId>'.
When i trying to run the ADF page, i am getting the following error:
*<Utils> <buildFacesMessage> ADF: Adding the following JSF error message: Too many objects match the primary key oracle.jbo.Key[149 ].*
oracle.jbo.TooManyObjectsException: JBO-25013: Too many objects match the primary key oracle.jbo.Key[149 ].
*     at oracle.jbo.server.EntityCache.throwTooManyObjectsException(EntityCache.java:598)*
Here oracle.jbo.Key[149 ] : 149 is the CompanyId of the selected CompanyName.
Kindly help me resolve this issue.
Thanks in advance.

Hi,
Thanks for reply!
Can you please tell me what is base data source and list data source. I mean in my example of code which query points to base data source and which one points to list data source?
Among the below options which one should be base data source and which one is list data source?
1. 'select * from COMPANY'
2. 'select * from COMPANY where user='aaa''
Thanks.

Similar Messages

  • Dynamic List and Security Issue

    Hi
    I have a Dynamic List Wizard for orders, which the user can click on edit to edit or modify the order and if the user choose "Yes" to submit ( the order form has a submit filed which has Yes / No Values)then the EDIT button disappear and the user has no more control on the record(using show if conditional Region server behavior).
    - Now i noticed that when i click on the edit the address bar includes the (www.mysite.com/form.php?order_id=1) now say the order Number 2 is already submitted (still on the list but no Edit button for it) if i write 3 or 4 or any other number instead of 1 at the address bar (www.mysite.com/form.php?order_id=3) the record which has the order number 3 displays on the screen and then you can edit it and when click update the Edit Button becomes Active which destroy the whole concept.
    so, how to fix that?

    Hi Lorie,
    Taking it a step further
    interesting that you´re mentioning this -- because I was just in the middle of finding a workaround for the very same issue ;-)
    I actually did find a pretty easy solution, which basically goes like this:
    1) wrap the whole table *plus* any possibly added hidden fields located below this table in a "Show IF conditional region" behaviour -- but make sure to *not* include the buttons within the "KT_bottombuttons" div in here.
    2) as I assume that your "supplier_name" column holds a numeric value which equals the user´s "kt_login_id" Session Variable (which it should !), define the following conditions for the "Show IF conditional region" behaviour:
    Expression 1: choose "supplier_name" from the tNG recordset
    Condition: ==
    Expression 2: choose Session -> kt_login_id
    3) tick the Has ELSE option
    4) confirm with OK
    5) replace the default "has Else" message with something meaningful like "you can´t edit this record !"
    Switching to Code view and navigating to the very start of your "Show IF conditional region" should display something like this:
    if (@$row_rsqueryname['supplier_name'] == @$_SESSION['kt_login_id']) {
    When viewing the modified Dynamic Form in a browser, you´ll note that this solution will indeed display the form instances for all "authorized" records, whereas those form instances which don´t match the required credentials will be replaced with that "has else" message.
    BUT !! This solution has one major drawback which I haven´t been able to resolve yet :: when the Dynamic Form goes into Insert Record mode
    (means when you click the "add new" link in the Dynamic List), all inner form instances will display that "has else" message.
    The only workaround I currently can come up with is to have the List´s "add new" link point to a separate "add_new.php" page that´s going to insert a single record.
    Cheers,
    Günter Schenk
    Adobe Community Expert, Dreamweaver

  • Referencing a "checked record" from my ADDT Dynamic List using a SPRY Menu

    I have just posted a Beta of my site to:
    http://www.clearwave.biz/Beta/T1COElogin.cfm
    - Username is: Beta
    - Password is: 123
    - Once you are logged in you should see the ADDT list w/one
    order listed.
    - Click on the Printer icon & the Order Agreement will
    open in PDF. (this works fine)
    - Click on the InfoSheet link & the Report will open in
    PDF as well. (this works fine)
    - Everything works fine if you use the links on the same line
    as the record.
    - But if you check the CheckBox on the left, then choose the
    Spry Menu above, Reports/T1 Agreement the report will not work?
    Question: What should the Link be to reference the checked
    item below, pass the CustID value to the report & print the
    PDF?
    (Note: the CF report has the following line in the SQL:
    (tblT1OrderProcessing2.T1CustID = #param.T1CustID#) and the report
    prints fine in Report Builder if I pass it the T1CustID, as well as
    if I click the links on the same line as mentioned above, so this
    is just an issue of grabbing the CustID value from the checked line
    & passing it to the report link in the Spry menu)
    Here is a visual picture of my Dynamic List page:
    http://cerberus.clearwave.com/jerry/Order_Management_Main_Page.jpg
    Thanks in advance for the help,
    jlig

    Here is the Report URL that works perfectly when clicking the
    Printer icon on the right of my List:
    http://www.clearwave.biz/Beta/reports/T1_Service_Agreement.cfm?T1CustID=1508
    and the link to the InfoSheet:
    http://www.clearwave.biz/Beta/reports/T1_Information_Sheet.cfr?T1CustID=1508
    Both of these work perfectly by grabbing the T1CustID value
    of 1508 from the line.

  • Dynamic list of values in CR 2008 - request of login to database

    I am using CR2008 with VB2005. I created simple application which generate report on different SQL Server 2005 databases.
    Report uses OLE.DB connection to SQL Server, I pass logon information in VB using "SA" username and password. The same simple report works great on different databases with one exception: if parameter (dynamic list of values) is used in report it runs correctly only on database it was created (connection to this database is saved in report and can be seen in Database->Set Datasource Location). Changing connection to other databases in VB during runtime causes CR to ask for username and password (in standard parameter window). It looks, like Crystal have one connection for report and the other for dynamic list of values parameter. I pass connection information to report using ConnectionInfo(). I loop through alll tables in report and apply connection:            
    For Each crTable In crTables
                    crTableLogOnInfo = crTable.LogOnInfo
                    crTableLogOnInfo.ConnectionInfo = crConnectionInfo
                    crTable.ApplyLogOnInfo(crTableLogOnInfo)
    Next
    I tried to pass connection information also to parameter but I couldn't find such possibility.

    This is a known issue (Tracking number is ADAPT01333806.) and a note has been written,  unfortunately it is not yet published. Below is the note content, including a work-around / resolution. You may also want to try FP 2.3, see that helps. (I'll break this post into two as I'll loose the formatting if I don't.
    Reproducing the Issue
    Use Crystal Reports 2008 SP2 to create a report with dynamic parameter(s)
    Use the following code from the Crystal Reports SDK for VS .NET
    Dim crDatabase As Database
    Dim crTables As TablesDim crTable As Table
    Dim crTableLogOnInfo As TableLogOnInfo
    Dim crConnectionInfo As ConnectionInfo 
    crReportDocument.Load("<path>")
    crReportDocument.Refresh()
    crConnectionInfo = New ConnectionInfo()
    With crConnectionInfo   
         .ServerName = "<New Server Name>"   
          .Password = "<password>"
    End With
    crDatabase = crReportDocument,Database
    crTables = crDatabase.Tables
    For Each crTable In crTables     
         crTableLogOnInfo = crTable.LogOnInfo     
         crTableLogOnInfo.ConnectionInfo = crConnectionInfo     
         crTable.ApplyLogOnInfo(crTableLogOnInfo)
    Next
    CrystalReportViewer1.ReportSource = crReportDocument
    The above code works with Crystal Reports 2008 SP 1

  • How to add a column to a list created with the Dynamic List Wizard to display the values of the fiel

    Hi,
    ADDT, Vista, WAMP5.0
    We have 2 tables: clients_cli (id_cli, name_cli, tel_cli, and several more fields) and cases_cas (id_cas, idcli_cas, court_cas, and a lot of other fields).
    Clients may have many cases, so table cases_cas have a foreign key named idcli_cas, just to determine which case belongs to which client.
    We designed the lists of the two tables with the Dynamic List Wizard and the corresponding forms with Dynamic Form Wizard.
    These two forms are linked with the Convert Dynamic List and Form Wizards, which added a button to clients list named "add case".
    We add a client and then the system returns to the clients list displaying all clients, we look for the new client just added and then press "add case", which opens the Dynamic Form for cases, enter all case details and everything processes ok.
    However, when we view the cases list it display all the details of the case, including the column and values for the foreign key idcli_cas. As you can image, it is quite difficult for a human to remember the clients ids.
    So, in the cases list we added a another column, named it Name, to display the names of the clients along with cases details. We also created another recordset rsCli, selected the clients_cli table, displaying all columns, set filter id_cli = Form Variable = idcli_cas then press the Test button and everything displays perfect. Press ok.
    Then, we position the cursor inside the corresponding cell of the new Name column, go to Bindings, click on name_cli and then click on insert. The dynamic field is inserted into the table cell as expected, Save the page, and test in browser.
    The browser call the cases list but fails to display the values of the Name column. The Name column is simply empty.
    This issue creates a huge problem that makes our application too difficult to use.
    What are we doing wrong?
    Please help.
    Charles

    1.     Start transaction PM01, Create Infotype, by entering the transaction code.
    You access the Create Infotype screen.
    2.     Choose List Screen.
    3.     In the Infotype no. field, enter the four-digit number of the infotype you want to create.
    When you specify the infotype number, please remember to enter any leading zeros.
    4.     In the Screen Number field, enter the screen number of the list screen you want to enhance.
    5.     Choose Create.
    The Dictionary: Initial screen appears:
    6.     Create the list screen structure.
    7.     Choose Activate.
    8.     Return to the Enhance List Screen in the Enhance Infotypes transaction (PM01).
    9.     Choose Create All.
    The additional fields are displayed on the list screen, however, they contain no data.
    The fields can be filled in the FORM routine FILL-LISTSTRUCT in the generated program ZPnnnn00. The FORM routine is called for each data record in the list.
    Structure ZPLIS is identified when it is generated with a TABLES statement in the program ZPnnnn00.
    The fields can be filled from the Pnnnn structure or by reading text tables.

  • Dynamic List Wizard error - can't connect to recordset or table

    I'm using Windows Vista, CF 8, and DW CS3.
    I have just started working with the Dynamic List Wizard and cannot get it to work. I have tried both options: get data from recordset, and get data from table. When I click on "finish" I get the following error message: Please select a connection that contains tables for updating, or click cancel.
    Everything appears to be good to go. I've refreshed my recordset, my database connections, etc. Has anybody else had this issue and what is the workaround?
    Also, is there a tutorial out there ANYWHERE for this part of the extension? Interakt had such great Flash demos ... what's up with Adobe? No Flash demos for this extension?
    Thanks!

    Backing up to a third-party NAS with Time Machine is risky, and unacceptably risky if it's your only backup. This is an example of what can happen. If the NAS doesn't work, your only recourse is to the manufacturer (which will blame Apple.)
    If you want network backup with Time Machine, use as the destination either an Apple Time Capsule or an external hard drive connected to another Mac or a mini-tower (802.11ac) AirPort base station. Only the 802.11ac base station supports Time Machine, not any previous model.

  • Dynamic list of pages / site map of pages

    Hi,
    I've figured out how to add a Page Query to the Navigation.
    Now I want to have something similar on a page for a kind of site map. How do I display a dynamic list of pages on a page?
    cheers,
    Matthias
    Edited by: mprove on Jan 5, 2012 12:15 PM

    NP. Not too experienced in ADF, myself, but the text gives hints:
    ChildPropertyTreeModel—used in <af:tree> component
    ChildPropertyMenuModel—used in <af:breadcrumbs> or <af:menu> component
    ListNavigationResource—used in <af:foreach>
    I believe that you can either use (default?) tree and/or breadcrumbs/menu components, or you can create your own via looping <af:foreach>

  • Can I create  a multi-selection list using a dynamic list of values?

    I'm reading section 19.7.3 from the dev guide - it explains how to create a selectOneListbox using a dynamic list of values. Is it possible to create a multi-select listbox from a dynamic list of values?
    What I would like to do - I have a read-only view object with a hard-coded query - I would like to display the results of the query in a dropdown list box, or dropdown list box with boolean checkboxes, to allow the user to select multiple items from the list. How can I accomplish this?
    thanks

    Hi JavaX,
    I don't know of any JSF components (at least not any ADF Faces components) that lets you do multiple selection in a drop-down. There is an af:selectManyListbox, but it does not render as a drop-down.
    John

  • Dynamic list and thumb loops

    hello I try to create a dynamique list with thums loops associates (to describe a stuff to sell) and it work fine when I select from a list (URL parametre)
    But I would like to navigate in my detail page (with the loop thumb) whit the next or last link and I cant do it because the thumbs doesnt works
    Some help ? thanks you all and sorry for my french

    Hi Lorie,
    Taking it a step further
    interesting that you´re mentioning this -- because I was just in the middle of finding a workaround for the very same issue ;-)
    I actually did find a pretty easy solution, which basically goes like this:
    1) wrap the whole table *plus* any possibly added hidden fields located below this table in a "Show IF conditional region" behaviour -- but make sure to *not* include the buttons within the "KT_bottombuttons" div in here.
    2) as I assume that your "supplier_name" column holds a numeric value which equals the user´s "kt_login_id" Session Variable (which it should !), define the following conditions for the "Show IF conditional region" behaviour:
    Expression 1: choose "supplier_name" from the tNG recordset
    Condition: ==
    Expression 2: choose Session -> kt_login_id
    3) tick the Has ELSE option
    4) confirm with OK
    5) replace the default "has Else" message with something meaningful like "you can´t edit this record !"
    Switching to Code view and navigating to the very start of your "Show IF conditional region" should display something like this:
    if (@$row_rsqueryname['supplier_name'] == @$_SESSION['kt_login_id']) {
    When viewing the modified Dynamic Form in a browser, you´ll note that this solution will indeed display the form instances for all "authorized" records, whereas those form instances which don´t match the required credentials will be replaced with that "has else" message.
    BUT !! This solution has one major drawback which I haven´t been able to resolve yet :: when the Dynamic Form goes into Insert Record mode
    (means when you click the "add new" link in the Dynamic List), all inner form instances will display that "has else" message.
    The only workaround I currently can come up with is to have the List´s "add new" link point to a separate "add_new.php" page that´s going to insert a single record.
    Cheers,
    Günter Schenk
    Adobe Community Expert, Dreamweaver

  • How to dynamically list field names

    Hello,
    I have a DB Link to a SQL 2000 Server and can connect and retrieve using Heterogenous Servives.
    Let say I issued a Select (eg., Select * from tab@remote1), how do I dynamically list each field name from the result?
    Thank you.

    The best way to deal with dynamic column names from a SQL result is to use a cursor describe interface.
    A SQL SELECT may not select all the columns from a table. It may join tables. It may add derived and calculated columns to the result.
    None of these will be seen when using the data dictionary. Also, using a remote heterogeneous data dictionary? That does not sound like a sensible approach to me.
    In PL/SQL, one can create DBMS_SQL cursors. These cursors can be "described" - i.e. the describe interface for a cursor tells you what the contents are, the column names, the data types, the precision, etc.
    Using DBMS_SQL allows you to describe any result set from any SELECT statememt. A far superior and accurate method than to go data dictionary hunting to determine just which column could be in a result set.

  • Dynamic List

    Hi every body
    I am working on a Form Generator
    I have three Main entities Form ,Param and List
    the Form with param and param has a relation with List
    when I generate a form I want to doing loop on param
    and for every param who is has a list I want to doing a loop
    but the loop in list bringing the last List int the entity List
    my JDev v.11.1.1.4
    this is my code
    <h2>
    <af:outputText value="#{bindings.FormLabel.inputValue}"
    id="ot1"/>
    </h2>
    <af:panelFormLayout id="pfl1">
    <f:facet name="footer"></f:facet>
    <af:iterator value="#{bindings.FormParameter2.collectionModel}"
    var="row" rows="-1" id="myIt">
    <af:inputText label="#{row.bindings.ParamLabel}"
    shortDesc="#{row.bindings.Example}"
    required="#{row.bindings.Required.attributeValue.bigDecimalValue eq 1}"
    visible="#{(row.bindings.ListId.attributeValue == null||row.bindings.ListId.attributeValue.bigDecimalValue eq 0)}"
    value="#{!(row.bindings.ListId.attributeValue != null||row.bindings.ListId.attributeValue.bigDecimalValue eq 0)?(row.bindings.ListId.attributeValue) : null}"
    id="it1">
    <af:validateRegExp pattern="#{row.bindings.ParamRegex}"
    hint="#{row.bindings.Example.attributeValue!=null?'example':''}#{row.bindings.Example}"/>
    </af:inputText>
    <af:selectOneChoice label="#{row.bindings.ParamLabel}"
    required="#{row.bindings.Required.attributeValue.bigDecimalValue eq 1}"
    visible="#{row.bindings.ListId.attributeValue!=null and (row.bindings.ListId.attributeValue.bigDecimalValue ne 0)}"
    shortDesc="#{row.bindings.Example}"
    id="soc2">
    *<af:forEach items="#{bindings.ParammeterListOfValues1.rangeSet}"*
    var="var2">
    *<af:selectItem label="#{var2.Label}"*
    *value="#{var2.Value}"/>*
    *</af:forEach>*
    </af:selectOneChoice>
    </af:iterator>
    </af:panelFormLayout>
    any idea please?
    BR,
    Alaa

    hi again,
    I am replace foreach tag by af:selectItems and bean with view scope
    now the List appear but the problem is the first parameter List shown always
    ADF code
    <af:selectOneChoice label="#{row.bindings.ParamLabel}"
    required="#{row.bindings.Required.attributeValue.bigDecimalValue eq 1}"
    shortDesc="#{row.bindings.Example}"
    id="soc3">
    <af:selectItem value="null" label="لا شيء"
    rendered="#{!(row.bindings.Required.attributeValue.bigDecimalValue eq 1)}"/>
    *<f:selectItems value="#{viewScope.Test.listForParam}"*
    id="items"/>
    </af:selectOneChoice>
    Test bean
    *public ArrayList getListForParam() {*
    DCBindingContainer bc =
    *(DCBindingContainer)BindingContext.getCurrent().getCurrentBindingsEntry();*
    DCIteratorBinding it =
    bc.findIteratorBinding("FormParameter2Iterator");
    Row currentRow = it.getCurrentRow();
    System.out.println("listID= "+currentRow.getAttribute(4));
    RowSet tempRowSet = (RowSet)row.getAttribute("RprListValueView");
    *for (int k = 0; k < tempRowSet.getRowCount(); k++) {*
    SelectItem item = new SelectItem();
    Row listRow = tempRowSet.getRowAtRangeIndex(k);
    attributeValue = rowLabelValue.getAttribute("Label");
    item.setLabel((String)attributeValue);
    attributeValue = rowLabelValue.getAttribute("Value");
    item.setValue((String)attributeValue);
    valueLabelList.add(item);
    return valueLabelList;
    please help me
    BR,
    Alaa

  • Pb Server-Sides inludes  + Dynamic List Wizard with PHP 5.2

    Hi
    I include some Dynamic Lists in a master page with Server Side Include beahavior.
    It was Ok in PHP 5.1 with any number of items (50 items per page).
    But there is problem with PHP 5.2, it's OK with 20 items per page, nothing is displayed with 50 items per pages.
    I've seen that there is a new memory manager for the Zend Engine with PHP 5.2...
    SO I modified some parameters in php.ini (memory_limit...) with no result.
    Is there somebody have the same problem, an idea ?
    Thank you
    Marie

    Hi Marie,
    I´m running PHP 5.2.2 with the Zend Memory Manager enabled as well, and so far I didn´t encounter such issues -- maybe you´ll just need to increase the currently defined "max_execution_time" value ?
    Cheers,
    Günter Schenk
    Adobe Community Expert, Dreamweaver

  • Dynamic List for IC accounts with attrribute of R

    Hi,
    I'm trying to create a dynamic account list for all IC equity accounts. When using HS.Account.IsICP =True, the list does not include a couple of accounts that are set as "R" in the metadata? Does anyone know how to handle this?
    I am working in HFM v 11.1.2.
    Thanks

    Thanks for the suggestion. I got a suggestion from tech support to replace "If HS.Account.IsICP(AcctLi(i)) = True Then" with "if (strcomp(Hs.Account.isICP(AcctLi(i)),"True",vbTextCompare)=0) then" and this seems to have solved the issue. I'm not sure why the first statement would not have picked up the "R" but I'm not going to argue with success. Here is the text for the dynamic list to pick up all intercompany balance sheet accounts used in the equity classification for cash flow analysis in case it helps anyone:
    AcctLi=HS.Account.List("BalanceSheet","[Base]")
                   For i = Lbound(AcctLi) to Ubound(AcctLi)
                   C2Acct = HS.Account.C2Top(AcctLi(i))
                   If UCase(Left(C2Acct, 6)) = "EQUITY" Then
                   if (strcomp(Hs.Account.isICP(AcctLi(i)),"True",vbTextCompare)=0) then
                        HS.AddMemberToList AcctLi(i)
                   End if 'Hs.account.ISICP
                   End if 'UCase
                   Next

  • Dynamic List/Menu with 2 columns

    I have created a Dynamic List/Menu box based on a recordset and showing me one field of that recordset ['Firmanaam'].
    <?php
    do { 
    ?>
                <option value="<?php echo $row_klantenselectie['Firmanaam']?>"><?php echo $row_klantenselectie['Firmanaam']?></option>
                <?php
    } while ($row_klantenselectie = mysql_fetch_assoc($klantenselectie));
      $rows = mysql_num_rows($klantenselectie);
      if($rows > 0) {
          mysql_data_seek($klantenselectie, 0);
       $row_klantenselectie = mysql_fetch_assoc($klantenselectie);
    ?>
    First question what is the difference between 'values" and 'labels' in the creation box of the Dynamic List/menu as only the field entered in the 'labels" is shown in the listbox ?
    Secondly I want to display two columns in the List box (one column with the client ID and one column with the clients name). How do I proceed ? Afterwards clicking on the selected client should send the client ID to another field in the form.
    Thank you for your replies.

    Moved to the Develop server-side applications in Dreamweaver forum, which deals with this sort of issue.
    First question:
    The Values field in the Dynamic List/menu dialog box populates the value attribute in the opening <option> tag. Because it's an HTML attribute, it's not displayed when the page is rendered in a browser. The Labels field puts the text that will be displayed in the drop-down menu between the opening and closing <option> tags.
    Put the value you want displayed in the Labels field, and the value you want sent to the server when the form is submitted in the Values field.
    Second question:
    Normally, you would put the ID in the Values field, and the name in the Labels field.
    Because the value attribute will contain the ID, it shouldn't normally be necessary to populate another field with the selected value because the ID will be sent to the server with the rest of the form data when the form is submitted.

  • [sentinel] correlation problem and dynamic list

    Dear All,
    I have two problems as following:
    1. I have write a correlation rule as following:
    filter((((e.CollectorPluginName = "Microsoft Exchange POP3") and
    (e.EventName = "pass")) and (e.XDASOutcomeName = "XDAS_OUT_FAILURE")))
    flow window(((w.SessionID = e.SessionID) and (e.SourceIP =
    w.SourceIP)),filter((((e.CollectorPluginName = "Microsoft Exchange
    POP3") and (e.EventName = "user")) and (e.TargetNewResourceName inlist
    sensitiveuser))),120) flow
    trigger(5,120,discriminator(e.SourceIP,e.TargetNew ResourceName))
    I have following problem:
    I will call the first filter event as A event, the second filter event
    as B event, the first filter corresponding log include username field
    named TargetNewResourceName, the second filter event also called as
    storaged event,
    but B event log does not include username field, so I don`t know who
    logon failed, so i need gain the username from A event, there is same
    sessionID between A and
    B, customer`s demands need know who logon failed when user logon to
    pop3 mailbox failure three times, so correlation results is following:
    username: $TargetNewResourceName$ logon to mailbox failure via pop3 at
    least 3 times in two minutes, sourceip: $SourceIP$,
    MacAddress:$CSOTSourceMac$,Please pay
    attention to it!
    But correlation result is following:
    username: Null logon to mailbox failure via pop3 at least 3 times in two
    minutes, sourcip: 10.108.54.50, MacAdress: 247703743F34,Please pay
    attention to it!
    There is no username value($TargetNewResourceName$), why?
    2. I know arcsight active list(same as sentinel dynamic list) support
    multiple fields in one table, but sentinel dynamic list only support
    alone value,
    if I want storage ip and macaddress for DHCP logs into one table, How to
    implement? and that I also correlation rule can invoke function same as
    get_ipaddress or
    get_dhcpaddress in arcsight, Does sentinel provide same function?
    thanks
    steve_zeng
    steve_zeng's Profile: https://forums.netiq.com/member.php?userid=3875
    View this thread: https://forums.netiq.com/showthread.php?t=48076

    This sounds like a Sentinel product, vs. Sentinel plugin, issue. Please
    post it in the Sentinel list on forums.netiq.com to get exposure to the
    largest group of people who may be able to help. This list is
    specifically for plugins.
    Also, when posting in the other list, if you can post the raw data from
    each of the events that may help others understand with which data you
    have to work.
    Good luck.

Maybe you are looking for

  • Mini won't boot - tried many methods, disk visible in Target Disk Mode

    I have a PPC Mac Mini running Leopard. It stopped booting last week. It goes to the point where the Apple appears and then stops. No moving ring at the bottom of the screen. I've done the following w/ no luck to get it booting. 1) Put it in Target Di

  • Reg:Grouping Key

    Hi How to pay single check to multiple vendors

  • Administrator and Networking problems

    We have several computers in the house, and the music library is stored on an external hard drive connected to the network. In the network we can navigate simply to the hard drive and click on a song and itunes will play it. Now when i click file add

  • How to load ase file?

    I apologize in advance for this basic question but... I am on a mac osx using illus/photoshop cs2. How do I load the kuler .ase files?

  • Importing Microsoft Excel as Job in Workspace...

    Hi, I have few excel reports which I retrieve from ASO cube using excel-addin. I have automated the retrieval through macros. I want a job which can import these retrieved excels into workspace automatically every month. Is it feasible ? or is there