Problem in creating complain with BAPI_BUSPROCESSND_CREATEMULTI

*& Report  YTEST2
REPORT  ytest2.
DATA: lv_header_guid TYPE guid_32,
      ls_orderadm_h TYPE TABLE OF  bapibus20001_header_ins WITH HEADER LINE,
      ls_input_fields TYPE TABLE OF bapibus20001_input_fields WITH HEADER LINE,
      lt_created_process TYPE TABLE OF bapibus20001_header_ins WITH HEADER LINE,
      lt_return TYPE TABLE OF bapiret2 WITH HEADER LINE ,
      lt_objects_to_save TYPE TABLE OF bapibus20001_guid_dis WITH HEADER LINE,
      lt_saved_objects TYPE TABLE OF  bapibus20001_object_id WITH HEADER LINE,
      lt_log TYPE  bapibus20001_control-log_handle,
      ls_objects_to_save TYPE bapibus20001_guid_dis,
      lt_orgman TYPE TABLE OF bapibus20001_orgman_ins WITH HEADER LINE,
     lt_partner TYPE TABLE OF bapibus20001_partner_ins WITH HEADER LINE,
     lt_service TYPE TABLE OF bapibus20001_service_os_ins WITH HEADER LINE .
CALL FUNCTION 'GUID_CREATE'
  IMPORTING
    ev_guid_32 = lv_header_guid.
*CONCATENATE text-d01 is_import-complt_id i
*INTO ls_orderadm_h-description SEPARATED BY space.
PERFORM orderadm_h.
PERFORM orgman.
PERFORM partner.
PERFORM lt_service.
CLEAR: lt_created_process, lt_return.
CALL FUNCTION 'BAPI_BUSPROCESSND_CREATEMULTI'
TABLES
  header = ls_orderadm_h
item =
activity =
sales =
  artner = lt_partner
  organisation = lt_orgman
shipping =
appointment = lt_appointment
text = lt_text
  service_os = lt_service
status =lt_status
  input_fields = ls_input_fields
  created_process = lt_created_process
  return = lt_return.
lead =
opportunity =
product =
scheduleline =
customer_head =
customer_item =
pricing =
pricing_item =
condition_create =
billing = *
config_cfg =
Config_blb =
config_ins =
config_prt =
config_val = .
CLEAR ls_objects_to_save.
ls_objects_to_save-guid = lv_header_guid.
APPEND ls_objects_to_save TO lt_objects_to_save.
CLEAR lt_return.
CALL FUNCTION 'BAPI_BUSPROCESSND_SAVE'
* EXPORTING
  * update_task_local = false
  * save_frame_log = false
   IMPORTING
     log_handle = lt_log
   TABLES
     objects_to_save = lt_objects_to_save
     saved_objects = lt_saved_objects
     return = lt_return .
REFRESH lt_return.
CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
  EXPORTING
    wait   = 'X'
  IMPORTING
    return = lt_return.
BREAK-POINT.
*&      Form  ORDERADM_H
      text
-->  p1        text
<--  p2        text
FORM orderadm_h .
  ls_orderadm_h-guid = lv_header_guid.
  ls_orderadm_h-process_type = 'ZCRM'.
  ls_orderadm_h-created_by = 'IBM_ABAP'.
  ls_orderadm_h-description = 'SMS COMPLAIN'.
  APPEND ls_orderadm_h TO ls_orderadm_h.
  CLEAR ls_input_fields.
  ls_input_fields-ref_guid = lv_header_guid.
  ls_input_fields-ref_kind = 'A'.
  ls_input_fields-logical_key = '1'.
  ls_input_fields-objectname ='ORDERADM_H'.
  ls_input_fields-fieldname = 'GUID'.
  ls_input_fields-changeable = ' '.
  APPEND ls_input_fields TO ls_input_fields.
*ls_input_fields-fieldname = 'HANDLE'.
*APPEND ls_input_fields TO lS_input_fields.
  ls_input_fields-fieldname = 'PROCESS_TYPE'.
  APPEND ls_input_fields TO ls_input_fields.
  ls_input_fields-fieldname = 'DESCRIPTION'.
  APPEND ls_input_fields TO ls_input_fields.
  ls_input_fields-fieldname = 'CREATED_BY'.
  APPEND ls_input_fields TO ls_input_fields.
ENDFORM.                    " ORDERADM_H
*&      Form  ORGMAN
      text
-->  p1        text
<--  p2        text
FORM orgman .
CALL FUNCTION 'GUID_CREATE'
IMPORTING
   ev_guid_32 = lv_header_guid.
  lt_orgman-ref_guid = lv_header_guid.
  lt_orgman-dis_channel = 10.
  lt_orgman-division = 10.
  lt_orgman-sales_org = 'O 50000649'.
  lt_orgman-sales_office = 'O 50000650'.
  lt_orgman-service_org = 'O 50000649'.
  lt_orgman-mode = 'A'.
  APPEND lt_orgman TO lt_orgman.
  CLEAR ls_input_fields.
  ls_input_fields-ref_guid = lv_header_guid.
  ls_input_fields-ref_kind = 'A'.
  ls_input_fields-logical_key = '2'.
  ls_input_fields-objectname ='ORGMAN'.
  ls_input_fields-fieldname = 'REF_GUID'.
  APPEND ls_input_fields TO ls_input_fields.
  ls_input_fields-fieldname = 'DIS_CHANNEL'.
  APPEND ls_input_fields TO ls_input_fields.
  ls_input_fields-fieldname = 'DIVISION'.
  APPEND ls_input_fields TO ls_input_fields.
  ls_input_fields-fieldname = 'SALES_ORG'.
  APPEND ls_input_fields TO ls_input_fields.
  ls_input_fields-fieldname = 'SALES_OFFICE'.
  APPEND ls_input_fields TO ls_input_fields.
  ls_input_fields-fieldname = 'SERVICE_ORG'.
  APPEND ls_input_fields TO ls_input_fields.
ENDFORM.                    " ORGMAN
*&      Form  PARTNER
      text
-->  p1        text
<--  p2        text
FORM partner .
CALL FUNCTION 'GUID_CREATE'
IMPORTING
   ev_guid_32 = lv_header_guid.
lt_partner-MODE = 'A'.
  lt_partner-ref_guid = lv_header_guid.
  lt_partner-partner_fct = '00000014'.
  lt_partner-partner_no = 'EM00000022'.
  APPEND lt_partner TO lt_partner.
  lt_partner-partner_fct = '00000004'.
  lt_partner-partner_no = '415'.
  APPEND lt_partner TO lt_partner.
  lt_partner-partner_fct = '00000003'.
  lt_partner-partner_no = '415'.
  APPEND lt_partner TO lt_partner.
  lt_partner-partner_fct = '00000002'.
  lt_partner-partner_no = '415'.
  APPEND lt_partner TO lt_partner.
  lt_partner-partner_fct = '00000001'.
  lt_partner-partner_no = '415'.
  APPEND lt_partner TO lt_partner.
  CLEAR ls_input_fields.
  ls_input_fields-ref_guid = lv_header_guid.
  ls_input_fields-ref_kind = 'A'.
  ls_input_fields-logical_key = '3'.
  ls_input_fields-objectname ='PARTNER'.
  ls_input_fields-fieldname = 'PARTNER_FCT'.
  APPEND ls_input_fields TO ls_input_fields.
  ls_input_fields-fieldname = 'PARTNER_NO'.
  APPEND ls_input_fields TO ls_input_fields.
ENDFORM.                    " PARTNER
*&      Form  LT_SERVICE
      text
-->  p1        text
<--  p2        text
FORM lt_service .
CALL FUNCTION 'GUID_CREATE'
IMPORTING
   ev_guid_32 = lv_header_guid.
  lt_service-ref_guid = lv_header_guid.
  lt_service-subject_profile = ' ' .
  lt_service-cat_type = 'A1'.
  lt_service-code_group = 'ZCODEGR1'.
  lt_service-code = '0001'.
  lt_service-mode = 'A'.
  APPEND lt_service TO lt_service.
  CLEAR ls_input_fields.
  ls_input_fields-ref_guid = lv_header_guid.
  ls_input_fields-ref_kind = 'A'.
  ls_input_fields-logical_key = '4'.
  ls_input_fields-objectname ='SERVICE_OS'.
  ls_input_fields-fieldname = 'REF_GUID'.
  APPEND ls_input_fields TO ls_input_fields.
  ls_input_fields-fieldname = 'SUBJECT_PROFILE'.
  APPEND ls_input_fields TO ls_input_fields.
  ls_input_fields-fieldname = 'CAT_TYPE'.
  APPEND ls_input_fields TO ls_input_fields.
  ls_input_fields-fieldname = 'CODE_GROUP'.
  APPEND ls_input_fields TO ls_input_fields.
  ls_input_fields-fieldname = 'CODE'.
  APPEND ls_input_fields TO ls_input_fields.
  ls_input_fields-fieldname = 'MODE'.
  APPEND ls_input_fields TO ls_input_fields.
ENDFORM.                    " LT_SERVICE

FORM partner .
*  CALL FUNCTION 'GUID_CREATE'
*  IMPORTING
*    ev_guid_32 = lv_header_guid.
*  lt_partner-MODE = 'A'.
  lt_partner-ref_guid = lv_header_guid.
  lt_partner-partner_fct = '00000014'.
  lt_partner-partner_no = 'EM00000022'.
  lt_partner-REF_HANDLE = '0000000002'.
  APPEND lt_partner TO lt_partner.
  lt_partner-partner_fct = '00000004'.
  lt_partner-partner_no = '415'.
  APPEND lt_partner TO lt_partner.
  lt_partner-partner_fct = '00000003'.
  lt_partner-partner_no = '415'.
  APPEND lt_partner TO lt_partner.
  lt_partner-partner_fct = '00000002'.
  lt_partner-partner_no = '415'.
  APPEND lt_partner TO lt_partner.
  lt_partner-partner_fct = '00000001'.
  lt_partner-partner_no = '415'.
  APPEND lt_partner TO lt_partner.
  CLEAR ls_input_fields.
  ls_input_fields-ref_guid = lv_header_guid.
  ls_input_fields-ref_kind = 'A'.
  ls_input_fields-logical_key = '3'.
  ls_input_fields-objectname ='PARTNER'.
  ls_input_fields-REF_HANDLE = '0000000002'.
  ls_input_fields-fieldname = 'PARTNER_FCT'.
  APPEND ls_input_fields TO ls_input_fields.
  ls_input_fields-fieldname = 'PARTNER_NO'.
  APPEND ls_input_fields TO ls_input_fields.
ENDFORM.
FORM lt_service .
*  CALL FUNCTION 'GUID_CREATE'
*  IMPORTING
*    ev_guid_32 = lv_header_guid.
  lt_service-ref_guid = lv_header_guid.
  lt_service-REF_HANDLE = '0000000002'.
  lt_service-subject_profile = ' ' .
  lt_service-cat_type = 'A1'.
  lt_service-code_group = 'ZCODEGR1'.
  lt_service-code = '0001'.
  lt_service-mode = 'A'.
  APPEND lt_service TO lt_service.
  CLEAR ls_input_fields.
  ls_input_fields-ref_guid = lv_header_guid.
  ls_input_fields-ref_kind = 'A'.
  ls_input_fields-logical_key = '4'.
  ls_input_fields-objectname ='SERVICE_OS'.
  ls_input_fields-REF_HANDLE = '0000000002'.
  ls_input_fields-fieldname = 'REF_GUID'.
  APPEND ls_input_fields TO ls_input_fields.
  ls_input_fields-fieldname = 'SUBJECT_PROFILE'.
  APPEND ls_input_fields TO ls_input_fields.
  ls_input_fields-fieldname = 'CAT_TYPE'.
  APPEND ls_input_fields TO ls_input_fields.
  ls_input_fields-fieldname = 'CODE_GROUP'.
  APPEND ls_input_fields TO ls_input_fields.
  ls_input_fields-fieldname = 'CODE'.
  APPEND ls_input_fields TO ls_input_fields.
  ls_input_fields-fieldname = 'MODE'.
  APPEND ls_input_fields TO ls_input_fields.
ENDFORM.

Similar Messages

  • Problem while Creating MVLOG with synonym in Oracle 9i:Is it an Oracle Bug?

    Hi All,
    I am facing a problem while Creating MVLOG with synonym in Oracle 9i but for 10G it is working fine. Is it an Oracle Bug? or i am missing something.
    SQL> select * from v$version;
    BANNER
    Oracle Database 10g Express Edition Release 10.2.0.1.0 - Product
    PL/SQL Release 10.2.0.1.0 - Production
    CORE    10.2.0.1.0      Production
    TNS for 32-bit Windows: Version 10.2.0.1.0 - Production
    NLSRTL Version 10.2.0.1.0 - Production
    SQL>
    SQL> create table t ( name varchar2(20), id varchar2(1) primary key);
    Table created.
    SQL> create materialized view log on t;
    Materialized view log created.
    SQL> create public synonym syn_t for t;
    Synonym created.
    SQL> CREATE MATERIALIZED VIEW MV_t
      2  REFRESH ON DEMAND
      3  WITH PRIMARY KEY
      4  AS
      5  SELECT name,id
      6  FROM syn_t;
    Materialized view created.
    SQL> CREATE MATERIALIZED VIEW LOG ON  MV_t
      2  WITH PRIMARY KEY
      3   (name)
      4    INCLUDING NEW VALUES;
    Materialized view log created.
    SQL> select * from v$version;
    BANNER
    Oracle9i Enterprise Edition Release 9.2.0.6.0 - Production
    PL/SQL Release 9.2.0.6.0 - Production
    CORE    9.2.0.6.0       Production
    TNS for Solaris: Version 9.2.0.6.0 - Production
    NLSRTL Version 9.2.0.6.0 - Production
    SQL>
    SQL> create table t ( name varchar2(20), id varchar2(1) primary key);
    Table created.
    SQL> create materialized view log on t;
    Materialized view log created.
    SQL> create public synonym syn_t for t;
    Synonym created.
    SQL> CREATE MATERIALIZED VIEW MV_t
    REFRESH ON DEMAND
    WITH PRIMARY KEY
    AS
      2    3    4    5  SELECT name,id
    FROM syn_t;   6
    Materialized view created.
    SQL> CREATE MATERIALIZED VIEW LOG ON  MV_t
    WITH PRIMARY KEY
    (name)
      INCLUDING NEW VALUES;  2    3    4
    CREATE MATERIALIZED VIEW LOG ON  MV_t
    ERROR at line 1:
    ORA-12014: table 'MV_T' does not contain a primary key constraintRegards
    Message was edited by:
    Avinash Tripathi
    null

    Hi Nicloei,
    Thanks for the reply. Actually i don't want any work around (Creating MVLOG on table rather than synonym is fine with me) . I just wanted to know it is actually an oracle bug or something else.
    Regards
    Avinash

  • Problem in creating PDF with InDesign CS5.5

    Problem in creating PDF with InDesign CS5.5:
    exporting a file in pdf, setting "Press Quality" or "PDF/X-1a: 2001" and selecting "Crop Marks" and the surplus of xx mm, the elements contained in the MASTER page move from the original position or disappear at random.
    Can you help me, please?
    Thanks a lot.

    Try Remove minor corruption by exporting

  • Problem while creating xml with cdata section

    Hi,
    I am facing problem while creating xml with cdata section in it. I am using Oracle 10.1.0.4.0 I am writing a stored procedure which accepts a set of input parameters and creates a xml document from them. The code snippet is as follows:
    select xmlelement("DOCUMENTS",
    xmlagg
    (xmlelement
    ("DOCUMENT",
    xmlforest
    (m.document_name_txt as "DOCUMENT_NAME_TXT",
    m.document_type_cd as "DOCUMENT_TYPE_CD",
    '<![cdata[' || m.document_clob_data || ']]>' as "DOCUMENT_CLOB_DATA"
    ) from table(cast(msg_clob_data_arr as DOCUMENT_CLOB_TBL))m;
    msg_clob_data_arr is an input parameter to procedure and DOCUMENT_CLOB_TBL is a pl/sql table of an object containing 3 attributes: first 2 being varchar2 and the 3rd one as CLOB. The xml document this query is generating is as follows:
    <DOCUMENTS>
    <DOCUMENT>
    <DOCUMENT_NAME_TXT>TestName</DOCUMENT_NAME_TXT>
    <DOCUMENT_TYPE_CD>BLOB</DOCUMENT_TYPE_CD>
    <DOCUMENT_CLOB_DATA>
    &lt;![cdata[123456789012345678901234567890123456789012]]&gt;
    </DOCUMENT_CLOB_DATA>
    </DOCUMENT>
    </DOCUMENTS>
    The problem is instead of <![cdata[....]]> xmlforest query is encoding everything to give &lt; for cdata tag. How can I overcome this? Please help.

    SQL> create or replace function XMLCDATA_10103 (elementName varchar2,
      2                                             cdataValue varchar2)
      3  return xmltype deterministic
      4  as
      5  begin
      6     return xmltype('<' || elementName || '><![CDATA[' || cdataValue || ']]>
      7  end;
      8  /
    Function created.
    SQL>  select xmlelement
      2         (
      3            "Row",
      4            xmlcdata_10103('Junk','&<>!%$#&%*&$'),
      5            xmlcdata_10103('Name',ENAME),
      6            xmlelement("EMPID", EMPNO)
      7         ).extract('/*')
      8* from emp
    SQL> /
    <Row>
      <Junk><![CDATA[&<>!%$#&%*&$]]></Junk>
      <Name><![CDATA[SMITH]]></Name>
      <EMPID>7369</EMPID>
    </Row>
    <Row>
      <Junk><![CDATA[&<>!%$#&%*&$]]></Junk>
      <Name><![CDATA[ALLEN]]></Name>
      <EMPID>7499</EMPID>
    </Row>
    <Row>
      <Junk><![CDATA[&<>!%$#&%*&$]]></Junk>
      <Name><![CDATA[WARD]]></Name>
      <EMPID>7521</EMPID>
    </Row>
    <Row>
      <Junk><![CDATA[&<>!%$#&%*&$]]></Junk>
      <Name><![CDATA[JONES]]></Name>
      <EMPID>7566</EMPID>
    </Row>
    <Row>
      <Junk><![CDATA[&<>!%$#&%*&$]]></Junk>
      <Name><![CDATA[MARTIN]]></Name>
      <EMPID>7654</EMPID>
    </Row>
    <Row>
      <Junk><![CDATA[&<>!%$#&%*&$]]></Junk>
      <Name><![CDATA[BLAKE]]></Name>
      <EMPID>7698</EMPID>
    </Row>
    <Row>
      <Junk><![CDATA[&<>!%$#&%*&$]]></Junk>
      <Name><![CDATA[CLARK]]></Name>
      <EMPID>7782</EMPID>
    </Row>
    <Row>
      <Junk><![CDATA[&<>!%$#&%*&$]]></Junk>
      <Name><![CDATA[SCOTT]]></Name>
      <EMPID>7788</EMPID>
    </Row>
    <Row>
      <Junk><![CDATA[&<>!%$#&%*&$]]></Junk>
      <Name><![CDATA[KING]]></Name>
      <EMPID>7839</EMPID>
    </Row>
    <Row>
      <Junk><![CDATA[&<>!%$#&%*&$]]></Junk>
      <Name><![CDATA[TURNER]]></Name>
      <EMPID>7844</EMPID>
    </Row>
    <Row>
      <Junk><![CDATA[&<>!%$#&%*&$]]></Junk>
      <Name><![CDATA[ADAMS]]></Name>
      <EMPID>7876</EMPID>
    </Row>
    <Row>
      <Junk><![CDATA[&<>!%$#&%*&$]]></Junk>
      <Name><![CDATA[JAMES]]></Name>
      <EMPID>7900</EMPID>
    </Row>
    <Row>
      <Junk><![CDATA[&<>!%$#&%*&$]]></Junk>
      <Name><![CDATA[FORD]]></Name>
      <EMPID>7902</EMPID>
    </Row>
    <Row>
      <Junk><![CDATA[&<>!%$#&%*&$]]></Junk>
      <Name><![CDATA[MILLER]]></Name>
      <EMPID>7934</EMPID>
    </Row>
    14 rows selected.
    SQL>

  • Problem of creating workbook with permanent template?

    Hi all,
    Iam facing some problem while creating the workbook with permanent template.Let me expalin in detail.
    I have created 3 queries (ex:Stock) and i have to insert these in one workbook with permanent template.I  had selected the the permanent template option in settings also.iam able to insert the 3 queris and iam not getting the permanent tempalate.which is mandatory.
    I tried saving the existing workbook with same tempalate and removed the query and tried to insert the queries but iam getting <b>abbort system error in program</b>
    Pls help me out of this issue.
    Thanks and regards,
    Rajeev

    Hi Joe,
    We've seen this error when using express VI's inside of template VI's which are loaded using VI server. Are you doing that? If yes, then take all the express VIs that are inside the template VI and turn them into static subVIs.
    I don't know if it will help in your case, but let's try it.
    Regards,
    Luca
    Regards,
    Luca

  • Problem to create jar with images

    Hello
    I have a project, it's a frame with a panel that contains a image, I want to create a Jar, but I have to problems, if create a Jar and execute out the project folder, I can't see the images, if I use getClass().getResource, I have other problems, I can't add panels.
    How it's difficult to say, I going to put a link from the project make with eclipse [My project|http://www.megaupload.com/?d=HBPHUWE9] , if someone wants have a look I would be grateful.
    http://www.megaupload.com/?d=HBPHUWE9
    Just look at the package com.constructor.interfaz
    To make the jar use the class InterfazFactoriaPaneles
    Thanks in advance !
    Edited by: Dav1d on Jul 10, 2009 6:11 AM
    Edited by: Dav1d on Jul 10, 2009 6:12 AM

    I explain better:
    I have a Class -> InterfazFactoriaPaneles, with this main
    public static void main(String[] args) {
              SwingUtilities.invokeLater(new Runnable() {
                   public void run() {
                        InterfazFactoriaPaneles application = new InterfazFactoriaPaneles();
                        application.getJFrame().setVisible(true);
    in the Frame I add a JPanel with an image, to load the image I override this method, where com.constructor.imagenes, it's the path where I've got my images :
    public void paintComponent(Graphics g){
              Dimension tamanio = getSize();                    
              ImageIcon     imagenFondo = new ImageIcon("./src/com/constructor/imagenes/patronConstructor.jpg");     
              g.drawImage(imagenFondo.getImage(),0,0,tamanio.width,tamanio.height,null);
              setOpaque(false);
              super.paintComponent(g);
    the with a menu, I remove the panel with the image I load other panel with components (JTextField, JTable, JLabel,...).
    If run the program from eclipse, everything it's ok, if I export into jar file, it works if the jar it's inside the project folder, but if I put the jar in other location, doens't load images, I google from answer and I read to put images path like that: new ImageIcon(getClass().getResource("/com/constructor/imagenes/patronConstructor.jpg")); , but if I do that, and run in eclipse, everything it's ok, but If I export into a Jar, I load the image, but when I try to change to other panel it doesn't work.
    So I do not what's the answer, if someone check my code, and try to make a jar, and the move the jar file into other location, will be able to see images doesn't appears.

  • Problem when creating contract  with foreign trade / customs

    Hi,
    I encountered a problem when creating contract / outline agreement.
    I used ME31K to create a contract with a vendor outside of our country. I suppose that I should be able to see "Foreign Trade / Customs" in "Header" menu, but this entry is gray, I cannot enter it.
    I tried to create a scheduling agreement using ME31L with the same vendor and material, I can see "Foreign Trade / Customs" information. I suppose these two process are similar, aren't they?
    Btw., I checked the master data according to this thread:
    http://help.sap.com/saphelp_46c/helpdata/en/ed/3b6cc697e711d1b4e20000e82d81b0/content.htm
    Can anyone give me some hint?
    Thanks!
    Charlie

    These two processes are different:
    The Contract agreement or the Outline Agreement is that create the centrally contract (cross-plant) where it can maintain different pricing conditions for each and every plant. It creates the Release Order with reference to Outline Agreement. No detailed delivery schedule can be made in the Release Order. No Release documentation is created. Only time-dependent conditions can be created, Some Item Category 'M' and 'W' can be used.
    Whereas the Scheduling Agreement is the Plant Location what must be entered in the Scheduling Agreement. Its no need to create any other purchasing document except for delivery schedule line via Transaction ME38 or MRP running (with the appropriate setting of Source List). Delivery Schedule line items are created subject to your specific requirement. It can create both Scheduling Agreement with or without release of Documentation (subject to the Document Type LP or LPA) with the selection of either FRC or JIT delivery schedule. Either time-dependent or time-independent conditions can be created subject to the customizing in the Document Type of the Scheduling Agreement. Item Category 'M' and 'W' can not be used.

  • Problem when creating Database with Database, OS and hardware Configuraiton

    Problem when creating Database:
    There are two problems, which I faced during creation of database. When creating database with Oracle Database Assistant. One when creating pre tuned database from CD. And second when creating customized database giving options your self.
    Problem # 1:
    When creating pre tuned database from CD. The process of creating Database is 90 % complete and is at step # 3 Initializing Database. It gives error ORA-03113: end-of-file on communication channel.
    I searched following oracle help for this problem.
    ORA-03113: end-of-file on communication channel
    Cause: An unexpected end-of-file was processed on the communication channel. The problem could not be handled by the Net8, two-task software. This message could occur if the shadow two-task process associated with a Net8 connect has terminated abnormally, or if there is a physical failure of the interprocess communication vehicle, that is, the network or server machine went down.
    Action: If this message occurs during a connection attempt, check the setup files for the appropriate Net8 driver and confirm Net8 software is correctly installed on the server. If the message occurs after a connection is well established, and the error is not due to a physical failure, check if a trace file was generated on the server at failure time. Existence of a trace file may suggest an Oracle internal error that requires the assistance of customer support.
    Conclusion:
    What I conceive from this problem and the help available is that, I have to install NET8 again. But I am not sure about the solution, please tell me whether I am rite or not.
    Problem # 2:
    When creating database with custom option. The process of creating Database is 2 % complete and is at step # 2 Creating Database Files. It gives error ORA-12571: TNS:packet writer failure.
    I searched following oracle help for this problem.
    ORA-12571: TNS:packet writer failure
    Cause: An error occurred during a data send.
    Action: Not normally visible to the user. For further details, turn on tracing and re-execute the operation. If error persists, contact Worldwide Customer Support.
    Conclusion:
    What I conceive from this problem and the help available is that, I have to install NET8 again. But I am not sure about the solution, please tell me whether I am rite or not.
    Software & Hardware Configuration are as follow:
    Software:
    Database
    Oracle 8.1.7.0.0 (Oracle8i)
    Operating System
    Microsoft Windows 2000
    5.00.2195
    Service Pack 2
    Hardware:
    x86 Family 6 Model 8 stepping
    10
    AT/AT COMPITABLE
    260,400 KB RAM

    user563502 wrote:
    I am working on Solaris 8. What is Alert_SID.log? where can I find it?
    ThanksFor the responsible of the upgrade of Oracle database, not even know what Alert log is?
    to be honest with you, this is not your work.

  • Problem to create database with RAC 10g with Oracle Standard Edition

    I install CRS (Cluster Ready Services), and then install Oracle 10g database. Also, I install patches 10.1.0.4. When I create database with ASM storage give me a error to create files database.
    Any idea?
    Thanks
    Edu Alcañiz

    You were right.
    http://download-uk.oracle.com/docs/html/B14203_05/intro.htm#sthref44
    under the section
    "1.3 Configuration Tasks for Oracle Clusterware and Oracle Real Application Clusters"
    "... If you use RAC on Oracle Database 10g Standard Edition, then you must use ASM."
    Thanks, problem solved.
    - Vegard

  • Problem in creating users with password restrictions

    I have enabled the following option in the Authentication>Enterprise tab of CMC.
    Must contain at least N Characters and specified N as 7
    Enforce mixed-case passwords
    However I am able to create user with password as abcd.
    Please suggest.
    Thanks in Advance

    I might be missing something but the rule applies to users changing their pw not administrators creating accounts. If the administrator sets this rule it would be thought/assumed that they would enforce their own rule when creating accounts. The users however should not be able to select 4 character passwords.
    I'll run some tests and see if I find out anything different.
    Tested this on XIR2 SP4 and XI 3.0 The rules apply to the user not the administrator creating the account.
    So create an account while the 7 character pw is enabled. By default the user logs in with the pw (any amount of characters) and is prompted to change their pw. They cannot choose anything less than 7 characters. So unless an administrator creates an account with a password less than 7 characters AND deselects the option to force a pw change. All new users will be forced to select a 7 character password.
    This is by design. If it forced the administrator to create accounts without a 7 character pw they could simply deselect the options(as administrators) so there is no security in forcing this.
    Regards,
    Tim
    Edited by: Tim Ziemba on Aug 13, 2008 5:28 PM
    Edited by: Tim Ziemba on Aug 13, 2008 5:33 PM

  • Net_PRICE problem while creating PO with BAPI_PO_CREATE1 ***ASAP

    Dear All,
    While creating PO with bapi BAPI_PO_CREATE1, The net price is not populating, though the logic is correct, as when i change the net price to some otrher value of in the bapi, while debugging, it is taking the Net price, but in general run, the price is over written by Gross price in PO, Please Help, Its Urgent.
    Any Sample codes are welcomed, where Net_price is used.
    Thanks in Advance..
    Rewards Guaranteed.

    Dear All,
    While creating PO with bapi BAPI_PO_CREATE1, The net price is not populating, though the logic is correct, as when i change the net price to some otrher value of in the bapi, while debugging, it is taking the Net price, but in general run, the price is over written by Gross price in PO, Please Help, Its Urgent.
    Any Sample codes are welcomed, where Net_price is used.
    Thanks in Advance..
    Rewards Guaranteed.

  • Problem on CREATING TABLES  with PRIMARY KEY

    Hi there !
    I use the orcle 8i, and i don't know why i can't create table with any primary key EXample:
    SQL> CREATE TABLE O_caisses
    2 (No_caisse NUMBER(3) constraint caisses_pk PRIMARY KEY,
    3 NB_BILLETS NUMBER(5)
    4 )
    5 /
    CREATE TABLE O_caisses
    ERROR at line 1:
    ORA-18008: cannot find OUTLN schema
    Please could some body help me !
    Thanks alot!
    Luong.

    Luong,
    Your syntax is fine. It looks like you don't have the correct database privileges to create the table. The error message you're getting suggests that you don't have CREATE ANY OUTLINE privileges. You should log in as a user than can grant these privileges and give yourself the correct privileges. I think the syntax is
    SQL>grant create any outline to username;
    Alison

  • Problem in creating reports with one multiple detail tables

    hi,
    i tried to create workbook in the discoverer user edition with ONE MASTER TABLES AND MULTIPLE DETAL TABLES. but it does not allow . is there any solution ?
    NAresh

    I've given up on trying to do this in the user edition - the 2 masters to multiple details. Instead, I create custom folders in the admin edition. They never complain about masters and details. If anyone ever figures out how to do this in the User Edition, I'd sure like to hear about it. I do agree that the original problem - 1 master to multiple details works fine in 3.1.44.

  • [File] Problem while creating files with long pathnames

    Hello everybody
    I'm trying to create File objects corresponding to physical files. These files have very long pathnames because they are located in directories tree with large depth. So, my pathname conatins a lot of directories plus the name of the file itself.
    It seems, that there is a limitation in the length of the pathname that I pass to the File constructor because files with small pathnames are OK bu the ones with very large pathnames cannot be created.
    I tried the different File constructors (File(String pathname) and File(File parent, String childname)) but it still does not work. Even if the second constructor is a little bit better as it succeeds on files where the first constructor failed. But still, it's not enough.
    Please Help!
    Thank you
    Hugo

    RESOLVED!
    The problem was from the OS itself (Windows XP) which accepts at most 255 characters long path names.

  • Problem auto-creating tables with the IBFBS sample

    Hello,
    I'm fairly new to JDeveloper and OC4J and am trying to configure the new Financial Brokerage Service (IBFBS) sample to run on my system. I followed all of the setup instructions but have had problems getting the application to work. I've worked through a few issues, but I'm stuck on this one. When deploying/running the application to the JDev embedded OC4J an error occurs when trying to auto-create the tables for some of the EJBs. The error messages are all similar to this:
    "Auto-creating table: create table UserAccount_file:_M:_Ja_rfpkl9 (accountNumber NUMBER not null primary key, password VARCHAR2(255) null, firstName VARCHAR2(255) null, lastName VARCHAR2(255) null, organization VARCHAR2(255) null, address VARCHAR2(255) null, city VARCHAR2(255) null, state VARCHAR2(255) null, country VARCHAR2(255) null, phone VARCHAR2(255) null, accountBalance FLOAT null, email VARCHAR2(255) null, userType VARCHAR2(255) null, linesPerPage NUMBER null, alertMode VARCHAR2(255) null, mobileEmail VARCHAR2(255) null)
    Error creating table: ORA-00922: missing or invalid option"
    The app fails to start with an Ora message "Table or view does not exist"
    I think it's due to the colons in the table name, but how do I change the name of the table it's trying to create?
    I'm running JDeveloper 9.0.3 preview and 9.2.0.1.0 (patchset 1 applied) database all locally on a Windows XP SP1 machine.
    Any help appreciated.
    Nick

    Hi Nick,
    Firstly, regret for the late response.
    I guess what you are trying to do is run the Sample from JDeveloper itself. But this cannot be done, you have to deploy the
    sample to the embedded OC4J(<JDEV_HOME>/j2ee/home) bundled with JDev and run the sample from embedded OC4J.
    Refer to http://otn.oracle.com/sample_code/tutorials/fbs/over/setup.htm and follow the steps to deploy to OC4J.
    Curious to know if you were able to run it.
    Regards
    Elango.
    Hello,
    I'm fairly new to JDeveloper and OC4J and am trying to configure the new Financial Brokerage Service (IBFBS) sample to run on my system. I followed all of the setup instructions but have had problems getting the application to work. I've worked through a few issues, but I'm stuck on this one. When deploying/running the application to the JDev embedded OC4J an error occurs when trying to auto-create the tables for some of the EJBs. The error messages are all similar to this:
    "Auto-creating table: create table UserAccount_file:_M:_Ja_rfpkl9 (accountNumber NUMBER not null primary key, password VARCHAR2(255) null, firstName VARCHAR2(255) null, lastName VARCHAR2(255) null, organization VARCHAR2(255) null, address VARCHAR2(255) null, city VARCHAR2(255) null, state VARCHAR2(255) null, country VARCHAR2(255) null, phone VARCHAR2(255) null, accountBalance FLOAT null, email VARCHAR2(255) null, userType VARCHAR2(255) null, linesPerPage NUMBER null, alertMode VARCHAR2(255) null, mobileEmail VARCHAR2(255) null)
    Error creating table: ORA-00922: missing or invalid option"
    The app fails to start with an Ora message "Table or view does not exist"
    I think it's due to the colons in the table name, but how do I change the name of the table it's trying to create?
    I'm running JDeveloper 9.0.3 preview and 9.2.0.1.0 (patchset 1 applied) database all locally on a Windows XP SP1 machine.
    Any help appreciated.
    Nick

Maybe you are looking for

  • IdeaTab A2109A will not boot past Lenovo Splash screen

    Tablet was charging over night, early in the morning I heard a couple of beeps, and thought it was my phone.  After waking I turned on the Tablet and first saw a green circle with 100%, then after trying the power switch again, it booted to the Lenov

  • Itunes dropped the ball..

    no one can solve launch failures with itunes 7.5, 7.6... but i found a solution.. songbird! look it up... you wont turn back...

  • SAP-MM Material Master

    Dear Friends, I have created material using T.code:MM01 but when I go in change mode(MM02) system throws an error message ::The material does not exist or is not activated..So,what may be the problem? Any clue? Thanks&regards Eliaz

  • Downgrade ios6 back to ios 5.1.1

    hi,i have the new ipad 16 gb wi-fi and i made upgrade to ios 6 ,my question is..can i downgrade back to original ios?ty

  • Ajax request problem

    Hi , I am writting a simple login application using Ext-js and servlet. I need , show login form , if ok then go to success page , with some list generated at server sider otherwise to error page. Using Ext.FormPanel , I am submitting form and reques