Implementing Dirty Flag for a generated Model (Flex 4)

Hi there,
I try to implement a dirty flag for a model generated by a Data Binding Wizard. I tried several ways but always failed to get it work properly bounded to the 'enabled' property of a button. Is there a "best approach" to implement this in a by Flex 4 generated model?
I have all the Form elements bound to the model's properties and defined fx:Bindings on the model's property as well to get the changes back to the model as well.
-> I tried to listen to the properyChange event on the Super model but I always returned true for the Dirty flag and couldn't set it to false when I loaded the model into a Form.
-> I tried to implement a similar approach like below, instead of doing a normal 'getter' function on the isDirty flag I bounded it to the propertyChange event, it failed exactly the same way as above
I did used my own solution earlier like this:
[RemoteClass(alias="VODictionaryEntry")]
     [Bindable]
     public class VODictionaryEntry
               private var _id:Number = 0;
               private var _terminology:String;
               private var _description:String;
               private var _notes:String;
               private var _insert_date:String;
               private var _update_date:String;
               private var _vendor_related:Boolean;
               public var isDirty:Boolean = false;
               public function get vendor_related():Boolean
                    return _vendor_related;
               public function set vendor_related(value:Boolean):void
                    _vendor_related = value;
                    isDirty = true;
               public function get update_date():String
                    return _update_date;
               public function set update_date(value:String):void
                    _update_date = value;
                    isDirty = true;
               public function get insert_date():String
                    return _insert_date;
               public function set insert_date(value:String):void
                    _insert_date = value;
                    isDirty = true;
               public function get notes():String
                    return _notes;
               public function set notes(value:String):void
                    _notes = value;
                    isDirty = true;
               public function get description():String
                    return _description;
               public function set description(value:String):void
                    _description = value;
                    isDirty = true;
               public function get terminology():String
                    return _terminology;
               public function set terminology(value:String):void
                    _terminology = value;
                    isDirty = true;
               public function get id():Number
                    return _id;
               public function set id(value:Number):void
                    _id = value;
                    isDirty = true;
this is a very simple solution but it worked like a charm. Can somebody suggest me something else, a better solution?
thank you
r. Sandor
P.S.: I didn't include the validators to simplify the example.

hi,
meanwhile I come a little bit further if you implement the isDirty flag into your remote model and let generate ( to be included in the flex model as well) a model with Flex you can listen to the propertyChange event and do implement a correctly functioning bindable property.
public function VOMessageEntry():void
     addEventListener( PropertyChangeEvent.PROPERTY_CHANGE, handlePropertyChange );
private function handlePropertyChange( event:PropertyChangeEvent ):void
     if ( event.property != "isDirty" )
          isDirty = true;
this code must be inserted into the generated Object itself not in the _Super_objectname source code.
I hope I could helped somebody with this solution.
r. Sandor

Similar Messages

  • OC4J 10.1.2 - No XPathFactory implementation found for the object model

    Hello,
    We are doing some maintenance on an old 10.1.2.3.0 container. The project has to be extended with a library built with xml-apis-1.3.03.jar. I know you will suggest a upgrade, but that is a no-go - sorry, since other projects also are running on this server. So I hope some of you remember or know how to avoid or replace the oracle xml parser.
    It seems like it gets the wrong XPathFactory
    XPathFactory#newInstance() failed to create an XPathFactory for the default object model: http://java.sun.com/jaxp/xpath/dom
    with the XPathFactoryConfigurationException: javax.xml.xpath.XPathFactoryConfigurationException: No XPathFctory implementation found for the object model:
    I have searched the documentation for 10.1.2 and everything relevant on the Internet for a solution, but i seems to non-trivial when dealing with oracle xml parser. We tried to put the jar-files (xml-apis-1.3.03.jar, xercesImpl-2.8.0.jar, xalan-2.6.0.jar) in the endorsed library under the jdk, and we have already added <web-app-class-loader search-local-classes-first="true" include-war-manifest-class-path="true"/> to our orion-web.xml.
    I also know that the <shared-library> tag got introduced in 10.1.3 where you easily can replace the parser.
    Any ideas on how to deal with this exception or comments to the interpretation on the exception are appreciated.
    -MK

    Hello,
    You are correct, in OracleAS 10g (10.1.2), Oracle does not expose JMX MBean server.
    OracleAS 10g R3 (10.1.3) is a J2EE 1.4 container will full support for JMX, and all the JSR-77 MBeans exposed. You can also create and register your own MBeans.
    Could you give us the different requirements you have around JMX for your application?
    Regards
    Tugdual Grall

  • What is the best practise for setting dirty flag of a page/view?

    For a page/view, normaylly there are 2 things to do for diry data:
    1. when it's clean, Save button is disabled, when it's dirty, save button is enabled.
    2. when it's dirty and the window is closed, a popup says "you have unsaved data, close will lose the data".
    My thought is: it must be handled at client side, because not all valuechange is auto submitted. E.g., you type the 1st letter of a string in a input box, the server side does not know it, but save button should be enabled immediately.
    Is it possible to capture all valueChange events in a page or a view at client side?
    I'm not sure what is the best practise for setting dirty flag? If there is better solution? Does ADF provide facility for this?

    public void save(ActionEvent event){
    boolean formValid = isFormValid();
       if (formValid) {
      save button is enabled.
        private boolean isFormValid() {
            boolean valid = true;
            if (Check Condition 1) {
                valid = false;
               showErrorMessage1();
            if (Check Condition 2) {
                valid = false;
               showErrorMessage1();
            return valid;
        private void showErrorMessage1() {
                    when it's dirty and the window is closed, a popup says "you have unsaved data, close will lose the data".

  • Dirty flag set for readonly file page

    We are using BDB 4.8.26 transactional data store on Windows 2008 R2.
    DB is logging the message "dirty flag set for readonly file page" to the error log ... this entry was logged 17 times in a 24 hr period. The system processes about 3-5 requests a second.
    We also are having an incorrect "SECONDARY inconsistent with primary" error reported - this used to be very rare but has increased with increased concurrency. But the dirty flag error is recent - after we dropped a secondary and added a new one - there was no error during the secondary drop and rebuild process.
    Appreciate any help on this.
    Thanks
    Kimman Balakrishnan

    Hi Kimman,
    I assume you are not opening your databases with the DB_RDONLY flag. This could be cause by not running recovery after a system or application failure. Make sure you run recovery correctly, single threaded, after each system or application failure; review the Architecting Transactional Data Store applications documentation section.
    Regards,
    Andrei

  • "USE flags" for makepkg

    I have an idea for makepkg, but I wanted to discuss it before I file a feature request on flyspry. The idea is similar to Gentoo's USE flags, but don't let this pollude your opinion if you dislike Gentoo.
    The idea goes like this. In some config file, the user could specify flags for building, example:
    vim=(!perl python ruby !tcl)
    This variable would then be exported in the vim PKGBUILD which would interpret it to do:
    ./configure --disable-perlinterp --enable-pythoninterp --enable-rubyinterp --disable-tclinterp
    Makepkg should probably assist in the interpretation somehow.
    This is different from Gentoo in the way it is package-specific (allows for better fine tuning) and uses arch-style bash-arrays. Possibly, there could be a global variable aswell (perhaps called ALL or the like).
    Pros:
    - Easily fine tune packages before building (i.e. yaourt -Sb)
    - Don't need to know all the switches for ./configure or the like, to modify a package
    Cons:
    - Makes creating PKGBUILDs more complex (if the creator wants to support these flags)
    - Need to change lots of PKGBUILDS (but this can be done over time)
    - ZOMG GENTOO??
    There are ofcourse more pros/cons I haven't thought of, and the idea can probably be improved upon - please discuss!

    Poisoning the PKGBUILDs with something like this seems like a temporary solution to me. It's nothing that would work in the end and it would generate a big mess. I would not suggest adding a "USE-flag" system to Arch either. It works well in Gentoo, but it was designed with it in mind, Arch was not. It would require some work to implement it.
    The best solution I can think of would be to add an optional entry to PKGBUILD, such as optional=('guile' 'tk'), where the optional configure options could be listed. Then makepkg would generate a correct ./configure statement. An example could be like this:
    # $Id: PKGBUILD,v 1.8 2007/02/11 11:27:15 damir Exp $
    # Maintainer: damir <[email protected]>
    # Contributor: damir <[email protected]>
    pkgname=xbindkeys
    pkgver=1.8.0
    pkgrel=1
    pkgdesc="xbindkeys allows you to launch shell commands with your keyboard or your mouse under X Window"
    arch=(i686 x86_64)
    url="http://hocwp.free.fr/xbindkeys"
    depends=('libx11')
    optional=('guile' 'tk')
    source=($url/${pkgname}-${pkgver}.tar.gz)
    build() {
      cd ${startdir}/src/${pkgname}-${pkgver}
      ./configure --prefix=/usr ${optional}
      make || return 1
      make DESTDIR=${startdir}/pkg install
    md5sums=('71755c23faa113e891de6f2f871e0c76')
    If the user had specified in /etc/makepkg.conf that he/she didn't want tk and guile, makepkg would append --disable-guile --disable-tk to the ./configure statement. If the user want the default, and haven't edited makepkg.conf, nothing will be appended to the ./configure statement.
    If the defaults would be not to include guile and tk, then the optional line would look like: optional=('!guile' '!tk')
    I didn't give this much thought, so I'm not sure if it would actually work. I also don't know how consistent the application developers name their optional configuration options.

  • IsDirty or isModified flag for Entity Beans

    I've been reading a lot of conflicting information on the use of a isModified boolean in Entity Beans. Is creating a modified boolean recommended for BMPs? Or CMPs? Or both? I am doing a BMP, and wondering if it will really buy me much performance-wise to add this logic to my ejbStore() method. Thoughts?
    Thanks,
    Ceily Turner

    Greetings,
    I've been reading a lot of conflicting information on
    the use of a isModified boolean in Entity Beans. IsAre you sure all this information was presented in the same contexts? I'm guesing the apparent conflict was only perceptual and without regard for BMP in one case and CMP in [the /an]other...
    creating a modified boolean recommended for BMPs? OrDefinitely! The container will call your bean's ejbStore method (sometime) after a call to its business method(s) to ensure its state is synchronized back to the resource. However, in a BMP bean, the container has no way of knowing whether the business method(s) actually modified your bean's state, making the call to ejbStore a "blind call". Additionally, business method calls are not the only triggers to calling ejbStore - transaction COMMIT (regardless if your bean was an active participant in the transaction), and passivation being among them, as well as "at any time within the container's discretion". Though, precisely when and how often the spec. leaves to the "vendor's disrection". With all these factors at play, "blindly" hitting the resource is a sure-fire way to degrade the performance of your beans and, consequently, the application(s) which they are a part. Make your synchronization code "smart" - use a 'dirty flag'.
    CMPs? Or both? I am doing a BMP, and wondering if itIn CMP, the container has more direct knowledge of the bean's state fields and, therefore, should know whether an actual update to the resource is needed - this is especially true for EJB 2.0. Of course, this depends on the vendor's implementation (coders) to be "smart" on the bean coder's behalf. In any event, the container has absolute control over bean synchronization, and ejbStore is relegated to being a pre-processor, in CMP, so using a 'dirty flag' here will gain you absolutely nothing!
    will really buy me much performance-wise to add this
    logic to my ejbStore() method. Thoughts?Refer back to the above. :)
    Thanks,
    Ceily TurnerRegards,
    Tony "Vee Schade" Cook

  • Effective Language for Business Process Modelling in a Web Community

    It's a very exciting idea of having business process definition/innovation a community driven process.
    Just Imagine a stituation where somebody can innovate a process on a theoritical level which is then perfected by   business community opinion/examples for benchmarking, effectiveness, relevance etc.
    The ultimate business community dream would be Finding their process in the community. Finding merits and demerits of their process. Explore for a refinement to the process. Getting a copy of their newly created process and
    droping it into their IT system and the wonderful IT system upgrading itself to the new process and executing it.
    The Impact of simplification would be enormous:
    Just check out the possibilities
    Every businessman would be an IT user to get ideas for business and business execution
    The IT Guy would be recognized as process maker
    For a business entity Presentation during AGM could be extra transparent :-).
    A very concrete step in this direction would be to have a language or tool which is very easy to understand and drives people for exploration.
    My Wish would be a Visual web tool which defines a specific business process in the most simple form, and from there somebody can explore the enhancements to the process.
    For example a simple selling process done in medicine shop is
    listening the order verbally , delivering it immediately, getting cash immediately and [typing the Invoice on XL or Word or POS machines], printing it and then giving to Customer.
    after selecting this business process on the tool one should be able to explore the possible process
    enhancements with known business benefits
    like
    a) offer credit facility to customer--> just a worklist to collect pending money
    b) take order now and supply later for non available medicines
    c)Start home delivery
    The businessman should be able to select (1) or (2) which then becomes his new process.
    This can be sent to his IT landscape which should be able to interprete it and then grow itself Ah.... 
    dreaming
    [or atleast the model should tell the IT guy what to do!!].
    The generic business Process enhancements Options are not too many and can be defined and classified
    See the Options in the above mentioned business process context
    1)Automation[Create Purchase order from ]
    2)Increasing depth [The above example a,b,c are for increasing depth]
    3)Step simplification[In the above example instead of word using the POS Machine is simple]
    4)Resource utilization[If you have a PC and don't want to buy POS Machine then type the invoice on a Word :-)]
    5)Delegation
    5)Workforce optimization {any examples :-)community driven}
    7)Process optimization (How to deliver the medicine route wise)
    8)Colloboration (Using courier to send medicine)
    9)Knowledge provision (giving sales/payment trends,)
    The idea is so simple but making this tool highiely context(business) sensitive and intuitive is challenge.
    But anyway it's not impossible to have a business process language which is effective and an IT systems for which starting point is a business process. The IT system which takes your business process and executes them
    wonderfully.
    looking forward for this future
    Anand
    Message was edited by: Anand Rai
    Message was edited by: Anand Rai

    Hi Dilip,
    Thanks a lot for your reply.
    I'm also interested to know from community what are different tools used by them for process modelling?
    What are their merits?
    1)are they easily understandabale
    2) do they come with business context
    3)whether they can be used in a web comunity? Like somebody can give feedback or business case for a particular business process/step.
    4)Does it drive the IT automation
    5)Are there any appservers which take business model and generate/grow applications
    6)How the different modelling applications should communicate?
    7)Common standards
    For example
    I have used rational rose and RAD like VB they are complicated/simple enough to generate model based applications but the business representation and business context is totally missing. I would seek something with more business context or knowledgebase.
    Regards Anand

  • No implementing class registered for the interface (ABAP interface, request

    Hi,
    Proxy has been generated for the Inbound Message interface and i could see the SXMB_MONI entry in Red on the target system.
    I get the error "No implementing class registered for the interface (ABAP interface, request...."
    regards,
    Chaitanya

    Hi Chaitanya,
    Try the below configuration in SXMB_ADM,if you don't have the authorisations to SXMB_MONI ask BASIS guys to do the below activities.
    Go to SXMB_ADM.
    Execute Integration Engine
    EDIT----
    > Change Global configuration data
    select  Role of Business System as Integration Server
    Thanks,
    Amar.

  • How to find the appraisal form for an appraisal model

    Hi group,
    We want to implement the BAdI that defaults dates for an appraisal.  However, it should only kick in for certain appraisal models.  When entering the BAdI, I have APP_MODEL_ID available to me.  Based on this ID, I need to find which appraisal form the passed appraisal model belongs to - and only carry out code in BAdI if appraisal form = 5.
    I find AFORM_ID in table T77BF, but I cannot find how to determine this based on the APPL_MODEL_ID passed to the method.
    Any hints greatly appreciated.
    /Kirsten

    You can do a look up of the Table HRP1043 for the Appraisal Model & retrieve the Appraisal Form ID.
    data: w_form_id type AFORM_ID.
    select AFORM_ID into w_form_id up to 1 rows
                               from HRP1043
                               where plvar = '01'
                                   and otype = 'BS'
                                   and objid =  "Appr Model ID
                                   and istat =1
                                   and begda le sy-datum
                                   and endda ge sy-datum.
    endselect.
    if sy-subrc eq 0.
    * w_FORM_ID will ahve the form no
    else.
    * error.
    endif.
    ~Suresh

  • Can't fill ByteArray in EJB-Method with generated Model-Class from WD-Model

    Hello everybody,
    i try to call an ejb-method with data from an FileUpload-UI-Element in WD. The EJB-Method is receiving the byte-data to create a document in KM via a Web-Service.
    The ebj-methid has the following signature:
    public FObject putFileDataSimple (byte [] btContent, String fullFileName, String username, String password)
    After importing the Model and creating a context node i have the following structure:
    Request_X_putFileDataSimple
    +---btContent (Node)
          +-- item
    + fullFileName
    + username
    + password
    btContent is of the generated Type Byte_Item, which is itself a generated Model-Class of modelClassType ARRAY
    item is of Type byte
    But i simply have problems to fill the context node (or the binded model-object). i tried different ways and looked at thread [https://www.sdn.sap.com/irj/scn/thread?messageID=1954223] but i cant get it work.
    So my Method in WD looks like this to fill the structure and start the ejb-method:
    public boolean putKMDataSimple( com.sap.tc.webdynpro.services.sal.datatransport.api.IWDResource fin )  {
    try
      wdContext.currentRequest_X_putFileDataSimpleElement().setFullFileName("abc");
      wdContext.currentRequest_X_putFileDataSimpleElement().setUsername("def");
      wdContext.currentRequest_X_putFileDataSimpleElement().setPassword("xxx");
      byte[] buffer = new byte[1];
      InputStream in = fin.read(false);
      int i = 1;
      int j = 0;
      while (i!=-1)
         i = in.read(buffer);
         if (i!=-1)
           Byte_Item bi = new Byte_Item(mAlf);     // mAlf ist global defined Model-Class-Instance
           bi.setItem(buffer[0]);
            wdContext.currentRequest_X_putFileDataSimpleElement().modelObject().addBtContent(bi);
      wdContext.currentRequest_X_putFileDataSimpleElement().modelObject().execute();
    Doing this results in Error-Messages like:
    Model-Object is not a complex type for every byte added this way.
    And finally an IllegalArgumentException at java.lang.reflect.Array.set(Native Method)
    The second way i tried is:
    public boolean putKMDataSimple( com.sap.tc.webdynpro.services.sal.datatransport.api.IWDResource fin )  {
    try
      wdContext.currentRequest_X_putFileDataSimpleElement().setFullFileName("abc");
      wdContext.currentRequest_X_putFileDataSimpleElement().setUsername("def");
      wdContext.currentRequest_X_putFileDataSimpleElement().setPassword("xxx");
      byte[] buffer = new byte[1];
      ArrayList<Byte> btlist = new ArrayList<Byte>();
      InputStream in = fin.read(false);
      int i = 1;
      int j = 0;
      while (i!=-1)
         i = in.read(buffer);
         if (i!=-1)
              btList.add(buffer[0]);
      wdContext.currentRequest_X_putFileDataSimpleElement().modelObject().setBtContent(btList);
      wdContext.currentRequest_X_putFileDataSimpleElement().modelObject().execute();
    Trying so results in:
    java.lang.ClassCastException: class java.lang.Byte:null incompatible with interface com.sap.tc.cmi.model.ICMIModelClass:library:com.sap.tc.cmi(at-sign)[email protected]@alive
    whenn calling the setBtContent Method
    I don't what to do now to fill the context/model-object the right way.
    Any helpfull hints are very welcome
    Edited by: Matthias Hayk on Dec 1, 2008 5:51 PM
    Edited by: Matthias Hayk on Dec 2, 2008 10:56 AM

    Ok Vesselin and thanx for your idea,
    so i adapted the source in the way you told like the following:
                     ArrayList<Byte_Item> btlist = new ArrayList<Byte_Item>();
                     byte[] buffer = new byte[1];
                     InputStream in = fin.read(false);
                     int i = 1;
                     int j = 0;
                     while (i!=-1)
                          i = in.read(buffer);
                          if (i!=-1)
                               // Byte gelesen
                               Byte_Item bi = new Byte_Item(mAlf);
                               bi.setItem(buffer[0]);
                               btlist.add(bi);
                               j++;
                     wdContext.currentRequest_X_putFileDataSimpleElement().modelObject().setBtContent(btlist);     
                     wdContext.currentRequest_X_putFileDataSimpleElement().modelObject().execute();
    This results also in the following Exception when exceuting the WS-proxy:
    execute
    [EXCEPTION]
    java.lang.IllegalArgumentException
    at java.lang.reflect.Array.set(Native Method)
    at com.sap.tc.webdynpro.model.ejb.model.EJBGenericModelClassExecutable.getInputParameters(EJBGenericModelClassExecutable.java:215)
    at com.sap.tc.webdynpro.model.ejb.model.EJBGenericModelClassExecutable.execute(EJBGenericModelClassExecutable.java:112)

  • Implementing Data Search for Custom Objects

    Can any one have some information on implementing search criteria for custom objects.
    I am looking to modify the drop down values and search criteria based on custom data model.

    Hello Rajesh,
    The following configuration activity might resolve your query.
    Transaction: mdgimg.
    General Settings> UI Modelling> Define Field Properties for UI. Select your custom data model and go to "Hide Field Names."
    For the fields of the entity type, you don't want to come up in the search UI, check on "No selection".
    "No Selection" : These wouldn't come up as search Criteria. "No Results List": These won't come up in final result list.
    Best regards,
    Shephalika.

  • Hold flag for service po

    Hi,
    Please let me know for service purchase order hold button is available or not. when Iam creating a purchase order with item category D (services), then immediately disappears the hold bottom, but other item categories hold button is appearing and possible to kept PO in hold mode. Is their any user exit or config. setting to appears the hold flag for service PO.
    Thanks & Regards,
    Ranjit.

    Enjoy PO can't be put on HOLD.  see the SAP help
                                                                                    Note                                                                               
    Enjoy purchase orders cannot be put on hold if any of the following   
      criteria apply:                                                       
      o  The PO contains service items                                      
      o  The PO contains "third-party" items                                
      o  Commitment errors are involved                                     
      o  Subsequent (period-end volume rebate) settlement is involved                                                                               
    Example                                                                               
    You will find an example implementation under Goto -> Code Example.                                                                               
    In this example, the following behavior is defined:                                                                               
    In the case of stock transfers within a company code, the "Hold" function 
         is generally inactive. If an application object contains an error of any  
         kind, the function is likewise inactive.

  • How  to implement PCCD001 exit for new field in AENR table

    Dear experts,
    I am implementing PCCD0001 exit for a new field in AENR table secnario below.
    Tcode CC31/CC32/CC33 required additional field which stores value in AENR table. in AENR in implemented include(CI_AENR) and added new field. After i implemnted PCCD0001 screen exit for CC31/CC32/CC33.
    in that two function exit are there, one for passing data to  screen EXIT_SAPMC29C_001
    another for getting data from screen EXIT_SAPMC29C_002.
    which table or structure i use to place field in screen exit to pass data to EXIT_SAPMC29C_002, in this function i don't have import parameter.
    Adv. thanks,
    Venkey

    Hi sekhar,
    Your Requirement can be implemented by OVS(Object Value selector) This is the custom search help .So that you can define on what basis the value has to be fetched.
    Look at the below link
    http://wiki.sdn.sap.com/wiki/display/WDABAP/ABAPWDObjectValueSelector(OVS)
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/606288d6-04c6-2c10-b5ae-a240304c88ea?quicklink=index&overridelayout=true
    You need to use the component WDR_OVS.
    It has 3 phases
    In phase 1
         You will fetch the value from input field to F4 help dialog box.
    In phase 2
         You will generate the search results , in this phase look for the input value given in field 2 and accordingly generate search result for the field 3.
    In phase 3
         The selected value will be returned to the original screen.
    Regards
    Karthiheyan M

  • [svn:fx-trunk] 11930: Update of accessibility implementation to allow for case of null titleDisplay  (title).

    Revision: 11930
    Revision: 11930
    Author:   [email protected]
    Date:     2009-11-18 06:10:40 -0800 (Wed, 18 Nov 2009)
    Log Message:
    Update of accessibility implementation to allow for case of null titleDisplay (title).  If there is no title then no accImpl will be created but accessibility properties can still be set on the component.  Also added code to set the tabIndex of the titleDisplay to the tabIndex of the Panel if one exists.  This allows the title of the panel to appear in reading order as assigned by the tabIndex.
    QE notes: none
    Doc notes: none
    Bugs: n/a
    Reviewer: Gordon
    Tests run: checkintests
    Is noteworthy for integration: no
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/spark/src/spark/accessibility/PanelAccImpl.as

    Remember that Arch Arm is a different distribution, but we try to bend the rules and provide limited support for them.  This may or may not be unique to Arch Arm, so you might try asking on their forums as well.

  • Using Dirty Flags in CMP ?

    Hi
    How to use Dirty Flags in CMP so that stopping ejbStore() to improve performance.If i run a query in SQl it is taking 2milliseconds and where as in CMP it is taking 180milli seconds so i want to reduce the ejbStore() operation when data is not updated.Give some advices to tune the CMP bean.
    Looking forward for u r suggestions
    Regards
    Mohan

    Maybe this page helps
    http://www.weblogic.com/docs/examples/ejb/extensions/isModified/

Maybe you are looking for

  • Report background engine not generated

    Hi Friends, I have installed Developer 6i -Forms and Reports. When I try to run a report in an aplication after giving parameters in the paraform it gives an error illegal operation for rwbe60 it doesn't generate the background engine and so the repo

  • InDesign CC installation download repeatedly fails

    I have attempted on several occasions to doiwnload, via Creative Cloud Desktop, InDesign CC app. On all occasions the download fails at 41%. The "Learn More" error message (-60) suggest a corrupt file and the installation log tells me "Failed to open

  • How To Deploy Application In Oracle Application Server

    Hi All, We have devloped an application in whic we have used tomcat server . Now we want to deploy that application in Oracle application server. technolgy used: J2ee : Shark work flowserver database:Oracle(XE) Platform: windows XP IDE:Eclipse (ganym

  • Communication channel - Sender File Adapter - File Encoding

    Hello colleagues, I'm using a sender file adapter to send flat files to the IE for further mapping and transformation @runtime. The flat files which are received by the file adapter are based on two different codepages:    -> MS-DOS Codepage 437    -

  • Regarding MM & SD flow

    Can anyone explain me how the MM & SD business flow happens and what are the Tcodes comes into picture while these flows.