Dynamic List filter not refreshing - suggestions?

Dynamic list filtering problems...
Any suggestions for how to begin trouble shooting this ussue?
(Apache, MySql, php) I have to click multiple times on the column header for a sort to occur and the filter text field drops any entered value when you click the filter button. If you click on the specific filtered column header later, the filter value re-appears and filtering occurs.
The dynamic lists I have been testing are created with the list wizard, with no modifications to any settings, made from recordset or straight from data table. In either case the lists and filtering work with one click in my testing server (same setup) but have these oddities if in the production server.
Any suggestions of what to look for to get it working in the production server for my client...filtering would be wonderful for them!
Thank you anyone for suggestions,
Steve

Thanks Günter Schenk for the reply however...
So you can see what's happening I created a seperate mysql database with one table and four fields. ID, date, and 2 varchar 50. I then created a dynamic list and form, both made without any hand coding using the wizards.
I made sure all relavent files from the includes folder are up-to-date with 1.0.0 version files.
You are welcome to go to http://www.sunkistkids.org/mmtest/listtest.php to test this.
Also you will find info.php in the root directory of the site just in case you spot any part of the general configuration that might be causing this.
Any further suggestions are very welcome and will be implemented quickly so I can make the filter feature work for the client.
Thank you very much for your time,
Steve

Similar Messages

  • Multiple Select List does not Refresh with Dynamic Action

    All,
    Scenario:
    Using APEX 4.2.2, I have a Select List page item (P4_SPONSOR) set to allow multiple values which has a dynamic LOV to populate the list.  What I would like to do is highlight the display values based on another page item's value (P4_DRIVER_ID).  When I set the source of P4_SPONSOR to static text, such as a delimited string of 1:2:3:4, any display values where the return values are equal to the static text are highlighted when the page loads.
    Problem:
    The problem lies in trying to use a query as a source for P4_SPONSOR which is filtered based on the other page item, P4_DRIVER_ID.  For instance, my SQL Query (returning colon separated values) returns the same as the static text noted above.  In the query's WHERE clause, I specify that the driver's ID is equal to P4_DRIVER_ID:
    SELECT sponsor_id
    FROM sponsors_drivers_xref
    WHERE driver_id = :P4_DRIVER_ID;
    This, as I understand it, would necessitate a refresh of P4_SPONSOR whenever the value of P4_DRIVER_ID changes.  So, I have a Dynamic Action that does just that.  When executed on the page, I can see the P4_SPONSOR multiple select list actually refresh, but none of the display values become highlighted.
    Thoughts?
    Thanks,
    -Seth.

    Seth,
    A dynamic action refresh of your select list will refresh the list of values (this is what you are seeing), it will not refresh the value of the item itself.  In fact, it will remove any values that you had already selected.  To refresh the value you will need to add additional dynamic actions.
    Create another dynamic action with:
    Event: After Refresh
    Selection Type: Item(s)
    Item(s): P4_SPONSOR
    If this was a normal select list you could just create a Set Value action and use your query to set the value of the select list.  Since this is a multiple select list your will need to get your colon delimited value first and then use some javascript to set the values of your select list.
    Create an hidden page item name P4_SPONSOR_TEMP.
    Add a true action to your new dynamic action:
    Action: Set Value
    Set Type: SQL Statement
    SQL Statement:
    SELECT sponsor_id
    FROM sponsors_drivers_xref
    WHERE driver_id = :P4_DRIVER_ID;
    Page Items to Submit: P4_DRIVER_ID
    Selection Type: Item(s)
    Item(s): P4_SPONSOR_TEMP
    Add another true action to your new dynamic action:
    Action: Set Value
    Set Type: JavaScript Expression
    JavaScript Expression:
    $("#P4_SPONSOR_TEMP").val().split(":")
    Selection Type: Item(s)
    Item(s): P4_SPONSOR
    --Jeff

  • Paramform dynamic list can not show in browser

    In report builder I build two user parameter by Parameter Form builder.
    one is the search_mouth in which we type the month, the other is department_name
    which is selected by dynamic list and we can not type the name only select a name from the list.
    Everything is ok when I run it in report environment, but when I call it in browser the search_mouth field is ok, but the department_name change to a common textfield not a dynamic list,and all department_name is shown below the textfield.
    command line is http://10.20.8.102:8888/reports/rwservlet?destype=cache&desformat=PDF&report=myrep&userid=scott/tiger@a&paramform=yes
    I do not know how to show the dynamic list in browser.

    I just tried and it works for me. The LOV value of the parameter is shown in browser as pulldown list.
    I created a group above reports based on select * from emp where deptno = :p_deptno.
    user parameter p_deptno is defined as sql select unique deptno from emp. In the parameter form builder, I selected desformat and p_deptno to show in the parameter form. When I run it through rwservlet, I get a text edit box for desformat, and pulldown list for deptno.
    Thanks,
    -Shaun

  • List dataProvider not refreshing in the UI

    Hi All ,
    I am using an application built using Flex Builder 3 .
    I have integrated a search that lets users search for specific posts from the database by sending a query to the backend ....
    Its like this....
    There are 3 components ,
    SearchContainer uses 2 other components
           ListComp1
           ListComp2
    When the user types hello in the search container , http service makes a request to the backend and the backend inturn returns a json obj
    which is used by the ListComp1 and ListComp2 as the dataprovider.
    When the user clicks a facetLink from the ListComp1 , http service makes a request to the backend and again a json obj is returned.
    But the ui is not getting updated for the ListComp1 and ListComp2
    I have tried setting invalidateDisplayList on the list components.
    How do I get the ListComp1 and ListComp2 to refresh their data in the UI.
    The dataprovider is bindable in both the list components.
    Please give me some suggestions as to how to get the list updated in the UI.
    Thanks,
    Ajantha

    How to you turn the json obj into a dataProvider and how do you turn the new
    json obj into a dataprovider or update the existing one?

  • Spark list filter not working

    I have a spark list with custom itemRenderers and I have a filter on the list.  I run the filter, but at random times the filter doesn't work. I threw in some trace statements and its passing the filter but the screen doesn't show the filters results. It only shows the results of the last filter. I think it has to do with the spark lists itemRenderer resuse.
    Is this a known bug?

    The bug is in TileLayout. 
    If I remove the the TileLayout the list functions as aspected.  Here is a simple example.  Make sure when running the app to follow these instructions.
    1. Run the app (notice the list shows all the items in it)
    2. Click "K"
    3. Click "All"
    4. Look at the Bottom list to see if only two items show even when "ALL" is selected.
    5.Repeat steps 2-4 until you see the bug.
    <?xml version="1.0" encoding="utf-8"?>
    <!-- http://blog.flexexamples.com/2010/05/12/scrolling-to-a-specific-index-in-a-spark-list-cont rol-in-flex-4/ -->
    <s:Application name="Spark_List_ensureIndexIsVisible_test"
       xmlns:fx="http://ns.adobe.com/mxml/2009"
       xmlns:s="library://ns.adobe.com/flex/spark"
       xmlns:mx="library://ns.adobe.com/flex/mx">
    <fx:Script>
    <![CDATA[
    import mx.collections.ArrayCollection;
    private var array:Array = ['one', 'otwo', 'othree', 'ofour', 'ofive', 'osix', 'oseven', 'oeight', 'nine', 'nten'];
    private var myAC:ArrayCollection = new ArrayCollection( array );
    private function setAlphaFilter() : void {
    if( myAC ) {
    myAC.filterFunction = alphaFilter;
    myAC.refresh();
    private function alphaFilter( item:Object ) : Boolean {
    var tempStr:String;
    if( String(alphaList.selectedItem.firstName).toLowerCase() == 'all' ) {
    return true;
    if(  item.toLowerCase().charAt(0) == String(alphaList.selectedItem.firstName).toLowerCase() ) { // if something a letter is selected.
    return true;
    return false;
    ]]>
    </fx:Script>
    <s:List id="alphaList" changing="setAlphaFilter()"
    width="100%" top="2" bottom="2" left="2" right="2" borderColor="#7F7F7F" >
    <s:layout>
    <s:HorizontalLayout columnWidth="20" paddingLeft="1" />
    </s:layout>
    <!-- itemRenderer is inline in this sample -->
    <s:itemRenderer>
    <fx:Component>
    <s:ItemRenderer>
    <s:Group top="1">
    <s:Label id="blah" text="{data.firstName}" fontSize="13" bottom="1" top="1" right="1" left="1" />
    </s:Group>
    </s:ItemRenderer>
    </fx:Component>
    </s:itemRenderer>
    <s:dataProvider>
    <s:ArrayList>
    <fx:Object firstName="All" />
    <fx:Object firstName="A"  />
    <fx:Object firstName="B"  />
    <fx:Object firstName="C" />
    <fx:Object firstName="D" />
    <fx:Object firstName="E" />
    <fx:Object firstName="F"  />
    <fx:Object firstName="G"  />
    <fx:Object firstName="H" />
    <fx:Object firstName="I" />
    <fx:Object firstName="J" />
    <fx:Object firstName="K"  />
    <fx:Object firstName="L"  />
    <fx:Object firstName="M" />
    <fx:Object firstName="N" />
    <fx:Object firstName="O" />
    <fx:Object firstName="P"  />
    <fx:Object firstName="Q"  />
    <fx:Object firstName="R" />
    <fx:Object firstName="S" />
    <fx:Object firstName="T" />
    <fx:Object firstName="U"  />
    <fx:Object firstName="V"  />
    <fx:Object firstName="W" />
    <fx:Object firstName="X" />
    <fx:Object firstName="Y" />
    <fx:Object firstName="Z" />
    <fx:Object firstName="1" />
    <fx:Object firstName="2" />
    <fx:Object firstName="3" />
    <fx:Object firstName="4" />
    <fx:Object firstName="5" />
    <fx:Object firstName="6" />
    <fx:Object firstName="7" />
    <fx:Object firstName="8" />
    <fx:Object firstName="9" />
    </s:ArrayList>
    </s:dataProvider>
    </s:List>
    <s:List id="list" width="630" height="100"
    horizontalCenter="0" verticalCenter="0" dataProvider="{myAC}" useVirtualLayout="true" allowMultipleSelection="true">
    <s:layout>
    <s:TileLayout columnWidth="300" rowHeight="50" verticalGap="1" horizontalGap="1" 
      requestedColumnCount="2"  />
    </s:layout>
    </s:List>
    </s:Application>

  • EA 4.0 - Package icon in tree list is not refreshed

    I compiled a package in a sql*plus session without debug but the icon in the package tree lists show me the icon with debug option.
    In the dba_plsql_object_settings there is no debug.

    after changing to the language=en it works properly ....

  • How to filter results from 4 dynamic list menus depandant on how many of them are selected

    I have a search page with a form with 4 list menus and 1 submit that post the results to the results page. I can create a record set that either retrieves the correct data from my database if a selection is made from all four menus Or i can create the recordset if only 3 menus have a selection or the same for 2 menus and 1 menu. However i want the user to be able to make a selection from either 1, 2, 3 or all 4 of the menus and the exact data be retrieved. At present if i try to combine the recordset using AND and ORs the results are not specific enough, for example the 4 menus are Location, Type, Price & Style if a user selects from all 4 i only want to retrieve data that matches all 4 criteria, but at the same time if the user selects only 2 of the menus the i want it to retrieve data that matches specifically those 2 variables. I´m not actually sure if i should be creating a more advanced sql query of if its the php side of things that i need to look at. This is my first dynamic site so please be aware i´m still a learner where php and sql is concerned. Please can anyone help?  

    Hey there,
    Thanks for replying,
    I too am using Dreamweaver recordset, my local server is XAMPP ( apache php mysql), i´have pasted my sql recordset below to give an idea of what i´m trying to do, however this does not work as i´m trying to select the exact data based on 4 menus PRICE TYPE LOCATION and BEDS, and also want the search to work if the user only selects options from either 1, 2, 3 or 4 of the menus, with the code as it is if the user select only two options from 2 of the menus the results don´t just find (for example) all results for location AND price they find all results for the location varibale OR the price variable rather than a match for both, if you see what i mean?
    Any suggestions?  
    SELECT trueprice,`desc`, `propid`, `bathrooms`, `photo1`, locationtable.loc, typetable.style, bedtable.`number`
    FROM detailstable JOIN locationtable ON detailstable.location=locationtable.locid JOIN typetable ON detailstable.type=typetable.typeid JOIN pricetable ON detailstable.price=pricetable.priceid JOIN bedtable ON detailstable.beds=bedtable.bedid
    WHERE (location=varloc AND price = varprice AND type=vartype AND beds=varbed ) OR (price=varprice AND location=varloc AND type=vartype) OR  (price=varprice AND location=varloc AND beds=varbed) OR (price=varprice AND beds=varbed AND type=vartype) OR  ( location=varloc AND type=vartype AND beds=varbed) OR  (price=varprice AND location=varloc) OR (price=varprice AND type=vartype) OR (price=varprice AND beds=varbed) OR (type=vartype AND location=varloc) OR (type=vartype AND beds=beds) OR (location=varloc AND beds=varbed) OR (price = varprice OR beds=varbed OR type=vartype OR location=varloc)
    ORDER BY detailstable.trueprice ASC
    Look forward to receiving your thoughts,
    Linda
    Date: Wed, 21 Oct 2009 14:36:33 -0600
    From: [email protected]
    To: [email protected]
    Subject: how to filter results from 4 dynamic list menus depandant on how many of them are selected
    Hiya,
    I'm just doing my first dynamic site too, and am at a similar level to yourself.
    Can you give us more info re the site. What software, eg Dreamweaver etc are you using, and is your server using PHP or ASP etc?
    For what I've used, I amended the SQL side of things in the recordset in Dreamweaver. That way, you can test the SQL as you're setting up the recordset.
    Let me know how you're going on anyway
    Cheers
    Andy
    >

  • Dynamic List of Values does not appear

    Hi All,
       I am re-creating this post as I have not received an answer on it.
    Hi All,
    I created report (using Crystal Reports 2008) in which one of my parameters displays a dynamic LOV from a field. When I run the report in Crystal, I get to select which values I want for record selection in my report.
    However, when I save this report and run it on the Crystal Server (2008) using infoview, I do not get the dynamic LOV. Rather, I have to manually type a value that I want to select.
    Why does the LOV's not work when I run it through Crystal Server? Another thing, when I access it from Crystal Server through Crystal Reports, I still lose the dynamic LOV option.
    How do I use parameters so that I can select from a dynamic list a values? It behaves normally in Crystal Reports 2008 but loses it's functionality on the Server.
    Thank you in advance.

    This just started happening to me as well, the reports I created (using standalone crystal reports 2008) contain dynamic parameters and suddenly they stopped working as intended in some reports.
    I noticed that when the datasource is a single table or a single view the cascading (nested) dynamic parameters and dropdowns are working fine, but when the datasource is two or more linked tables, the parameters prompt shows two empty text boxes instead of two dropdowns. I tried refreshing and verifying the database but nothing works. So until we find a real solution, we're basing all our reports on single views.
    This remains a serious problem because in some cases we don't have write access to the database to create views, and basically we're recreating all the reports that now suffer from this problem.
    Edited by: Talal Nehme on Jan 7, 2009 7:29 PM

  • Tutorial Announcement: exploring the Dynamic List´s Filter Conditions

    Hi all,
    based on Paul Taylor´s recent Dynamic List related "How do I filter by date range ?" question I just published yet another (pretty long and in-depth) tutorial which will not just explain the available SQL Comparison Operators for numeric and date/datetime fields, but also provides three live demos to help you get an idea on how powerful this is.
    This tutorial will also show you how to add a "date range" and "price range" search to your Dynamic List based on separate columns -- and the intermediate to advanced user will learn how to apply a "Range" search on just *one* column, what´s something that has finally become clear to me these days :-)
    Perma-URL: http://www.guenter-schenk.com/tutorials/tutorial.php?id=6
    Cheers,
    Günter Schenk
    Adobe Community Expert, Dreamweaver

    Me too,<br />Thanks for your input :-)<br /><br /><[email protected]> wrote in message <br />news:[email protected]..<br />> Günter,<br />><br />> Thanks for these recent tutorials. I am definitely going to go thru them!<br />><br />> Shane

  • Excel Services with SharePoint List Data in SharePoint 2013 - Chart is not refreshing automatically

    Hi Everyone,
    This is My req: I m going to display pie chart and Bar chart in share point 2013.
    Steps I have follwed:
    1. Export the list to excel.
    2.Using the Power Pivot table I have done the chart.
    3. Uploaded into document Library.
    4. Added into the web part. 
    Chart are displaying. But When ever user added the data into the list chart is refreshing.
    Is there any option to refresh the data in chart? Waiting for valuable replies.
    Regards, Manoj Prabakar

    SharePoint lists as data sources in Excel Services is not supported.That's the reason refreshing is not working. There are some work around you can use  -
    Export as Data Feed - Export your SharePoint list as Data Feed , use this data feed to a PowerPivot for Excel workbook and publish this PowerPivot using Excel Services.
    User-defined functions  - write UDF in C# and extend the Excel Services functionality to work with SharePoint lists.
    https://msdn.microsoft.com/library/bb267252(office.12).aspx#Office2007ExcelServicesUnlimited_SharePointLists
    Web Services API -
    The Web Services API can be used to push data from a database and then refresh the data in a SharePoint Server list by using Excel Services.
    JavaScript Object Model - The JavaScript Object Model for Excel Services in Microsoft SharePoint Server 2010 provides many solutions for Excel Services.
    More details  - 
    https://technet.microsoft.com/en-us/library/gg576960.aspx
    Thanks
    Ganesh Jat [My Blog |
    LinkedIn | Twitter ]
    Please click 'Mark As Answer' if a post solves your problem or 'Vote As Helpful' if it was useful.

  • Attribute substitution  not working in templates for dynamic lists

    Hi all,
    dynamic lists were introduced in APEX 4.1 and they can be used for drop-down menus. I am trying to use attribute substitution #A01#...#A10# in the templates without success.
    Here is a sample select statement
    <pre>
    SELECT level,
    short_title label,
    'f?p=myapp:1:0::::MYAPP_ID:'||id target,
    'NO' is_current,
    NULL image,
    'm'||TO_CHAR(id) attribute1
    FROM mytable
    START WITH parent_id = :MYAPP_ROOT_ID
    CONNECT BY PRIOR id = parent_id
    ORDER SIBLINGS BY seq_in_parent
    </pre>
    and here a snippet from the template
    List Template Noncurrent
    &lt;li class=&quot;dhtmlMenuItem&quot;&gt;&lt;a id=&quot;#A01#&quot; href=&quot;#LINK#&quot;&gt;#TEXT#&lt;/a&gt;&lt;/li&gt;
    The substitution is not being made. It looks like a bug but maybe I'm missing something.
    Any help would be greatly appreciated.
    Regards Garry

    Hi Garry,
    When the list query is parsed, it's not the column alias that deciphers which parameters you're trying to set, it's the positioning of the parameter in the query itself. So, for example, if a user wishes to set the #A01# attribute, like in your case, then the value returned by the 8th parameter in the query will be used. In your original query, you only supplied 6 parameters i.e. up to the image attribute setting. If you're not setting anything for the image attributes, then you simply set those values to null. The syntax for the query should be similar to the following:
    select level,
           labelValue               label,
           [targetValue]            target,
           [is_current]             is_current_list_entry,
           [imageValue]             image,
           [imageAttributeValue]    image_attribute,
           [imageAltValue]          image_alt_attribute,
           [attribute1]             attribute1,
           [attribute2]             attribute2,
           [attribute3]             attribute3,
           [attribute4]             attribute4,
           [attribute5]             attribute5,
           [attribute6]             attribute6,
           [attribute7]             attribute7,
           [attribute8]             attribute8,
           [attribute9]             attribute9,
           [attribute10]            attribute10
    from ...
    where ...
    order by ...Regards,
    Hilary

  • Showing filter in dynamic list by default

    I have a form using the ADDT dynamic list behaviour. What I'd like to do is show the filter items automatically when that form opens rather than have the user click on the Filter button.
    Does anyone know how to do that?
    Thanks in advance for any advice.

    Further searching, and I discovered this has already been answered.
    See http://forums.adobe.com/message/1075032#1075032

  • Suggestion to Add more filter in "Change List filt...

    Hi,
    Please provide the more filters in "Contract List Filter" currenlty there is only one filter for "Online", In this "Online" it covers all "Online", "Away" and "Busy" but I want to add more filters related to Online for example:
    Online - Online
    Onlne - Away
    Online - Busy(Do Not Distrub)
    If I choose "Online - Away" then Skype will show me onlye Skype "Online but Away status".
    Thanks, 
    Iftikhar

    Thanks Gyan.
    Below is the code for creating list box :
    OAApplicationModule am = pageContext.getRootApplicationModule();
    OAViewObject listVO=(OAViewObject)am.findViewObject("LocationsLOVVO");
    OAWebBeanFactory list1 = pageContext.getWebBeanFactory();
    OADefaultListBean list = (OADefaultListBean)list1.createWebBean(pageContext, OAWebBeanConstants.DEFAULT_LIST_BEAN, null, "LocationsList");
    list.setListViewObjectDefinitionName("oracle.apps.irc.lov.server.LocationsLOVVO");
    list.setListValueAttribute("LocationCode");
    list.setListDisplayAttribute("LocationCode");
    list.setSize(6);
    list.setMultiple(true);
    list.setName("Location");
    OAMessageLayoutBean listboxbean = (OAMessageLayoutBean)webBean.findChildRecursive("AplmessageLayout");
    listboxbean.addIndexedChild(list);
    But it is not inserting all the location values in the list.
    Regards,
    Gaurav.

  • Facebook photo upload album list not refreshing

    I have a N8 with the latest firmware and software.
    When using Nokia Social/Facebook app to upload images, the album list dropdown does not list all my facebook photo albums.  I do not want to upload all my imgaes to the same/default "mobile uploads" folder.  I have tried restarting, refreshing etc, but still only get one or two albums listed - and not the same two every time.
    Anyone have/had the same issue?
    thanks

    I found a fix!!
    Try deleting the app. Then on the iPhone go to Settings > Safari > Advanced > Website data > scroll to the bottom and tap 'Remove all website data'. Now re-download the Facebook app and see if it works.
    It worked for me. Try it.

  • Console cluster reporting is not consistant with dynamic list

              (We are using the 6.1 sp2 plug-in for Linux. Our web server - apache - is on Solaris
              and our WL servers are on Linux Ret hat. 7.2 2.4.9-31smp)
              Recently our production site experienced the following unfortunate scenario:
              Here are the specifically the events that took place:
              On Sept 6 @ 2:30 pm:
                   I observered that the Admin console was reporting that only 3 (servers #3, #5
              and #6) out of the 6 servers were participating in the cluster. On the other
              hand, From the access logs, I was still seeing activity on all 6 servers.
                   At the same time, our operations team did not report any T3 PING failures (Tivoli
              automates the sending of T3 PING two each of the 6 servers in the cluster every
              10 minutes) which indicated that none of the server where in a hung state. This
              further verified that the all 6 servers were healthy.
                   Question: Why was the plugin still distributing traffic to all 6 servers despite
              the fact (as reported by the admin server) that 3 of the 6 servers were no longer
              participating in the cluster? Shouldn't the dynamic list have excluded these
              3?
              On Sept 6 @ 11:30 pm: The operation team reported that all 6 servers where no
              longer responding to a ping (hung state). I then checked the admin console and
              it was reporting that none of the servers were participating in the cluster.
              Is there a bug with the 6.1 sp2 console?
              

    Nael,
              This is a known problem. Please contact support and reference CR075667 to obtain the
              appropriate fix.
              Regards,
              Simon
              Developer Relations Engineer
              BEA Support
              Nael Ramadan wrote:
              > (We are using the 6.1 sp2 plug-in for Linux. Our web server - apache - is on Solaris
              > and our WL servers are on Linux Ret hat. 7.2 2.4.9-31smp)
              > Recently our production site experienced the following unfortunate scenario:
              >
              > Here are the specifically the events that took place:
              >
              > On Sept 6 @ 2:30 pm:
              >
              > I observered that the Admin console was reporting that only 3 (servers #3, #5
              > and #6) out of the 6 servers were participating in the cluster. On the other
              > hand, From the access logs, I was still seeing activity on all 6 servers.
              > At the same time, our operations team did not report any T3 PING failures (Tivoli
              > automates the sending of T3 PING two each of the 6 servers in the cluster every
              > 10 minutes) which indicated that none of the server where in a hung state. This
              > further verified that the all 6 servers were healthy.
              > Question: Why was the plugin still distributing traffic to all 6 servers despite
              > the fact (as reported by the admin server) that 3 of the 6 servers were no longer
              > participating in the cluster? Shouldn't the dynamic list have excluded these
              > 3?
              >
              > On Sept 6 @ 11:30 pm: The operation team reported that all 6 servers where no
              > longer responding to a ping (hung state). I then checked the admin console and
              > it was reporting that none of the servers were participating in the cluster.
              >
              > Is there a bug with the 6.1 sp2 console?
              

Maybe you are looking for

  • Background job PLAAP5BULCOD_CONS_CHECK_CCR_MPOR cancelling

    Hi, Background job PLATA_CONS_CHECK_CC_EMPTOR canceling in my SCM 5 system. Log from SAM is as below. Job is running around 2.5 hours. In ST, found few time out errors while this job is running. Didnt found errors related to this job (user, twp) in S

  • PHP/MySQL issue after security update 2010-005

    Hello, I run Apache/PHP/MySQL on my MBP for testing Web sites. After the 2010-005 security update I can't connect to my databases anymore. I don't know how to fix this, I even don't know where to start looking. Ideas, anyone?

  • Regarding the RFC Function Module call from PI

    Hi All, I am working on one File to RFC interface, in which File adapter picks the file, this file data has to goto  2 function modules in SAP system. For this i added 2 Inbound interfaces in INTERFACE DETERMINATION and I developed 2 RECEIVER AGREEME

  • How to use Cinema4D lite with no opening After Effects CC ?

    How to use Cinema4D lite with no opening After Effects CC ? Is that possible ? Open a 3D object Photoshop-type in After Effects CC (without C4D) It is also possible? thanks xav

  • Iview/ Page for Development plan

    Hi, I want to display/ maintain the Individual development plans in ESS. In backend its maintained using transaction PPDPIM. Does there exist any default page/Iview that i can use for this or I have to define a transactional oview. Please advice. Tha