Doubts in oraclespatial-ora29902-errorcode-urgent

hi,
this is srikanth.v here. my doubt is that
while drawing maps in counties and in
interstates ie whilw selecting it to draw
it is showing ora-29902 error ie server objectcould not be created,serverobject
couldnot be initialised and error in
executing odciiindexstart() routine.
kindly reply back immediately.
srikanth.v

Similar Messages

  • Doubt using CastorMapping...Urgent.......

    hi guys....
    i'm new to castor. i have to generate the xml using namespace uri with attribute like..
    <pre:MyRequest xmlns:pre="http://...." type="MyList">
    <message>
    <mymessage/>
    </message>
    </pre:MyRequest>
    code of my castor xml
    <class name="ListRequest">
    <map-to xml="MyRequest" ns-uri="http:.." ns-prefix="pre" />
    <field name="type" type="java.lang.String">
    <bind-xml name="type" node="attribute"/>
    </field>
    <field name="message" type="Wrapper">
    <bind-xml name="message" node="element"/>
    </field>
    </class>
    when i run my java coding the xml has generated like as follows..
    <pre:MyRequest type="MyList" xmlns:pre="http://...." >
    <message>
    <mymessage/>
    </message>
    </pre:MyRequest>
    what my doubt is i the attribute of type should be come after the namespace.. how to do this.. plz give me ur valuable suggestion. its need very urgent.
    thanx in adv with reg
    DJ

    hi guys....
    i'm new to castor. i have to generate the xml using namespace uri with attribute like..
    <pre:MyRequest xmlns:pre="http://...." type="MyList">
    <message>
    <mymessage/>
    </message>
    </pre:MyRequest>
    code of my castor xml
    <class name="ListRequest">
    <map-to xml="MyRequest" ns-uri="http:.." ns-prefix="pre" />
    <field name="type" type="java.lang.String">
    <bind-xml name="type" node="attribute"/>
    </field>
    <field name="message" type="Wrapper">
    <bind-xml name="message" node="element"/>
    </field>
    </class>
    when i run my java coding the xml has generated like as follows..
    <pre:MyRequest type="MyList" xmlns:pre="http://...." >
    <message>
    <mymessage/>
    </message>
    </pre:MyRequest>
    what my doubt is i the attribute of type should be come after the namespace.. how to do this.. plz give me ur valuable suggestion. its need very urgent.
    thanx in adv with reg
    DJ

  • Some J2ME midlets doubts!! help needed urgently!!!

    Hi,
    I am currently working in a company where it does wireless technology like WAP and I am assigned a task of creating a screensaver midlet. I have some doubts on the midlets.
    1) How do i use a midlet suites? From what I heard from my colleagues & friends, a servlet is needed for midlets to interact with one another. is it true?
    2) How do I get the startin midlet to take note the phone is idling so that the screen saver midlet can be called?
    Help needed urgently... if there is any source codes for me to refer to would be better... Thanks...
    Leonard

    indicates that MIDlet suites are isolated (on purpose) from each other, so you can't write over another one's address space.
    Also, I believe (at least on cell phones) that you have to specifically enter the Java Apps mode; unless you do the app won't execute. If you are in Java apps mode and a call comes in, the cell's OS puts the Java app currently executing on "Pause" mode and switches back to phone mode.
    Not sure if you will be able to have a Java app do that automatically.
    BTW why do you need a screensaver on an LCD display? Is it really intended to show an advertisement?
    Download and real all the docs you can from Sun, once you get over the generic Java deficiencies MIDlet's aren't that hard.

  • I have doubt in multiselection..Its urgent

    Hi All,
    I have a table having four fields...They are
    1> DocumentNo.
    2> Amount
    3> Description
    4> Date
    I have to implement multiple selection.
    And if the amount is negative then I have to display a message"Installment Plan cant b created"
    And on multiselection or on single selection I will be passing the documentno to the BAPI.
    I have implemented the logic..But its not working.
    So as per the requirement,I need it urgently..Kindly help me with the logic and the code snippet
    Regards
    DK

    Hi Armin,
    This is my code..
    if(element != null){
         tableInstallAmount = element.getAMOUNT();
         for(int i= 0; i< sizeOfOpen; i++){
              if(tableInstallAmount.intValue()>0){
               if(wdContext.nodeOPENITEMS_open().isMultiSelected(i)|| selectedRow == i){
                   SetKeyValues[0].setDOC_NUMBER(wdContext.nodeOPENITEMS_open().getOPENITEMS_openElementAt(selectedRow).getDOC_NO());
                   wdContext.currentContextElement().setInstalStatus(true);
           }else{
              contextElement.setInstalStatus(false);
              wdContext.currentContextElement().setErrorMsg("Installment Plans cannot be created for negative open amounts!");
              IWDWindowInfo windowInfo = (IWDWindowInfo)wdComponentAPI.getComponentInfo().findInWindows("CreateErrorMessage");
              IWDWindow window = wdComponentAPI.getWindowManager().createWindow(windowInfo,true);     
              window.setWindowPosition(300,400);
              window.open();
              wdContext.currentContextElement().setWindowInstance(window);     

  • Doubt in setting values-- very urgent - please!

    hai,
    i am creating a java bean ..
    public void setTitle_cont(String proj_title_cont[])
         for(int i=0;i<3;i=i+1)
         this.proj_title_cont[i] = proj_title_cont;
    public String getTitle_cont()
    {//error come here - says "missing return statement"
         for(int i=0;i<3;i=i+1)
         return proj_title_cont[i];
    setTitle_cont() is working fine..but getTitle_cont() shows error...
    can anyone please help out..its very urgent..
    thanx in advance
    regards
    koel

    Your code looks strange, it contains some errors. First of all, what does your set...() method do? You have a for-loop that does the same thing 3 times. Your get...() method has a return inside a for-loop. That makes no sense; the method will return at the first iteration.
    What is the type of the member variable proj_title_cont? Is it a strring array (String[]) or a single string (String)?
    You probably wanted to do something like this:
    // member variable
    private String[] proj_title_cont;
    public void setTitle_cont(String[] proj_title_cont)
      this.proj_title_cont = proj.title.cont;
    public String[] getTitle_cont()
      return this.proj_title.cont;
    }Jesper

  • Doubt in getting values-- very urgent - please!

    hai,
    i am creating a java bean ..
    public void setTitle_cont(String proj_title_cont[])
    for(int i=0;i<3;i=i+1)
    this.proj_title_cont = proj_title_cont;
    public String getTitle_cont()
    {//error come here - says "missing return statement"
    for(int i=0;i<3;i=i+1)
    return proj_title_cont;
    setTitle_cont() is working fine..but getTitle_cont() shows error...
    can anyone please help out..its very urgent..
    thanx in advance
    regards
    koel

    Your getter method should be:
    public String[] getTitle_cont()
       return proj_title_cont;
    }

  • Taxes in pricing procedure

    Hello friends,
    My client requirement is in invoice he wants to see taxes seperately .for example total line items value is 10,000.00
    On this amount he wants to see VAT , TOT , service tax, octroi tax seperately.
    suppose total amount of all line items is 10,000.00
                       turnover tax         TOT 1%        100.00
                                               VAT  4%         400.00
                                               OCTROI  .5%     50.00
                                               Total              10,550.00
    client wants to see this at invoice level in the same way like above.
    is it possible?, if possible how can we do it in SAP-SD pricing procedure.
    Please clarify my doubt, please consider it as urgent.
    Otherwise suggest me that at invoice level I will show 10,000.00 at net value and at tax field 550.00. for this what I have to do?how to include all the three taxes and put it in one field.please clarify my doubt.
    regards,
    Sekhar_sd consultant.
    Regards,
    Sekhar_SD consultant.

    Dear Shekhar,
    As i can understand from your question you have three different types of taxes and you want to add all the three as a single tax type in your  pricing procedure.
    Then goto your Pricing Procedure and check whether you have all the three Tax Condition types in your Pricing Procedure.
    For Example if you have the three Tax Conditions in the STEP lets say 100, 110, 120 then in the Net price in your Pricing Procedure give From & To as 100 & 120. By this system will understand that this three Condition types have to be added.
    I think this will solve your Problem.
    Revert back if you have any doubts.
    Reward if helpful.
    Regards
    PAVAN.

  • Different locking statements

    what can be the different types of locking statements in a Oracle Developer application. Two forms of locking i use are:-
    a) FOR UPDATE OF COLUMN_NAME NOWAIT;
    B) FOR UPDATE OF COLUMN_NAME;
    I hope my question is clear. Please help in solving my doubt as it is very urgent.

    are all records in the table locked? or is there another filter condition
    alternatively
    After the update statement ... issue commit/rollback

  • Urgent: Doubt in coding a logic

    Hi Experts,
    I have a doubt in coding a logic . The bussiness requirement is that i have to capture a string of alphabets and check for particular alphabet in particular position and then process the rest of the logic.
    the logic is given below , can anyone suggest me coding for this logic .Its very urgent . points will be rewarded.
    Logic:
    If 1st letter is D then
        If 3rd letter of DPVERSION is:
            A --> Asia (like DPA0202)
            C --> EMEA (like DPC0111)
            L --> Latin America LA (like DPL0502)
            N --> North America NA (like DPN0408)
            W --> EMEA (like DPW0207)
            D then
                if 4th letter is:
                    A --> Asia (no example yet)
                    C --> EMEA (no example yet)
                    L --> Latin America LA (no example yet)
                    N --> North America NA (like DPDN01TH)
                    W --> EMEA (like DPDW09TH)
                End If
          End If
    Else if 1st letter is X then:
         If 2nd letter of DPVERSION is:
            A --> Asia (no example yet)
            C --> EMEA (XEHC_RTF)
            L --> Latin America LA (no example yet)
            N --> North America NA (XNFAB_RTF)
            W --> EMEA (no example yet)
        End If
    End If
    Thanks in advance
    Kumaran

    Hi, I think you can adopt offset logic.
    assign character value to a variable  like string+2(3) = char
    then use case statement
    case char
    when 'A'
    write ASIA
    when--
    End case.
    Like this u can approach . 
    Hope this helps
    Regards
    Pavan

  • Doubt in ORA_FFI(Its urgent)

    Hi,
    I've created a test.dll which contains caps func as follows:
    int caps()
         int * ptr=0x417;
         if (*ptr==64)
              return 1;
    else
    return 0;
    Then I called this func through ORA_FFI package..
    DECLARE
    dll_handle ORA_FFI.LIBHANDLETYPE;
    winexec_handle ORA_FFI.FUNCHANDLETYPE;
    vn_ret PLS_INTEGER;
    FUNCTION Runp( handle IN ORA_FFI.FUNCHANDLETYPE)
    RETURN PLS_INTEGER;
    PRAGMA INTERFACE(C, Runp, 11265);
    BEGIN
    break;
    dll_handle := ORA_FFI.REGISTER_LIBRARY(NULL,'test.dll');
    winexec_handle := ORA_FFI.REGISTER_FUNCTION(dll_handle,'caps');
    ORA_FFI.REGISTER_RETURN(winexec_handle,ORA_FFI.C_INT);
    vn_ret := Runp(winexec_handle);
    IF vn_ret = 2 THEN
    MESSAGE('Cannot find file ' );
    END IF;
    EXCEPTION WHEN OTHERS THEN
    FOR i IN 1..Tool_Err.NErrors LOOP
    message(Tool_Err.Message);
    Tool_Err.Pop;
    END LOOP;
    END;
    When I debug this code,It gives error as caps func not found in test.dll.
    But the only func in test.dll is caps..
    I'm using forms 6i in client server mode.
    I created test.dll using Microsoft visual c++ by creating new win32 Dynamic link library.
    One more doubt:
    How can I find functions in a already compiled DLL?
    Pls reply me..Its urgent..
    Adios..
    Prashanth Deshmukh

    Hi,
    refer these ,u will get some help
    Standard Buttons:
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/snippets/webDynproABAP-ALVControllingStandard+Buttons&
    alv-pfstatus:
    http://www.sapdevelopment.co.uk/reporting/alv/alvgrid_pfstatus.htm
    then how to capture that button click.
    http://www.sapdevelopment.co.uk/reporting/alv/alvgrid_ucomm.htm
    http://www.sapdevelopment.co.uk/reporting/alv/alvgrid_rowsel.htm

  • Big Doubt.. Help pls.. Urgent.. File to IDoc (Bypass)

    File to IDoc scenario( Bypass)-- Error ( Segment is missing) -- urgent pls.
    Hi Bhavesh and all,
    I done file to idoc scenario (Bypass)
    From the above thread i have hardcoded my XML file  by inserting BEGIN 
    and Segment = "1" in each of the new segment.
    Since it is a bypass scenario.. when it reach to production , the idoc -xml will come from one of the tool without having these BEGIN and SEGMENT = "1".
    Still XI will receive it??
    Because my doubt is i harcoded the XML file and finished my developement.
    Now iam getting the doubt that once they do testing in QA server..the XI will process it and not ?
    Can we able to achieve this even without BEGIN and SEGMENT = "1" ?
    or
    those fileds are mandatory?
    Pls suggest me .. its urgent.
    Regards
    Seema..

    Hi Seema,
    >> <i>Can we able to achieve this even without BEGIN and SEGMENT = "1" ?
    or
    those fileds are mandatory?</i>
       To post an idoc to R/3 system this fields are mandatory.
    >><i>From the above thread i have hardcoded my XML file by inserting BEGIN
    and Segment = "1" in each of the new segment.
    Since it is a bypass scenario.. when it reach to production , the idoc -xml will come from one of the tool without having these BEGIN and SEGMENT = "1".
    Still XI will receive it??</i>
       As you are just routing it...just XI will poll the file and sends data to the idoc ( as the source and target structure are same).
    Regards,
    Prasanthi.

  • URGENT: Doubts in SRM5.0

    hi sir,
             i have some doubts in srm5.0 back end settings as shown below...
    1) what is VMC& how to activate VMC in SM52?
    2) what happend if i change the LOGICAL System for my naming convention in RFC destination?
    3) why should we maintain the local RFC within the SRM OWN server for what purpose? EVEN i having a SRM server.
    4) is it RFC user is a dialog user?
    5) I want to know the T.CODES for each &every menupath. pls tell me the path for that.
    my kind request to all can anyone send me solutions as written above questions URGENTLY.my id is      <b> [email protected]</b>
    WITH REGARDS TO ALL

    Hi
    1. For VMC check the link http://help.sap.com/saphelp_nw04s/helpdata/en/a9/26ae3c95164695accbf2483a14281e/frameset.htm
    2. Logical system name should be same as RFC destination (recommended by SAP), one reason may be, because for posting of IDocs in the system which will require same naming convention for LS name and RFC destination.
    3. I think, The local RFC is for creating the follow-on documents for SC in SRM system.
    4. RFC user may be a dialog or a system/communication user. For search helps you can RFC as dialog uer and for other data transfers thru RFC, it should be made as communication/system user.
    5. For Tcodes you can look at TSTC table. One alternative to find T-codes for an activity is (only some will work): SPRO - Menu options - Additional Information - Additional Information - Display Key - attributes.
    Rgds
    Reddy

  • URGENT: SRM doubts

    hi sir,
             i have some doubts in srm5.0 back end settings as shown below...
    1) what is VMC& how to activate VMC in SM52?
    2) what happend if i change the LOGICAL System for my naming convention in RFC destination?
    3) why should we maintain the local RFC within the SRM OWN server for what purpose? EVEN i having a SRM server.
    4) is it RFC user is a dialog user?
    5) I want to know the T.CODES for each &every menupath. pls tell me the path for that.
    my kind request to all can anyone send me solutions as written above questions URGENTLY.my id is      <b> [email protected]</b>
    WITH REGARDS TO ALL

    HI,
    ad 1) VMC is Virtual Machine Container for more information - look at link:
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/a1/854ab9451048539e9131f19d3f9ab8/frameset.htm
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/42/df8a715afb1631e10000000a1553f7/frameset.htm
    ad 2) Every document created in SRM have a logical system attached to it. If You change it You must populate the changes. (e.g. in transaction BDLS or BDLSS )
    ad 3) logical RFC (loopback) must be maintained. This RFC is used to communicate SRM itself.
    ad 4) RFC user is a system user.
    ad 5) I'm affraid I don't  understand the question
    Regards,
    Marcin Gajewski

  • Andrew - one more doubt in the donsample.sql file,it is urgent

    Andrew,
    I believe you can answer this ,i hope i am not trying too much on your patience.Thanks .I am connected to the oracle server.In that i execute a procedure which i believe is executing on the oracle server.i supply arguments to it .The arguement is a file on my local directory .The error code follows:-
    I have problem running a oracle procedure which uses a xml parser built on java libraries.When i executed this procedure the following error came:-
    SQL> execute domsample('\oraclexdk\xdk\demo\plsql\parser','family.xml','error.txt');
    BEGIN domsample('\oraclexdk\xdk\demo\plsql\parser','family.xml','error.txt'); END;
    ERROR at line 1:
    ORA-29532: Java call terminated by uncaught Java exception:
    java.lang.SecurityException: relative pathnames are not
    allowed(\oraclexdk\xdk\demo\plsql\parser)
    ORA-06512: at "SYS.XMLPARSERCOVER", line 0
    ORA-06512: at "SYS.XMLPARSER", line 144
    ORA-06512: at "IWADM.DOMSAMPLE", line 77
    ORA-06512: at line 1
    Do you know something about this .ie. classpath variables or something like that.if you want the domsample arguement syntax for further clarifications ,i am enclosing this in the following lines.The setbasedir(p,dir) prompts for a parser object and a complete directory path.what i give here is the path on my local directory and i think this creates the error.
    How do i rectify this error.is it on my(client) side or the server side.If it on the oracle server side or my side can you tell me what went wrong.The parser and the dom package everything else is working fine.It is really urgent ,andrew.This is holding up all the work.The arguement syntax help says on 'dir' that this is a pointer to external file system .I have a confusion that whether this refers to external file system of the server or the client.if so form the server how to route it to the client directory or should i have a space on the server, upload this file and execute the domsample.sql file.Can you clear this concept for me.
    'dir' - must point to a valid directory on the external file system
    and should be specified as a complete path name
    'inpfile' - must point to the file located under 'dir', containing the
    XML document to be parsed
    'errfile' - must point to a file you wish to use to record errors; this
    file will be created under 'dir'
    I know i might be bugging you ,but your answers are really great.Thanks.
    regards
    gopal

    I seem to have this error with both windows and unix directory space.Please help me with debugging this .I am really struck with it.The error occurs at the same line when executed with the file on the unix server.
    SQL> execute domsample('/user/sb8066/','family.xml','error.txt');
    BEGIN domsample('/user/sb8066/','family.xml','error.txt'); END;
    ERROR at line 1:
    ORA-20100: Error occurred while parsing: Permission denied
    ORA-06512: at "SYS.XMLPARSER", line 22
    ORA-06512: at "SYS.XMLPARSER", line 69
    ORA-06512: at "IWADM.DOMSAMPLE", line 63
    ORA-06512: at line 1
    I won't clutter the forum.just to get your attention,i hope you can help me solving this problem,please can you see this thread,because in future i will be using this only to contact you.Thanks for the continued help.The windows space idea was not used.Many configurations had to be changed.Can you note what is peculiar at line 22 ,line 69.line 63 of domsample reads is just an 'end-if';I will expecting your answer as soon as possible.
    regards
    gopal

  • Very urgent: Doubts regarding CRM WORKFLOW OF BUSINESS PARTNER CREATION

    HI ,
    I HAVE DOUBTS REGARDING CRM WORKFLOW OF BUSINESS PARTNER CREATION, WHILE I AM CREATING BUSINESS PARTNER THROUGH R/3 , IT REFLECT IT INTO MYSAP CRM ALSO, AT THAT TIME IT SENDING THE MAIL TWICE TO THE RECEIPIENT. IS THERE ANY WAY THROUGH  WHICH I CAN RESTRICT IT TO SEND THE MAIL ONLY ONCE,
    PLZ SEND ME THE REPLY AS SOON AS POSSIBLE,
    THANKS  ADVANCED,

    HI
    WORKFLOW SEETING. SAP MAIL
    MULTIPLE MAILS AND
    ONLY ONCE CHOOSE
    ONLY ONCE OPTION ON WHICH VERSION U R WORKING?
    REWARD IF HELPFUL
    VENKAT

Maybe you are looking for