Autorefresh property for shared AM instance

Hi. We currently developing quite big application using ADF BC and ADF Faces with jDev 11.1.2.0 and we encountered some problems regarding refreshing LOVs that we are using from shared AM. I did some reading that autorefresh property on VO is handling this, but only if the database is Oracle. We are developing with underlying database on IBM DB2 v9.7 which doesnt suported that change notification.
I'm looking for other solution or workaround to solve autorefresh problem.
Any suggestions?

Hi,
if the database is not able to publish change notifications then there is nothing we can do. You will need to define a hook in the application that then refreshes the Module from the client (e.g. a poll request that you sent in a frequency you anticipate for change)
Frank

Similar Messages

  • Property code for Shared Member

    Hi,
    Could you please let me know what is the property code for Shared Member. I am trying to create a text file and trying to create some members as shared. Something like for Dynamic Calc we have "X" so I need similar kind of code for Shared Member.
    Thanks

    I am not sure some thing like that exists.
    It is not required for building shared heirarchy.
    You can use dupgen or duplev fileld properties in the dim build rules. By the way you can tell Essbase to tag them as shared.
    Parent/Child reference build method automatically shares the second time encountered member under differant parent.

  • SGEN: error: Unable to load one or more of the requested types. Retrieve the LoaderExceptions property for more information.

    Hi,
    I appollogize if this post is off topic. I have problem wiht publish WebApp MVC.
    I have website (MVC) with one Web reference. Build and run in VS working. But when I tried to publish to disk I get error:
    SGEN: error: Unable to load one or more of the requested types. Retrieve the LoaderExceptions property for more information.
    I have VS2013 Profesional with all updates and Windows 8.1.
    If I remove web reference then publishing working. Where can be a problem? Thanks.

    @Marek Bober,
    Thanks for sharing the solution back to here.
    Best regards,
    Barry
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to enable "On Exit" property for a Quiz Question?

    Maybe there is a better way of doing this, but I'm making a quick jeopardy game using Captivate 8, and I'm simply trying to get the board buttons/shapes to disappear after they have been clicked. I was using advanced actions where the first action would take you to the question and the second action would hide the shape that is acting as a button. Doing so I am finding that it works for the first one, and then only intermittently for the rest. Most of them will simply hide and do nothing, even though I've confirmed all advanced actions are correct and backward movement is possible.
    So what I was trying to do was separate the actions. Have the actions on the board simply jump to the quiz slide and then let the quiz slide "on exit" simply hide the button as the user returns to the board. Then I notice the "On Exit" property for the quiz slide is not usable. How do I enable this?
    By the way, I am not using the jeopardy interaction because I'm making a more custom looking board with some extra scoring features which are working well.

    Have written 4 posts about shared actions. And certainly for processes where you need duplicate actions a lot, like for your game, in CP8 shared actions allow you to have variables and literals as parameters. Here are the post links:
    Dare to Share - part 1 - Captivate blog
    Dare to Share - part 2 - Captivate blog
    Parameters in Shared Actions - Captivate 7 vs. 8 - Captivate blog
    Reuse Shared Actions in other Projects - Captivate 7 vs. 8 - Captivate blog
    And this dashboard was created almost exclusively with shared actions:
    Captivate 8 - First Adventures - Captivate blog

  • What is the "Count" property for Servlet in Console?

    Wondering what the "Count" property for Servlet means in the Console. Is it instances
    or current uses? In other words, if the number is >1 does this mean that the Servlet
    implements the single-threaded model?
    Thanks,
    -Daniel

    btw one of the nice things about java is if you can't find the answer
    in the API or you are not sure what the API is saying you can always
    look at the source for the class your are looking at. the source files
    are in a file called src.zip or src.jar depending on the version.
    anyway just to make sure i understood i looked at the properties method
    in question.
    public String getProperty(String key) {
         Object oval = super.get(key);
         String sval = (oval instanceof String) ? (String)oval : null;
         return ((sval == null) && (defaults != null)) ? defaults.getProperty(key) : sval;
        public String getProperty(String key, String defaultValue) {
         String val = getProperty(key);
         return (val == null) ? defaultValue : val;

  • Hyperion EPM: Will Oracle Express suffice for Shared Services and Registry?

    Hi.
    I'm trying to install Hyperion EPM on Linux to make use of the Hyperion Interactive Reporting server components to allow report scheduling, web delivery of reports, etc. My data sources will all be MySQL. I'm at the point where I'm attempting to use the EPM Configurator for setting up Shared Services and Registry Database Connection. It seems my options for choosing a database on which to allow Shared Services and Registry data to reside are limited to 3: Oracle, SQL Server or DB2 (noticeably absent is MySQL)
    So, it looks like I'm going to have to install an Oracle DB instance at the very least.
    My question is this:
    Can I get away with just installing Oracle Express for the Shared Services and Registry or will I have to install a full blown Oracle DB instance?
    Thanks
    -- Tom

    Hi, I confirm that you can use Oracle Express for Shared services and registry. We have installed the complete EPM platform on a single virtual machine using Oracle Express. It’s interesting to use it because Oracle Express use less resource. We can run this virtual machine on a computer that only have 4GB of RAM and get good performance (for a single user).
    I recommend using it for proof-of-concept and Bootcamps.

  • JMSReplyTo property for MQ-message (trouble)

    Hello all!
    I'm trying to send JMS message to MQ-queue and I need to set field JMSReplyToQ in JMS section.
    I'm using:
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0
    JMS_QUEUE_CONNECTION,
    Queue_payload_type => 'SYS.AQ$_JMS_TEXT_MESSAGE'
    FQ domain -> dbms_mgwadm.DOMAIN_QUEUE
    But I can’t set JMSReplyTo property for MQ-message. Please could you like help me for this trouble?
    See below my PL/SQL block:
    declare
    i_msg_id raw(24);
    l_id varchar2(25);
    l_msg_id raw(24);
    l_answer_queuename varchar2(80);
    l_answer_msg clob;
    l_answer_xml XMLType;
    procedure Put_MsgX (i_QueueName varchar2,
    i_msg CLOB,
    i_msg_id raw,
    i_characterSet number := 1208)
    is
    l_EnqueueOptions DBMS_AQ.ENQUEUE_OPTIONS_T;
    l_MsgProperties DBMS_AQ.MESSAGE_PROPERTIES_T;
    l_MsgID raw(16);
    l_msg_str CLOB:=i_msg;
    l_msg_str_len int;
    l_replyto sys.aq$_agent;
    l_header sys.aq$_jms_header;
    l_properties sys.aq$_jms_userproparray;
    l_mess_jms_text sys.aq$_jms_text_message;
    begin
    l_EnqueueOptions.visibility := DBMS_AQ.IMMEDIATE;
    -- Message object creating
    l_msg_str_len:=LENGTH(l_msg_str);
    l_mess_jms_text:=sys.aq$_jms_text_message(l_header
    ,l_msg_str_len
    ,l_msg_str
    ,null);
    -- MQRFH2 jms-folder properties
    l_mess_jms_text.set_groupid('grp_1');
    l_mess_jms_text.set_groupseq(5);
    -- Message corellation ID
    l_MsgProperties.correlation:='555D5120514D5F333C45584D4C2021115178D7BF20046922';
    -- Message priority
    l_MsgProperties.priority:=0;
    -- MQRFH2 usr-folder properties
    l_mess_jms_text.set_string_property('SOAPJMS_requestURI','jms:jndi:');
    l_mess_jms_text.set_string_property('SOAPJMS_contentType','text/xml; charset=utf-8');
    l_mess_jms_text.set_string_property('SOAPJMS_bindingVersion','1.0');
    /* -------- It is NOT WORKED !!! ----------------------------
    -- This code line isn’t effected to result (MQ Series message property ReplytoQ is empty)
    l_mess_jms_text.set_string_property('JMS_IBM_MQMD_ReplyToQ','queue:///PPV.JMS.MQ.OUT');
    -- This code line effected error
    -- oracle.jms.AQjmsException: JMS-147: Invalid ReplyTo destination type, or use of reserved `JMSReplyTo agent name,
    -- or serialization error with AQjmsDestination
    l_replyto:=sys.aq$_agent(null,'FXGTST.JMS_OUT',null);
    l_mess_jms_text.set_replyto(l_replyto);
    -- Sending message to MQ Series queue
    dbms_aq.enqueue(queue_name => i_QueueName,
    enqueue_options => l_EnqueueOptions,
    message_properties => l_MsgProperties,
    payload => l_mess_jms_text,
    msgid => l_MsgID);
    exception
    when others then
    Raise;
    end;
    begin
    i_msg_id:=UTL_RAW.SUBSTR(UTL_RAW.CAST_TO_RAW(SUBSTR(LPAD('999888777',24,'0'),1,24)),1,24);
    l_msg_id:=i_msg_id;
    l_answer_msg:=
    '<?xml version="1.0" encoding="UTF-8"?>'||
    '<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">'||
    '<SOAP-ENV:Header>'||
    '<m:UCBRUHeaders xmlns:m="urn:ucbru:gbo:v3"></m:UCBRUHeaders>'||
    '</SOAP-ENV:Header>'||
    '<SOAP-ENV:Body>'||
    -- some XML elements
    '</SOAP-ENV:Body>'||
    '</SOAP-ENV:Envelope>';
    l_answer_xml:=xmltype(l_answer_msg);
    l_answer_queuename :='FXGTST.JMS_IN';
    Put_MsgX(l_answer_queuename,l_answer_msg,l_msg_id);
    commit;
    exception
    when others then
    raise_application_error(-20020, 'Error: '||sqlerrm||' Queue='||l_answer_queuename);
    end;

    From JMS the correct way to set the mq message format to MQSTR is by using a JMS text message. You don't have to set anything explicitly.
    Can you try posting the message to a local mq and use some tool to see the message sitting on the format and check for the MQ format field. Also let know what exact error the other system is getting.
    P.S: For anything MQ, I would recommend to use this forum : www.mqseries.net.

  • Language settings for shared elements

    I am encountering some problems that most probably are language related with items and custom attributes.
    We have installed both Norwegian and Swedish, and the shared elements page group has activated translations. All my custom attributes were default set to enable translations, but I want to disable these as we won't need this yet. When unchecking the enable translations option I get a warning stating that all attribute values not related to global languages will be lost.
    What does this mean? I really need to see som documentation as to what happens when translations are applied.

    You don't need to remove the setting from the attributes. Just make the languages unavailable in the page group properties. That will effectively disable the translation feature for the unavailable languages in the page group.
    The "Enable Translations" property means that a different value for the attribute is allowed for each language. If translations are not enabled for an attribute, the value of the attribute is identical for each language.
    For example, say you have an attribute called CONTACT, in which you enter an email address. If translations are enabled, each translation can have it's own CONTACT. If translations are not enabled, updating the CONTACT attribute for any language will update the value for all languages.
    If you remove the "Enable Translations" property for an attribute, the value of the attribute for each language will revert to the value for the default language. However, please test this before you do it to an attribute that is widely used.
    What else did you need to know about translations?
    Regards,
    Jerry
    PortalPM

  • Retrieving the destination location of output for a specific instance

    Hi,
    I have reports that run daily and create output PDFs in Enterprise location. I am now trying to access these output PDFs using a C# program using SDK. I see that when i query for PDF instances, the query does not give me SI_SCHEDULEINFO. How do I access the destination location information for all output instances?
    I am using CRS 2008. Thanks for the help.
    Bin.

    I just found it. It is in the SI_FILES  property. Select SI_FILES in the query and infoobject.files would give the file information you need.

  • I can not configure the secondary node for shared appl_top

    when i run the perl -l txkSOHM.pl comand in the secondary node for shared appl_top. the system returns a "valid java executable not found"
    i did check all my environments variables, all is exactly just like the primary node.
    anybody can help me???

    $ perl -l txkSOHM.pl
    Absolute path of Application's Context XML file :
    /u01/oracle/snb2appl/admin/SNB2_pth1ap.xml
    Type of Instance [primary/secondary] :
    secondary
    Absolute path of 8.0.6 Shared Oracle Home :
    /u03/oracle/snb2ora/8.0.6
    Absolute path of iAS Shared Oracle Home :
    /u03/oracle/snb2ora/iAS
    Absolute path of config top :
    /u03/oracle/PTH1
    Oracle Application apps schema password :
    pu3rt0
    *** USER FEEDBACK ***
    Absolute path of Application's Context XML file : /u01/oracle/snb2appl/admin/SNB2_pth1ap.xml
    Type of Instance [primary/secondary] : secondary
    Absolute path of Shared Oracle Home top :
    Absolute path of 8.0.6 Shared Oracle Home : /u03/oracle/snb2ora/8.0.6
    Absolute path of iAS Shared Oracle Home : /u03/oracle/snb2ora/iAS
    Absolute path of config top : /u03/oracle/PTH1
    Run AutoConfig [y/n] : y
    Oracle Application apps schema password : pu3rt0
    Absolute path of the log file : /u02/oracle/pth1comn/admin/log/SNB2_pth1ap/txkSetSOHM.log
    Prompt for confirmation [y/n] : n
    Absolute path of 8.0.6 config Home : /u03/oracle/PTH1/8.0.6
    Absolute path of iAS config Home : /u03/oracle/PTH1/iAS
    Application's Context file Saved as : /u01/oracle/snb2appl/admin/SNB2_pth1ap.xml.SOH
    Valid java executable not found

  • Beware UNC path syntax for shared dirs used in a windows cluster!

    This seems to be an undocumented but vital piece of information:
    If you are setting up a Windows based cluster and you are using UNC paths
    to identify the shared file locations for IntradocDir (Instance Dir), Vault dir
    and Weblayout dir, please start your paths with 4 backslashes!
    For instance, if you are putting your share on \\MYNAS\share\cs
    The paths as configured in the intradoc.cfg should follow this pattern:
    IntradocDir=\\\\MYNAS/share/cs
    VaultDir=\\\\MYNAS/share/cs/vault
    WeblayoutDir=\\\\MYNAS/share/cs/weblayout
    Now, the documentation, if read carefully, will lead you to believe starting
    with two forward slashes will work.
    In other words, like this:
    IntradocDir=//MYNAS/share/cs
    And on an initial system start, it may even seem good to go, BUT BEWARE!
    When using only the forward slashes, at least two problems may arise:
    1. Any custom component which use java and therefore require a classpath may
    fail to load their classes. This will result in ClassNotFound exceptions
    when class loading is attempted.
    2. OracleTextSearch may not be able to index files and you will see "oit" errors
    in the log.
    This may be jvm and windows version specific but I noticed this on Windows server 2008 R2
    using the JRockit 64 bit jvm.

    As mentioned above I spotted Shadow Copy configuration problems in clustered environment on Windows 2012 R2 with latest updates.
    Enabling Shadow Copy via Cluster Manager on disk will enable schedule and snapshots but schedule is not-cluster aware (is created locally on node) and "Previous Versions" are visible only locally but not via shared folders (UNC path accesible by
    clients)
    When I spotted this behavior I tried different way going via Computer Management and cluster resource name but console always hangs for me when using "Configure Shadow Copies". After many minutes configuration window is opened (Hurray!) but any
    action there will hang whole console again. Enabling Shadow Copies will fail with "0x80004005: Unspecified
    error" for creating scheduled task but "Next Run Time" column still shows "Disabled". Checking disk resource via Cluster Manager shows it is enabled and ?local? scheduled task is created.
    Computer management console still shows DISABLED and any action freezes whole console (only when cluster resource name is used).
    This fix I found, unfortunately, is not applicable to 2012 R2 OS: https://support.microsoft.com/en-us/kb/2894464
    To sum up there is a major bug in MS implementation in Shadow Copies for Shared Folders when clustering is used or it is still not supported in 2012 R2? Doing it outside cluster works as it should (without freezes and Previous Versions are available via
    UNC)
    There is no documentation about FileServer Clustering on 2012(R2) unfortunately.
    Could someone from MS clarify it?
    Many thanks
    Filip
    EDIT:
    Ok, one correction:
    Scheduled task is not created in "Failover Clustering" hive of Scheduled tasks as user may expect but failover of fileshare to other node will unregister/reregister it on active node only.

  • Get property for group

    Hi,
    I'm trying to retrieve a property value from a property set, using a
    configurable entity interface (I always have retrieve properties of the
    same way):
    GroupHome groupHome =
    (GroupHome)JNDIHelper.lookup("com.beasys.commerce.axiom.contact.Group");
    ce = (ConfigurableEntity) groupHome.findByPrimaryKey(new
    GroupPk(groupName));
    Boolean isGranted = (Boolean)
    ce.getProperty(scopeName,propertyName,null,null);
    The problem is than this code can't retrieve the value for a property
    instancied for a group (with this same code I always get the correct
    property for
    a User changing the form of take the configurable entity (for a user my
    code to get ce is: ce = (ConfigurableEntity)
    uMng.getUserObject(userName); )
    The error thant I get in the console is:
    mar feb 20 10:58:02 CET 2001:<I> <EJB JAR deployment
    c:/WebLogicCommerceServer3.2/lib/foundation.jar> Transaction:
    '982662956654_3' rolled back due to EJB exception:
    java.rmi.RemoteException: ORA-03115: unsupported network datatype or
    representation
    I'm using : WLCS 3.2
    Thanks & Regards
    Oscar

    Hi,
    According to your description, my understanding is that you didn’t get multi-value crawled property for the people and group column you created after the crawl was done.
    Please make sure the item which contains the multi-valued column is crowled by searching the item.
    I have tested in my environment and it worked fine. I created a multi-valued column of type people and group named “People”, and type some people. Then I created a new managed property named “MulPeople” mapping to crawled property “ows_People(Text)”. I searched
    “MulPeople:user name” in search center and it displayed items which contain the column. It means the column has been crawled successfully.
    Thanks,
    Dean Wang
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Uncaught exception: shared webkit instance unavaliabl​e: null

    whenever i open the browser i get this "uncaught exception: shared webkit instance unavaliable: null" i have tried all that crackberry tells me to pull batterie ect can anyone help

    Hi and Welcome to the Forums!
    I suggest the following steps, in order, even if they seem redundant to what you have already tried (steps 1 and 2 each should result in a message coming to your BB...please wait for that before proceeding to the next step):
    1) Register HRT
    KB00510 How to register a BlackBerry smartphone with the wireless network
    2) Delete and Resend Service Books
    KB05000Delete the service book for the BlackBerry Internet Service email account from the BlackBerry smartphone
    KB02830 Send the service books for the BlackBerry Internet Service
    3) Batt Pull Reboot
    Anytime random strange behavior or sluggishness creeps in, the first thing to do is a battery pop reboot. With power ON, remove the back cover and pull out the battery. Wait about a minute then replace the battery and cover. Power up and wait patiently through the long reboot -- ~5 minutes. See if things have returned to good operation. Like all computing devices, BB's suffer from memory leaks and such...with a hard reboot being the best cure.
    Hopefully that will get things going again for you! If not, then please think back as to what changed just before this started. A new app? Any updates? The tiniest thing could be causal, so please think carefully.
    Good luck and let us know!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Unable to load one or more of the requested types. Retrieve the LoaderExceptions property for more information.

    Hi there,
    I use visual studio community 2013 to develop app for office. When I create app project using template and directly run it, it shows me this error: Unable to load one or more of the requested types. Retrieve the LoaderExceptions property for more information.
    Can anyone help? Thanks in advance.

    Hi holm0104,
    Did you add custom code into the project? Can you reproduce the issue in a new project without custom code?
    If not, did you have issue when you create a normal web application?
    Regards & Fei
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • "Unable to load one or more of the requested types. Retrieve the LoaderExceptions property for more information" while attempting to open UNIX/Linux monitor

    We have upgraded our System Center to 2012 R2, and we cannot open any of the UNIX/Linux LogFile monitor property or the UNIX/Linux process monitor property for those monitors created prior to the upgrade.  Error we get is below.  Any assitance
    appreciated.
    Date: 9/30/2014 10:01:46 PM
    Application: Operations Manager
    Application Version: 7.1.10226.0
    Severity: Error
    Message:
    System.Reflection.ReflectionTypeLoadException: Unable to load one or more of the requested types. Retrieve the LoaderExceptions property for more information.
       at System.Reflection.RuntimeAssembly._nLoad(AssemblyName fileName, String codeBase, Evidence assemblySecurity, RuntimeAssembly locationHint, StackCrawlMark& stackMark, IntPtr pPrivHostBinder, Boolean throwOnFileNotFound, Boolean forIntrospection,
    Boolean suppressSecurityChecks)
       at System.Reflection.RuntimeAssembly.nLoad(AssemblyName fileName, String codeBase, Evidence assemblySecurity, RuntimeAssembly locationHint, StackCrawlMark& stackMark, IntPtr pPrivHostBinder, Boolean throwOnFileNotFound, Boolean forIntrospection,
    Boolean suppressSecurityChecks)
       at System.Reflection.RuntimeAssembly.InternalLoadAssemblyName(AssemblyName assemblyRef, Evidence assemblySecurity, RuntimeAssembly reqAssembly, StackCrawlMark& stackMark, IntPtr pPrivHostBinder, Boolean throwOnFileNotFound, Boolean forIntrospection,
    Boolean suppressSecurityChecks)
       at System.Reflection.RuntimeAssembly.InternalLoad(String assemblyString, Evidence assemblySecurity, StackCrawlMark& stackMark, IntPtr pPrivHostBinder, Boolean forIntrospection)
       at System.Reflection.RuntimeAssembly.InternalLoad(String assemblyString, Evidence assemblySecurity, StackCrawlMark& stackMark, Boolean forIntrospection)
       at System.Reflection.Assembly.Load(String assemblyString)
       at Microsoft.EnterpriseManagement.Internal.UI.Authoring.Extensibility.TypeContainer.get_ContainedType()
       at Microsoft.EnterpriseManagement.Internal.UI.Authoring.Extensibility.MomExtensionsCommon.AddTemplatePages(LaunchTemplateUIData launchData, Form form)
       at Microsoft.EnterpriseManagement.Internal.UI.Authoring.Extensibility.MomExtensionsCommon.Initialize(Object launchData, Form form)
       at Microsoft.EnterpriseManagement.Internal.UI.Authoring.Extensibility.MomExtensionsCommon.RunPrivate(Object[] userData)
       at Microsoft.EnterpriseManagement.Internal.UI.Authoring.Extensibility.MomExtensionsCommon.Run(Object[] userData)

    It's possible the upgrade did not update everything properly as it looks like a dll mismatch or a missing file. I'd open a support ticket with MS and have a support engineer look at the upgrade logs. What version of SCOM did you upgrade from?
    Regards,
    -Steve

Maybe you are looking for