How to remove Existing dll while deploying biztalk schemas

Hi Friends,
How to remove Existing dll while deploying biztalk schemas.
am getting error property schema dll is being used by other person.just like that..
Thanks & Regards
Rajiv

Goto BizTalk admin console -- > If you know the BizTalk application where this dll is already deployed, select that application. Otherwise select "All Artifacts" --> Select "Resources" folder --> And remove the dll of the above property schema project
by right clicking on the Artifacts and select remove
Other option is go to "Schemas" folder of the above BizTalk application (again in admin console),  --> select the schema ---> right click the schema you wan to remove  (Property schema) and click remove.
If this answers your question please mark it accordingly. If this post is helpful, please vote as helpful by clicking the upward arrow mark next to my reply.

Similar Messages

  • How to remove existing password in PDF file?

    I am using Acrobat 6.0, and would like to know on how to remove existing password in PDF file.
    When I try to open the PDF and saveas file using another name, it would not work.
    Does anyone have any suggestions?
    Thanks in advance for any suggestions

    File > Properties. Then under Security change Security method to None; enter the Control password when prompted. Then Save As.

  • How to remove existing apple id from ipad 2

    HOW TO REMOVE EXISTING APPLE ID FROM IPAD 2 THAT I BOUGHT FROM THE FIRST OWNER

    If you are trying to activate an iPad or iPhone and it is asking for a previous owners Apple ID and password, you have encountered the Activation Lock. This is a security feature that prevents thieves from setting up and using a stolen or lost iPad or iPhone. You have no alternative. No must contact the previous owner to get permission to use the device. If you cannot contact the previous owner return the device to where you bought it and get a refund. You will never be able to activate the device and no one can help you do it.

  • How to remove special characters while typing data in edit cell in datagrid in flex4

    Hi Friends,
    I am facing this problem "how to remove special characters while typing data in edit cell in datagrid in flex4".If know anyone please help in this
    Thanks,
    Anderson.

    Removes any characters from
    @myString that do not meet the
    provided criteria.
    CREATE FUNCTION dbo.GetCharacters(@myString varchar(500), @validChars varchar(100))
    RETURNS varchar(500) AS
    BEGIN
    While @myString like '%[^' + @validChars + ']%'
    Select @myString = replace(@myString,substring(@myString,patindex('%[^' + @validChars + ']%',@myString),1),'')
    Return @myString
    END
    Go
    Declare @testStr varchar(1000),
    @i int
    Set @i = 1
    while @i < 255
    Select
    @TestStr = isnull(@TestStr,'') + isnull(char(@i),''),
    @i = @i + 1
    Select @TestStr
    Select dbo.GetCharacters(@TestStr,'a-z')
    Select dbo.GetCharacters(@TestStr,'0-9')
    Select dbo.GetCharacters(@TestStr,'0-9a-z')
    Select dbo.GetCharacters(@TestStr,'02468bferlki')
    perfect soluction

  • How to import existing dll in C/C++ code

    Hi guys, I'm new here..I'm still student and do training at one company...my boss ask me to do integration java with C/C++ using JNI...
    I very understanding how to do JNI tools for HelloWorld because all tutorials in internet teach me how to create dll for native code..but the problems came when my boss ask me to make with existing API...and i'm tried to search tutorial for existing dll but i can't find...my boss asked me to not use callback function in code...just put null value only...
    so, I will give you guys the code that related with my project...hope you guy can teach me as beginner..first of all, i already create java file that I named it as TestMMMReaderHighLevelAPI3.java where its coding likes below:
    public class TestMMMReaderHighLevelAPI3{
         static{
                   System.out.println("inside static block");               
                   try{
                        //System.loadLibrary("MMMReaderHighLevelAPI"); //can't find dependent library -maybe ini bukan native
                                System.loadLibrary("MMMReader_Initialise_L3"); //no this file in java.library.path -have problem when to rebuild all     
                                System.out.println("Loaded MMMReaderHighLevelAPI DLL");
                   }catch(UnsatisfiedLinkError e){
                        System.out.println("Couldn't load MMMReaderHighLevelAPI DLL");
                        System.out.println(e.getMessage());
         public static void main(String[] args){
              TestMMMReaderHighLevelAPI3 t = new TestMMMReaderHighLevelAPI3();
              try{
                   t.MMMReader_Initialise_L3();
                   System.out.println("MMMReaderHighLevelAPI DLL method invoked!");
              }catch(UnsatisfiedLinkError e){
                   System.out.println("Couldn't Access MMMReaderHighLevelAPI DLL method");
                   System.out.println(e + "");
            public native long MMMReader_Initialise_L3();
    }the code above mention two dll which is MMMReaderHighLevelAPI and MMMReader_Initialise_L3 where its existing API and non-existing dll respectively...
    after i compile this java file, i create header by using command javah -jni TestMMMReaderHighLevelAPI3
    the header file is likes below (TestMMMReaderHighLevelAPI3.h) :
    /* DO NOT EDIT THIS FILE - it is machine generated */
    #include <jni.h>
    /* Header for class TestMMMReaderHighLevelAPI3 */
    #ifndef _Included_TestMMMReaderHighLevelAPI3
    #define _Included_TestMMMReaderHighLevelAPI3
    #ifdef __cplusplus
    extern "C" {
    #endif
    * Class:     TestMMMReaderHighLevelAPI3
    * Method:    MMMReader_Initialise_L3
    * Signature: ()J
    JNIEXPORT jlong JNICALL Java_TestMMMReaderHighLevelAPI3_MMMReader_1Initialise_1L3
      (JNIEnv *, jobject);
    #ifdef __cplusplus
    #endif
    #endifNow, in my directory have 3 files which is TestMMMReaderHighLevelAPI3.java, TestMMMReaderHighLevelAPI3.class and TestMMMReaderHighLevelAPI3.h.....then I try to create MMMReader_Initialise_L3.c.....and for your information, I have problem at this area since I'm more to Java guy...at this file, I tried to call existing API which named MMMReaderHighLevelAPI where in this API contained MMMReader_Initialise function inside it....I tried to call this function by MMMReader_Initialise_L3.c but I dont know to do...
    #include <jni.h>
    #include <stdio.h>
    #include "TestMMMReaderHighLevelAPI3.h"
    //#include "MMMReaderHighLevelAPI.h"
    //#include "MMMReaderHighLevelAPI.lib"
    //#include "MMMReaderHLDataCallback.h"
    //#include "MMMReaderEventCallback.h"
    //#include "MMMReaderErrorCallback.h"
    //#include "MMMReaderCertificateCallback.h"
    //is'it  MMMReaderHighLevelAPI.dll need include in cpp code
    JNIEXPORT jlong JNICALL
    Java_TestMMMReaderHighLevelAPI3_MMMReader_Initialise_L3(JNIEnv *env, jobject obj)Library "MMMReaderHighLevelAPI"
             printf("Successful");
             return;
    };i tried to rebuild all, but have problem at Java_TestMMMReaderHighLevelAPI3_MMMReader_Initialise_L3(JNIEnv *env, jobject obj)Library "MMMReaderHighLevelAPI" where two syntax are message:
    1) syntax error before "Library"
    2) [Build Error] [MMMReader_Initialise_L3.0] Error 1
    i have stuck in this part....i dont know how to call existing function in existing API under MMMReader_Initialise_L3.c....do you guys have idea to solve my problem....i repeat back, my boss want me initialise hardware machine with computer/laptop...my boss give clue, he dont want callback function..just use null....below are code for MMMReader_Initialise in MMMReaderHighLevelAPI.h:
    MMM_READER_HIGH_LEVEL_API MMMReaderErrorCode MMMReader_Initialise(
         MMMReaderHLDataCallback aDataCallback,
         MMMReaderEventCallback aEventCallback,
         MMMReaderErrorCallback aErrorCallback,
         MMMReaderCertificateCallback aCertCallback,
         bool aProcessMessages,
         bool aProcessInputMessages,
         void *aParam
    );then its came when to declare parameter for MMMReader_Initialise_L3 in native code...i have two coding to show here...and please give me what item that i need to use :
    public native long MMMReader_Initialise_L3();or
    public native long MMMReader_Initialise_L2(String a, String b, String c, String d, boolean e, boolean f, boolean g);and my last question, in System.loadLibrary(*); which dll that i need insert....either existing dll(MMMReaderHighLevelAPI) or the creating dll(MMMReader_Initialise_L3)....thats all...thank you for spend your time read my problem...i very appreciate..hope you guy can help me...
    Edited by: EJP on 12/07/2012 18:24: added {noformat}{noformat} tags: please use them.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    Moderator action:
    JNIEXPORT jlong JNICALL Java_TestMMMReaderHighLevelAPI3_MMMReader_Initialise_L3(JNIEnv *env, jobject obj)Library "MMMReaderHighLevelAPI"The part after the ')' is obviously a cut and paste error. Remove it.
    If you're not a competent C or C++ programmer you shouldn't be attempting this.
    As the question is 99% off topic, and as you have shown little understanding of that, let alone the actual topic, I am now locking it.
    Edited by: EJP on 17/07/2012 18:47

  • Getting Duplicate Object existing issue while deploying the BIAR file

    Hi All,
    We are trying to deploy BIAR File with XI R2 Command tool InstallEntSdkWrapper. But we are getting Duplicate Object exixting issue while deploying the BIAR file.
    Error Message:
    [report] [InstallEntSdkWrapper.main] Connecting to CMS plmdevapp31:6400 as administrator
       [report] [InstallEntSdkWrapper.CmsImportFile] Exception: An error occurred at the server :
       [report] Failed to commit objects to server : Duplicate object name in the same folder.
       [report]
       [report] [InstallEntSdkWrapper.main] BIAR File could not be imported
    If we are doing any promition with Import Wizard we have an option to "Overwrite object contents" option to overwite exixting objects. It will very helpful if any one suggest how we can achieve this through InstallEntSdkWrapper.
    Unfortunately there is no documentation availabe on InstallEntSdkWrapper.
    Cheers!

    That's a limitation with the XI Release 2 InstallEntSdkWrapper.jar tool.
    Sincerely,
    Ted Ueda

  • How to remove existing OCR in batch processing?

    I don't see that there is a way to remove existing OCR in batch processing. Could you please let me know if it is available somewhere, or it is indeed not available?

    Bill@VT wrote:
    It can be removed, but not easily. If you used clearscan your only choice is to print to another file, but that does not fix anything that got messed up. You can not really back out of the Clearscan format. This is one of the reasons the warnings are given about the permanent changes you are about to do. If you used searchable OCR, then you should be able to delete the text layer and then use save as to only retain the scans.
    I think that you may misread my question. I know how to remove OCR for a single pdf with searchalbe image OCR option (examine pdf then remove hidden text). But I want to do so in "batch processing" as I have many pdf files need to be processed.

  • How to remove existing infoobject from infosource?

    I was added one infoobject Z01 into DSO ZDSO01 and Infosource 2LIS_08TRTLP
    , and did mapping in the transfer rule. Now I removed Z01 from DSO ZDSO01, but I'm unable to remove Z01 from infosource.
    System show me error message like:
    The InfoObject ZO01 is still used in the following places: In routine xxxxxxxxxxx of the update rules for Data Target ZDSO01 InfoSource 2LIS_08TRTLP
    Anyone know how to remove Z01 from DSO ZDSO01 in my case.
    Thanks,
    Sudree

    Hi,
    I tried replicating your scenario and got the same error like you. I guess you did not follow the below mentioned steps in sequence.
    1) Delete the infoobject from DSO and activate it. This would put your update rules in revised status.
    2) Reactivate your update rules.(if you dont perform this step, system automatically compares with the last activated update rule, where your infoobject was used, therefore it gives the error)
    3)Remove the transfer rule for this infoobject.
    4) Delete the infoobject from communication structure.
    This should work.

  • How to remove kwrd.dll???

    when i remove kwrd.dll, system WILL NOT reboot. I have to use my recovery disk.

    Do a malware check with some malware scan programs. You need to scan with all programs because each program detects different malware. Make sure that you update each program to get the latest version of the database before doing a scan.
    * http://www.malwarebytes.org/mbam.php - Malwarebytes' Anti-Malware
    * http://www.superantispyware.com/ - SuperAntispyware
    * http://www.microsoft.com/windows/products/winfamily/defender/default.mspx - Windows Defender: Home Page
    * http://www.safer-networking.org/en/index.html - Spybot Search & Destroy
    * http://www.lavasoft.com/products/ad_aware_free.php - Ad-Aware Free
    See also "Spyware on Windows": http://kb.mozillazine.org/Popups_not_blocked and Searches are redirected to another site

  • How to solve the error while  Deploy a BC4J JSP Application using tomcat,

    hello,
    how to avoid the following error?
    i am using jdevloper for devloping jsp applications.
    after that i am calling the jsp page using tomcat4.0 ,i followed the steps according docs by jdev team,
    i am getting the following error how to solve this,
    can one help?
    =============================
    type Exception report
    message Internal Server Error
    description The server encountered an internal error (Internal Server Error) that prevented it from fulfilling this request.
    exception
    org.apache.jasper.compiler.CompileException: /AccountView_Browse.jsp(4,0) Unable to load class oracle.jbo.html.jsp.datatags.ApplicationModuleTag
    at org.apache.jasper.compiler.TagBeginGenerator.init(TagBeginGenerator.java:139)
    at org.apache.jasper.compiler.JspParseEventListener$GeneratorWrapper.init(JspParseEventListener.java:829)
    at org.apache.jasper.compiler.JspParseEventListener.addGenerator(JspParseEventListener.java:153)
    at org.apache.jasper.compiler.JspParseEventListener.handleTagBegin(JspParseEventListener.java:1039)
    at org.apache.jasper.compiler.DelegatingListener.handleTagBegin(DelegatingListener.java:221)
    at org.apache.jasper.compiler.DelegatingListener.handleTagBegin(DelegatingListener.java:216)
    at org.apache.jasper.compiler.Parser$Tag.accept(Parser.java:852)
    at org.apache.jasper.compiler.Parser.parse(Parser.java:1145)
    at org.apache.jasper.compiler.Parser.parse(Parser.java:1103)
    at org.apache.jasper.compiler.Parser.parse(Parser.java:1099)
    at org.apache.jasper.compiler.ParserController.parse(ParserController.java:214)
    at org.apache.jasper.compiler.Compiler.compile(Compiler.java:210)
    at org.apache.jasper.servlet.JspServlet.loadJSP(JspServlet.java:548)
    at org.apache.jasper.servlet.JspServlet$JspServletWrapper.loadIfNecessary(JspServlet.java:176)
    at org.apache.jasper.servlet.JspServlet$JspServletWrapper.service(JspServlet.java:188)
    at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:381)
    at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:473)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:243)
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:190)
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566)
    at org.apache.catalina.valves.CertificatesValve.invoke(CertificatesValve.java:246)
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:564)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
    at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2347)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180)
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566)
    at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:170)
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:564)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:170)
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:564)
    at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:468)
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:564)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174)
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
    at org.apache.catalina.connector.http.HttpProcessor.process(HttpProcessor.java:1027)
    at org.apache.catalina.connector.http.HttpProcessor.run(HttpProcessor.java:1125)
    at java.lang.Thread.run(Thread.java:536)
    ====================
    thanks
    pullareddy

    I had very similar problems with adding the correct JDeveloper .jar files to Tomcat's lib folder, but did eventually resolve my issues.
    The problem I am having now, however, is the following error message:
    Error Message: oracle.jbo.html.RequestParameters.addParameter(Ljava/lang/String;Ljava/lang/String;)V
    Yes, I have deployed the bc4jhtml.jar file from JDeveloper to Tomcat\common\lib!
    My web-app is a very simple BC4J JSP application. I have one BC4J component in its own project and JAR file, and one JSP referencing that BC4J component - I deploy the BC4J JAR along with the WAR file from the JSP project. Needless to say, the JSP works fine within JDeveloper..!
    I'm using JDev 9.0.3 and Tomcat 4.1.12. Does anyone have any suggestions?
    Thanks,
    S.

  • How to remove ANT Validation while Compiling SCA or BPEL in 11.1.1.4

    SOA/SCA/BPEL Gurus,
    As you know, sometimes we have to use the runtime WSDL URL directly in the BPEL process when invoking an external web service (say OSB). But then the service needs to be always available when deploying thru' ANT script as it validates and compiles. It has been a big problem whenever I deploy the BPEL if the invoking service (OSB) is down. On the other hand, the OSB deploys fine using ANT when the SCA is down.
    I am expecting the BPEL should throw an error only at the runtime but not at design or deployment time like OSB.
    Now my question is,
    Though we all know we can resolve this by importing the WSDL/XSD to the project, I would like to know if there is a way to Disable/Remove the Validation part in the ANT Script so that it can create the jar/sar file and deploy to the server.
    FYI -
    The error is thrown out from ant-sca-compile.xml and the target is <target name="scac" description="Compile and validate a composite">
    Please help !!!
    Thanks
    Bala
    Edited by: 805364 on Mar 11, 2012 9:01 PM

    Bala,
    On the other hand, the OSB deploys fine using ANT when the SCA is down. OSB always needs a local copy of WSDL/XSD. It never references any WSDL/XSD over network at design,deployment or runtime.
    I am expecting the BPEL should throw an error only at the runtime but not at design or deployment time like OSB. For building and validating the process components at deployment time, XSD/WSDL's must be available otherwise server may end up deploying incorrect/invalid configurations. So I don't think SOA is doing anything unexpected. In case you don't want to import artifacts into project then you have two other options -
    1. Use MDS for sharing artifacts
    2. Use UDDI (Universal Description Discovery and Integration). Oracle recommends Oracle Service Registry 11g (OSR). The advantage is that you can use OSR and SOA Suite in a Shared WebLogic Domain.
    Regards,
    Anuj

  • How to remove existing keywords during import?

    I have tried to find a way to NOT import existing keywords present in files that are already on my system, when I am importing those files into my library. They mess up my existing keyword structure and I just want to ignore them during import. I tried to enter an empty keyword text area with checkbox ticked in the template I apply during import, but that doesn't do the trick for reasons I don't comprehend. Any clues?

    To tell you the truth, I don't think the Lighroom Import function has the capability of removing keywords.
    Your choices seem to be ...
    Remove keywords after import, in which case you would also have to remove the unwanted keyword from your hierarchy
    Use freeware tools like Geosetter or Exiftool to remove the keywords from your photos before importing

  • How to remove white fade while navigating between pages?

    I created small web page with 4 buttons which each of them leads to other page eg., Home,Gallery, Contacts,Reviews, but when i'm navigating between them there is annoying white flash! Is it possible to remove it?
    P.S. I uploaded my site to businesscatalyst Home
    Thank you!

    That is so strange, I just tried on my OS X Safari and WIN 7 Chrome and everything just fine, but when I'm trying on same OS X Chrome it has white flash while transitioning through navigation. Thanks anyway mac_heibu!

  • How to remove build errors while creating an Order App. for Handhelds

    Hi Friends,
    As per the Tutorial: Developing an Order Application for Handhelds provided at the given link http://help.sap.com/saphelp_nwmobile71/helpdata/en/8F/0B674240449C60E10000000A1550B0/frameset.htm
    I am creating mobile application for PDA . I have finished many steps but at one step I am getting build errors.
    The step is when we create service and paste the code provided in the document.
    public void generateTestData() {
    //@@begin implementation
          if( !(((Order_srvModel)OcaRoot.getInstance().getModel(Order_srvModel.class)).getOrderOrderheaders().size() > 0))
             OrderOrderheader order = ((Order_srvModel)OcaRoot.getInstance().getModel(Order_srvModel.class)).createOrderOrderheader();
             order.setOrderid("0023378");
             order.setLongtext("Repair front door");
             order.setServiceunit("SU01");
             order.setCreatedOn(Date.valueOf("2007-06-30"));
             order.setCreatedAt(Time.valueOf("08:45:00"));
             order = ((Order_srvModel)OcaRoot.getInstance().getModel(Order_srvModel.class)).createOrderOrderheader();
             order.setOrderid("0024897");
             order.setLongtext("Analyse malfunction");
             order.setServiceunit("SU01");
             order.setCreatedOn(Date.valueOf("2007-07-01"));
             order.setCreatedAt(Time.valueOf("09:00:00"));
             order = ((Order_srvModel)OcaRoot.getInstance().getModel(Order_srvModel.class)).createOrderOrderheader();
             order.setOrderid("0034534");
             order.setLongtext("Repair escalator");
             order.setServiceunit("SU03");
             order.setCreatedOn(Date.valueOf("2007-07-03"));
             order.setCreatedAt(Time.valueOf("19:45:00"));
             order = ((Order_srvModel)OcaRoot.getInstance().getModel(Order_srvModel.class)).createOrderOrderheader();
             order.setOrderid("0024589");
             order.setLongtext("Analyse computer problem");
             order.setServiceunit("SU04");
             order.setCreatedOn(Date.valueOf("2007-07-01"));
             order.setCreatedAt(Time.valueOf("15:45:00"));
             order = ((Order_srvModel)OcaRoot.getInstance().getModel(Order_srvModel.class)).createOrderOrderheader();
             order.setOrderid("0027890");
             order.setLongtext("Repair door lock");
             order.setServiceunit("SU03");
             order.setCreatedOn(Date.valueOf("2007-07-05"));
             order.setCreatedAt(Time.valueOf("10:00:00"));
             OcaRoot.getInstance().commit();
    //@@end
    The issue is I am getting a red line below each set methods as I have shown by underlining. I am struggling with how to rectify the error.When I write ORDER and write . after it , it shows only get methods in the popup not the set methods.
    Please suggest .
    It will be a great help.
    Regards,
    Nitesh

    Hi Nitesh
    Check if the data object you created is bi directional in DOE?
    Regards
    Vidyadhar

  • How to remove boot options while booting in mac with the options key

    I've just installed windows trough bootcamp, but somethings went little bit wrong,
    Everythings works fine, mac works and windows 7 works properly. But when i hold down the option key while booting i dont have the normal 3 options (Mac, Windows, Mac Restore). I now see these options (MAC, Windows, Windows, Windows efi, mac restore).
    MAC -> works fine
    1e windows -> (error no operating system installed)
    2e windows -> works fine
    3e Efi windows (boots into mac)
    MAc restore -> works fine
    So is there an way to clean up these options?
    Thanks

    You think someone will use Boot Camp Assistant?
    EFI is / was always there. Sometimes it shows up (from using Disk Warrior).
    Windows has its own 100MB system reserved as well that is the boot area.
    I'd start with Lion Recovery, show hidden features and partitions, and check the health of all, and repair HFS volume.
    Also try your Windows DVD and see if it sees a problem.

Maybe you are looking for

  • Photoshop CS5 serial number not working?

    I bought and downloaded Photoshop CS5 from this site about two years ago, and since then have purchased a new computer. I want install CS5 on this new computer, but my account isn't listing CS5 under my lists of products. When I try and register the

  • HT204382 how can i see movies in quicktime?

    How can I see movies in Quicktime?

  • Upload and Download of files

    I am working on a web site development work. I am working with STRUTS framework tht is made over the jsp tag library..Can any one help me about how to upload and download files from server and to the server.If possible using struts framework. Pls do

  • PR00 Condition is missing in web ui

    Hi we have the scenario in crm like opportunity management , quotation analysis where in pr00 condition we have to input . pr00 condition is mandatory in all the transactions in crm . for this reason pr00 we maintained as mandatory in the pricing pro

  • Premiere Pro Reinstallation Issues

    I've recently uploaded Premiere Pro CC to my Mac. After battling with playback issues and the constant quitting and retrying to the program, I decided to reboot and to uninstall Premiere Pro in hopes that I can reinstall it. I try to reinstall the pr