BC4J with Struts using EditAction's create method.

Hi,
I am using BC4J with struts and using the EditAction and UpdateAction classes provided by BC4J.
When i want to create a new row in the database the documentation asks me to call EditAction's create() method and then UpdateAction's execute() method to do it. But even when i just call UpdateAction's execute() method I am able to create a new row. So WHY should I call EditAction's create() method ?????

EditAction's create() method is something you would call in the action before rendering the empty form for the user to fill in.
It creates a row, and then marks the row as having STATUS_INITIALIZED using the Row.setNewRowState(Row.STATUS_INITIALIZED) call.
By setting the row to STATUS_INITIALIZED, this makes BC4J "forget" that it's a new row that needs to be inserted. In effect, it makes that new row a throwaway row used only for the purpose of rendering the blank form. An important reason you would want to do things this way is to pickup entity-level default values in the attributes of the new row.
For example, in the toy store demo, why is it that when you register as a new user the "Country" poplist defaults to "United States" ? (it's not the first entry in the list).
The answer is that, since the EditAction (or in this case my custom subclass of that) creates the blank row, the fact that the "toystore.model.businessobjects.Account" entity object declares that its Country attribute has a default value of "US" makes the blank row created in the "toystore.model.dataaccess.Accounts" view object have a default value of "US", and that default value in the blank row causes the <jbo:InputSelect> tag that renders the poplist to mark the corresponding "United States" option in the list as currently selected (as it's the display string associated in the poplist with the value "US").

Similar Messages

  • BC4J with struts EditAction, create record.

    Hi techies,
    I need some suggestion ..
    I am using Jdev version 9.0.3.10.35 build (1035)
    I am getting this
    "Error Message: The datasource: UsermaintenanceModule.UmUserMaintenanView1 does not contain any row." message in my JSP
    The action class content which calls this jsp is
    BC4JContext context = BC4JContext.getContext(request);
    ViewObject vo = context.getViewObject();
    context.setRow(vo.createRow());
    populateBC4JFormBean(context, form);
    return BC4JUtils.getForwardFromContext(context, mapping);
    Can anyone of u tell me what is the reson for that error message????

    Hi Faraz,
    Please repost your question in the JDeveloper discussion forum for a better response -JDeveloper and ADF
    Sujatha
    http://otn.oracle.com/sample_code/content.html

  • Problem with Script Using New() to Create a #Vectorshape

    Hello,
    I am having a problem integrating an existing movie script into a movie I am building and I can't figure out why.
    The single movie script, developed by JC in 2004,  appears below. It works perfectly in a movie all by itself. But I need to integrate it into an existing movie in which other sprites and behaviors must coexist.
    The problem I am seeing is that gMem is created with the new command (can see it in the message window using put gMem), but it will not allow attachment of gMem.regPoint, gMem.centerRegPoint, and so on. These all return errors.
    I would also be open to another solution to the problem. What I need to do is create rectangles that represent a plan view of a rooftop on an underlying grid and then be able to drag and place other images on it (it is for training purposes, not a game).
    I am using MX2004 on a PC. Any help, deeply appreciated.
    Rod Wolford
    global gMem, gCount, gNum, gLoc, gCreateVert, gMemNum
    on prepareMovie
      clearGlobals()
      _movie.puppetTempo(60)
      gCreateVert = False
      gMemNum = 5
    end
    on mouseDown
      if not(gCreateVert) then
        gMem = new (#vectorShape, member gMemNum of castLib 1)
        gMemNum = gMemNum + 1
        gMem.regPoint = point(0,0)
        gMem.centerRegPoint = False
        gMem.closed = False
        gMem.antialias = True
        gMem.strokeWidth = 0.25
        gMem.strokeColor = rgb(0,0,0)
        gNum = getFreeChannel()
        channel(gNum).makeScriptedSprite(gMem, point(0,0))
        sprite(gNum).ink = 36
        gCount = 0
        gCreateVert = True
      end if
      if gCreateVert then
        if the doubleClick then
          gCreateVert = False
          gCount = gCount - 1
          gMem.deleteVertex(gCount)
          gMem.closed = True
          gMem.fillMode = #solid
          gMem.fillColor = rgb(random(256) - 1,random(256) - 1,random(256) - 1)
          gFinished = True
          exit
        end if
        gCount = gCount + 1
        gMem.addVertex(gCount, the mouseLoc)
        gCount = gCount + 1
        gMem.addVertex(gCount, the mouseLoc)
        gLoc = the mouseLoc
      end if
    end
    on enterFrame
      if gCreateVert then
        gMem.moveVertex(gCount, the mouseH - gLoc[1], the mouseV - gLoc[2])
        theLoc = (gMem.vertexList)[gCount][1]
        if not(theLoc = the mouseLoc) then
          gMem.moveVertex(gCount, the mouseH - theLoc[1], the mouseV - theLoc[2])
        end if
        gLoc = the mouseLoc
      end if
    end
    on stopMovie
      theCount = castLib(1).member.count
      repeat with i = 1 to theCount
        if member(i).type = #vectorShape then member(i).erase()
      end repeat
    end
    on getFreeChannel
      repeat with i = 1 to the lastChannel
        if sprite(i).member.type = #empty then
          aNum = i
          exit repeat
        end if
      end repeat
      return aNum
    end

    Sean,
    Thank you. Changing gMem handler from #new to #_movie.newmember did the trick. I still have not found the behavior or movie script that contains the #new handler that created the problem. I was not aware of the #_movie.newmember handler. Seems that because it is specific to a new member added into a movie that it may be more useful than just using #new when adding new members is needed. Is that so? Does it have any downsides?
    Once again, thanks for your answer. By the way, I think the script was originally a J Chunick script.
    Regards,
    Rod

  • What are the restrictions/limitation in lookout with the use of graphs created in third party software? When we use these kind of graphs we normally loose resolution, shadows or 3D effects.

    We don't know exactly how does lookout handle .bmp or .wmf files created in third party programs like CorelDraw, since we have a different response from lookout to those graphs. We loose the shadows effects, we don't have a transparect effect, etc.
    Thanks in advance, any help is welcome.

    It shows Peter's doing its jobs properly.
    Anyway there is no more communication from Sony since awihle. If you can have any news.
    Anyway good job Zero!

  • Exception Handling of JboException with Struts  Jun 25, 2003 9:46 AM

    Hi,
    I am using BC4J with Struts. The struts <html:errors/> tag displays all the exception messages generated by ActionErrors and JboExceptions automatically. The problem i have is, I get a Jbo-26041 exception when i try to create a duplicate primary key. I have caught the exception in the ***Impl.java file in the doDML() method and I want to ignore the exception but want to display a message through the <html:errors/> tag. How can i do that???
    When i dont catch the jbo-26041 exception the application crashes and when i catch the exception i donno how to show the message in the <html:errors/> tag of struts.
    And can I somehow show the error messages through the adderrors() method of EditAction or UpdateAction ???
    Need Help... a.s.a.p.
    ~Faraz
    The code is:
    protected void doDML(int operation, TransactionEvent e)
    try{
    super.doDML(operation, e);
    catch (JboException ex)
    if ("26041".equals(ex.getErrorCode()))
    //*** WHAT TO DO HERE ***//
    }

    repost

  • Exception Handling of JboException with Struts

    Hi,
    I am using BC4J with Struts. The struts <html:errors/> tag displays all the exception messages generated by ActionErrors and JboExceptions automatically. The problem i have is, I get a Jbo-26041 exception when i try to create a duplicate primary key. I have caught the exception in the ***Impl.java file in the doDML() method and I want to ignore the exception but want to display a message through the <html:errors/> tag. How can i do that???
    When i dont catch the jbo-26041 exception the application crashes and when i catch the exception i donno how to show the message in the <html:errors/> tag of struts.
    Need Help... a.s.a.p.
    ~Faraz
    The code is:
    protected void doDML(int operation, TransactionEvent e)
    try{
    super.doDML(operation, e);
    catch (JboException ex)
    if ("26041".equals(ex.getErrorCode()))
    //*** WHAT TO DO HERE ***//
    }

    repost

  • Error in accessing the create method declared in Home interface

    hi,
    I have create method in home interface which takes the following syntax:
    public ShipRemote create(ShipPK id,String name,int capacity,float tonnage) throws CreateException,RemoteException;
    In the client I create a remote object and try to call this create method, but I get a compilation error :
    it says unable to resolve the symbol with a cursor pointing the create method
    interface sampleEJB.ship.shipInfo.ShipHome ShipRemote remoteRef=(ShipRemote)homeRef.create(spk,sname,5000,100.7);
    how can i resolve this.
    I have implemented this create method in my bean

    hi i have compiled the client interfaces and the bean successfully.
    I have also imported the classes in the in the client code .
    I even deployed my jar successfully, but i have problem in accessing the create method specified .
    thank you

  • How to use custumer DataTagsLibrary for BC4J in the JSP's with Struts Suppo

    I've been looking for a good tutorial to learn very well
    BC4J, DataTags Library for JSP , all with struts support.
    But it's dificult to join all this topics.
    Can someone help.
    If you have any answer for me, plesea send an e-mail to
    [email protected]

    Try these links:
    http://radio.weblogs.com/0118231/ - Look for the Toy Store demo.
    http://otn.oracle.com/sample_code/tutorials/bc4jvsm/content.html - The new Shopping Mall tutorial.
    http://otn.oracle.com/products/jdev/howtos/content.html - The JDeveloper how to list.
    Also, check frequently on the JDeveloper forum here on OTN.
    HTH.
    Thanks, George

  • HOWTO: Use BC4J With or Without DB Triggers

    This HowTo describes how to use BC4J, database sequences and triggers
    and what are the ramifications.
    INTRODUCTION
    BC4J has the ability to work with database sequences in order to obtain a
    unique value when inserting records. BC4J also has the ability to
    work either with a 'before insert' trigger which automatically creates
    a new unique value for the primary key or without a trigger. When not using
    a database trigger, BC4J also has the ability to obtain the sequence value
    and set the primary key value.
    Before discussing the ramifications of using one approach or the other, let's
    show examples of how to use both approaches:
    BC4J & sequences WITH a database trigger
    and
    BC4J & sequences WITHOUT a database trigger
    HOWTO DEMONSTRATION STEPS
    To illustrate both scenarios a simple database setup script is provided which
    creates two tables:
    CUSTOMER_NT which DOES NOT have a before insert trigger and
    CUSTOMER_WT which DOES have a trigger.
    Database Install Script:
    <code>
    drop trigger customer_insert_trigger;
    drop table customer_wt;
    drop table customer_nt;
    drop sequence customer_wt_seq;
    drop sequence customer_nt_seq;
    create sequence customer_wt_seq start with 1;
    create sequence customer_nt_seq start with 101;
    create table customer_wt(
    id number,
    name varchar2(30),
    constraint
    customer_wt_pk
    primary key (id)
    create table customer_nt(
    id number,
    name varchar2(30),
    constraint
    customer_nt_pk
    primary key (id)
    prompt Inserting data...
    insert into customer_wt (id, name)
    values (customer_wt_seq.nextval, 'Mickey');
    insert into customer_wt (id, name)
    values (customer_wt_seq.nextval, 'Goofy');
    insert into customer_nt (id, name)
    values (customer_nt_seq.nextval, 'Daffy');
    insert into customer_nt (id, name)
    values (customer_nt_seq.nextval, 'Porky');
    commit
    prompt Creating trigger
    create trigger customer_insert_trigger
    before insert on customer_wt for each row
    begin
    select customer_wt_seq.nextval into :new.id from dual ;
    end;
    </code>
    The next step is to create the DEFAULT Entity Objects and View Objects using
    the Business Components Wizard.
    USING BC4J WITH A DATABASE TRIGGER
    Let's modify the entity object CustomerWt so it can use the database trigger.
    Edit the entity object CustomerWt by right-clicking in the navigator.
    Click on the 'Attribute Settings' tab and edit the ID attribute.
    - Uncheck 'Mandatory'checkbox. This allows you to insert without a value for the primary key
    - Check 'Refresh after Insert'. This obtains the value from the database generated by the trigger.
    - Check 'Updateable While New'. Id is only updateable when inserting.
    Click finish to complete the wizard. Save all and recompile the project.
    Now let's test our work.
    In the navigator right-click the application module and select 'Test..'. This will launch
    BC4J's built in tester. Connect to the application.
    In the tester double-click the CustomerWtView view object to run a test edit form.
    After the edit form renders, navigate through the existing records using the navigate
    buttons on the edit form. Now let's insert a record to execute the trigger.
    click on the '+' button to insert a record. Enter a value in the 'Name' field and commit the change.
    Observe that a new value has automatically been inserted into the Id field.
    That's it! You have successfully used BC4J and a database trigger.
    Now let's try it without a trigger..
    USING BC4J WITHOUT A DATABASE TRIGGER
    Now edit the entity object CustomerNT so it doesn't need a database trigger.
    Similar to before, edit the entity object CustomerNt by right-clicking in the navigator.
    Click on the 'Attribute Settings' tab and edit the ID attribute.
    - Uncheck 'Mandatory'checkbox.
    - Check 'Updateable While New'.
    An additional step is also required. The Create method will have to be modified to extract
    the value of the sequence.
    In the Edit EntityObject Wizard click the Java tab and select Create method and click Finish.
    The create method is generated in your Java fil e. In the Workspace view of the Navigator,
    expand the CustomerNt entity object in the navigator. Double-click
    CustomerNtImpl.java to open it in the Source Editor. In the Structure pane, double-click
    create(AttributeList). Modify the Create method so it looks like this:
    <code>
    public void create(AttributeList attributeList) {
    super.create(attributeList);
    SequenceImpl s = new SequenceImpl("customer_nt_seq", getDBTransaction());
    Integer next = (Integer)s.getData();
    setId(new Number(next.intValue())); }
    </code>
    Save and compile the project.
    Now test the ViewObject CustomerNtView using the tester as before.
    In the edit form of CustomerNTView click on the '+' to insert a record. Observe that
    just as before a new value has automatically been inserted in the ID field!
    TO USE A DB TRIGGER OR NOT TO USE A DB TRIGGER.
    Using a Database trigger sometimes preferable if you have non BC4J applications
    also sharing the database. In this case it is still safest to just let the database
    update it's own primary keys.
    If you don't have any other non-BC4J applications sharing the database, then not using
    a database trigger is perfectly acceptable and can have slightly better performance.
    The important thing to remember is that the option is yours to use either approach!
    null

    Thank you for the reply Jonathon. I am using a ViewObject which
    consist of several tables. I haven't tried the DB trigger
    approach but just using the BC4 approach in overriding the
    create method.
    Here is the parent class create as a part of the
    FasNameImpl.java file which does the job correctly.
    public void create(AttributeList attributeList) {
    super.create(attributeList);
    SequenceImpl l_seq = new SequenceImpl
    ("SEQ_CUSTOMER_ID",getDBTransaction());
    Integer l_next = (Integer)l_seq.getData();
    setCustomerId(new Number(l_next.intValue()));
    This is when I triedpassing the value to the child table. But I
    can't figure it out. I think the link is working fine if I had a
    ViewLink deployed but it doesn't look like it's doing the job
    for ViewObject.
    I am trying to call the childclass.method
    (FasCustomer.setCustomerId(l_next);
    But I am getting error.
    Thanks a lot for your suggestions,
    Kamran
    703 696 1121

  • How to use BC4J with JDeveloper 9i in a Team

    Hello
    I'm not sure if I'm to stupid, but to say the truth I didn't found the clue how to share a BC4J Application between several develeopers. Maybe someone can give me a hint.
    That's my situation:
    Our team is going to develop a web application using BC4J and BC4J-JSP, nothing special I think.
    But my problem is, that BC4J and especially the wizards refer to a lot of different files. Even simple changes often result in multiple files being changed in different parts of the project.
    Creating a view link between view objects in two packages for example changes the view objects in both packages. Also the project (.jpr) file or several "BC4J.xcfg" files are changed very often.
    So it is not easy to find parts of code from which I can say they are owned by one developer and others which are owned by another. Most often, if you have to merge the work of different developers, you have to edit the BC4J-XML-Files using an external editor. Or did someone find a better way? Please tell me!
    So, what is the best way to share code between developers?
    Should I partition the application by packages?
    - advantage:
    it allows a fine partitioning
    - disadvantages:
    it has the great danger that BC4J makes changes in other packages which will be overseen when merging.
    Should I create a projects for each developer and distribute code between the projects using libraries?
    - advantage: no unseen changes will happen, as the libraries are readonly.
    - disadvantages: no view links between view objects in different projects (Libraries) are possible! Also a lot of "load errors" can occure when updating a library, which have to be manually corrected in the dependent projects.
    Are source code management systems a real help in this problem or do they just "manage" the problem? I already tried SCM and PVCS but was not very happy with the way of working. As JDeveloper is not "really easy" to use with theese tools.
    So I would like to get any hints how other developers are dealing with this problem. Are you using BC4J with JDeveloper 9i in a team? Please tell me how do it and how you have partitioned your application.
    Thanks in advance
    Frank Brandstetter

    Hi,
    I'm not sure whether my answer is good enough for you, but it might help.
    First of all, you have to use JDev 9.0.3, because 9.0.2 has big problems with associations/view links between objects in different projects.
    Creating a view link between view objects in two packages for example changes the view objects in both packages. Also the project (.jpr) file or several "BC4J.xcfg" files are changed very often.This is not completely true in 9.0.3, as you may choose not to create an accessor in the imported object (and usually you don't need it neither!). As for bc4j.xcfg, there is a trick: define a "standard" database connection name to use all over your project! This will prevent modifying these files all the time!
    Should I create a projects for each developer and distribute code between the projects using libraries?
    - advantage: no unseen changes will happen, as the libraries are readonly.
    - disadvantages: no view links between view objects in different projects (Libraries) are possible! Also a lot of "load errors" can occure when updating a library, which have to be manually corrected in the dependent projects.I would say, projects for each application component, which by chance will be managed by a single developer at a time.
    As for the disadvantages, in 9.0.3 you are able to properly create associations and links using read-only objects. Hopefully, the release version will solve some generation inconsistencies...
    Concerning the errors that occur when modifying a library, this might be balanced by the relative independence of the components... If you are able to develop following the dependency tree, you will not meet the problem very often.
    Are source code management systems a real help in this problem or do they just "manage" the problem? I already tried SCM and PVCS but was not very happy with the way of working. As JDeveloper is not "really easy" to use with theese tools.Indeed, I do not have a SCMS really able to manage merges in the BC4J XML files... We rather try not to arrive there!
    So I would like to get any hints how other developers are dealing with this problem. Are you using BC4J with JDeveloper 9i in a team? Please tell me how do it and how you have partitioned your application.I really hope that my hints will help.
    Regards,
    Adrian

  • Problems with JBO errors displaying when using custom insert VO methods

    Hi!
    I have a problem I hope I can explain :).
    I have a VO that has custom execute and insert methods implemented in application module.
      public void executeWithParamsMyViewG(String asID)
        // find the view
        MyViewImpl loMyViewImpl =
          getMyViewG();
        loMyViewImpl.setNamedWhereClauseParam("IDParm", asID);
        // execute the querry
        loMyViewImpl.executeQuery();
      public void insertRow(String asID)
        MyViewImpl loMyViewImpl =
          getMyViewG();
        // create new row
        Row loRow = loMyViewImpl.createRow();
        // set fields in new row
        loRow.setAttribute("ID", asID);
        loRow.setAttribute("MyAttribute", "A");
        loRow.setAttribute("MyAttribute2",
                           afContext.getProcessScope().get("MyParm"));
        // insert new row
        loMyViewImpl.insertRow(loRow);
      }I have custom error handler with
        public void reportException(DCBindingContainer bc, Exception ex) {
           //Force JboException's reported to the binding layer to avoid
           //printing out the JBO-XXXXX product prefix and code.
          disableAppendCodes(ex);
          super.reportException(bc, ex);
        private void disableAppendCodes(Exception ex) {
          if (ex instanceof JboException) {
            JboException jboEx = (JboException) ex;
           jboEx.setAppendCodes(false);
            Object[] detailExceptions = jboEx.getDetails();
            if ((detailExceptions != null) && (detailExceptions.length > 0)) {
              for (int z = 0, numEx = detailExceptions.length; z < numEx; z++) {
                disableAppendCodes((Exception) detailExceptions[z]);
        }I also have custom phase listener and page lifecycle but without any 'important' methods overridden.
    Than I have a jspx with af:processChoiceBar for navigation, Create button binded to insertRow method, commit and rollback buttons and form with input fields. One of them is required, but with validation on server side, not on client side (showRequired instead of required).
    My problem is this:
    If I add an empty row, leave all the fields blank and try to commit I get required field message, which is OK. But if I use af:processChoiceBar (previous page, next page, select any of the pages), the message is not displayed. The message is displayed after when I try to return to this page. If I debug the exception in reportException method has the code 27024 for DeferredRowValidationException, not the required attribute error which is displayed.
    Can anyone help me with this please, I've wasted a lot of time on this now.
    Regards!
    BB

    Hi,
    Does anyone know why this would not be working. It's really irritating!

  • How to create an instance for RemoteSession without using create() method

    How to create an instance for RemoteSession without using create() method?

    What's RemoteSession? Not in the JDK. And does the question have anything to do with concurrency?

  • Entity with nested entities, create method generated incorrectly

    For the sake of this question, assume I have two entities: Header, and LineItem.  The Header has 0..n LineItems.  I've modeled this in the CAS by creating two entities, with a nested relationship between teh two.  Tables were created correctly, everything looks fine.  I then created an Application Service, which uses the Header an LineItem entities.  I created CRUD methods for the Header object; when selecting the types to be included as part of the create method, I selected Header details, as well as the list of LineItem's.
    The generated create method (the _R version), however, does not have the correct method signature.  It looks like this:
    public xxx..Header_R createHeader_R(java.lang.String[] lineItems) throws  ...
    Why is lineItems declared as String[] instead of LineItem[]?  All objects have been marked as remote enabled, so that's not the issue.  Is this a bug, or a feature?
    The other CRUD methods only expose the Header, so I could exclude the LineItem from the create, and just perform an update after the create, but I'd rather not have to create objects in two steps.
    Anyone else run into this situation?

    Hello Ken!
    CRUD operations usually belong to the Entity Services that are generated for the business objects you modelled.
    Based on these Entity Services you can implement custom Application Services which can be provided with any signature you want them to have.
    Any Application Service has to be implemented by you. Thereby, you can rely on the Entity Services generated for your business objects.
    If you want to deal with sets of objects like line items, you should model a set type LineItemList or so which wraps the set of items. Otherwise, you won't be able to expose your Application Service as a Web Service.
    You could now implement an Application Servcie operation which takes a Header object as well as a LineItemList object as input parameters. However, it is questionable if you should deal with multiple business object types in one Application Service operation. Implementing multiple operations which rely on keys might result in a better design.
    Best regards
    Alexander

  • Create GR with with RG23D using BAPI or FM

    Hi,
      We are using the 'BAPI_GOODSMVT_CREATE' to create the GR with this, the GR is created properly, I want to know along with creating the GR can we capture the excise inovice with BAPI, for depot plant. there si one BAPI 'BAPI_EXCINV_CREATE_FROMDATA'  can you give the link how this can be use to create the excise inovice some field ECESS and AT1 not there in this BAPI.
    regards,
    zafar

    Hi,
        Thanks for your reply.
        My requirement is we want to upload the initial stock in depot plant. as the plant is depot we want to upload the excise invoice of the material along with material as the qunaity of invoces are more around 3000 with 30 to 40 ietms in each invoice for making a GR with movement type 561 I have made the BDC now for each GR i want to capture the excise inovice with J1IG as there is no BAPI or FM for J1IG  so which method can be use for this wihout BDC, BDC is one method but it will be difficult as some invoice have the AED, some inovices doest not have also it required to press the tab button.
    regards,
    zafar

  • ALBPM5.7: Using ALUI with struts application??

    I have a fully functional struts application that uses PAPI to interact with ALBPM5.7. Now I want to Expose all UI screens on the portal server. This need not be portlets, rather using ALUI framework/ EDK to wrap the UI JSPs and expose them in our portal
    Can I reuse my Struts Application with ALUI in some way.
    Thanks.
    Edited by [email protected] at 12/11/2007 9:49 PM

    Ravinder,
    Yes, of course you can bring your struts web application on ALUI portal as a portlet.In general, any web application running either on remote server or ALUI server can be brought up to the ALUI portal.
    If your Struts application is running on the remote server ,here is the steps to view this application on ALUI Portal :
    Login to your ALUI admin ( http://<hostname>:<portnumber >/portal/server.pt(like http://yh759.yashind.com:7001/portal/server.pt) with Administrator as userid(no password required by default)
    Create a Remote server in ALUI where you need to have the info of your Struts application server info
    Create a remote webservice for portlet
    Create a portlet out of that remote webservice
    Put this portlet on any page.
    Alo you can find the online help on ALUI admin conosle for doing all the above steps.
    Thanks
    Bishnu
    Regards
    Bishnu

Maybe you are looking for

  • Property propagation report error

    Hi All, I am getting folllowing message while trying 'CM->Classification->Reports->Mass Opertaions->Property Propgation' Invalid Item ID documents/ABC%20Content/Test%20Classify/testDoc1.txt The item you are attempting to access does not exist.  Check

  • Performance Issue - higher fetch count

    Hi, The database version is 10.2.0.4. Below is the tkprof report of an application session having performance issue. We shared the screens of application team and were able to see the lag in report generation. It shows an elapsed time of 157 seconds,

  • TS1717 I keep getting an "unknown error -42408 message and it won't let me buy music?

    I keep getting an "unknown error-42408" message when I try to buy music - it then tells me to try again later, which I have done. 

  • Camera import settings (Nikon D300)?

    How can my Nikon D300 photos all be imported with adjustments to black, brightness, and contrast?  Is this an automatic setting (or something I have done mistakenly)? I have used LR for many years, 25,000+ pictures, and many cameras.  When I started

  • Basic help needed for an irish man.please

    can anyone tell me why even when i securely empty trash i still have very little memory on my powerbook g4