SelectOneChoice autosubmit stop firing

Our ADF page has a lot of autosubmit components that does PPR on other components. Since the server side action processing is slow, we have a client listener that opens a processing icon on change on the browser to prevent user from making other clicks until PPR completes. Most of the time this works fine. We have been having one sporadic issue though on where in sometimes the value changes suddenly stops working. If I open Fiddler/Firebug we will see that there is no auto submit event even happening (No submit). It is as if autosubmit is not true on those components.
We took the html source of the window where we had the problem and one where we did not. One thing that we noticed that was different in html source when the problem happens is the following:
In a window where it all works fine and value change events are firing and calls the clientlistener javascript to open ‘processing’ window
<input id="oracle.adf.view.faces.RICH_UPDATE" type="hidden" value=”dirty”>
When problem occurs, where in all autosubmits stop firing, I see this.
<input id="oracle.adf.view.faces.RICH_UPDATE" type="hidden">
What is the significance of this hidden input that ADF uses? Any idea why in the problematic cases it will suddenly lose the value of “dirty”. I am trying to get some leads to get to the root cause.
We are using 11.1.1.3

Hi User,
A couple of thoughts:
1). Does the auto submit always work except when setting the value back to the original value? I know that value change listeners won't fire when you change the value back to the original one.
2). Have you looked at af:statusIndicator (it is used to show a "busy" indicator during PPR requests)?
John

Similar Messages

  • Some frontpanel controls stop firing the Event Structure

    In my main vi,I have an event structure. I created a subVI that also has an event structure. I load the subvi via a subpanel in my main vi. It runs fine for a while. But sometimes after firing events on the subpanel, most but Not All controls on the main VI stop firing the Main Vi's event structure. The Subpanel's subvi event structure always works fine. When I reload the program it works fine again for a while.

    This is the problem that's been bothering me too (big time actually). Thanks for the insight!
    First of all I love the event structure and it totally changed the way I program labview. Together with the subpanel addition, it makes for very professional looking programs. Here's my version of the same problem:
    I have an event structure on the main VI, and ~20 subpanels. I load various subvi's in the subpanel of the main VI as required. Each subvi has an event structure to handle GUI and incoming user events. I found the problem in the full blown operation, but the problem also appears when I only have one subpanel running, so only one event structure in a subpanel and one event structure in the main program.
    I had the problem with a mouse down on a table, and with a doubleclick on a listbox. And indeed I had an attribute node (reference + property node in my case) to the listbox in the event case that handles the doubleclick. When removing the attribute node, no more buttons will stop to respond on the main panel. When you try to readout or access the listbox in any way in the event case that handles the double-click, it fails. It does not matter whether the "Lock front panel until the case for this event is completed" is true or false. After it fails, you have to unload all the code and reload before LV is able to see some of the buttons on the main panel again (LV7.1.1). You do not have to close LV just the VI's.
    So my first work-around after reading your story was to drive a user event from the doubleclick event case. That user event case then does the stuff I want to do with the listbox. Did not work. I then added a delay of 1000 ms before accessing the attribute node in the other event case, that worked. I then moved all my stuff back into the original event case and added a delay there before accessing the listbox. 100 ms failed, 500 ms works. So at this point I would tend to unexpected behavior from LV which is timing dependent, not "Operator error".
    There is never a problem in any of the ~200 events in the ~20 subpanels. It is always the main panel that is affected. The event handler simply does not "see" some buttons anymore (value change), for example the "mouse down" event would still work for a boolean buttton on the main panel whereas the "value change event" would consistently fail.

  • CollectionEvent.COLLECTION_CHANGE stops firing

    I have an array collection.
    [Bindable]
    public var currentGroupInformation:ArrayCollection = new ArrayCollection();
    And it has this listener.
    currentGroupInformation.addEventListener(CollectionEvent.COLLECTION_CHANGE, currentGroupCollectionEventHandler);
    public function currentGroupCollectionEventHandler(event:CollectionEvent):void {
                var debugXML:XML = <debug token="#FLASHTRACE">{event.kind}</debug>;
                appModel.sendMessage(debugXML);
                switch(event.kind) {
                    case CollectionEventKind.ADD:
                        var tempPort:Port = event.items[0] as Port;
                        trace("Item "+ tempPort.portID + " added");
                        trace("currentGroupInformation : "+currentGroupInformation.length);
                        break;
                    case CollectionEventKind.REMOVE:
                        trace("Item "+ event.location + " removed");
                        break;
                    case CollectionEventKind.REPLACE:
                        trace("Item "+ event.location + " Replaced");
                        break;
                    case CollectionEventKind.UPDATE:
                        trace("Item updated");
                        if( event.items[0].property == "portProcessState"){
                            if( event.items[0].newValue != "idle" ){
                                this.isGroupBusy = true;
                            }else{
                                isGroupBusy = false;
                            trace("portProcessState:: "+isGroupBusy);
                        break;
                    case CollectionEventKind.RESET:
                        trace("Item reset");
                        break;
    Basically, I need to know when the arrayCollection is updated, so the isGroupBusy value will change.
    It seems to work fine the first couple of times, and then it stops working altogether. No idea what is going on.
    The only other function that gets called that manipulates currentGroupInformation is this:
    public function buildCurrentGroupInformationArray():void{
                checkToSeeIfCurrentGroupReservationsHaveChanged();
                if(hasCurrentGroupReservationChanged){
                    currentGroupInformation.removeAll();
                    var portSort:SortField = new SortField("portID", false, false,true);
                    var slotSort:SortField = new SortField("slotID", true);
                    var sort:Sort = new Sort();
                    //sortField.descending = true;
                    sort.fields = [slotSort,portSort];
                    currentGroupInformation.sort = sort;
                    currentGroupInformation.refresh();
                    isGroupBusy = false;
                    for each (var theSlot:Slot in chassisSlot){
                        for each( var port:Port in theSlot.portArray){
                            if(port.isReserved){
                                if( port.reservedBy.toLowerCase() == appModel.user.id.toLowerCase() ){
                                    if(port.portGroup == appModel.user.group){
                                        if( port.process != null ){
                                            if( !port.process.completed ){
                                                this.isGroupBusy = true;
                                            }else{
                                                isGroupBusy = false;
                                        }else{
                                            isGroupBusy = false;
                                        currentGroupInformation.addItem(port);
                    currentGroupInformation.refresh();
    Is there a bug in the CollectionEvent or are we doing something to make it stop firing events?

    I don’t know from your snippet, but it is the most likely reason.  It is less common to start with an empty collection and fill it than to replace collections from network data fetches.  But if it doesn’t pertain to you, there could be some other reason.

  • [adf faces] selectonechoice autosubmit problem

    hello
    i am trying to make a adf faces website, but i have 2 dropdownlists in an overview page
    the first dropdownlist (af:selectonechoice) contains the YEAR
    the second dropdownlist (af:selectonechoice) containts the WEEKS IN THAT YEAR
    the weeks have to be drawn from the database, by using the managed bean "filterBean"
    somehow at this moment i can only get the weeks inside the second dropdownlist by clickin on a commandbutton. the autosubmit from the first dropdownlist doesn't do shit...
    even with partialtriggers it won't work right
    can anybody give me a working example in which a dropdownlist updates another dropdownlist?
    thanks in advance!

    Hi,
    2-minute googling gave these examples:
    "ADF Faces: Building ADF dependent list boxes in ADF Faces table" at http://thepeninsulasedge.com/frank_nimphius/2008/04/08/adf-faces-building-adf-dependent-list-boxes-in-adf-faces-table/
    "62. Cascading Lists in JSF" at http://radio.weblogs.com/0118231/stories/2004/09/23/notYetDocumentedAdfSampleApplications.html
    "Three Dependent List Boxes in af:table Component" at http://andrejusb.blogspot.com/2007/08/three-dependent-list-boxes-in-aftable.html
    "Implementing dependent select boxes in JSF" at http://www.it-eye.nl/weblog/2006/04/04/implementing-dependent-select-boxes-in-jsf/
    "ADF Learning 6 - Dependent List Boxes" at http://www.scribd.com/doc/2633296/ADF-Learning-6-Dependent-List-Boxes
    HTH,
    Patrik

  • Should be simple, pls help - selectOneChoice valueChangeEvent not fired

    Hi all, please help! This should be so simple and just work, but I couldn't get it after hours!
    I have a simple selectOneChoice tag in my jspx page, with two selectItems with static values - nothing fancy. I just couldn't get the valueChangeEvent associated to it to fire. I have read many posts here, some say that's how it works if the backing bean scope is request because it's got reset back to the default value each time so value never got changed. Yes my backing bean is set to request scope, but it didn't look like it tried to set the default value every time I submit the form, when I tried to set the value to a variable in the backing bean and its getter didn't get called after the form is submitted (it got called the first time the page loaded). For other reasons, I can not set the bean scope other than Request. Please help if you have an idea -
    <tr:selectOneChoice label=""
    binding="#{backing_eef_expenseapprove.selectOneChoice1}"
    id="selectOneChoice1"
    unselectedLabel="#{resources['ets.select']}"
    valuePassThru="true"
    value=""
    autoSubmit="true"
    valueChangeListener="#{backing_eef_expenseapprove.valueChangeApprove}">
    <f:selectItem binding="#{backing_eef_expenseapprove.selectItem3}"
    id="selectItem3"
    itemValue="1"
    itemLabel="Approve"/>
    <f:selectItem binding="#{backing_eef_expenseapprove.selectItem4}"
    id="selectItem4"
    itemValue="2"
    itemLabel="Reject"/>
    </tr:selectOneChoice>
    By the way, I used JavaScript alert to test the values are actually changed every time I switch the dropdown.
    Just in case you are wondering, the application was a 10g ADF app, migrated to 11g, all components are now Trinidad. As far as I can tell, that shouldn't matter.

    Basic troubleshooting from the User's Guide is reset, restart, restore (first from backup then as new).  Try each of these in order until the issue is resolved.
    If basic troubleshooting fails to resolve the issue, the next step is to take the device to Apple or an Apple Authorized Service Provider for evaluation.
    Apple does not repair devices.
    iDevices are not user servicable.
    Any attempt by a 3rd party to repair the device will void the warranty and all rights to support from Apple and these forums.

  • SelectOneChoice autoSubmit=true refresh all ros

    Hi
    I have VO contain multi selectOneChoice, i but in field A autoSubmit=true, and put partial trigger for filed B to be refreshed when tab from A, the problem is when i tab field A all other  filed refreshed to be null
    Any suggestion

    Hi,
    set ContentDelivery is set to immediate for af:table
    https://forums.oracle.com/message/10898470

  • SelectOneChoice autosubmit issue

    Hi All,
    I have a selectonechoice whos value shows/hides some fields. My bean is a session scope bean
    <af:selectOneChoice label="#{leadwebBundle.PARTY_TYPE}"
                                                  value="#{createOpportunity.partyType}"        
                                                  id="soc8" autoSubmit="true"
                                                  unselectedLabel="Select One"
                                                  valueChangeListener="#{createOpportunity.changePartyType}">
                                <f:selectItems value="#{createOpportunity.partyTypeList}"
                                               id="si8"/>
                              </af:selectOneChoice>
      public void changePartyType(ValueChangeEvent valueChangeEvent) {
          //valueChangeEvent.getComponent().processUpdates(FacesContext.getCurrentInstance());
          logger.info("in changePartyType");
        if (this.getPartyType() != null) {
            if (this.getPartyType().equalsIgnoreCase("Organization")) {
                logger.info("Party type is : " + this.getPartyType());
                this.setOrgFlag(true);
            } else
                this.setOrgFlag(false);
    also for safety
        public void setPartyType(String partyType) {
            this.partyType = partyType;
            if (this.getPartyType() != null) {
                if (this.getPartyType().equalsIgnoreCase("Organization")) {
                    logger.info("Party type is : " + this.getPartyType());
                    this.setOrgFlag(true);
                } else
                    this.setOrgFlag(false);
        }i hv set the autosubmit property but still selecting the values doesn't submit the page
    any idea on to this ?
    thnks.

    opps ...got it :)
    added the partial trigger to the panel and started working :)
    Edited by: Kamaal on Mar 13, 2011 6:24 AM

  • Javascript click events to my UIWebView stop firing after evalJS

    I have a Dashcode developed webapp that I ported to a UIWebView object in Xcode. I have a menu in native obj-C that the user can touch, to send messages via evalJS to the webapp. The webapp responds accordingly and changes the view of my stackLayout with setCurrentView. But it usually then stops responding to user clicks. I can still scroll up and down. I can still navigate with the native obj-C nav bar, but nothing from my javascript onClick events. I confirmed as best I can that the events are no longer firing and that its not a javascript code error on my part. It even still works briefly, but then stops working again after a few seconds. I suspect that's just lag in whatever disabled it.
    Does the UIWebView disable user interaction with the javascript engine? Or is the javascript engine disabling events? Either way, why is it disabled and what do I do to reenable it? Debugging is very difficult since the two tools don't work well together.

    I monitored the isUserActionEnabled property from the UIWebView, and it does not change when the error occurs. When the user touches a button on the native code side, it sends an evalJS command to execute a javascript function called navigationHomeCall(). When I debug this in Dashcode, and call the function in the Evaluator Window, it does the same thing. It stops the javascript from receiving anymore events. However, if I keep calling my navigationHomeCall, navigationBackCall, and navigationForwardCall functions from in the Evaluator Window, the events will eventually start working again. Sometimes it takes 1 or 2 calls before it works. Sometimes more. But once it starts working, another call will stop it working again.
    It seems that evalJS can randomly enable or disable javascript events. I looked through the javascript object model to see if what, if any, properties change to cause this but the model is huge, I can only see maybe 20 properties on the screen at a time, and Dashcode keeps changing the window to the Run Log everytime I make the call to invoke the error. It makes troubleshooting very slow.
    Has anybody successfully used evalJS and javascript events without any problems? I'm not the first one to try this, am I?

  • ANE causes TOUCH_OUT to stop firing.

    Anybody else have this issue? Just wondered.
    I'm using Darkredz Video ANE. Love it. But it causes my TOUCH_OUT events to fail after I launch a video (with the ANE).  Pretty much screws up my app.
    I had a distriqt ANE that did the same thing to TOUCH_OUT. In the end there, I just used the Milkman games version which didn't have the same problem. But I'm seeing this recurring problem and wondering if anyone else has experienced it and, if so, what you did to fix it.
    Thanks!

    Actually, maybe it's the TOUCH_END events that aren't firing.  Sorry. Hard to tell. They call the same stuff.

  • ADF Table: SelectOneChoice Issue

    Hi ,
    I need help with ADF tables:
    The scenario is :
    I am displaying an ADF table on our form. (selection table, usercan select one row)
    • Status (active, pending , inactive)
    • Test Details
    These 2 column values get populated from database.
    The table has 2 more columns
    • New Status --> SelectOneChoice
    • Status Change Reason --> input text, render false
    Issue:
    When ever user selects New Status as Inactive from SelectOneChoice, the Status Change Reason, input text should get rendered true.
    For this I did following
    SelectOneChoice autosubmit to true
    put partial trigger on column Status Change Reason (SelectOneChoice id)
    Wrote EL for Render true
    But whenever I change value of SelectOneChoice to "Inactive", the input text doesn't get rendered to true :(
    But if i select any row then Input Text in Status Change Reason column is displayed for the row where value of SelectOneChoice is "Inactive".
    Please help on this....
    Dont know why is it not working :(

    did you try like this in the value change listener?
    public void selectOneChoice1_valueChangeListener(ValueChangeEvent eve) {
    DCIteratorBinding listIter = getBindingsForDCB().findIteratorBinding("StatusViewObj1Iterator");
    int curIndex = (Integer)eve.getNewValue();
    Row datRow = listIter.getRowAtRangeIndex(curIndex);
    String name = (String)datRow.getAttribute("status");
    if (name != null && name.equals("inactive"){
    inputText1.setRendered(Boolean.FALSE);
    RequestContext.getCurrentInstance().addPartialTarget(inputText1);
    Edited by: puthanampatti on Mar 3, 2009 8:20 PM

  • A 200 - The 3 little buttons by the power button stopped working

    Win XP, SP2, 1Gb memory, nothing else special.
    Those pretty little buttons have stopped firing up software. The only function seems to work is that the one next to the power button turns the machine on!
    Any Ideas?
    The only recent change is I upgraded Microsoft Office 2003 recently.
    The buttons ARE set to fire software up.

    Hi
    Well, I dont know why it doesnt work but these 3 little buttons are Toshiba Controls.
    Did you try to update the controls driver? You can find it on the Toshiba website under
    http://eu.computers.toshiba-europe.com and Support & Downloads.
    Furthermore you can check the settings. Im not sure but I think you can find them in Control Panel .
    Bye

  • SysIntr stops being triggered after a period of time

    Hi,
    I am developing a driver for the AM335x processor in Windows Embedded Compact 2013 which uses an ISR triggered by a SysIntr.
    I'm using the following code to intialize the interrupt
    pDevice->device = AM_DEVICE_DCAN1;irq[0] = (DWORD) -1;
    irq[1] = OAL_INTR_STATIC;
    irq[2] = GetIrqByDevice(pDevice->device,NULL);pDevice->hIntrEvent = CreateEvent(NULL, FALSE, FALSE, NULL);KernelIoControl(IOCTL_HAL_REQUEST_SYSINTR,irq,sizeof(irq),&pDevice->dwSysintr,sizeof(pDevice->dwSysintr),NULL);
    InterruptInitialize(pDevice->dwSysintr,pDevice->hIntrEvent,NULL,0);
    The ISR contains the following function
    dwRet = WaitForSingleObject(pDevice->hIntrEvent, 10000);
    The interrupt works fine for a few hours, then all of a sudden it stops being fired.
    I know that the ISR is still running because the dwRet == WAIT_TIMEOUT condition is met.
    The device I am using is DCAN1 and I know that the hardware is still functioning because the system is still regularly transmitting data through the CAN bus.
    I have tried to write some code to re-initialize the SysIntr which executes when the WAIT_TIMEOUT condition is met:
    ResetEvent(pDevice->hIntrEvent);
    InterruptDone(pDevice->dwSysintr);
    InterruptDisable(pDevice->dwSysintr);
    if (KernelIoControl(IOCTL_HAL_RELEASE_SYSINTR, &pDevice->dwSysintr, sizeof(pDevice->dwSysintr), NULL, 0, NULL)){
    Sleep(1000);
    DWORD irq[3];
    irq[0] = (DWORD)-1;
    irq[1] = OAL_INTR_STATIC;
    irq[2] = GetIrqByDevice(pDevice->device, NULL);
    if ((irq[2] == (DWORD)-1))
    RETAILMSG(ZONE_ERROR, (L"ERROR: CAN_ISR: unable to get the interrupts %u, Device %u\r\n", irq[2], pDevice->device));
    // Request a SYSINTR for DCAN
    if (KernelIoControl(IOCTL_HAL_REQUEST_SYSINTR, irq, sizeof(irq), &pDevice->dwSysintr, sizeof(pDevice->dwSysintr), NULL) == FALSE)
    RETAILMSG(ZONE_ERROR, (L"ERROR: CAN_ISR: unable to request a SYSINTR\r\n"));
    if (pDevice->hIntrEvent)
    CloseHandle(pDevice->hIntrEvent);
    // Initialize Interrupts
    if (InterruptInitialize(pDevice->dwSysintr, pDevice->hIntrEvent, NULL, 0) == FALSE)
    RETAILMSG(ZONE_ERROR, (L"ERROR: CAN_ISR: unable to initialize the interrupt\r\n"));
    else
    RETAILMSG(ZONE_ERROR, (L"ERROR: CAN_ISR: unable to release SYSINTR\r\n"));
    This code fails upon calling the InterruptInitialize() function.
    I'm doing some stress testing so there is a lot of data throughput (every few ms I send a frame) but this shouldn't mean that the interrupt stops firing.
    Has anyone had a similar issue?
    Is anyone here familiar with using the sysintr for DCAN1 on the AM335x processor?
    Can anyone see what I'm doing wrong when I try to reinitialize the interrupts?
    Thanks.

    Yes, I've seen the same on iMX53 with WEC2013 (problem does not occur on WEC7).
    I found that calling InterruptDone once more fixes the issue. This seems to be a problem in the WEC2013 kernel where the interrupt does not get unmasked, but so far I haven't been able to reproduce in our iMX6 BSP and I haven't done enough deep investigation
    to say this is a kernel issue for sure.
    Funny enough I also saw the issue first when doing CAN stress testing on iMX53/WEC2013, but have also been able to reproduce later with a simple GPT interrupt. Same tests runs fine on WEC7 (exactly the same BSP and test code, except some assembly code diffs
    in the BSP between WEC7/8).
    Good luck,
    Michel Verhagen, eMVP
    Check out my blog: http://guruce.com/blog
    GuruCE
    Microsoft Embedded Partner
    http://guruce.com
    Consultancy, training and development services.

  • MyBook Studio WD20EADS green not firing up

    Hi everyone, new to the forum, so please forgive me if this subject has been broached b4.  I've had a quick search but can't find the relative info.  My WD Studio 2TB drive suddenly stopped firing up. I'm convinced this is a powerboard problem, but don't know for sure.  I'm hoping my data is still intact.  My question is..is it possible to change the powerboard? If so, would you know where one can buy such a replacement?  I understand the numbers have to be the same (something to do with encryption I believe)..so here's my number...  4060-705066-003 REV.P1....I'm in a gentle spiral which is gradually turning into a fully blown spin towards the ground as I have over 80,000 aircraft photos on the drive as well as a wedding vid I was editing. Any help would be really appreciated, Thanks in advance, Steve

     
    Hello, 
    Through WD standards procedures replacement parts are not sold by WD, but you can try searching on Ebay. There are also some data recovery companies you can try to contact. Check the link below for more information. 
    http://support.wdc.com/recovery/index.asp?wdc_lang=en
     

  • Programmatically Built selectOneChoice

    Hiiii,
    I have a selectOneChoice element which is filled up programmatically with values not based on View Objects, I am trying to get the selected value also programmatically, but I am facing a problem. Can anyone help?
    Message was edited by:
    RJundi
    Message was edited by:
    RJundi

    I think statlist stands for static list, which contains all the values visible in the selectonechoice, defined in a bean.
    I made a small example, this really should work:
    1. I created a bean which stores:
    - the static values
    - the selected/submitted item
    import java.util.ArrayList;
    import java.util.List;
    public class MyBean {
    private String myAttribute;
    private List myList;
    public MyBean() {
    myList = new ArrayList();
    this.myList.add("EJB");
    this.myList.add("ADF BC");
    this.myList.add("TOPLINK");
    public void setMyAttribute(String myAttribute) {
    System.out.println("setMyAttribute: " + myAttribute);
    this.myAttribute = myAttribute;
    public String getMyAttribute() {
    System.out.println("getMyAttribute");
    return myAttribute;
    public void setMyList(List myList) {
    this.myList = myList;
    public List getMyList() {
    return myList;
    2. On the jspx page I iterate over the list and set the current string as label and as value:
    <af:selectOneChoice value="#{myBean.myAttribute}"
    label="Technologies" autoSubmit="true">
    <af:forEach items="#{myBean.myList}" var="li">
    <af:selectItem label="#{li}" value="#{li}"/>
    </af:forEach>
    </af:selectOneChoice>
    autoSubmit is set to true and the value of the submitted choice is stored in the myAttribute variable from the myBean bean.
    I hope you succeed implementing this example, if not, feel free to ask.
    Regards,
    Koen
    ps: what's the ubb code to show colors in my java,sql, .. example code?

  • Stop a loop is thread has excpetion

    Hi i have a class starting a thread per message obtain from a message queue. If i encounter an exception in a thread how do i stop the class from starting more threads. Code is below and i will explain more after the code.
    while (!stopRunning)
          msgText = mqSample.getMessage()     
          if (!no_more_messages)
               MQMover mqThreadClass = new MQMover (msgText,
                                                    mqSample.vFields,
                                                    mqSample.connMB);
               Thread mqThread = new Thread(mqThreadClass);
               mqThread.start()        
      } This code is the main in a class call MQConnector. I want the tread to send a message to this class to stop firing more threads? Any help do i need to clarify more?

    Uh...how about setting no_more_messages to true? Ugly way to use underscores btw...

Maybe you are looking for

  • Error when sending message: 500 Internal Server Error

    Hi IE is not accepting any messages, when I try to send the messgae to the IE ( using RWB) i am getting the below error " Error when sending message: 500 Internal Server Error". following things what i have noticed. 1. Pipleline URL is fine, both in

  • Correct cable for recording

    I am getting ready to do some "real instrument" recording and am only missing the cable that connects my mic preamp to my PowerBook. Should I use a 1/8" mono cable or can I use a stereo TRS cable? I am recording with a JoeMeek LDC through the JoeMeek

  • Ztable and Zfucntion module are stored in which SAP table

    Hi Guys, We use to create Ztable and Zfunction module in SAP, In which table are the table and function module name would store? Thanks, Gourisankar.

  • Custom XMP panels in Bridge don't properly set language alternative elements

    Using the Bridge Metadata panel, when you edit a custom field that uses the "langalt" type, Bridge doesn't handle this as a language alternative property--it saves the value as a simple text property. This was an issue when I first tried it in CS3 wi

  • Ipod touch 802.1x wifi

    How do you configure the ipod to work with 802.1x wifi. It is suppose to work after the new update but doesn't seem to work.