Iterator moves to first row on Timeout

I've been finally able to reproduce an issue that has randomly popped up in my application where some of the datapoints in my page seem to point to the 'first' row and not to the 'current' row.
Please consider the following test scenario:
- My taskflow consists on 2 pages: the first one automatically runs a query and shows a bunch or clickable results (Parent1, Parent2, etc). Upon clicking on any of the results page #2 displays the details.
- Page #2 is organized such that the top section shows datapoints coming from a Parent record and the bottom section render a bunch of tabs(showDetailItem) components where the children's datapoints reside.
- Now this is the issue I'm facing: If I go to the details page for let's say row #10 I can see as expected the datapoints for Parent10 as well as its correspondent child records. So far so good but if I leave the page unattended for about an hour and then try to switch to a different tab to my surprise what I see are the children of Parent1. The end result is that the top section is pointing to Parent10 but the bottom section which is the one that was refreshed after an hour now points to Parent1 in the previous screen.
It seems to me that I'm having a timeout issue that's causing the current ViewState to get lost.
My web.xml session timeout setting is set for 3 hours so I don't think this is the issue. Where else should I set this value?
Another alternative would be that regardless of the timeout setting I would like to catch this timeout event and automatically redirect the user to the login page but I'm not sure how to do this in ADF.
Any pointers are greatly appreciated.
Thanks,
MV

Hi MV,
There are 2 places were you can set the timeout one is the web.xml and the other one is the weblogic.xml. The former takes precedence over the latter, however I think your current timeout might be cause by weblogic.xml given that your web.xml already has 3 hours. In any case if you would like to redirect to another page after timeout, you need to create a PagePhaseListener, see this blog post for an example:
http://www.baigzeeshan.com/2011/07/how-to-automatically-redirect-to.html
Let us know how it goes,
Juan C.

Similar Messages

  • ADF Faces: Initially checking (radio) table's first row programatically

    How can I initially check table's first row radio button programatically (from the backing bean)?
    Setting current row in the iterator to be first row does not help. af:table attribute selectionState is set to bindings.PersonInformationPersonCustomers.collectionModel.selectedRow, however model is tree based - value="#{bindings.PersonInformationPersonCustomers.treeModel}"

    why don´t you add on SQL Statement of your View Object an clause order by
    the first row will show as the first row of you VO can view
    but you can know the value of your field or your radio with a binding
    open your JSP on Design view
    with the right button
    click on the component, your radio.
    last option, Properties
    at the param Binding you choose the BackingBean (or ManegedBean) and defined the name
    does that you can use the name to invoke the method getValue()

  • How to get first row from view iterator programatically?

    Hi All,
    I am using Jdeveloper 11g Release 2.
    I want to fetch the first row of a view iterator in a bean. Can any one guide me through this use case.
    Any help will be highly appreciated.
    Thanks ... Best Regards
    Bilal

    Use the code snippet as below:
    *// 1. Access the binding container*
    DCBindingContainer bc = (DCBindingContainer)BindingContext.getCurrent().getCurrentBindingsEntry();
    *// 2. Find a named iterator binding*
    DCIteratorBinding iter = (DCIteratorBinding)bc.findIteratorBinding("<ITERATOR_NAME>");
    *//3. Get the RowSetIterator Object*
    RowSetIterator rsi = iter.getRowSetIterator();
    *//4. Get the First Row*
    Row firstRow = rsi.first();
    Thanks,
    Navaneeth

  • DetailStamp facet iteration stops on the first row.

    Using Jdeveloper 10.1.3.2 using <f: facet name="detailStamp" I am having difficulty getting the iteration working correctly.
    I have placed a related child table to the parent table in the detailStamp. When I run the page I get a Master-Detail table that shows the related child rows of the first row in all the rows of the master table. I have tried the "ADF Developers Users Guide" methodolgy in Chapter 7 section 7.5.2 to use the table's varible to access the correct row accocated to the Master table.
    Steve-

    I read this once and I am not sure why it didn't click the first time I read it. But I believe the answer to my question is in the "Branch Rule Accessor of the Edit Rule page of the Tree Binding Editor. Which reads as follows:
    Branch Rule Accessor: If you are defining the rule for the main table, select the accessor method that returns the detail collection that you want to appear in the inline detail table. The list displays only the accessor methods that return the detail collections for the master collection you selected for the rule. If you are defining the rule for the inline table, select <none>, because you cannot embed a table inside the inline table.
    For more information see the
    "Application Development Framework Developer's Guide"
    Thanks Shay I am going to use the treeTable!
    Message was edited by:
    Steve Hogan

  • Can you move a row in a DataGridView to the first row and move the other rows down to make room?

    I'm using a DataGridView (I call it "dg") to display a list of items. I want the user to be able to position the cursor on a row in the middle of the list then click a button to move that row to the top of the list (and move the other rows between
    the first row and the row being moved down one row to accomodate the new first row).
    Robert Homes

    Hello,
    If the DataGridview does not have it's DataSource set we can use the following logic
    Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
    Dim data = (From T In DataGridView1.Rows(DataGridView1.CurrentRow.Index).Cells.Cast(Of DataGridViewCell)() Select T.Value).ToArray
    DataGridView1.Rows.RemoveAt(DataGridView1.CurrentRow.Index)
    DataGridView1.Rows.Insert(0, data)
    End Sub
    If the DataSource is set then we need to do what was done above but against the underlying data rather than the DataGridView itself. The base logic can be found in
    the following article in LanguageExtensions.vb but please note the code there is for a different type of move yet the logic is still the same in the end.
    Please remember to mark the replies as answers if they help and unmark them if they provide no help, this will help others who are looking for solutions to the same or similar problem.

  • Binding on an iterator always return the first row  of the Children VO...

    I have 3 pages:
    A -- tree table bound to VO A; B is used to view the detail of a row selected inside the table; Inside B there is another table that contains the childrens VO of B. Select a row in the table will launch C to view the details of the children.
    They are all in unbounded task flow.
    From A to B, it works fine: Details of selected row inside the Table of A is showing correctly.
    However, From B to C, selecting a row inside B, When C is launched, it always shows the content of the first row of the B's Children VO.
    Any idea how this can be fixed? I want C page to show the details of the row selected in B's Table.
    B's table is defined like this:
    <af:table value="#{bindings.C.collectionModel}"
    var="row"
    rows="#{bindings.C.rangeSize}"
    fetchSize="#{bindings.C.rangeSize}"
    rowBandingInterval="1"
    selectedRowKeys="#{bindings.C.collectionModel.selectedRow}"
    selectionListener="#{bindings.C.collectionModel.makeCurrent}"
    rowSelection="single"
    id="rTable"
    styleClass="AFStretchWidth"
    columnStretching="column:c1"
    autoHeightRows="20"
    contentDelivery="immediate">
    </af:table>
    How can I fix this to correctly show the details of seleted row for C?
    Edited by: user735345 on Oct 3, 2010 9:24 PM

    Hi,
    Is this code you provided for B table or for C table??
    Do you have your partial triggers set correctly?
    Regards,
    Dimitris.

  • How do I create a 1d array that takes a single calculation and insert the result into the first row and then the next calculation the next time the loop passes that point and puts the results in thsecond row and so on until the loop is exited.

    The attached file is work inprogress, with some dummy data sp that I can test it out without having to connect to equipment.
    The second tab is the one that I am having the problem with. the output array from the replace element appears to be starting at the index position of 1 rather than 0 but that is ok it is still show that the new data is placed in incrementing element locations. However the main array that I am trying to build that is suppose to take each new calculation and place it in the next index(row) does not ap
    pear to be working or at least I am not getting any indication on the inidcator.
    Basically what I am attempting to do is is gather some pulses from adevice for a minute, place the results for a calculation, so that it displays then do the same again the next minute, but put these result in the next row and so on until the specifiied time has expired and the loop exits. I need to have all results displayed and keep building the array(display until, the end of the test)Eventually I will have to include a min max section that displays the min and max values calculated, but that should be easy with the min max function.Actually I thought this should have been easy but, I gues I can not see the forest through the trees. Can any one help to slear this up for me.
    Attachments:
    regulation_tester_7_loops.vi ‏244 KB

    I didn't really have time to dig in and understand your program in depth,
    but I have a few tips for you that might things a bit easier:
    - You use local variables excessively which really complicates things. Try
    not to use them and it will make your life easier.
    - If you flowchart the design (very similar to a dataflow diagram, keep in
    mind!) you want to gather data, calculate a value from that data, store the
    calculation in an array, and loop while the time is in a certain range. So
    theres really not much need for a sequence as long as you get rid of the
    local variables (sequences also complicate things)
    - You loop again if timepassed+1 is still less than some constant. Rather
    than messing with locals it seems so much easier to use a shiftregister (if
    absolutely necessary) or in this case base it upon the number of iterations
    of the loop. In this case it looks like "time passed" is the same thing as
    the number of loop iterations, but I didn't check closely. There's an i
    terminal in your whileloop to read for the number of iterations.
    - After having simplified your design by eliminating unnecessary sequence
    and local variables, you should be able to draw out the labview diagram.
    Don't try to use the "insert into array" vis since theres no need. Each
    iteration of your loop calculates a number which goes into the next position
    of the array right? Pass your result outside the loop, and enable indexing
    on the terminal so Labview automatically generates the array for you. If
    your calculation is a function of previous data, then use a shift register
    to keep previous values around.
    I wish you luck. Post again if you have any questions. Without a more
    detailed understanding of your task at hand it's kind of hard to post actual
    code suggestions for you.
    -joey
    "nelsons" wrote in message
    news:[email protected]...
    > how do I create a 1d array that takes a single calculation and insert
    > the result into the first row and then the next calculation the next
    > time the loop passes that point and puts the results in thsecond row
    > and so on until the loop is exited.
    >
    > The attached file is work inprogress, with some dummy data sp that I
    > can test it out without having to connect to equipment.
    > The second tab is the one that I am having the problem with. the
    > output array from the replace element appears to be starting at the
    > index position of 1 rather than 0 but that is ok it is still show that
    > the new data is placed in incrementing element locations. However the
    > main array that I am trying to build that is suppose to take each new
    > calculation and place it in the next index(row) does not appear to be
    > working or at least I am not getting any indication on the inidcator.
    >
    > Basically what I am attempting to do is is gather some pulses from
    > adevice for a minute, place the results for a calculation, so that it
    > displays then do the same again the next minute, but put these result
    > in the next row and so on until the specifiied time has expired and
    > the loop exits. I need to have all results displayed and keep building
    > the array(display until, the end of the test)Eventually I will have to
    > include a min max section that displays the min and max values
    > calculated, but that should be easy with the min max function.Actually
    > I thought this should have been easy but, I gues I can not see the
    > forest through the trees. Can any one help to slear this up for me.

  • First row for each entry

    hi
    i have sorted the internal table by field f1 and i need to insert the first row for each f1 entry.
    I tried AT NEW f1. But that doesnt seem to work.
    Kindlly help.
    Thanks.

    *--ENSURE THAT age IS FIRST FIELD IN INTERNAL TABLE it_gir while declaring it.....
    SORT it_gir BY age ASCENDING.
    LOOP AT it_gir INTO wa_gir.
    AT NEW age.
    <b>*--if there are fields which are getting populated with **** instead of original values....then use below statement...</b>
    read table it_gir index sy-tabix.
    MOVE-CORRESPONDING wa_gir TO wa_final1.
    APPEND wa_final1 TO it_final1.
    clear wa_final1.
    ENDAT.
    ENDLOOP.
    now it should definitely work.....
    if not check in debugging mode if data exists or not....!!!
    Regards
    Vasu

  • Remove certain movies from Front Row

    Hi guys!
    I appreciate any advice or guidance on the issue; thank you in advance.
    I have my movies in iTunes; they play fine in FR. A good chunk of them have terrible resolution from being compressed over and over with bad setting choices, mainly digitized vhs footage from home movies. Anyways, these movies look pretty bad.
    Luckily, I have the originals on a external hd. They are mostly .avi and are in a better quality. I've realized I can just bring these into my "movies" folder, and they work fine, thanks to Perian. I do not do this though because I don't want to occupy space on my main hd, so I just make aliases and bring them into the "movies" folder.
    Now, this is okay with me, but I'm a picky guy, and I like my style...
    I want to change the metadata so that I can show "artwork" rather that a frame from the movie, plus have a description etc. On a side note if anyone knows of a better way then I am doing it, I am all ears!
    So, I open the movies in Quicktime, and save as a reference movie. I then bring the reference movie into MetaX (which lets me add artwork, etc...) Then I can just pop those into iTunes.
    Now, this is where it gets tricky/weird. I realize that:
    1. I can drop these files in Itunes.
    2. This takes up space on my main hd (which I do not want if I do not have to)
    3. I now have duplicates (a low rez and a good quality version)
    4. Syncing my iPod will bring the reference moves along "for the ride"
    ok, so I can just choose which movies to sync to my ipod by checking which movies I want in the setting menu, so no worry about the reference files coming with.
    I was wondering is there a way to make an alias of the reference file so that it doesn't take up any space on my main hd?
    Irregardless of that situation, I am still stuck with 2 versions of my movies in iTunes.
    I want the poorer quality movies on my iPod and iTunes, but only my good quality movies in Front Row. Is there a way to remove the poor quality moves from Front Row while still keeping them in iTunes?
    Okay, one last question, which probably should have been the first one. What is the difference between a reference movie and an alias, outside of being able to change meta data? Is a reference movie the equivalent to the "box" that a dvd comes in? You know, it has some pictures on it, cast, description etc...?
    If I bring a reference file onto my iPod, will it bring the original (good quality) movie instead? Or have I now got some sort of super awesome compressed version of the movie without any quality loss (or is this some sort of fantastic dream)?
    Thank you for any advice. I'm sorry that this is a little long-winded.
    I expect someone to replay with "No." as the answer. LOL
    Thanks everybody,
    Ethan

    You're kind of on your way with the solution.
    I would like to have posters for my good quality film in itunes+FR, but not on my ipod.
    I want the low quality ones on my ipod, but not in my front row.
    I've come up with a semi-solution so far.
    I've brought the good ones into itunes, with the "copy files to itunes music folder" unchecked. I changed all the info in itunes, and posters etc.... Then I marked all of my low rez movies as tv shows, in a show called "movies"
    it is not an ideal solution, but what I am really after is having a "clean" look in itunes when you choose "movies". This might be as close as I can get.
    I would prefer something better if at all possible. But I can live with this if I have to. My main concern is that my "tv shows" folder is overflowing with shows. Luckily, they are grouped together by show, and not just in random order.
    One thing that would really help, I do not know if this is possible. This would be the ideal solution: if you could create a "show name" folder in the "movies"tab (in itunes/FR)(not to be confused w/ the "movies" in finder) as you can in the "tv shows" tab in itunes.
    I've found that because front row has a lack of preferences, and itunes's preferences do not give you enough control; this just turns into a mess.
    iLife should be simple, hence the "i" in iLife. LOL
    Ethan

  • How to include the first row of detail in every xquery transformed xml?

    I am dealing with a XML file,where i need to publish to different BS.
    First node will be a common node node which contains vital info,second node goes to one BS and third goes to another BS.
    *<header></header>*
    *<details></details> (they are unbounded, but the first detail tag which comes in the input file is a mandatory tag in such a way that it needs to be included in every transformed message)*
    *<trailer></trailer>*
    We need to apply x query transformation on it in such a way:
    *</header></header>*
    *<1st detail></1st detail>*
    *<detail></detail> (2nd row of detail in input file)* -------------------------> Goes to BS1
    *<trailer></trailer>..*
    *<header></header>*
    *<1st detail></1st detail>*
    *<detail></detail> (3rd row of detail in input file)* ----------------------------->Goes to BS2
    *<trailer></trailer>*..
    And so on.
    Now, the problem is how to include the first row( *1st detail* ) of detail in every xquery transformed xml?

    are you looping of this input with a for each?
    /yourdata/details[1] should return always the first detail element.
    or before the for each do an assing of this first detail element to "generic_details_var"
    and use this var in every looping iteration (in an assign or as input for xquery)

  • Assessable Value and Wrong Value in SEcess in first row in J1IS

    Hi,
    This is a scenario of Vendor Return when we are returning multiple excisable materials to Vendor.
    I have created Return Delivery using movement type in MIGO with choosing the option Part 1 only.
    In J1IS,
    The First problem is the assessable value which is coming wrongly as 111.11 whereas the gross value of the material is Rs. 100 only with Excise Duty 10% BED, 2% ECess and 1% SEcess & 2% CST.
    The second problem is
    The duty values are showing correct in the screen e.g., BED 10, ECS 0.2 and AT1 0.1 (according to gross value 100, 10% BED, 2% ECess and 1% SEcess )
    There are total five items with the same gross value and other duties (gross value 100, 10% BED, 2% ECess and 1% SEcess)
    But as soon as the transaction is saved, the AT1 value against first row changes wrongly from 0.1 to 0.6 and the same is flowing to the table.
    Can any one provide some idea to resolve this?
    Thanks in advance

    Hi,
    Please check my previous reply on this "Get Excise Invoice" problem thro' the link provided below.
    Re: J1IS: u2018Get Excise invoiceu2019 not showing any values
    Regards,
    Siva

  • Default value of radio button on first row in table

    Hi,
    I have created a custom page which includes a table ("SuppliersTable"), the table has a singleSelection table component (radio button) linked to a transient attribute ("SelectFlag") in a VO ("ApSuppliersVO"). The table is populated from a Query region.
    I would like to 'select' the radio button on the first row of the table by default when a query is executed (when a user clicks "Go"), I have tried the following but its not setting the value:
    In CO:
            if (pageContext.getParameter(go) != null) {
                System.out.println("The GO button was pressed");
                am.invokeMethod("handleFirstRows");
            }In AMImpl:
        public void handleFirstRows() {
            System.out.println("1");
            OAViewObject suppliersVO =
                (OAViewObject)findViewObject("ApSuppliersVO");
            if (suppliersVO != null) {
                System.out.println("2");
                int rowcnt = suppliersVO.getRowCount();
                System.out.println("RowCount:" + rowcnt);
                if (suppliersVO.getFetchedRowCount() != 0) {
                    System.out.println("3");
                    //OARow supplierRow = (OARow)suppliersVO.first();
                    Row supplierRow1 = suppliersVO.first();
                    supplierRow1.setAttribute("SelectFlag", "Y");
        }Based on the debug messages I can see that it is calling the procedure, but either not setting the value, or not setting it in a way that renders it on the page and forces the event that goes with it.
    Am I missing something/doing it completely wrong? How can I best achieve this?
    JDEV 10.1.3.3.0
    EBS 12.1.3
    Kind Regards
    Carl

    Hey hi Carl,
    Its pretty much correct , well , can you try the below code .
    OAViewObject localOAViewObject1 = (OAViewObject)am.findViewObject("ProjectDatesVO");
    if(localOAViewObject1!=null) {
    Row DateVoROw = localOAViewObject1.first();
    RowSetIterator iterator = localOAViewObject1.createRowSetIterator("iterator");
    iterator.setRangeStart(0);
    iterator.setRangeSize(localOAViewObject1.getRowCount());
    for(int i=0; i<iterator.getRowCount(); i++)
    DateVoROw=iterator.getRowAtRangeIndex(1); // represents first row
    if(DateVoROw!=null)
    // set the value here .
    Kindly Let me know the update .
    --Keerthi                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Af:tableselectmany always selects first row and ONLY first row

    My table in jsp:
    <af:table value="#{bindings.AluNoExpeAluM1.collectionModel}" var="row"
    rows="#{bindings.AluNoExpeAluM1.rangeSize}"
    first="#{bindings.AluNoExpeAluM1.rangeStart}"
    emptyText="#{bindings.AluNoExpeAluM1.viewable ? \'No rows yet.\' : \'Access Denied.\'}"
    binding="#{cient20uSeleccionAluBean.tablaMultiple}">
    <af:column sortProperty="Vnumdocu" sortable="false"
    headerText="#{bindings.AluNoExpeAluM1.labels.Vnumdocu}">
    <af:outputText value="#{row.Vnumdocu}"/>
    </af:column>
    <af:column sortProperty="Vapeynombre" sortable="false"
    headerText="#{bindings.AluNoExpeAluM1.labels.Vapeynombre}">
    <af:outputText value="#{row.Vapeynombre}"/>
    </af:column>
    <f:facet name="selection">
    <af:tableSelectMany text="Select items and ..." autoSubmit="true">
    <af:commandButton text="commandButton 1"
    action="#{cient20uSeleccionAluBean.elegirAlumnoAction}"
    partialSubmit="true" immediate="true"/>
    </af:tableSelectMany>
    </f:facet>
    </af:table>
    Table don't have SelectionListener and SelectionState, but the method only select the first row from iterator.
    This method "elegirAlumnoAction":
    public String elegirAlumnoAction() {
    Iterator itRs = this.getTablaMultiple().getSelectionState().getKeySet().iterator();
    while(itRs.hasNext()){
    Key k = (Key) itRs.next();
    System.out.println(k.toString());
    Row r = IteratorUtil.obtenerIteradorPorDefecto(this.ITERADOR_RESULTADO).getRow(k);
    System.out.println(r.getAttribute("Vnumdocu"));
    IteratorUtil.obtenerIteradorPorDefecto(this.ITERADOR_RESULTADO).setCurrentRow(r);
    return null;
    Message was edited by:
    jortri
    Message was edited by:
    jortri

    Maybe the following can help you:
    http://andrejusb.blogspot.com/2007_02_01_archive.html
    http://andrejusb-samples.blogspot.com/2007/02/jdevadf-sample-multi-selection-feature.html

  • BDC uploading on the basis on first row

    hi experts,
    my requirement is, i have a flat file in excel with csv format, and i have the details of bank details with company name and debit account number and etc., in the first row,
    and from second row all the transactions done in that debit account had followed.
    my requirement is debit account is having hyphens in the number like,
    011-222545-434, i need to remove those hyphens and need to move to single string.
    like 011-222545-434 = 011222545435
    and then based on this, we need to check it out whether this number is available in the database of SAP, if it matches then,
    we need upload all the transactions under this account had to upload into database from the second row.
    so please help me out, how to remove hyphens and how to move to one string and how to validate with the sap system??
    and after this how to upload the data into database from the second row on the basis of first row details??
    it is very urgent, please help me out
    murali.

    Hi Check out this logic. It will work for ur requirement.
    DATA: w_data(20) TYPE c VALUE '011-222545-434'.
    WRITE:/1 'Before replacing', w_data.
    REPLACE ALL OCCURRENCES OF '-' IN w_data WITH space.
    CONDENSE w_data.
    WRITE:/1 'After replacing', w_data.
    If ur variable which hold this number is not character type then pass that value to character variable like above and then use REPLACE statement.
    Thanks,
    Vinod.

  • First row checked by default

    Hi,
    I am using ADF and JSF .
    For my table , there is a radio button in front of each row.
    Originally, the first row of the table is checked by default. But after clicking the next button, no row is selected.
    How to make the first row always is selected by default ?

    This may or may not work... I've not implemented this myself.
    double click the next button, bind to backing bean.
        if ( !operationBinding.getErrors().isEmpty() )
            return null;
        DCBindingContainer dcbindings = (DCBindingContainer)bindings;
        DCIteratorBinding usersIter = dcbindings.findIteratorBinding( "UsersIterator" );
        usersIter.setCurrentRowWithKey( usersIter.getRowAtRangeIndex( usersIter.getRangeStart() ).getKey() );
        return null;
    }UsersIterator is what your page def calls the Iterator you want.
    Good luck,
    Brian

Maybe you are looking for

  • SAP Personas using SSO to connect SAP ECC

    Hi, We configured SAP Screen Personas test landscape. When I launch the mainapp page, the system is prompting for user credentials. Then I get "System Selection" screen where the system I have configured  (SAP ECC). When I click on system backend, an

  • Does anyone have an idea how to fix my macbook to resume launching the os after login bc it stays on a gray screen

    I got a software alert update a week ago and allowed it to up. Had to close all apps so I left for a few hours. I came back turned system on and a grey login screen appeared and the hot keys were all lit unable to use the keyboard. Bought wireless ke

  • Windows 8.1 kills screen brightness control

    I have a touch smart 23 computer that came with windows 8.0. An auto upgrade to 8.1 caused the screen brightness control to stop working and the screen stays on super bright. I could not get a response on how to fix so I had to re-install 8.0 which f

  • Creation of RG23D (J1IJ)in DEPOT sales

    Hi Experts, While creating excise invoices form delievry the user by mistake has entred wrong Series group. Eventhough he is able to generate the excise invoice. After analysis i found that there is check between delivery number, plant and excise gro

  • Can not Authenticate WLSE Express with Active Directory

    Hi ,All I can not authenticate WLSE Express using external database with AD. I have downloaded the agent to the Domain Controller and install it on AD. At WLSE Express I found log "Error Server 0 RemoteDomainAuth server domain-auth: Agent API encount