Error in moving to another tablaspace

Hi,
I've got the following table
SQL> desc PRODUCT
Name Null? Type
ID NUMBER
FIELD1 LONG
FIELD2 CLOB
When I try to move the table to another tablaspace I get the following error
ALTER TABLE PRODUCT
MOVE TABLESPACE MEDIUM_TBL storage (initial 4M next 4M)
LOB(FIELD2) STORE AS (
TABLESPACE MEDIUM_LOB storage (initial 4M next 4M)
ALTER TABLE product
ERROR at line 1:
ORA-00997: illegal use of LONG datatype
Can you help me?
Thanks!
Edited by: user12180597 on 18-dic-2009 0.40
Edited by: user12180597 on 18-dic-2009 0.40

user12180597 wrote:
Hi,
I've got the following table
SQL> desc PRODUCT
Name Null? Type
ID NUMBER
FIELD1 LONG
FIELD2 CLOB
When I try to move the table to another tablaspace I get the following error
ALTER TABLE PRODUCT
MOVE TABLESPACE MEDIUM_TBL storage (initial 4M next 4M)
LOB(FIELD2) STORE AS (
TABLESPACE MEDIUM_LOB storage (initial 4M next 4M)
ALTER TABLE product
ERROR at line 1:
ORA-00997: illegal use of LONG datatype
Can you help me?
Thanks!
Edited by: user12180597 on 18-dic-2009 0.40
Edited by: user12180597 on 18-dic-2009 0.40Does your table have LONG or LONG RAW columns? you cant Move table with those columns.
In that case either change the datatype of those columns or try to export and then import into different tablespace.
Below thread from OraFAQ can be helpful.
http://www.orafaq.com/forum/t/21725/0/

Similar Messages

  • Error while moving to another tab

    Hi,
    i am facing the below error when creating new record.
    pressed create insert and entered some fields in pb3 and navigating to pb1 which is in tab showDetailItem 2. then i am getting the below error.
    Messages for this page are listed below.
    Attribute Descr in AppModule.GrpEmpView1 is required.  -- is in panel box pb3 -- mandatory field - value not given --
    Attribute Descr1 in AppModule.GrpEmpView1 is required -- it is in panel box pb1-- mandatory field -- value provided -- but still error is giving Question - 1 : why the attributes are firing mandatory fileds validation as i dont have any autosubmit property to true for both items.?
    Question - 2 : why the attribute Descr1 fired even the value is given?
    Problem - 3 : i have MasterVor1 which is my main master & i want hint user to commit the chnages while navigating to another record. how can i achieve this?
    please see the code below which i used for my page
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
              xmlns:f="http://java.sun.com/jsf/core"
              xmlns:h="http://java.sun.com/jsf/html"
              xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
      <jsp:directive.page contentType="text/html;charset=UTF-8"/>
      <f:view>
        <af:document id="d1" binding="#{backingBeanScope.backing_empPage.d1}">
          <af:messages binding="#{backingBeanScope.backing_empPage.m1}" id="m1"/>
          <af:form id="f1" binding="#{backingBeanScope.backing_empPage.f1}">
            <af:panelSplitter binding="#{backingBeanScope.backing_empPage.ps1}"
                              id="ps1" orientation="vertical"
                              splitterPosition="100">
              <f:facet name="first">
                <af:panelCollection binding="#{backingBeanScope.backing_empPage.pc1}"
                                    id="pc1">
                  <f:facet name="menus"/>
                  <f:facet name="toolbar"/>
                  <f:facet name="statusbar"/>
                  <af:table value="#{bindings.MasterVor1.collectionModel}" var="row"
                            rows="#{bindings.MasterVor1.rangeSize}"
                            emptyText="#{bindings.MasterVor1.viewable ? 'No data to display.' : 'Access Denied.'}"
                            fetchSize="#{bindings.MasterVor1.rangeSize}"
                            rowBandingInterval="0"
                            filterModel="#{bindings.MasterVor1Query.queryDescriptor}"
                            queryListener="#{bindings.MasterVor1Query.processQuery}"
                            filterVisible="true" varStatus="vs"
                            selectedRowKeys="#{bindings.MasterVor1.collectionModel.selectedRow}"
                            selectionListener="#{bindings.MasterVor1.collectionModel.makeCurrent}"
                            rowSelection="single"
                            binding="#{backingBeanScope.backing_empPage.t1}" id="t1"
                            width="288" inlineStyle="height:150px;">
                    <af:column sortProperty="EmpCode" filterable="true"
                               sortable="true"
                               headerText="#{bindings.MasterVor1.hints.EmpCode.label}"
                               id="c2">
                      <af:inputText value="#{row.bindings.EmpCode.inputValue}"
                                    label="#{bindings.MasterVor1.hints.EmpCode.label}"
                                    required="#{bindings.MasterVor1.hints.EmpCode.mandatory}"
                                    columns="#{bindings.MasterVor1.hints.EmpCode.displayWidth}"
                                    maximumLength="#{bindings.MasterVor1.hints.EmpCode.precision}"
                                    shortDesc="#{bindings.MasterVor1.hints.EmpCode.tooltip}"
                                    id="it1">
                        <f:validator binding="#{row.bindings.EmpCode.validator}"/>
                        <af:convertNumber groupingUsed="false"
                                          pattern="#{bindings.MasterVor1.hints.EmpCode.format}"/>
                      </af:inputText>
                    </af:column>
                    <af:column sortProperty="EmpName" filterable="true"
                               sortable="true"
                               headerText="#{bindings.MasterVor1.hints.EmpName.label}"
                               id="c1">
                      <af:inputText value="#{row.bindings.EmpName.inputValue}"
                                    label="#{bindings.MasterVor1.hints.EmpName.label}"
                                    required="#{bindings.MasterVor1.hints.EmpName.mandatory}"
                                    columns="#{bindings.MasterVor1.hints.EmpName.displayWidth}"
                                    maximumLength="#{bindings.MasterVor1.hints.EmpName.precision}"
                                    shortDesc="#{bindings.MasterVor1.hints.EmpName.tooltip}"
                                    id="it2">
                        <f:validator binding="#{row.bindings.EmpName.validator}"/>
                      </af:inputText>
                    </af:column>
                  </af:table>
                </af:panelCollection>
              </f:facet>
              <f:facet name="second">
                <af:panelSplitter binding="#{backingBeanScope.backing_empPage.ps2}"
                                  id="ps2" orientation="vertical"
                                  splitterPosition="96">
                  <f:facet name="first">
                    <af:panelBox text="PanelBox1"
                                 binding="#{backingBeanScope.backing_empPage.pb1}"
                                 id="pb1" partialTriggers="pc1:t1">
                      <f:facet name="toolbar">
                        <af:group binding="#{backingBeanScope.backing_empPage.g1}"
                                  id="g1">
                          <af:commandButton actionListener="#{bindings.CreateInsert.execute}"
                                            text="CreateInsert"
                                            disabled="#{!bindings.CreateInsert.enabled}"
                                            binding="#{backingBeanScope.backing_empPage.cb3}"
                                            id="cb3"/>
                          <af:commandButton actionListener="#{bindings.Rollback.execute}"
                                            text="Rollback" disabled="false"
                                            immediate="true"
                                            binding="#{backingBeanScope.backing_empPage.cb2}"
                                            id="cb2">
                            <af:resetActionListener/>
                          </af:commandButton>
                          <af:commandButton actionListener="#{bindings.Commit.execute}"
                                            text="Commit" disabled="false"
                                            binding="#{backingBeanScope.backing_empPage.cb1}"
                                            id="cb1" partialSubmit="false"/>
                        </af:group>
                      </f:facet>
                      <af:panelFormLayout binding="#{backingBeanScope.backing_empPage.pfl1}"
                                          id="pfl1" inlineStyle="width:377px;">
                        <af:inputText value="#{bindings.EmpCode.inputValue}"
                                      label="#{bindings.EmpCode.hints.label}"
                                      required="#{bindings.EmpCode.hints.mandatory}"
                                      columns="#{bindings.EmpCode.hints.displayWidth}"
                                      maximumLength="#{bindings.EmpCode.hints.precision}"
                                      shortDesc="#{bindings.EmpCode.hints.tooltip}"
                                      binding="#{backingBeanScope.backing_empPage.it3}"
                                      id="it3">
                          <f:validator binding="#{bindings.EmpCode.validator}"/>
                          <af:convertNumber groupingUsed="false"
                                            pattern="#{bindings.EmpCode.format}"/>
                        </af:inputText>
                        <af:inputText value="#{bindings.EmpName.inputValue}"
                                      label="#{bindings.EmpName.hints.label}"
                                      required="#{bindings.EmpName.hints.mandatory}"
                                      columns="#{bindings.EmpName.hints.displayWidth}"
                                      maximumLength="#{bindings.EmpName.hints.precision}"
                                      shortDesc="#{bindings.EmpName.hints.tooltip}"
                                      binding="#{backingBeanScope.backing_empPage.it4}"
                                      id="it4" autoSubmit="true">
                          <f:validator binding="#{bindings.EmpName.validator}"/>
                        </af:inputText>
                        <af:inputDate value="#{bindings.DateVar.inputValue}"
                                      label="#{bindings.DateVar.hints.label}"
                                      required="#{bindings.DateVar.hints.mandatory}"
                                      shortDesc="#{bindings.DateVar.hints.tooltip}"
                                      binding="#{backingBeanScope.backing_empPage.id1}"
                                      id="id1">
                          <f:validator binding="#{bindings.DateVar.validator}"/>
                          <af:convertDateTime pattern="#{bindings.DateVar.format}"/>
                        </af:inputDate>
                        <af:inputText value="#{bindings.Descr1.inputValue}"
                                      label="#{bindings.Descr1.hints.label}"
                                      required="#{bindings.Descr1.hints.mandatory}"
                                      columns="#{bindings.Descr1.hints.displayWidth}"
                                      maximumLength="#{bindings.Descr1.hints.precision}"
                                      shortDesc="#{bindings.Descr1.hints.tooltip}"
                                      binding="#{backingBeanScope.backing_empPage.it12}"
                                      id="it12">
                          <f:validator binding="#{bindings.Descr1.validator}"/>
                        </af:inputText>
                      </af:panelFormLayout>
                    </af:panelBox>
                  </f:facet>
                  <f:facet name="second">
                    <af:panelGroupLayout layout="scroll"
                                         xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
                                         binding="#{backingBeanScope.backing_empPage.pgl1}"
                                         id="pgl1">
                      <af:panelTabbed binding="#{backingBeanScope.backing_empPage.pt1}"
                                      id="pt1">
                        <af:showDetailItem text="showDetailItem 1"
                                           binding="#{backingBeanScope.backing_empPage.sdi1}"
                                           id="sdi1" inlineStyle="width:1000.0px;">
                          <af:panelBox text="PanelBox2"
                                       binding="#{backingBeanScope.backing_empPage.pb2}"
                                       id="pb2" partialTriggers="pb1">
                            <f:facet name="toolbar">
                              <af:group binding="#{backingBeanScope.backing_empPage.g3}"
                                        id="g3">
                                <af:commandButton actionListener="#{bindings.Delete.execute}"
                                                  text="Delete"
                                                  disabled="#{!bindings.Delete.enabled}"
                                                  binding="#{backingBeanScope.backing_empPage.cb6}"
                                                  id="cb6"/>
                                <af:commandButton actionListener="#{bindings.CreateInsert1.execute}"
                                                  text="CreateInsert1"
                                                  disabled="#{!bindings.CreateInsert1.enabled}"
                                                  binding="#{backingBeanScope.backing_empPage.cb7}"
                                                  id="cb7"/>
                              </af:group>
                            </f:facet>
                            <af:table value="#{bindings.ReportingEmpView1.collectionModel}"
                                      var="row"
                                      rows="#{bindings.ReportingEmpView1.rangeSize}"
                                      emptyText="#{bindings.ReportingEmpView1.viewable ? 'No data to display.' : 'Access Denied.'}"
                                      fetchSize="#{bindings.ReportingEmpView1.rangeSize}"
                                      rowBandingInterval="0"
                                      filterModel="#{bindings.ReportingEmpView1Query.queryDescriptor}"
                                      queryListener="#{bindings.ReportingEmpView1Query.processQuery}"
                                      filterVisible="true" varStatus="vs"
                                      selectedRowKeys="#{bindings.ReportingEmpView1.collectionModel.selectedRow}"
                                      selectionListener="#{bindings.ReportingEmpView1.collectionModel.makeCurrent}"
                                      rowSelection="single"
                                      binding="#{backingBeanScope.backing_empPage.t3}"
                                      id="t3"
                                      partialTriggers="::cb6 ::cb7 ::cb4 ::cb5 ::cb8 ::cb9"
                                      editingMode="clickToEdit">
                              <af:column sortProperty="EmpCode" filterable="true"
                                         sortable="true"
                                         headerText="#{bindings.ReportingEmpView1.hints.EmpCode.label}"
                                         id="c4">
                                <af:inputText value="#{row.bindings.EmpCode.inputValue}"
                                              label="#{bindings.ReportingEmpView1.hints.EmpCode.label}"
                                              required="#{bindings.ReportingEmpView1.hints.EmpCode.mandatory}"
                                              columns="#{bindings.ReportingEmpView1.hints.EmpCode.displayWidth}"
                                              maximumLength="#{bindings.ReportingEmpView1.hints.EmpCode.precision}"
                                              shortDesc="#{bindings.ReportingEmpView1.hints.EmpCode.tooltip}"
                                              id="it7">
                                  <f:validator binding="#{row.bindings.EmpCode.validator}"/>
                                  <af:convertNumber groupingUsed="false"
                                                    pattern="#{bindings.ReportingEmpView1.hints.EmpCode.format}"/>
                                </af:inputText>
                              </af:column>
                              <af:column sortProperty="EmpName" filterable="true"
                                         sortable="true"
                                         headerText="#{bindings.ReportingEmpView1.hints.EmpName.label}"
                                         id="c3">
                                <af:inputText value="#{row.bindings.EmpName.inputValue}"
                                              label="#{bindings.ReportingEmpView1.hints.EmpName.label}"
                                              required="#{bindings.ReportingEmpView1.hints.EmpName.mandatory}"
                                              columns="#{bindings.ReportingEmpView1.hints.EmpName.displayWidth}"
                                              maximumLength="#{bindings.ReportingEmpView1.hints.EmpName.precision}"
                                              shortDesc="#{bindings.ReportingEmpView1.hints.EmpName.tooltip}"
                                              id="it6">
                                  <f:validator binding="#{row.bindings.EmpName.validator}"/>
                                </af:inputText>
                              </af:column>
                              <af:column sortProperty="MgrCode" filterable="true"
                                         sortable="true"
                                         headerText="#{bindings.ReportingEmpView1.hints.MgrCode.label}"
                                         id="c5">
                                <af:inputText value="#{row.bindings.MgrCode.inputValue}"
                                              label="#{bindings.ReportingEmpView1.hints.MgrCode.label}"
                                              required="#{bindings.ReportingEmpView1.hints.MgrCode.mandatory}"
                                              columns="#{bindings.ReportingEmpView1.hints.MgrCode.displayWidth}"
                                              maximumLength="#{bindings.ReportingEmpView1.hints.MgrCode.precision}"
                                              shortDesc="#{bindings.ReportingEmpView1.hints.MgrCode.tooltip}"
                                              id="it5">
                                  <f:validator binding="#{row.bindings.MgrCode.validator}"/>
                                  <af:convertNumber groupingUsed="false"
                                                    pattern="#{bindings.ReportingEmpView1.hints.MgrCode.format}"/>
                                </af:inputText>
                              </af:column>
                            </af:table>
                          </af:panelBox>
                        </af:showDetailItem>
                        <af:showDetailItem text="showDetailItem 2"
                                           binding="#{backingBeanScope.backing_empPage.sdi2}"
                                           id="sdi2" partialTriggers="pb1">
                          <af:panelFormLayout binding="#{backingBeanScope.backing_empPage.pfl2}"
                                              id="pfl2">
                            <af:inputText value="#{bindings.EmpCode1.inputValue}"
                                          label="#{bindings.EmpCode1.hints.label}"
                                          required="#{bindings.EmpCode1.hints.mandatory}"
                                          columns="#{bindings.EmpCode1.hints.displayWidth}"
                                          maximumLength="#{bindings.EmpCode1.hints.precision}"
                                          shortDesc="#{bindings.EmpCode1.hints.tooltip}"
                                          binding="#{backingBeanScope.backing_empPage.it8}"
                                          id="it8">
                              <f:validator binding="#{bindings.EmpCode1.validator}"/>
                              <af:convertNumber groupingUsed="false"
                                                pattern="#{bindings.EmpCode1.format}"/>
                            </af:inputText>
                            <af:inputText value="#{bindings.EmpName1.inputValue}"
                                          label="#{bindings.EmpName1.hints.label}"
                                          required="#{bindings.EmpName1.hints.mandatory}"
                                          columns="#{bindings.EmpName1.hints.displayWidth}"
                                          maximumLength="#{bindings.EmpName1.hints.precision}"
                                          shortDesc="#{bindings.EmpName1.hints.tooltip}"
                                          binding="#{backingBeanScope.backing_empPage.it9}"
                                          id="it9">
                              <f:validator binding="#{bindings.EmpName1.validator}"/>
                            </af:inputText>
                            <af:inputText value="#{bindings.MgrCode.inputValue}"
                                          label="#{bindings.MgrCode.hints.label}"
                                          required="#{bindings.MgrCode.hints.mandatory}"
                                          columns="#{bindings.MgrCode.hints.displayWidth}"
                                          maximumLength="#{bindings.MgrCode.hints.precision}"
                                          shortDesc="#{bindings.MgrCode.hints.tooltip}"
                                          binding="#{backingBeanScope.backing_empPage.it10}"
                                          id="it10">
                              <f:validator binding="#{bindings.MgrCode.validator}"/>
                              <af:convertNumber groupingUsed="false"
                                                pattern="#{bindings.MgrCode.format}"/>
                            </af:inputText>
                            <f:facet name="footer">
                              <af:panelGroupLayout layout="vertical"
                                                   binding="#{backingBeanScope.backing_empPage.pgl2}"
                                                   id="pgl2">
                                <af:panelGroupLayout layout="horizontal"
                                                     binding="#{backingBeanScope.backing_empPage.pgl3}"
                                                     id="pgl3">
                                  <af:commandButton actionListener="#{bindings.First.execute}"
                                                    text="First"
                                                    disabled="#{!bindings.First.enabled}"
                                                    partialSubmit="true"
                                                    binding="#{backingBeanScope.backing_empPage.cb4}"
                                                    id="cb4"/>
                                  <af:commandButton actionListener="#{bindings.Previous.execute}"
                                                    text="Previous"
                                                    disabled="#{!bindings.Previous.enabled}"
                                                    partialSubmit="true"
                                                    binding="#{backingBeanScope.backing_empPage.cb5}"
                                                    id="cb5"/>
                                  <af:commandButton actionListener="#{bindings.Next.execute}"
                                                    text="Next"
                                                    disabled="#{!bindings.Next.enabled}"
                                                    partialSubmit="true"
                                                    binding="#{backingBeanScope.backing_empPage.cb8}"
                                                    id="cb8"/>
                                  <af:commandButton actionListener="#{bindings.Last.execute}"
                                                    text="Last"
                                                    disabled="#{!bindings.Last.enabled}"
                                                    partialSubmit="true"
                                                    binding="#{backingBeanScope.backing_empPage.cb9}"
                                                    id="cb9"/>
                                </af:panelGroupLayout>
                                <af:commandButton text="Submit"
                                                  binding="#{backingBeanScope.backing_empPage.cb10}"
                                                  id="cb10"/>
                              </af:panelGroupLayout>
                            </f:facet>
                          </af:panelFormLayout>
                          <af:panelBox text="PanelBox3"
                                       binding="#{backingBeanScope.backing_empPage.pb3}"
                                       id="pb3">
                            <f:facet name="toolbar"/>
                            <af:inputText value="#{bindings.Descr.inputValue}"
                                          label="#{bindings.Descr.hints.label}"
                                          required="#{bindings.Descr.hints.mandatory}"
                                          columns="#{bindings.Descr.hints.displayWidth}"
                                          maximumLength="#{bindings.Descr.hints.precision}"
                                          shortDesc="#{bindings.Descr.hints.tooltip}"
                                          binding="#{backingBeanScope.backing_empPage.it11}"
                                          id="it11">
                              <f:validator binding="#{bindings.Descr.validator}"/>
                            </af:inputText>
                          </af:panelBox>
                        </af:showDetailItem>
                      </af:panelTabbed>
                    </af:panelGroupLayout>
                  </f:facet>
                </af:panelSplitter>
              </f:facet>
            </af:panelSplitter>
          </af:form>
        </af:document>
      </f:view>
      <!--oracle-jdev-comment:auto-binding-backing-bean-name:backing_empPage-->
    </jsp:root>Edited by: Mr. Murali on Oct 26, 2011 9:54 AM

    Hi,
    sorry for the delay...i have a few questions on ur responce.
    q1. in a VO or ENT you can put autosubmit property (Edit attribute-->Control Hints-->autosubmit)
    q2. you need a autosubmit=true
    q3.the commit is a actionlistener.put your navigation in a action
    q1) -- what is the use of keeping autosubmit to true at EO/VO level
    q2) -- why auto submit to true? as i want these validations to be done when commit button pression
    q3) -- i have a page with this structure-- master1(read only table - key attribute idcode)
                                                              --> master2(editable form - with key attribute idcode)
                                                                    --> all details(editable table's - with key attribute idcode)
           Suppose Now if user clicked on one record in master1 and edited one record of master2 and one record of detail table and navigating to another record in master1 then i want to display a pop with ok/cancel to commit/rollback the transaction.how can i achieve this task?

  • Podcast Moved to Another Sever - links broken

    My podcasts had to be moved to another server because lack of bandwitdth. I changed the URL in the RSS file - do I need to resubmit?
    Even when I test the URL from within iTunes it will download. The server does not start with an "http://www." prefix, but "http://" then the server name. Does that make a difference? I am waiting to find out if it is behind a firewall.

    Here's what it says in the tech specs about changing feed URLs.
    Changing Your Feed URL
    Podcasters occasionally need to move their feed from one location to another. In this case, you should not remove your feed. If possible, you should set your web server to return a 301 error and redirect when receiving a request for the old feed. Doing so will cause both the iTunes Music Store and the iTunes clients that have subscribed to your podcast to pick up the new feed URL. Be sure to maintain the redirect for at least two weeks to ensure that most subscribers have attempted to download your most recent episode and have thereby received the new URL.
    If you don’t know how to return an HTTP 301, you can use the <itunes:new-feed-url> tag described in the iTunes RSS Tags section below. The tag will cause the iTunes music store to be updated with the new feed URL, but it will not inform iTunes clients of the new location. You may choose to include an audio note in your podcast, informing your subscribers that your podcast has changed locations. After adding the tag, be sure to keep your feed running at the old URL for at least 48 hours.

  • Error code moving folder

    An error cod moving a folder from one folder to another on the latest

    Well, you'd have to delete the Movies folder before you could replace it, and deleting the Movies folder would also delete its contents, thereby making the replacement impossible. It's not really surprising that the Finder was confused.
    Simple solution: rename the parent folder.

  • FRM-41211: Integration Error: SSL failure running another product Error

    Hai,
    I am developing POS Application in Oracle(Forms6i/Reports6i). I design the Invoice Print Format in Reports6i and call from the Invoice Form. When the
    user save the Invoice I Commit the Invoice and call the Invoice Report for Printing Immediately. I use Epson TM U210B Label Printer for Billing. Sometimes the Invoice Print is not coming in the Printer and it gives the
    following error(especially the First print after restart the computer).
    FRM-41211: Integration Error: SSL failure running
    another product
    After that if you print further for transaction no plm. only it gives the error first time of print
    So Please give the solutions immediately. I am waiting for Ur favourable Reply.
    Ur's Shahul

    As Petr said make sure you're reports25_tmp is set in your registry and that the directory exists AND you have the rights to write to that directory.
    You can also get this error if you try to issue a 2nd asynchronous run_product call to run a report and there is another one running. For this, Oracle has two 'solutions'.
    1) Do not run more then one asynchronous report per session
    or
    2) Use a delay loop before calling the next report.
    It's been my experience that #2 is worthless as, if it works, is doing pretty much the same thing as #1. I really hope this gets fixed (for good) at some point...somehow. <G>
    Chad

  • Integration error SSL failure running another product. - Urgent

    Anybody knows what could be the possible problem and how to solve it. This error is coming when I am running RUN_PRODUCT built-in forms 6i, that application was running for 2 years in Forms 5, without any problem.
    I have included the message what Forms doucmentaion had.
    FRM-41211: Integration error: SSL failure running another product.
    Cause: There is a problem detected when launching another product.
    Action: Check the RUN_PRODUCT built-in.
    Level: 99
    Type: Error
    null

    I got this error when I was using 4.5, it may be caused by the
    correctness of report_path in registry.
    Regards,
    George
    Anybody knows what could be the possible problem and how to solve it. This error is coming when I am running RUN_PRODUCT
    built-in forms 6i, that application was running for 2 years in
    Forms 5, without any problem.>I have included the message what
    Forms doucmentaion had.>FRM-41211: Integration error: SSL
    failure running another product.>Cause: There is a problem
    detected when launching another product. >Action: Check the
    RUN_PRODUCT built-in. >Level: 99 >Type: Error >null

  • Integration error SSL failure running another product

    Dear All,
    I am facing some problem while running reports from forms
    SERVER:
    •     OPERATING SYSTEM: Windows.8
    •     Database: ORACLE 11g
    •     Forms & Reports = 6i.
    In form when click any report button to call report some time error comes.
    FRM-41211: integration error SSL failure running another productAnd user can not print the report,

    Forms/Reports 6i on Windows 8? I very much doubt that this is going to work. The last supported OS for Forms/Reports 6i was Windows XP.
    You might have some luck with a non-supported workaround:
    http://windows7bugs.wordpress.com/2012/08/25/windows-8-oracle-developer-suite-6i-patch-18/

  • Integration Error:SSL failure running another product.In DeveloperSuite 10g

    I'm using DeveloperSuite 10g. I'm trying run the report from Forms but when I'm
    clicking on button to run report using RUN_REPORT_OBJECT I'm getting following
    error :
    Integration Error : SSL failure running another product.
    Can any one explain why I'm getting this error.
    Regards
    Alpesh.

    Hi alpesh
    I think you are good at oracleDS 10g and it is running on your machine successfully. But I am not able to run any form on my system.
    My OS is Win XP with service Pack 2
    Installed Oracle Database 10g
    Installed Oracle DS 10g
    Able to run reports on paper layout and web layout, But can not run forms. Error is shown on the IE Ver 7. Only source code is displayed. can you help me out from this.

  • Error : FRM-41211 : Integration Error: SSL Failure Running Another Product

    Hi All
    I am using Forms & Reports 10g.
    I have a report .And i am trying to call in my forms and also i am passing parameters.
    But i am getting this error :
    My Code is :-
    DECLARE
    repid REPORT_OBJECT;
    v_rep VARCHAR2(100);
    rep_status VARCHAR2(20);
    plid ParamList;
    vParamValue number;
    BEGIN
    plid := Get_parameter_List('tmp');
    IF NOT Id_Null(plid) THEN
    Destroy_parameter_List( plid );
    END IF;
    plid := Create_parameter_List('tmp');
    Add_Parameter(PLid, 'P_Block', Text_Parameter, :block_query.item_block);
    Add_Parameter(PLid, 'P_Category', Text_Parameter, :block_query.item_category);
    Add_Parameter(PLid, 'P_Dept', Text_Parameter, :block_query.item_dept);
    Add_Parameter(PLid, 'P_Floor', Text_Parameter, :block_query.item_floor);
    Add_Parameter(PLid, 'P_IP', Text_Parameter, :block_query.item_ip);
    Add_Parameter(PLid, 'P_Room', Text_Parameter, :block_query.item_room);
    Add_Parameter(PLid, 'P_Userid', Text_Parameter, :block_query.item_usr_id);
    Add_Parameter(PLid, 'PARAMFORM', Text_Parameter, 'NO');
    repid := FIND_REPORT_OBJECT('REPORT_Query');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_COMM_MODE,SYNCHRONOUS);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESTYPE,cache);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESFORMAT,'PDF');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_OTHER, 'paramform=no');
    v_rep := RUN_REPORT_OBJECT(repid,plid);
    rep_status := REPORT_OBJECT_STATUS(v_rep);
    WHILE rep_status in ('RUNNING','OPENING_REPORT','ENQUEUED')
    LOOP
    rep_status := report_object_status(v_rep);
    END LOOP;
    WEB.SHOW_DOCUMENT('http://A_F2_ITT_PC_4.AAHOS.LOCAL:8890/reports/rwservlet/getjobid'||substr(v_rep,instr(v_rep,'_',-1)+1)||'?
    *'||'server=Report_server_name&P_parameter='||'&block='''||:block_query.item_block*
    *||'&category_name='''||:block_query.item_category*
    *||'&dept='''||:block_query.item_dept*
    *||'&floor='''||:block_query.item_floor*
    *||'&ip_address='''||:block_query.item_ip*
    *||'&room='''||:block_query.item_room*
    *||'&usr_id='''||:block_query.item_usr_id*
    *||'&paramform=no');*
    End;
    And the error i am getting is :- FRM-41211 : Integration Error: SSL Failure Running Another Product

    hi
    please try something like this.
    DECLARE
    repid REPORT_OBJECT;
    v_rep VARCHAR2(100);
    rep_status VARCHAR2(20);
    plid ParamList;
    vParamValue number;
    BEGIN
    plid := Get_parameter_List('tmp');
    IF NOT Id_Null(plid) THEN
    Destroy_parameter_List( plid );
    END IF;
    plid := Create_parameter_List('tmp');
    add_parameter(plid,'p_parameter',text_parameter,to_char(:block.item));
    Add_parameter(plid, 'PARAMFORM', TEXT_parameter, 'NO');
    repid := FIND_REPORT_OBJECT('REPORT6');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_COMM_MODE,SYNCHRONOUS);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESTYPE,cache);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESFORMAT,'PDF');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_OTHER, 'paramform=no');
    v_rep := RUN_REPORT_OBJECT(repid,plid);
    rep_status := REPORT_OBJECT_STATUS(v_rep);
    WHILE rep_status in ('RUNNING','OPENING_REPORT','ENQUEUED')
    LOOP
    rep_status := report_object_status(v_rep);
    END LOOP;
    /*Display report in the browser*/
    WEB.SHOW_DOCUMENT('http://Machine_Name:8889/reports/rwservlet/getjobid'||substr(v_rep,instr(v_rep,'_',-1)+1)||'?
    '||'server=repserver&P_parameter='||:block.item||
    '&paramform=no');
    END;

  • It appears that many of my tunes have been moved to another library location so I cannot click on a particular song in my itunes.  This affects syncing all my songs to my iphone.  What can I do to get them all back onto itunes?  tnx

    It appears that many of my tunes have been moved to another "library" so when I sync I am not getting all of the songs on my ipod or iphone.  How do I rectify this?  tnx

    Perhaps this article can be of assistance in locating these lost or missing tracks in iTunes.
    iTunes: Finding lost media and downloads
    B-rock

  • HT1918 I moved to another country and would like to change the billing country for the credit card. It doesn't allow me to switch the country only street etc.. Do I have to create a new account separately for a new country?

    I moved to another country and would like to change the billing country for the credit card. It doesn't allow me to switch the country only street etc.. Do I have to create a new account separately for a new country?

    Nope. You can only have one credit card attached to an account at a time. Its not that big of a deal to use two accounts, users do this all the time. Create the second account(UK Account) in iTunes on your computer...sign out of your Italian account first. Then authorize your computer for this new account: Store>Authorize this computer. Then sync your phone. Now, to switch accounts on your phone: Settings>Store...tap the ID shown...sign out...then sign back in with the ID you want to use.

  • Change the Post Moved to another Forum procedure

    When a post gets moved to another forum, and you click on the green-arrow Moved: it shows you a new screen with the new link, and info where it is moved to.
    See here and here
    Could that be changed in such a way, that when you click on the Moved: it takes you direct to that post in the new forum, without the in-between message?
    Message Edited by RealBlackStuff on 12-22-2007 10:01 AM

    I wonder if it would do what you're asking if we didn't put anything in the comment box?  I'll try that.
    I had been leaving a placeholder and filling in that comment in for now just to reinforce the idea that people should watch where they're posting in the first place.  I wasn't planning to keep doing that once things are firmly established here, and we don't leave a trail of breadcrumbs at TPF any more when we move something.  It's just clutter.
    OK, I tried not putting a comment in, and it didn't change anything.  I did find out that I can delete the placeholder, though, without deleting the moved thread.  In phpBB, deleting the placeholder dumps the whole thread.  I think that's an improvement from Lithium over phpBB.
    Message Edited by nonny on 12-22-2007 11:01 AM
    English Community   Deutsche Community   Comunidad en Español   Русскоязычное Сообщество
    Jane
    2015 X1 Carbon, ThinkPad Slate, T410s, X301, X200 Tablet, T60p, HP TouchPad, iPad Air 2, iPhone 5S, IdeaTab A2107A, Yoga Tablet, Yoga 3 Pro
    I am not a Lenovo Employee.
    I AM one of those crazy ThinkPad zealots!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"!

  • AXF_SOAPCALL  response error 302 Moved Temporarily

    DECLARE
    STRREQUEST VARCHAR2(32767);
    strResponse VARCHAR2(32767);
    BEGIN
    STRREQUEST :='<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
    <soap:Header>
    <Security xmlns="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
    <UsernameToken>
    <Username>weblogic</Username> <Password>user_passwrod</Password>
    </UsernameToken>
    </Security>
    </soap:Header>
    <soap:Body xmlns:ns1="http://imaging.oracle/">
    <ns1:updateDocument>
    <documentId>2.IPM_002620</documentId>
    <uploadToken></uploadToken>
    <fieldValues name="Status" id="4">
    <value type="TEXT">Posted</value>
    </fieldValues>
    <reserved>0</reserved>
    </ns1:updateDocument>
    </soap:Body>
    </soap:Envelope>
    STRRESPONSE := AXF_SOAPCALL ('http://myserver:16000/imaging/ws' , STRREQUEST, 'true' ,Null,Null );
    DBMS_OUTPUT.PUT_LINE (STRRESPONSE);
    end;
    getting the folowing response :
    <html><head><title>302 Moved Temporarily</title></head>
    <body bgcolor="#FFFFFF">
    <p>This document you requested has moved temporarily.</p>
    <p>It's now at http://amcon-orclipm1:16000/imaging/ws/.</p>
    </body></html>
    Any idea what's the error :
    302 Moved Temporarily
    his document you requested has moved temporarily
    Thanks
    Bilal

    Hi,
    I am working on a similar scenario where I my consuming an external web service using https protocol from PI.
    I have configured a soap receiver channel to call the target url of this web service as https://portal.xyz.org.uk/webservice_alt.
    I am getting an error HTTP 302 suggesting that PI is not able to follow the re-direction to the target URL as the service resides not on that URL but on https://portal1.xyz.org.uk/webservice_alt or https://portal2.xyz.org.uk/webservice_alt.
    This is their server fail over handling mechanism which is very common. But PI 7.0 is not able to handle this.
    So if I change the target URL on the SOAP receiver channel to  https://portal1.xyz.org.uk/web service  or  https://portal2.xyz.org.uk/webservice_alt , PI works fine without errors . But this is not the right approach because, every time the web service provider takes one of these systems down for upgrade/patching etc, they inform us and then I manually go and change the target URL to the available server on my production PI system config.
    My problem is I want to resolve this redirection error in PI. I have tried raising a call with SAP itself and they pointed out to use Axis adapter which is still not working.
    So I am here asking for help. any suggestions please from the experts?
    Thanks
    Jhansi.

  • Stop Video when moving to another "state"?

    Hello,
    I am not sure if this is a Flash Builder topic or a Flash Catalyst topic or I am guessing it is both.
    I  have a Catalyst that contains multiple flv clips. I am discovering that  when you play a video and then you decide to navigate to another  "state" or "location" in my case, that the video pauses. If you then  return to that state the video will start back up where it was paused.
    I am trying to figure out how to tell the program to stop all or any flv when moving to another state.
    Any help here would be great.
    Thank you.

     

  • I have lost my facetime option when moved to another country. pls suggest how can i get it back

    Hi ,
    Recenlty i have bouhgt  new iphone5s from middle east . When i was using the phone over there the facetime was working perfect for me .
    Now when i moved to another country i can not see the facetime option in the iphone .
    Could you pls suggest how can i get it back .

    Hi Stedman ,
    Thanks for the information !!
    I have checked the article and i can clear see that my Wireless carrier support the facetime feature
    so what could be the reason am not able to use the facetime option .

Maybe you are looking for

  • If my school gave us each an iPad 2 and there are always watching, Is it possible for them to see what I do on my Macbook Pro if I am using the same iTunes account?

    They said that the I pads would be used under the districts watch so If they can spy on my Mac then maybe I should used two different I tunes I mean they say we cnt even have music with one curse word

  • IPod connection to BMW

    I am having a problem linking my nano to my BMW 3 series. The dealership fitted the connection. When I try to connect the nano it gets stuck in a loop which says "Ok to disconnect" I have installed the latest software updates on the nano an followed

  • Good or bad mood ?

    I really think that Flex has a lot of qualities, but... Flash Player 10 is here, with lot of goodies, but... 1- Despite the fact that Adobe controls Flash, Flex and PDF Reader, it is still impossible to display from a Flex (not AIR) application, a PD

  • SOA Infra is failing to start

    Hi, I'm trying to start soa_server1 and everything starts fine, except soa_infra. I'm using following version of software Database: win32_11gR2_database_1of2.zip win32_11gR2_database_2of2.zip RCU: ofm_rcu_win32_11.1.1.3.3_disk1_1of1.zip Weblogic: wls

  • Need to find _CF_checkCFForm

    At the beginning of each page with a form that CF renders, it puts a JS function called _CF_checkWhateverForm. I need to find where in the guts of ColdFusion it is creating this function. When it tries to put the cursor in the first failed validiatio