Unsucessfull CMUser Page

I have local user in the Cisco Unified Call Manager version 6 (End User), these users are associate whit its phones. But the login into the URL : https://ipcallmanager:8443/ccmuser/showHome.do is not succesfull ...
what can I do ?

Hi Ricardo,
Just to add a note to the good tips from Java!
This was answered (beautifully) by Marina earlier this year;
The end user must now be added to the User Group "Standard CCM End Users"
before the ccmuser pages can be accessed.
Please perform following steps in order to add user into User Group:
1) Go to the User Group Page
2) Click the link for Standard CCM End Users
3) Click the Add Users to Group Button
4) Click the check box next to the userid
5) Click the Add selected button
6) Go to the End User Page
7) Click the link for
8) Scoll to the bottom and ensure Standard CCM End Users appears in the
permission section.
9) Login to CCMUser as with configured password.
Use this URL to access.
https://hostname/ccmuser
Hope this helps!
Rob

Similar Messages

  • Need to know how to iterate a list of field from the req xml in page servic

    Hi All,
    Please help me out with java code in which i am able to iterate a list of field coming in the request xml to my page service class under read(Pageheader header) method of mine queryPagemaintenace class.
    package com.splwg.cm.domain.pageService;
    import java.util.ArrayList;
    import java.util.Collection;
    import java.util.Iterator;
    import java.util.List;
    import com.ibm.icu.math.BigDecimal;
    import com.splwg.base.api.businessObject.BusinessObjectDispatcher;
    import com.splwg.base.api.businessObject.BusinessObjectInstance;
    import com.splwg.base.api.businessObject.COTSInstanceListNode;
    import com.splwg.base.api.datatypes.Date;
    import com.splwg.base.api.lookup.BusinessObjectActionLookup;
    import com.splwg.base.api.service.DataElement;
    import com.splwg.base.api.service.ItemList;
    import com.splwg.base.api.service.PageHeader;
    import com.splwg.shared.common.ApplicationError;
    import com.splwg.shared.environ.FieldDefinition;
    import com.splwg.shared.environ.ListDefinition;
    import com.splwg.shared.logging.Logger;
    import com.splwg.shared.logging.LoggerFactory;
    * @author
    @QueryPage (program = CMUSER, service = CMUSER,
    * body = @DataElement (contents = { @ListField (name = USER_GROUP_LIST)
    * , @ListDataField (name = USR_GRP_ID)
    * , @DataField (name = MESSAGE_TEXT)
    * , @DataField (name = USER_ID)
    * , @DataField (name = PASSWORD)
    * , @DataField (name = LAST_NAME)
    * , @DataField (name = FIRST_NAME)
    * , @DataField (name = USER_TYPE_FLG)
    * , @DataField (name = EMAILID)}),
    * actions = { "add"
    * ,"read"
    * , "delete"
    * , "change"},
    * header = { @DataField (name = USER_TYPE_FLG)
    * , @DataField (name = EMAILID)
    * , @DataField (name = LAST_NAME)
    * , @DataField (name = FIRST_NAME)
    * , @DataField (name = PASSWORD)
    * , @DataField (name = USER_ID)},
    * headerFields = { @DataField (name = USER_TYPE_FLG)
    * , @DataField (name = USR_GRP_ID)
    * , @DataField (name = EMAILID)
    * , @DataField (name = LAST_NAME)
    * , @DataField (name = FIRST_NAME)
    * , @DataField (name = PASSWORD)
    * , @DataField (name = USER_ID)},
    * lists = { @List (name = USER_GROUP_LIST, size = 100, includeLCopybook = false,
    * body = @DataElement (contents = { @DataField (name = USR_GRP_ID)}))},modules = {})
    public class CMUSER extends CMUSER_Gen {
    public static final Logger logger = LoggerFactory.getLogger(CMUSER.class);
         DataElement root = new DataElement();
         PageHeader page = new PageHeader();
         protected DataElement read(PageHeader header) throws ApplicationError{
    I want to know how can i iterate this USER_GROUP_LIST in my read method and get the USR_GRP_ID field data from it.
    A Prompt reply from your end will help me to resolve this issue

    Guru Sir,
    i tried to override the add() method of the framework in that i was able to iterate the field from the list. But now the i am facing there is that i am not able to send back the response to the external system in XML format. I am getting a blank response in my SOAP UI Tool while testing here is the code:
    import java.util.ArrayList;
    import java.util.Collection;
    import java.util.Iterator;
    import java.util.List;
    import com.ibm.icu.math.BigDecimal;
    import com.splwg.base.api.businessObject.BusinessObjectDispatcher;
    import com.splwg.base.api.businessObject.BusinessObjectInstance;
    import com.splwg.base.api.businessObject.COTSInstanceListNode;
    import com.splwg.base.api.datatypes.Date;
    import com.splwg.base.api.lookup.BusinessObjectActionLookup;
    import com.splwg.base.api.service.DataElement;
    import com.splwg.base.api.service.ItemList;
    import com.splwg.base.api.service.PageHeader;
    import com.splwg.shared.common.ApplicationError;
    import com.splwg.shared.logging.Logger;
    import com.splwg.shared.logging.LoggerFactory;
    * @author
    @QueryPage (program = CMUSER4, service = CMUSER4,
    * body = @DataElement (contents = { @DataField (name = MESSAGE_TEXT)
    * , @DataField (name = PASSWORD)
    * , @DataField (name = USER_ID)
    * , @DataField (name = LAST_NAME)
    * , @DataField (name = FIRST_NAME)
    * , @DataField (name = USER_TYPE_FLG)
    * , @DataField (name = EMAILID)
    * , @ListDataField (name = USR_GRP_ID)
    * , @ListField (name = USER_GROUP_LIST)}),
    * actions = { "add"
    * , "delete"
    * , "change"
    * , "read"},
    * header = { @DataField (name = USER_ID)
    * , @DataField (name = MESSAGE_TEXT)},
    * headerFields = { @DataField (name = USER_ID)
    * , @DataField (name = MESSAGE_TEXT)},
    * lists = { @List (name = USER_GROUP_LIST, size = 100,
    * body = @DataElement (contents = { @DataField (name = USR_GRP_ID)}))}, modules = {})
    public class CMUSER4 extends CMUSER4_Gen {
         public static final Logger logger = LoggerFactory.getLogger(CMUSER4.class);
         DataElement root = new DataElement();
         PageHeader page = new PageHeader();
         protected PageHeader add(DataElement item) throws ApplicationError{
              BusinessObjectInstance boInstance = BusinessObjectInstance.create("CM-USER");
              String USR_GRP_ID = null;
              try{
              logger.info("Data coming from the Service into the Application is :"+item.get(STRUCTURE.USER_ID));
              logger.info("Data coming from the Service into the Application is :"+item.get(STRUCTURE.FIRST_NAME));
              logger.info("Data coming from the Service into the Application is :"+item.get(STRUCTURE.LAST_NAME));
              logger.info("Data coming from the Service into the Application is :"+item.get(STRUCTURE.EMAILID));
              // logger.info("Data coming from the Service into the Application is :"+getInputHeader().getString(STRUCTURE.list_USER_GROUP_LIST.USR_GRP_ID));
              // Iterator it = STRUCTURE.
              ItemList sourceList = item.getList(STRUCTURE.list_USER_GROUP_LIST.name);
              List userGrpID = new ArrayList();
              logger.info("The Size of the User Group List here is :"+sourceList.size());
              Iterator iter;
              if ((sourceList != null) &&
              (sourceList.size() > 0)) {
              for (iter = sourceList.iterator(); iter.hasNext(); ) {
              DataElement myItem = (DataElement)iter.next();
              USR_GRP_ID = myItem.get(STRUCTURE.list_USER_GROUP_LIST.USR_GRP_ID);
              logger.info("The User Group Id coming in the List here is :"+USR_GRP_ID);
              logger.info("Data coming from the Service into the Application is :"+item.get(STRUCTURE.PASSWORD));
              boInstance.set("user", item.get(STRUCTURE.USER_ID));
              boInstance.set("firstName", item.get(STRUCTURE.FIRST_NAME));
              boInstance.set("lastName", item.get(STRUCTURE.LAST_NAME));
              boInstance.set("emailAddress", item.get(STRUCTURE.EMAILID));
              // COTSInstanceList userGrpList = boInstance.getList("userGroupUser");
              // COTSInstanceListNode userGroupList = userGrpList.newChild();
              COTSInstanceListNode userGroupList = boInstance.getList("userGroupUser").newChild();
              userGroupList.set("userGroup", USR_GRP_ID);
              logger.info("Data coming from the Service into the Application is :"+userGroupList.toString());
              /*boInstance.set
              boInstance.set("userGroup", getInputHeader().getString(STRUCTURE.HEADER.USR_GRP_ID));*/
              // UserTypeLookup.constants.TEMPLATE_USER
              //if(element.get(STRUCTURE.USER_TYPE_FLG))
              //boInstance.set("user", element.get(STRUCTURE.));
              boInstance.set("dashboardWidth","200");
              boInstance.set("homeNavigationOption","CI0000000574");
              boInstance.set("language","ENG");
              boInstance.set("toDoEntriesAge1", new BigDecimal(50));
              boInstance.set("toDoEntriesAge2",new BigDecimal(100));
              boInstance.set("displayProfileCode", "NORTHAM");
              String expirationDate = "2100-12-31";
              String[] array = expirationDate.split("-");
              userGroupList.set("expirationDate",new Date(Integer
                             .parseInt(array[0]), Integer
                             .parseInt(array[1]), Integer
                             .parseInt(array[2])));
              //boInstance.set("userGroupUser", userGroupList);
              COTSInstanceListNode roleUserList = boInstance.getList("roleUser").newChild();
              roleUserList.set("toDoRole","F1_DFLT");
              COTSInstanceListNode dataAccessList = boInstance.getList("dataAccessUser").newChild();
              dataAccessList.set("dataAccessRole","***");
              String expiryDate = "2100-01-01";
              String[] array1 = expiryDate.split("-");
              dataAccessList.set("expireDate",new Date(Integer
                             .parseInt(array1[0]), Integer
                             .parseInt(array1[1]), Integer
                             .parseInt(array1[2])));
              BusinessObjectDispatcher.execute(boInstance,
                             BusinessObjectActionLookup.constants.FAST_ADD);
              page.put(STRUCTURE.HEADER.MESSAGE_TEXT, "User Added Successfully");
              page.put(STRUCTURE.HEADER.USER_ID,item.get(STRUCTURE.USER_ID));
              }catch(Exception e){
                   e.printStackTrace();
                   page.put(STRUCTURE.HEADER.MESSAGE_TEXT, "Caught Exception in the ORMB System. Please reach out to the Admin"+e.getMessage());
                   page.put(STRUCTURE.HEADER.USER_ID,item.get(STRUCTURE.USER_ID));
              return page;
    If you can help me to find out what went wrong here while sending the response back it can close my issue.

  • [SOLVED]cmus && skype no sound

    Hello,
       I'm experiencing quite the issue with my laptop(Asus N53SV, i3-2310M model). Cmus gives me the annoying "Error: opening audio device: internal error" and with skype I only have "Virtual Device" in the device lists. I noticed this happening a couple of days after an update so I rolled back root(had a backup made with rsync the day before the update). I've tried stopping/starting the daemon, fiddling with "/usr/lib/systemd/system/fluidsynth.service", "/etc/libao.conf" aswell as reinstalling both the programs and pulse/alsa to no avail. Any help would be appreciated.
    Cheers,
       Robert
    Last edited by robertcm (2014-08-22 12:29:58)

    That hit the nail on the head, marked the errors in a block.
    Log of pulseaudio -vvvv
    Wed Jul 9 13:35:10 2014
    I: [pulseaudio] main.c: setrlimit(RLIMIT_NICE, (31, 31)) failed: Operation not permitted
    I: [pulseaudio] main.c: setrlimit(RLIMIT_RTPRIO, (9, 9)) failed: Operation not permitted
    D: [pulseaudio] core-rtclock.c: Timer slack is set to 50 us.
    D: [pulseaudio] core-util.c: RealtimeKit worked.
    I: [pulseaudio] core-util.c: Successfully gained nice level -11.
    I: [pulseaudio] main.c: This is PulseAudio 5.0
    D: [pulseaudio] main.c: Compilation host: x86_64-unknown-linux-gnu
    D: [pulseaudio] main.c: Compilation CFLAGS: -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -Wall -W -Wextra -Wno-long-long -Wno-overlength-strings -Wunsafe-loop-optimizations -Wundef -Wformat=2 -Wlogical-op -Wsign-compare -Wformat-security -Wmissing-include-dirs -Wformat-nonliteral -Wpointer-arith -Winit-self -Wdeclaration-after-statement -Wfloat-equal -Wmissing-prototypes -Wredundant-decls -Wmissing-declarations -Wmissing-noreturn -Wshadow -Wendif-labels -Wcast-align -Wstrict-aliasing -Wwrite-strings -Wno-unused-parameter -ffast-math -fno-common -fdiagnostics-show-option
    D: [pulseaudio] main.c: Running on host: Linux x86_64 3.15.3-1-ARCH #1 SMP PREEMPT Tue Jul 1 07:32:45 CEST 2014
    D: [pulseaudio] main.c: Found 4 CPUs.
    I: [pulseaudio] main.c: Page size is 4096 bytes
    D: [pulseaudio] main.c: Compiled with Valgrind support: no
    D: [pulseaudio] main.c: Running in valgrind mode: no
    D: [pulseaudio] main.c: Running in VM: no
    D: [pulseaudio] main.c: Optimized build: yes
    D: [pulseaudio] main.c: FASTPATH defined, only fast path asserts disabled.
    I: [pulseaudio] main.c: Machine ID is ad6c297aee8c4e1391cd0f4eb6a8e1cc.
    I: [pulseaudio] main.c: Session ID is c2.
    I: [pulseaudio] main.c: Using runtime directory /run/user/1000/pulse.
    I: [pulseaudio] main.c: Using state directory /home/robert/.config/pulse.
    I: [pulseaudio] main.c: Using modules directory /usr/lib/pulse-5.0/modules.
    I: [pulseaudio] main.c: Running in system mode: no
    I: [pulseaudio] main.c: Fresh high-resolution timers available! Bon appetit!
    D: [pulseaudio] memblock.c: Using shared memory pool with 1024 slots of size 64.0 KiB each, total size is 64.0 MiB, maximum usable slot size is 65472
    I: [pulseaudio] cpu-x86.c: CPU flags: CMOV MMX SSE SSE2 SSE3 SSSE3 SSE4_1 SSE4_2
    I: [pulseaudio] svolume_mmx.c: Initialising MMX optimized volume functions.
    I: [pulseaudio] remap_mmx.c: Initialising MMX optimized remappers.
    I: [pulseaudio] svolume_sse.c: Initialising SSE2 optimized volume functions.
    I: [pulseaudio] remap_sse.c: Initialising SSE2 optimized remappers.
    I: [pulseaudio] sconv_sse.c: Initialising SSE2 optimized conversions.
    I: [pulseaudio] svolume_orc.c: Initialising ORC optimized volume functions.
    D: [pulseaudio] database-tdb.c: Opened TDB database '/home/robert/.config/pulse/ad6c297aee8c4e1391cd0f4eb6a8e1cc-device-volumes.tdb'
    I: [pulseaudio] module-device-restore.c: Successfully opened database file '/home/robert/.config/pulse/ad6c297aee8c4e1391cd0f4eb6a8e1cc-device-volumes'.
    I: [pulseaudio] module.c: Loaded "module-device-restore" (index: #0; argument: "").
    D: [pulseaudio] database-tdb.c: Opened TDB database '/home/robert/.config/pulse/ad6c297aee8c4e1391cd0f4eb6a8e1cc-stream-volumes.tdb'
    I: [pulseaudio] module-stream-restore.c: Successfully opened database file '/home/robert/.config/pulse/ad6c297aee8c4e1391cd0f4eb6a8e1cc-stream-volumes'.
    D: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1 added for object /org/pulseaudio/stream_restore1
    D: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1.RestoreEntry added for object /org/pulseaudio/stream_restore1/entry0
    D: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1.RestoreEntry added for object /org/pulseaudio/stream_restore1/entry1
    D: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1.RestoreEntry added for object /org/pulseaudio/stream_restore1/entry2
    D: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1.RestoreEntry added for object /org/pulseaudio/stream_restore1/entry3
    D: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1.RestoreEntry added for object /org/pulseaudio/stream_restore1/entry4
    D: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1.RestoreEntry added for object /org/pulseaudio/stream_restore1/entry5
    D: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1.RestoreEntry added for object /org/pulseaudio/stream_restore1/entry6
    D: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1.RestoreEntry added for object /org/pulseaudio/stream_restore1/entry7
    D: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1.RestoreEntry added for object /org/pulseaudio/stream_restore1/entry8
    D: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1.RestoreEntry added for object /org/pulseaudio/stream_restore1/entry9
    D: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1.RestoreEntry added for object /org/pulseaudio/stream_restore1/entry10
    D: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1.RestoreEntry added for object /org/pulseaudio/stream_restore1/entry11
    D: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1.RestoreEntry added for object /org/pulseaudio/stream_restore1/entry12
    D: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1.RestoreEntry added for object /org/pulseaudio/stream_restore1/entry13
    D: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1.RestoreEntry added for object /org/pulseaudio/stream_restore1/entry14
    D: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1.RestoreEntry added for object /org/pulseaudio/stream_restore1/entry15
    D: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1.RestoreEntry added for object /org/pulseaudio/stream_restore1/entry16
    D: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1.RestoreEntry added for object /org/pulseaudio/stream_restore1/entry17
    D: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1.RestoreEntry added for object /org/pulseaudio/stream_restore1/entry18
    D: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1.RestoreEntry added for object /org/pulseaudio/stream_restore1/entry19
    D: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1.RestoreEntry added for object /org/pulseaudio/stream_restore1/entry20
    D: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1.RestoreEntry added for object /org/pulseaudio/stream_restore1/entry21
    D: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1.RestoreEntry added for object /org/pulseaudio/stream_restore1/entry22
    I: [pulseaudio] module.c: Loaded "module-stream-restore" (index: #1; argument: "").
    D: [pulseaudio] database-tdb.c: Opened TDB database '/home/robert/.config/pulse/ad6c297aee8c4e1391cd0f4eb6a8e1cc-card-database.tdb'
    I: [pulseaudio] module-card-restore.c: Successfully opened database file '/home/robert/.config/pulse/ad6c297aee8c4e1391cd0f4eb6a8e1cc-card-database'.
    I: [pulseaudio] module.c: Loaded "module-card-restore" (index: #2; argument: "").
    I: [pulseaudio] module.c: Loaded "module-augment-properties" (index: #3; argument: "").
    I: [pulseaudio] module.c: Loaded "module-switch-on-port-available" (index: #4; argument: "").
    D: [pulseaudio] module.c: Checking for existence of '/usr/lib/pulse-5.0/modules/module-udev-detect.so': success
    D: [pulseaudio] module-udev-detect.c: /dev/snd/controlC0 is accessible: yes
    D: [pulseaudio] module-udev-detect.c: /devices/pci0000:00/0000:00:1b.0/sound/card0 is busy: yes
    I: [pulseaudio] module-udev-detect.c: Found 1 cards.
    I: [pulseaudio] module.c: Loaded "module-udev-detect" (index: #5; argument: "").
    D: [pulseaudio] module.c: Checking for existence of '/usr/lib/pulse-5.0/modules/module-jackdbus-detect.so': success
    D: [pulseaudio] dbus-util.c: Successfully connected to D-Bus session bus 093011bb6cd96b157c13fd6453bd080c as :1.211
    D: [pulseaudio] module-jackdbus-detect.c: jackdbus isn't running.
    I: [pulseaudio] module.c: Loaded "module-jackdbus-detect" (index: #6; argument: "channels=2").
    D: [pulseaudio] module.c: Checking for existence of '/usr/lib/pulse-5.0/modules/module-bluetooth-policy.so': success
    I: [pulseaudio] module.c: Loaded "module-bluetooth-policy" (index: #7; argument: "").
    D: [pulseaudio] module.c: Checking for existence of '/usr/lib/pulse-5.0/modules/module-bluetooth-discover.so': success
    D: [pulseaudio] module.c: Checking for existence of '/usr/lib/pulse-5.0/modules/module-bluez5-discover.so': success
    D: [pulseaudio] dbus-util.c: Successfully connected to D-Bus system bus c4b21f9975b87231155425b053bd06b5 as :1.1021
    I: [pulseaudio] module.c: Loaded "module-bluez5-discover" (index: #9; argument: "").
    D: [pulseaudio] module.c: Checking for existence of '/usr/lib/pulse-5.0/modules/module-bluez4-discover.so': failure
    I: [pulseaudio] module.c: Loaded "module-bluetooth-discover" (index: #8; argument: "").
    D: [pulseaudio] module.c: Checking for existence of '/usr/lib/pulse-5.0/modules/module-esound-protocol-unix.so': success
    I: [pulseaudio] module.c: Loaded "module-esound-protocol-unix" (index: #10; argument: "").
    I: [pulseaudio] module.c: Loaded "module-native-protocol-unix" (index: #11; argument: "").
    D: [pulseaudio] module.c: Checking for existence of '/usr/lib/pulse-5.0/modules/module-gconf.so': success
    I: [pulseaudio] module.c: Loaded "module-gconf" (index: #12; argument: "").
    I: [pulseaudio] module-default-device-restore.c: Saved default sink 'alsa_output.pci-0000_00_1b.0.analog-stereo' not existent, not restoring default sink setting.
    I: [pulseaudio] module-default-device-restore.c: Saved default source 'alsa_input.pci-0000_00_1b.0.analog-stereo' not existent, not restoring default source setting.
    I: [pulseaudio] module.c: Loaded "module-default-device-restore" (index: #13; argument: "").
    I: [pulseaudio] module.c: Loaded "module-rescue-streams" (index: #14; argument: "").
    D: [pulseaudio] module-always-sink.c: Autoloading null-sink as no other sinks detected.
    D: [pulseaudio] module-device-restore.c: Database contains invalid data for key: sink:auto_null (probably pre-v1.0 data)
    D: [pulseaudio] module-device-restore.c: Attempting to load legacy (pre-v1.0) data for key: sink:auto_null
    D: [pulseaudio] module-device-restore.c: Size does not match.
    D: [pulseaudio] module-device-restore.c: Unable to load legacy (pre-v1.0) data for key: sink:auto_null. Ignoring.
    D: [pulseaudio] module-device-restore.c: Database contains invalid data for key: sink:auto_null:null
    I: [pulseaudio] sink.c: Created sink 0 "auto_null" with sample spec s16le 2ch 44100Hz and channel map front-left,front-right
    I: [pulseaudio] sink.c: device.description = "Dummy Output"
    I: [pulseaudio] sink.c: device.class = "abstract"
    I: [pulseaudio] sink.c: device.icon_name = "audio-card"
    D: [pulseaudio] core-subscribe.c: Dropped redundant event due to change event.
    D: [pulseaudio] module-device-restore.c: Database contains invalid data for key: source:auto_null.monitor (probably pre-v1.0 data)
    D: [pulseaudio] module-device-restore.c: Attempting to load legacy (pre-v1.0) data for key: source:auto_null.monitor
    D: [pulseaudio] module-device-restore.c: Size does not match.
    D: [pulseaudio] module-device-restore.c: Unable to load legacy (pre-v1.0) data for key: source:auto_null.monitor. Ignoring.
    D: [pulseaudio] module-device-restore.c: Database contains invalid data for key: source:auto_null.monitor:null
    I: [pulseaudio] source.c: Created source 0 "auto_null.monitor" with sample spec s16le 2ch 44100Hz and channel map front-left,front-right
    I: [pulseaudio] source.c: device.description = "Monitor of Dummy Output"
    I: [pulseaudio] source.c: device.class = "monitor"
    I: [pulseaudio] source.c: device.icon_name = "audio-input-microphone"
    D: [null-sink] module-null-sink.c: Thread starting up
    D: [pulseaudio] module-device-restore.c: Database contains invalid data for key: sink:auto_null:null
    I: [pulseaudio] module.c: Loaded "module-null-sink" (index: #16; argument: "sink_name=auto_null sink_properties='device.description="Dummy Output"'").
    I: [pulseaudio] module.c: Loaded "module-always-sink" (index: #15; argument: "").
    I: [pulseaudio] module.c: Loaded "module-intended-roles" (index: #17; argument: "").
    D: [pulseaudio] module-suspend-on-idle.c: Sink auto_null becomes idle, timeout in 5 seconds.
    I: [pulseaudio] module.c: Loaded "module-suspend-on-idle" (index: #18; argument: "").
    D: [pulseaudio] module.c: Checking for existence of '/usr/lib/pulse-5.0/modules/module-console-kit.so': success
    I: [pulseaudio] module.c: Loaded "module-console-kit" (index: #19; argument: "").
    D: [pulseaudio] module.c: Checking for existence of '/usr/lib/pulse-5.0/modules/module-systemd-login.so': success
    I: [pulseaudio] client.c: Created 0 "Login Session c2"
    D: [pulseaudio] module-systemd-login.c: Added new session c2
    I: [pulseaudio] module.c: Loaded "module-systemd-login" (index: #20; argument: "").
    I: [pulseaudio] module.c: Loaded "module-position-event-sounds" (index: #21; argument: "").
    D: [pulseaudio] module-role-cork.c: Using role 'phone' as trigger role.
    D: [pulseaudio] module-role-cork.c: Using roles 'music' and 'video' as cork roles.
    I: [pulseaudio] module.c: Loaded "module-role-cork" (index: #22; argument: "").
    I: [pulseaudio] module.c: Loaded "module-filter-heuristics" (index: #23; argument: "").
    I: [pulseaudio] module.c: Loaded "module-filter-apply" (index: #24; argument: "").
    I: [pulseaudio] module.c: Loaded "module-switch-on-connect" (index: #25; argument: "").
    /*the only errors are the following four*/
    E: [pulseaudio] module-remap-source.c: Failed to parse module arguments.
    E: [pulseaudio] module.c: Failed to load module "module-remap-source" (argument: "master=alsa_input.pci-0000_00_1b.0.analog-stereo master_channel_map=front-left,front- right channels=2 channel_map=mono,mono### Remap microphone to mono"): initialization failed.
    E: [pulseaudio] main.c: Module load failed.
    E: [pulseaudio] main.c: Failed to initialize daemon.
    I: [pulseaudio] module.c: Unloading "module-switch-on-connect" (index: #25).
    I: [pulseaudio] module.c: Unloaded "module-switch-on-connect" (index: #25).
    D: [pulseaudio] core-subscribe.c: Dropped redundant event due to remove event.
    I: [pulseaudio] module.c: Unloading "module-filter-apply" (index: #24).
    I: [pulseaudio] module.c: Unloaded "module-filter-apply" (index: #24).
    D: [pulseaudio] core-subscribe.c: Dropped redundant event due to remove event.
    I: [pulseaudio] module.c: Unloading "module-filter-heuristics" (index: #23).
    I: [pulseaudio] module.c: Unloaded "module-filter-heuristics" (index: #23).
    D: [pulseaudio] core-subscribe.c: Dropped redundant event due to remove event.
    I: [pulseaudio] module.c: Unloading "module-role-cork" (index: #22).
    I: [pulseaudio] module.c: Unloaded "module-role-cork" (index: #22).
    D: [pulseaudio] core-subscribe.c: Dropped redundant event due to remove event.
    I: [pulseaudio] module.c: Unloading "module-position-event-sounds" (index: #21).
    I: [pulseaudio] module.c: Unloaded "module-position-event-sounds" (index: #21).
    D: [pulseaudio] core-subscribe.c: Dropped redundant event due to remove event.
    I: [pulseaudio] module.c: Unloading "module-systemd-login" (index: #20).
    D: [pulseaudio] module-systemd-login.c: Removing session c2
    I: [pulseaudio] client.c: Freed 0 "Login Session c2"
    D: [pulseaudio] core-subscribe.c: Dropped redundant event due to remove event.
    I: [pulseaudio] module.c: Unloaded "module-systemd-login" (index: #20).
    D: [pulseaudio] core-subscribe.c: Dropped redundant event due to remove event.
    I: [pulseaudio] module.c: Unloading "module-console-kit" (index: #19).
    I: [pulseaudio] module.c: Unloaded "module-console-kit" (index: #19).
    D: [pulseaudio] core-subscribe.c: Dropped redundant event due to remove event.
    I: [pulseaudio] module.c: Unloading "module-suspend-on-idle" (index: #18).
    I: [pulseaudio] module.c: Unloaded "module-suspend-on-idle" (index: #18).
    D: [pulseaudio] core-subscribe.c: Dropped redundant event due to remove event.
    I: [pulseaudio] module.c: Unloading "module-intended-roles" (index: #17).
    I: [pulseaudio] module.c: Unloaded "module-intended-roles" (index: #17).
    D: [pulseaudio] core-subscribe.c: Dropped redundant event due to remove event.
    I: [pulseaudio] module.c: Unloading "module-null-sink" (index: #16).
    D: [pulseaudio] module-always-sink.c: Autoloaded null-sink removed
    D: [pulseaudio] module-rescue-streams.c: No sink inputs to move away.
    D: [pulseaudio] module-rescue-streams.c: No source outputs to move away.
    D: [pulseaudio] core-subscribe.c: Dropped redundant event due to remove event.
    D: [pulseaudio] core-subscribe.c: Dropped redundant event due to remove event.
    D: [pulseaudio] core-subscribe.c: Dropped redundant event due to remove event.
    D: [pulseaudio] core-subscribe.c: Dropped redundant event due to remove event.
    D: [null-sink] module-null-sink.c: Thread shutting down
    I: [pulseaudio] sink.c: Freeing sink 0 "auto_null"
    I: [pulseaudio] source.c: Freeing source 0 "auto_null.monitor"
    I: [pulseaudio] module.c: Unloaded "module-null-sink" (index: #16).
    D: [pulseaudio] core-subscribe.c: Dropped redundant event due to remove event.
    I: [pulseaudio] module.c: Unloading "module-always-sink" (index: #15).
    I: [pulseaudio] module.c: Unloaded "module-always-sink" (index: #15).
    D: [pulseaudio] core-subscribe.c: Dropped redundant event due to remove event.
    I: [pulseaudio] module.c: Unloading "module-rescue-streams" (index: #14).
    I: [pulseaudio] module.c: Unloaded "module-rescue-streams" (index: #14).
    D: [pulseaudio] core-subscribe.c: Dropped redundant event due to remove event.
    I: [pulseaudio] module.c: Unloading "module-default-device-restore" (index: #13).
    I: [pulseaudio] module.c: Unloaded "module-default-device-restore" (index: #13).
    D: [pulseaudio] core-subscribe.c: Dropped redundant event due to remove event.
    I: [pulseaudio] module.c: Unloading "module-gconf" (index: #12).
    I: [pulseaudio] module.c: Unloaded "module-gconf" (index: #12).
    D: [pulseaudio] core-subscribe.c: Dropped redundant event due to remove event.
    I: [pulseaudio] module.c: Unloading "module-native-protocol-unix" (index: #11).
    I: [pulseaudio] module.c: Unloaded "module-native-protocol-unix" (index: #11).
    D: [pulseaudio] core-subscribe.c: Dropped redundant event due to remove event.
    I: [pulseaudio] module.c: Unloading "module-esound-protocol-unix" (index: #10).
    I: [pulseaudio] module.c: Unloaded "module-esound-protocol-unix" (index: #10).
    D: [pulseaudio] core-subscribe.c: Dropped redundant event due to remove event.
    I: [pulseaudio] module.c: Unloading "module-bluez5-discover" (index: #9).
    I: [pulseaudio] module.c: Unloaded "module-bluez5-discover" (index: #9).
    D: [pulseaudio] core-subscribe.c: Dropped redundant event due to remove event.
    I: [pulseaudio] module.c: Unloading "module-bluetooth-discover" (index: #8).
    I: [pulseaudio] module.c: Unloaded "module-bluetooth-discover" (index: #8).
    D: [pulseaudio] core-subscribe.c: Dropped redundant event due to remove event.
    I: [pulseaudio] module.c: Unloading "module-bluetooth-policy" (index: #7).
    I: [pulseaudio] module.c: Unloaded "module-bluetooth-policy" (index: #7).
    D: [pulseaudio] core-subscribe.c: Dropped redundant event due to remove event.
    I: [pulseaudio] module.c: Unloading "module-jackdbus-detect" (index: #6).
    I: [pulseaudio] module.c: Unloaded "module-jackdbus-detect" (index: #6).
    D: [pulseaudio] core-subscribe.c: Dropped redundant event due to remove event.
    I: [pulseaudio] module.c: Unloading "module-udev-detect" (index: #5).
    I: [pulseaudio] module.c: Unloaded "module-udev-detect" (index: #5).
    D: [pulseaudio] core-subscribe.c: Dropped redundant event due to remove event.
    I: [pulseaudio] module.c: Unloading "module-switch-on-port-available" (index: #4).
    I: [pulseaudio] module.c: Unloaded "module-switch-on-port-available" (index: #4).
    D: [pulseaudio] core-subscribe.c: Dropped redundant event due to remove event.
    I: [pulseaudio] module.c: Unloading "module-augment-properties" (index: #3).
    I: [pulseaudio] module.c: Unloaded "module-augment-properties" (index: #3).
    D: [pulseaudio] core-subscribe.c: Dropped redundant event due to remove event.
    I: [pulseaudio] module.c: Unloading "module-card-restore" (index: #2).
    I: [pulseaudio] module.c: Unloaded "module-card-restore" (index: #2).
    D: [pulseaudio] core-subscribe.c: Dropped redundant event due to remove event.
    I: [pulseaudio] module.c: Unloading "module-stream-restore" (index: #1).
    D: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1 removed from object /org/pulseaudio/stream_restore1
    D: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1.RestoreEntry removed from object /org/pulseaudio/stream_restore1/entry0
    D: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1.RestoreEntry removed from object /org/pulseaudio/stream_restore1/entry1
    D: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1.RestoreEntry removed from object /org/pulseaudio/stream_restore1/entry2
    D: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1.RestoreEntry removed from object /org/pulseaudio/stream_restore1/entry3
    D: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1.RestoreEntry removed from object /org/pulseaudio/stream_restore1/entry4
    D: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1.RestoreEntry removed from object /org/pulseaudio/stream_restore1/entry5
    D: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1.RestoreEntry removed from object /org/pulseaudio/stream_restore1/entry6
    D: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1.RestoreEntry removed from object /org/pulseaudio/stream_restore1/entry7
    D: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1.RestoreEntry removed from object /org/pulseaudio/stream_restore1/entry8
    D: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1.RestoreEntry removed from object /org/pulseaudio/stream_restore1/entry9
    D: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1.RestoreEntry removed from object /org/pulseaudio/stream_restore1/entry10
    D: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1.RestoreEntry removed from object /org/pulseaudio/stream_restore1/entry11
    D: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1.RestoreEntry removed from object /org/pulseaudio/stream_restore1/entry12
    D: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1.RestoreEntry removed from object /org/pulseaudio/stream_restore1/entry13
    D: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1.RestoreEntry removed from object /org/pulseaudio/stream_restore1/entry14
    D: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1.RestoreEntry removed from object /org/pulseaudio/stream_restore1/entry15
    D: [pulseaudio] flist.c: pulsecore/hashmap.c: entries flist is full (don't worry)
    D: [pulseaudio] flist.c: pulsecore/hashmap.c: entries flist is full (don't worry)
    D: [pulseaudio] flist.c: pulsecore/hashmap.c: entries flist is full (don't worry)
    D: [pulseaudio] flist.c: pulsecore/hashmap.c: entries flist is full (don't worry)
    D: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1.RestoreEntry removed from object /org/pulseaudio/stream_restore1/entry16
    D: [pulseaudio] flist.c: pulsecore/hashmap.c: entries flist is full (don't worry)
    D: [pulseaudio] flist.c: pulsecore/hashmap.c: entries flist is full (don't worry)
    D: [pulseaudio] flist.c: pulsecore/hashmap.c: entries flist is full (don't worry)
    D: [pulseaudio] flist.c: pulsecore/hashmap.c: entries flist is full (don't worry)
    D: [pulseaudio] flist.c: pulsecore/hashmap.c: entries flist is full (don't worry)
    D: [pulseaudio] flist.c: pulsecore/hashmap.c: entries flist is full (don't worry)
    D: [pulseaudio] flist.c: pulsecore/hashmap.c: entries flist is full (don't worry)
    D: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1.RestoreEntry removed from object /org/pulseaudio/stream_restore1/entry17
    D: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1.RestoreEntry removed from object /org/pulseaudio/stream_restore1/entry18
    D: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1.RestoreEntry removed from object /org/pulseaudio/stream_restore1/entry19
    D: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1.RestoreEntry removed from object /org/pulseaudio/stream_restore1/entry20
    D: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1.RestoreEntry removed from object /org/pulseaudio/stream_restore1/entry21
    D: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1.RestoreEntry removed from object /org/pulseaudio/stream_restore1/entry22
    I: [pulseaudio] module.c: Unloaded "module-stream-restore" (index: #1).
    D: [pulseaudio] core-subscribe.c: Dropped redundant event due to remove event.
    I: [pulseaudio] module.c: Unloading "module-device-restore" (index: #0).
    I: [pulseaudio] module.c: Unloaded "module-device-restore" (index: #0).
    D: [pulseaudio] core-subscribe.c: Dropped redundant event due to remove event.
    I: [pulseaudio] main.c: Daemon terminated.
    pulseaudio exited with status code 1
    Wed Jul 9 13:35:10 2014
    Outputs i'm getting:
    pulseaudio --start
    E: [pulseaudio] main.c: Daemon startup failed.
    ps aux | grep pulse
    robert 4668 0.0 0.0 10712 2344 pts/0 S+ 13:51 0:00 grep --color=tty -d skip pulse
    start-pulseaudio-x11
    E: [pulseaudio] main.c: Daemon startup failed.
    Last edited by robertcm (2014-07-09 10:54:31)

  • How connect an HTML page to a running Java Application?

    Hi,
    Exists a way to connect an HTML page to a running Java Application?
    the idea is, If we use SWT, the Browser widget have an instance of IE/Firefox attached to it, and we load local HTML pages inside, then i wish to have a way to bridge Java Application from HTML page. Then with that we can do follow JScript:
    var javaApp = document.getJavaApplication(); //here is the trick
    //below is like we do today with applets
    var person = container.create("myapp.Person");
    person.setName("Test");
    container.save(person);its great if we can Have an attribute for object tag or anything to conect HTML page to Java Application.

    I think that the better idea is to create a new mime type for that, maybe "application/x-java-connect-to-local-jvm", and use embed tag, to connect via plugin to a running JavaApp
    example:
    <embed type="application/x-java-connect-to-local-jvm" width="20" height="20" mainClass="mypackage.AppName"><br>
    <script>
    var javaApp = document.embeds[0];
    function createPerson()
      var person = javaApp.getNew("mypackage.Person");
      person.setName("test");
      javaApp.save(person);
    }The width and height, isnt necessary, but the view can be used to show red if connection failed and green for sucessfull connections, or maybe embed tag can have src to images for sucessfull and unsucessfull states.
    That's the idea, there is a way to extend Java Plugin to achieve that?
    any tip or idea or to achieve that, are welcome.
    Thanks

  • Whats wrong with my cmus menu?

    Well i got cmus and I like the idea of it alot any way but this is my problem.
    this is how it should be
    And this is how mine looks
    as you can see the track list is a little messed up how can I fix this?
    Last edited by generic_ (2009-05-31 20:28:09)

    i know i'm a little late on this one, but it seems the ^L command (redraw the terminal window) will fix the problem. at least, it fixed mine and it seemed to be the same one.
    my question then is, how do i go about telling cmus not to try to change the terminal title? the man page says several times that some terminals don't support the change, but doesn't mention what to do to stop it >_<
    EDIT: don't worry, i found it. it's the boolean 'set_term_title' option. rather obvious once i actually looked in the settings rather than skimming the documentation.
    Last edited by lycurgus (2009-08-22 15:05:39)

  • Open Pages from Discoverer Report

    Hi,
    Is there a way to invoke a webpage or even better, an oracle function (that links to forms or self-service) from a discoverer report row ?
    for example, I want a report for employees where the person looking at the report will click on the employee name and is taken straight to the person details page for that employee.
    Regards.

    Hi,
    You can create a link to a form function using fnd_run_function.get_run_function_url. You can create a calculation either in a view or using a calculated item in the EUL (you will have to map the get_run_function_url in the EUL to do this). You then set the content type property of the EUL item to FILE so that when the item is selected in the workbook it appears as a hyperlink.
    Most forms in apps except parameters so that you can pass the employee id to the form and the form will open up with the employee record. For example, if you are using a seed HR person form you create a calculation,
    fnd_run_function.get_run_function_url(3494      -- PERWSHRG-404
                                         ,800       -- HR
                                         ,fnd_global.RESP_ID     -- caller's responsibility
                                         ,0        -- Business Group
                                         ,         -- Parameters
         'P_PERSON_ID='||TO_CHAR(person_id, 'fm9999999999999')||
         ' P_EFFECTIVE_DATE='||TO_CHAR(SYSDATE, 'YYYY/MM/DD'))Rod West

  • Error While Running a page on JDeveloper

    Hi All ,
    I am getting the following error while running a page in Jdeveloper . Can any body help me?
    (AppsContext.java:686) at oracle.apps.fnd.common.WebAppsContext.(WebAppsContext.java:846) at oracle.apps.fnd.framework.server.OAUtility.getWebAppsContext(OAUtility.java:351) at oracle.apps.fnd.framework.CreateIcxSession.getEncryptedSessId(CreateIcxSession.java:144) at oracle.apps.fnd.framework.CreateIcxSession.createSession(CreateIcxSession.java:80) at runregion.jspService(runregion.jsp:96) at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56) at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317) at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465) at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727) at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306) at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767) at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:259) at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:106) at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:797) at java.lang.Thread.run(Thread.java:534) oracle.apps.fnd.framework.OAException: Application: FND, Message Name: FND_GENERIC_MESSAGE. Tokens: MESSAGE = java.sql.SQLException: ORA-00904: "SERVERRESP_ENABLED_FLAG": invalid identifier ; (Could not lookup message because there is no database connection) at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:888) at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:862) at oracle.apps.fnd.framework.server.OAExceptionUtils.processAOLJErrorStack(OAExceptionUtils.java:980) at oracle.apps.fnd.framework.server.OAUtility.getWebAppsContext(OAUtility.java:352) at oracle.apps.fnd.framework.CreateIcxSession.getEncryptedSessId(CreateIcxSession.java:144) at oracle.apps.fnd.framework.CreateIcxSession.createSession(CreateIcxSession.java:80) at runregion.jspService(runregion.jsp:96) at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56) at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317) at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465) at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727) at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306) at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767) at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:259) at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:106) at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:797) at java.lang.Thread.run(Thread.java:534) ## Detail 0 ## java.sql.SQLException: ORA-00904: "SERVERRESP_ENABLED_FLAG": invalid identifier at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:134) at oracle.jdbc.ttc7.TTIoer.processError(TTIoer.java:289) at oracle.jdbc.ttc7.Oall7.receive(Oall7.java:583) at oracle.jdbc.ttc7.TTC7Protocol.doOall7(TTC7Protocol.java:1983) at oracle.jdbc.ttc7.TTC7Protocol.parseExecuteFetch(TTC7Protocol.java:1141) at oracle.jdbc.driver.OracleStatement.doExecuteQuery(OracleStatement.java:2487) at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:2854) at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:622) at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:550) at oracle.apps.fnd.profiles.Profiles.getProfileOption(Profiles.java:1328) at oracle.apps.fnd.profiles.Profiles.getProfile(Profiles.java:384) at oracle.apps.fnd.profiles.ExtendedProfileStore.getSpecificProfileFromDB(ExtendedProfileStore.java:210) at oracle.apps.fnd.profiles.ExtendedProfileStore.getSpecificProfile(ExtendedProfileStore.java:169) at oracle.apps.fnd.profiles.ExtendedProfileStore.getMultiSpecificProfileFromDB(ExtendedProfileStore.java:368) at oracle.apps.fnd.common.WebAppsContext.setProfileValues(WebAppsContext.java:4177) at oracle.apps.fnd.common.AppsContext.setDBEnv(AppsContext.java:3407) at oracle.apps.fnd.common.AppsContext.getPrivateConnectionFinal(AppsContext.java:2508) at oracle.apps.fnd.common.AppsContext.getPrivateConnection(AppsContext.java:2398) at oracle.apps.fnd.common.AppsContext.getJDBCConnection(AppsContext.java:2257) at oracle.apps.fnd.common.AppsContext.getJDBCConnection(AppsContext.java:2072) at oracle.apps.fnd.common.AppsContext.getJDBCConnection(AppsContext.java:1976) at oracle.apps.fnd.profiles.Profiles.getConnection(Profiles.java:2494) at oracle.apps.fnd.profiles.Profiles.getProfileOption(Profiles.java:1304) at oracle.apps.fnd.profiles.Profiles.getProfile(Profiles.java:384) at oracle.apps.fnd.profiles.ExtendedProfileStore.getSpecificProfileFromDB(ExtendedProfileStore.java:210) at oracle.apps.fnd.profiles.ExtendedProfileStore.getSpecificProfile(ExtendedProfileStore.java:169) at oracle.apps.fnd.profiles.ExtendedProfileStore.getProfile(ExtendedProfileStore.java:148) at oracle.apps.fnd.common.logging.DebugEventManager.configureUsingDatabaseValues(DebugEventManager.java:1147) at oracle.apps.fnd.common.logging.DebugEventManager.configureLogging(DebugEventManager.java:1008) at oracle.apps.fnd.common.logging.DebugEventManager.internalReinit(DebugEventManager.java:977) at oracle.apps.fnd.common.logging.DebugEventManager.reInitialize(DebugEventManager.java:944) at oracle.apps.fnd.common.logging.DebugEventManager.reInitialize(DebugEventManager.java:931) at oracle.apps.fnd.common.AppsLog.reInitialize(AppsLog.java:570) at oracle.apps.fnd.common.AppsContext.initLog(AppsContext.java:873) at oracle.apps.fnd.common.AppsContext.initializeContext(AppsContext.java:858) at oracle.apps.fnd.common.AppsContext.initializeContext(AppsContext.java:827) at oracle.apps.fnd.common.AppsContext.(AppsContext.java:686) at oracle.apps.fnd.common.WebAppsContext.(WebAppsContext.java:846) at oracle.apps.fnd.framework.server.OAUtility.getWebAppsContext(OAUtility.java:351) at oracle.apps.fnd.framework.CreateIcxSession.getEncryptedSessId(CreateIcxSession.java:144) at oracle.apps.fnd.framework.CreateIcxSession.createSession(CreateIcxSession.java:80) at runregion.jspService(runregion.jsp:96) at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56) at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317) at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465) at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727) at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306) at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767) at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:259) at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:106) at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:797) at java.lang.Thread.run(Thread.java:534) ">

    check your DBC file, we have discussed this issue in the forum, search for SERVERRESP_ENABLED_FLAG

  • Filename in Footer in Pages 5

    In Pages 09 I could add a filename to the footer. If I saved a document with a new filename, this would then be automatically updated in the footer in the new document.  I cannot find out how to update the Filename in pages 5, other than doing it manually.
    Is this yet another example of the new iWork being dumbed down?  Also missing is the ability to use keyboard shortcuts for formatting, and a lot of the Inspector features.
    Do I have to go back to Pages 09 for all the missing features?

    Feature removed in Pages 5.
    Pages '09 should still be in your Applications/iWork folder.
    Trash/archive Pages 5 after Exporting any Pages 5 docs to Pages '09 files.
    Then rate/review Pages 5 in the App Store.
    Peter

  • Can not refresh page after save properly(When not saving master record)

    I am using jdeveloper 11g R2 (11.1.2.3) JSF Facelet
    In some use case I have Address as master table and Person as detail table
    For some business reason I need to don't save same addresses
    eg:
    If +1 Test St+ is in database already and new user coming and adding this address with new person
    I need to use the row in database not creating a new address
    I do saving in doDML method of Address with some hashing algorithm and it is fine
    My problem is that I can not refresh page after save properly
    User coming to page think Adding a new address and a new person but in fact no new
    address added because of business I describe above
    Any ideas how I can implement this?
    Appreciate that
    Regards
    Mohsen

    Hi,
    from your description it is not clear why the page doesn't refresh. It could be a problem in your implementation code - who knows. What if you perform the address check on a command button that actually submits the new address? If the check returns true (address exists) you would call row.refresh(forget new row); and re-query the view object so the address coming from the database is displayed. If you wanted to use the doDML then yuou need to be aware that doDML doesn't help removing the row the user created. It just ignores the database update but the entity is still around, which in my suggested solution wont be the case.
    Frank

  • Cannot send email from scanned pages

    I am having trouble with the updated HP remote app on Ipad, since the update I can scan the pages in, but then cannot send them via email. This is qute important because i work remotley from the office and rely on getting my design drawings in on a nightly basis
    please help

    cannot send email from scanned pages

  • Pages '08 lock ups

    A couple months ago, I started having issues with Pages '08. It would lock up while I was typing, or even something as simple as scrolling the page down. All I would get was the little rainbow wheel and a locked up document. At first I thought it was just the one file I was working on, but now it happens all the time. It locks up so bad sometimes that it forces a restart of the computer. No other programs are having this issue. Should i just reinstall Pages '08 from the disc or what. Cause this has made my main wordprocessing program completely useless. I'm on Mac OSX 10.5.8

    Update:
    Well I think I got it figured out. For some reason, the spell checker was causing the problem. I've always had it set to "Check spelling as you type", but for some reason that is now causing Pages to lock up. So my work around is to simply turn off the "Check Spelling as you type" option, and now there are no more lock ups.

  • IF statement in HTML ITS page

    In my ITS page I have the following code:
    `if (area == 3)`
    <input type="image" name="~OkCode=GETPRODUCTS_RES" src="`mimeURL()`/tab_residential_on.gif" width="131" height="36" border=0 />
    `else`
    <input type="image" name="~OkCode=GETPRODUCTS_RES" src="`mimeURL()`/tab_residential_off.gif" width="131" height="36" border=0 />
    `end`
    This works fine but I want to remove the literal "3" and replace it with a variable g_res.  So I change the code to read:
    `if (area == g_res)`
    This doesn't work as I think it's still checking the literal value of "g_res" not the value in the variable.  I've checked several HTML code forums but this seems too simple a problem for them to solve.  I'm a HTML novice so any pointers would be great.
    Regards,
    Gill

    Hi,
    Of course this is possible. The line
      if (area == g_res)
    should work as expected.
    Maybe you have noticed that you are not writing plain HTML but mixing HTML and a scripting language. The scripting language you are using here is called HTMLBusiness. It's a language only available on SAP ITS, so you won't find anything about it in ordinary HTML forums. Check the <a href="http://help.sap.com/saphelp_47x200/helpdata/en/5f/1fb05e4aee11d189740000e8322d00/frameset.htm">HTML Business reference</a> for further information.
    Best regards
    Henning

  • IIS 7.5 URL Rewrite: Hit specific page of a web application but should be redirected to another application's page

    I have deployed 2 different web application on IIS 7.5 running on Windows Server 2008 R2 but on different port numbers i.e. one application deployed on port no. 1776 and another on 8091. I want to rewrite URL in such a way that if i hit any page of first
    application such as default.aspx then it will be redirected to particular page of another application along with some changes in url.
    Example: if i access any page from first application like:
    http://g2wv126rbsc:1776/sites/main/commercial/commercial-solutions/financing/default1.aspx
    then it should redirect to specific page of another application along with some changes in url:
    http://g2wv126rbsc:8091/main/commercial/commercial-solutions/financing/default2.aspx
    Note: In above mentioned url, also removed "sites".
    I tried to create a inbound rule through URL Rewrite module (installed on IIS 7.5) by selecting Action as "Rewrite" but didn't find any success.
    I need some examples if anyone has come across same kind of issue.
    Thanks in advance.

    Please post ASP.NET questions in the ASP.NET forums (http://forums.asp.net ).

  • Partner application configuration is missing error on SSO login page

    We have APEX 3.1.2 setup as a partner application and an application within APEX setup to use SSO for authentication. Following a link to the APEX application redirects to the Single Sign-On page, as it should, but it also shows "Error: The partner application configuration is missing or expired." I type in my password and username, click the Login button, and (if I entered my username and password correctly, of course!) then the APEX application is shown. So, I cannot figure out why we're getting the no_papp_err error and I have not found any solutions to that issue on Metalink or anywhere else on the Internet. Any ideas? I'm concerned that we have a misconfiguration somewhere that is causing this error and will affect any other partner application we setup in the future.
    We're on Oracle Portal 10.1.4, SSO 10.1.2, and SSL is setup on both infra and mid tiers.

    Did you try checking the partner application entries on the SSO-login server page?
    please login as orcladmin or some other user with membership in, i beleive, iasadmins group. verify that for this partner application, what you see here corresponds to the application URL. it looks like your login page call may have issues. so check for login url too.
    also check the ORASSO.WWSSO_LS_CONFIGURATION_INFO$ for entries corresponding to Apex application.

  • Images for tabs are not getting displayed in the page

    Hi,
    I have given images for tabs on a page. when iam applying images from the local disk, it is showing the images in edit mode. But when I view the page, it is not showing any images.
    Where should i copy the images I use in my pages. I ahev copied all the images in the images directory of portal30 in server.
    Please help.
    Murthy

    Hi,
    Please check the httpd.conf file in your server for /images alias. The /images alias will point to a directory. Copy your
    image files in that directory.
    Thanks,
    Sharmila

Maybe you are looking for

  • Error when dropping a user/tablespace

    Hi I am trying to drop user/tablespaces, but I got the following error SQL> drop user SM92 cascade; drop user SM92 cascade ERROR at line 1: ORA-00604: error occurred at recursive SQL level 1 ORA-00942: table or view does not exist Currently this user

  • How to call portal from R3

    Hello Gurus, I have a new requirement to call portal from r3. Its regarding KM. When ever a end user is using R3 Tcode, he will get a button of online user manual about that perticular T-code,,when he clicks on that button ,,he is directed to portal

  • How to change the security questions to log in?

    I forgot the answers to my security questions and it would not let me purchase anything unless I answer the correct answers to the security questions.

  • ALT key doesn't work to bring up boot screen

    Pressing the ALT key at startup won't invoke the Bootcamp boot screen/menu...I'm stumped. I'm using Bootcamp (ver. 3.x) on a new mac mini with Snow Leopard & Windows 7. I have all software updates applied and all necessary drivers installed in Window

  • Do you need to purchase Application Server license for WebCenter Suite?

    Before the BEA product merger, WebCenter was sold as a separate license on top of the Application Server license. Now with the new pricing of 125K, does this mean you have to pay for a separate App Server license or is the new pricing included with a