Domain not created using unpack

I just installed jdev 12c on my linux box using the silent install procedure.
After this I just wanted to create a sample domain using the unpack command using the documentation I found here : pack and unpack Command Reference - 12c Release 1 (12.1.1)
My problem is that despite a successful command, the domain isn't created (as can been seen below)
Is there something else I need to  do before/afterwards?
[my_user@SERVER bin]$ ./unpack.sh -template=/home/my_user/Oracle/products/Oracle_Home/wlserver/common/templates/wls/wls.jar -domain=/home/my_user/user_projects/wl_domains/BASE_DOMAIN -user_name=USERNAME -password=PASSWORD -server_start_mode=prod -log=out.txt
<< read template from "/home/my_user/Oracle/products/Oracle_Home/wlserver/common/templates/wls/wls.jar"
>>  succeed: read template from "/home/my_user/Oracle/products/Oracle_Home/wlserver/common/templates/wls/wls.jar"
<< set config option ServerStartMode to "prod"
>>  succeed: set config option ServerStartMode to "prod"
<< find User "prodqa" as u1_CREATE_IF_NOT_EXIST
<< create User "prodqa" as u1_CREATE_IF_NOT_EXIST
>>  succeed: create User "USERNAME" as u1_CREATE_IF_NOT_EXIST
<< set u1_CREATE_IF_NOT_EXIST attribute Password to "********"
>>  succeed: set u1_CREATE_IF_NOT_EXIST attribute Password to "********"
<< write Domain to "/home/my_user/user_projects/wl_domains/BASE_DOMAIN"
[qa@dcpputb06001 bin]$ cd /home/my_user/user_projects/wl_domains/BASE_DOMAIN
-bash: cd: /home/my_user/user_projects/wl_domains/BASE_DOMAIN: No such file or directory

Turnout I had to use the following :
./unpack.sh -template=/home/MY_USER/Oracle/products/Oracle_Home/wlserver/common/templates/wls/wls.jar -domain=/home/MY_USER/user_projects/wl_domains/base_domain/ -user_name=weblogic -password=PASSWORD -server_start_mode=prod -log=./out.txt
I had to add ./ before the out.txt in order to have the log generated in the current folder.
I had to use the default weblogic user in order to generate the domain

Similar Messages

  • Invoking a web service not created using oracle web service lib

    Hi All,
    I have a need to invoke my web service from oracle sql command. My web service not created using oracle web service library, but it is created using axis c++ libraries. Is it possible to do so,
    Thanks in advance,
    Regards,
    Monica

    In order to call out from the database process, is SQL (or PL/SQL) you need to generate some client code, that understand the details about the specific of the service you want to invoke and can produce the correct SOAP request. Once this proxy is uploaded in the Database, you can use it.
    There is a set of Database Web services samples that should help you get started. You can also take a look at the developer's guide - see Developing a Web Service Client in the Database.
    Hope it answers your question.
    --eric                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • I have problem sending a email ..spool not created using custom FM

    Hi experts,
    i have problem sending a email ..spool not created using custom FM...this the custom FM
    * Send email notification
          lv_subject = text-037.
          lv_attachment = text-038.
          CALL FUNCTION 'Z_SEND_EMAIL_FROM_SPOOL'
            EXPORTING
              email1            = lv_email1
              email2            = lv_email2
              email3            = lv_email3
              subject           = lv_subject
              attachment_name   = lv_attachment
            EXCEPTIONS
              spool_not_created = 1
              OTHERS            = 2.
    Source code
    this is the source code for this FM
    IF sy-batch EQ 'X'.
        PERFORM get_job_details.
        PERFORM obtain_spool_id.
        PERFORM convert_spool_to_pdf.
        IF sy-subrc IS NOT INITIAL.
          MESSAGE e040(zhrcd) RAISING spool_not_created.
        ENDIF.
        PERFORM process_email USING email1
                                    email2
                                    email3
                                    subject
                                    attachment_name.
        WAIT UP TO 5 SECONDS.
        SUBMIT rsconn01 WITH mode   = 'INT'
                        WITH output = 'X'
                        AND RETURN.
      ENDIF.....
    Please let me know
    Edited by: Thomas Zloch on Nov 16, 2010 5:53 PM - please use code tags

    Hi srinivas ,
    Could you please Check
    FORM summary_report .
      DATA: lv_success TYPE i,
              lv_error TYPE i,
              lv_total TYPE i.
      DESCRIBE TABLE gt_data LINES lv_success.
    DESCRIBE TABLE gt_error LINES lv_error.
      DESCRIBE TABLE gt_message LINES lv_error.
    lv_total = lv_success + lv_error.
      lv_total = lv_success.
      gwa_summary-record = text-008."Number of Successful records.
      gwa_summary-number = lv_success.
      APPEND gwa_summary TO gt_summary.
      gwa_summary-record = text-009."Number of error records'.
      gwa_summary-number = lv_error.
      APPEND gwa_summary TO gt_summary.
      gwa_summary-record = text-010."Total number of records processed.
      gwa_summary-number =  lv_total.
      APPEND gwa_summary TO gt_summary.
    CLEAR gt_fieldcat.
      gwa_fieldcat_summ-col_pos = 1 .
      gwa_fieldcat_summ-fieldname  = 'RECORD'.
      gwa_fieldcat_summ-tabname = 'GT_SUMMARY'.
      gwa_fieldcat_summ-seltext_l  = text-011."Records
      gwa_fieldcat_summ-outputlen = '70'.
      APPEND gwa_fieldcat_summ TO gt_fieldcat_summ.
      gwa_fieldcat_summ-col_pos = 2 .
      gwa_fieldcat_summ-fieldname  = 'NUMBER'.
      gwa_fieldcat_summ-tabname = 'GT_SUMMARY'.
      gwa_fieldcat_summ-seltext_l  = text-012."Number
      gwa_fieldcat_summ-outputlen = '10'.
      APPEND gwa_fieldcat_summ TO gt_fieldcat_summ.
    ENDFORM.                    " SUMMARY_REPORT
    *&      Form  ERROR_REPORT
    FORM error_report .
    gt_fieldcat_err[] = gt_fieldcat[].
      gv_fieldcat_err-col_pos = 1.
      gv_fieldcat_err-fieldname  = 'PERNR'.
      gv_fieldcat_err-tabname = 'GT_MESSAGE'.
      gv_fieldcat_err-seltext_l  = text-070."Employee Number
      gv_fieldcat_err-outputlen = '20'.
      APPEND gv_fieldcat_err TO gt_fieldcat_err.
      gv_fieldcat_err-col_pos = 2.
      gv_fieldcat_err-fieldname  = 'MESSAGE'.
      gv_fieldcat_err-tabname = 'GT_MESSAGE'.
      gv_fieldcat_err-seltext_l  = text-071."Error Message
      gv_fieldcat_err-outputlen = '80'.
      APPEND gv_fieldcat_err TO gt_fieldcat_err.
    ENDFORM.                    " ERROR_REPORT
    *&      Form  FINAL_REPORT
    FORM final_report .
      DATA:lv_layout TYPE slis_layout_alv,
             lt_events_summ TYPE slis_t_event,
             lv_events_summ LIKE LINE OF lt_events_summ,
             lt_events_det TYPE slis_t_event,
             lv_events_det LIKE LINE OF lt_events_det,
             lt_events_err TYPE slis_t_event,
             lv_events_err LIKE LINE OF lt_events_det,
             lt_events_msg TYPE slis_t_event,
             lv_events_msg LIKE LINE OF lt_events_det.
      lv_events_summ-name = 'TOP_OF_PAGE'.
      lv_events_summ-form = 'TOP_OF_PAGE1'.
      APPEND lv_events_summ TO lt_events_summ.
      lv_events_det-name = 'TOP_OF_PAGE'.
      lv_events_det-form = 'TOP_OF_PAGE2'.
      APPEND lv_events_det TO lt_events_det.
      lv_events_err-name = 'TOP_OF_PAGE'.
      lv_events_err-form = 'TOP_OF_PAGE3'.
      APPEND lv_events_err TO lt_events_err.
      lv_events_msg-name = 'TOP_OF_PAGE'.
      lv_events_msg-form = 'TOP_OF_PAGE4'.
      APPEND lv_events_msg TO lt_events_msg.
      CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_INIT'
        EXPORTING
          i_callback_program = sy-repid.
      CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
        EXPORTING
          is_layout                        = lv_layout
          it_fieldcat                      = gt_fieldcat_summ
          i_tabname                        = 'IT_SUMMARY'
          it_events                        = lt_events_summ
      IT_SORT                          =
      I_TEXT                           = ' '
        TABLES
          t_outtab                         = gt_summary
    EXCEPTIONS
      PROGRAM_ERROR                    = 1
      MAXIMUM_OF_APPENDS_REACHED       = 2
      OTHERS                           = 3
    IF CHK_DTL IS NOT INITIAL.
      CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
        EXPORTING
          is_layout                        = lv_layout
          it_fieldcat                      = gt_fieldcat
          i_tabname                        = 'gt_data'
          it_events                        = lt_events_det
      IT_SORT                          =
      I_TEXT                           = ' '
        TABLES
          t_outtab                         = gt_data
    EXCEPTIONS
      PROGRAM_ERROR                    = 1
      MAXIMUM_OF_APPENDS_REACHED       = 2
      OTHERS                           = 3
    ENDIF.
    CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
       EXPORTING
         is_layout   = lv_layout
         it_fieldcat = gt_fieldcat_err
         i_tabname   = 'gt_error'
         it_events   = lt_events_err
       TABLES
         t_outtab    = gt_error.
    CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
       EXPORTING
         is_layout   = lv_layout
         it_fieldcat = gt_fieldcat_msg
         i_tabname   = 'gt_message'
         it_events   = lt_events_msg
       TABLES
         t_outtab    = gt_error.
      CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
        EXPORTING
          is_layout   = lv_layout
          it_fieldcat = gt_fieldcat_err
          i_tabname   = 'gt_message'
          it_events   = lt_events_err
        TABLES
          t_outtab    = gt_message.
    IF GT_MESSAGE[] IS NOT INITIAL.
      CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
        EXPORTING
          is_layout   = lv_layout
          it_fieldcat = gt_fieldcat_msg
          i_tabname   = 'gt_message'
          it_events   = lt_events_msg
        TABLES
          t_outtab    = gt_message.
    ENDIF.
      CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_DISPLAY'
    EXPORTING
       i_interface_check             = ' '
      IS_PRINT                      =
       i_screen_start_column         = 0
       i_screen_start_line           = 0
       i_screen_end_column           = 0
       i_screen_end_line             = 0
    IMPORTING
      E_EXIT_CAUSED_BY_CALLER       =
      ES_EXIT_CAUSED_BY_USER        =
    EXCEPTIONS
      PROGRAM_ERROR                 = 1
      OTHERS                        = 2
    ENDFORM.                    " FINAL_REPORT
    *&      Form  top_of_page
          text
    FORM top_of_page1.                                          "#EC CALLED
      WRITE text-013."SUMMARY REPORT.
    ENDFORM.                    "top_of_page
    *&      Form  top_of_page2
          text
    FORM top_of_page2.                                          "#EC CALLED
      WRITE text-014."DETAIL REPORT.
    ENDFORM.                    "top_of_page
    *&      Form  top_of_page3
          text
    FORM top_of_page3.                                          "#EC CALLED
      WRITE text-015."ERROR REPORT
    ENDFORM.                    "top_of_page
    *&      Form  EMAIL_NOTIFICATION
    FORM email_notification .
      DATA: lv_email1  TYPE somlreci1-receiver,
           lv_email2  TYPE somlreci1-receiver,
           lv_email3  TYPE somlreci1-receiver,
           lv_subject TYPE char200,
           c_flag     TYPE c           VALUE 'X',
           lv_attachment TYPE char50.
      CLEAR: lv_email1,
             lv_email2,
             lv_email3,
             lv_subject,
             lv_attachment.
      SELECT SINGLE email1
                    email2
                    email3
        FROM zhr_interface_pr
        INTO (lv_email1,lv_email2,lv_email3)
        WHERE zinterfaceid EQ gc_objectid.
      IF sy-subrc EQ 0.
        IF sy-batch EQ 'X'.
    Send email notification
          lv_subject = text-037.
          lv_attachment = text-038.
          CALL FUNCTION 'Z_SEND_EMAIL_FROM_SPOOL'
            EXPORTING
              email1            = lv_email1
              email2            = lv_email2
              email3            = lv_email3
              subject           = lv_subject
              attachment_name   = lv_attachment
            EXCEPTIONS
              spool_not_created = 1
              OTHERS            = 2.
          IF sy-subrc <> 0.
          ENDIF.
        ENDIF.
      ENDIF.
    ENDFORM.                    "
    Edited by: katewinslate@SAP on Nov 17, 2010 12:50 PM

  • I wish to download a Muse Site I did not create , using Muse. How may I do this?

    I wish to download a Muse Site I did not create , using Muse. How may I do this?
    Thank you.

    Ok once again.
    Let's assume a friend using Muse creates a site using his PC and publishes it.
    It’s now a hosted site created in Muse.
    Let’s also assume he wishes to have me work on the Muse created website which he created and published using Muse.
    Can I use my copy of Muse  on my PC , a PC different than my freinds, to download the site my friend created so I may work on it in my copy of Muse?
    It can’t be done right?

  • Log file is not created used util.logger

    I need to write a log into a file using java.util.logging.
    File name should read from properties file.
    Issue is file is not created in D:\TestLogging.log
    Below are the configuration:
    src\resources\logger.properties
    handlers=java.util.logging.FileHandler, java.util.logging.ConsoleHandler
    .level=INFO
    java.util.logging.ConsoleHandler.level=SEVERE
    java.util.logging.ConsoleHandler.formatter=java.util.logging.SimpleFormatter
    java.util.logging.FileHandler.level=ALL
    java.util.logging.FileHandler.pattern=D:\TestLogging.log
    # Number of output files to cycle through, by appending an
    # integer to the base file name:
    java.util.logging.FileHandler.count=1
    # Style of output (Simple or XML):
    java.util.logging.FileHandler.formatter=java.util.logging.SimpleFormatter
    SimpleLogger.java
    import java.util.logging.*;
    public final class SimpleLogger {
      public static void main(String argv[]) {
      SimpleLogger thing = new SimpleLogger();
      thing.doSomething();
      public void doSomething() {
      fLogger.finest("this is finest");
      fLogger.finer("this is finer");
      fLogger.fine("this is fine");
      fLogger.config("this is config");
      fLogger.info("this is info");
      fLogger.warning("this is a warning");
      fLogger.severe("this is severe");
      fLogger.logp(Level.INFO, this.getClass().toString(), "doSomething", "blah");
      Throwable ex = new IllegalArgumentException("Some exception text");
      fLogger.log(Level.SEVERE, "Some message", ex);
      fLogger.exiting(this.getClass().toString(), "doSomething");
      private static final Logger fLogger =
      Logger.getLogger(SimpleLogger.class.getName());
    Could you please help, any configuration is missed

    Malar,
    Check for the file in the server folder of your server installed directory.
    ie..<Drive where server installed>:\usr\sap\<name>\<instance>\j2ee\<server node>
    Regards
    Abu Bakar

  • Database not creating using DBCA

    Hi,
    I installed oracle on solaris 10 sparc system
    when i try to create a database using dbca, it is not creating.
    after i click on finish button on dbca to create a database, database creating windows is not opening, i mean it is in same window, i clicked thousand times on that finish button, no windows is opening, nothing is happening.
    please help, i will really appreciate if anyone tell me how to resolve this issue.
    Regards,
    Veeresh S

    solaris server is 64 sparc
    and i installed oracle 10.2.0.1 64 bit for sparc 64
    now this is not working.
    can i install oracle 10.2.0.2 x86 in this sparc 64 bit server

  • Log file is not created using LOG4J

    Hi all,
    I want to use Log4j to log the details about my portal application. I would prefer using Log4j instead of SAP Logging. I have created properties file in my portal application which extends Abstract Portal Component. This my Log4j.properties file which i created under dist\PORTAL-INF\classses folder. I could read the Properties file. There is no problem on that. I am able to refer the API s available in Log4j. I am using Log4j-1[1].2.14.jar.
    log4j.rootLogger = INFO, R1
    log4j.appender.R1 = org.apache.log4j.RollingFileAppender
    log4j.appender.R1.File = LoggerForMyApplicationC.log
    log4j.appender.R1.MaxFileSize=100KB
    log4j.appender.R1.MaxBackupIndex=1
    log4j.appender.R1.layout=org.apache.log4j.PatternLayout
    log4j.appender.R1.layout.ConversionPattern=[%-5p] [%d] [%c] - [%m]%n
    But the problem is Log file is not created (LoggerForMyApplicationC.log) under \logs foler in SAP J2EE Server.
    Do i miss any other configuration? Please bring me the solution.
    Thanks,
    Malar

    Malar,
    Check for the file in the server folder of your server installed directory.
    ie..<Drive where server installed>:\usr\sap\<name>\<instance>\j2ee\<server node>
    Regards
    Abu Bakar

  • Service PO for Multiple Acct Assig is not created using BAPI_PO_CREATE1

    Hi,
    Im unable to create the Service po with multiple acct assiignment using BAPI_PO_CREATE1
    Header Data
          w_poheader-comp_code = w_src-bukrs.  "Company Code
          w_poheader-doc_type = w_src-bsart.   "Document type
         w_poheader-delete_ind = w_src-vrtkz. "Deletion Indicator
          CLEAR: lv_date.
          CALL FUNCTION 'CONVERT_DATE_TO_INTERNAL'
            EXPORTING
              date_external            = w_src-aedat
            IMPORTING
              date_internal            = lv_date
            EXCEPTIONS
              date_external_is_invalid = 1
              OTHERS                   = 2.
          w_poheader-creat_date = lv_date.    "Creation Date
          w_poheader-created_by = sy-uname.    "Creator Name
          w_poheader-vendor = w_src-lifnr.     "Vendor
          w_poheader-pmnttrms = w_src-zterm.   "Payment Terms
          w_poheader-purch_org = w_src-ekorg.  "Purchase Organization
          w_poheader-pur_group = w_src-ekgrp.  "Purchase Group
          w_poheader-ref_1    = w_src-ihrez.   "OLD PO
          w_poheaderx-comp_code = 'X'.  "Company Code
          w_poheaderx-doc_type = 'X'.   "Document type
         w_poheaderx-delete_ind = 'X'.      "Deletion Indicator
          w_poheaderx-creat_date = 'X'.    "Creation Date
          w_poheaderx-created_by = 'X'.
          w_poheaderx-vendor = 'X'.
          w_poheaderx-pmnttrms = 'X'.   "Payment Terms
          w_poheaderx-purch_org = 'X'.  "Purchase Organization
          w_poheaderx-pur_group = 'X'.  "Purchase Group
          w_poheaderx-ref_1 = 'X'.
    Item Data
          w_poitem-po_item = w_src-ebelp.
          IF NOT w_src-elikz IS INITIAL.
            w_poitem-delete_ind = w_src-elikz.
          ENDIF.
          IF NOT w_src-txz01 IS INITIAL.
            w_poitem-short_text = w_src-txz01.
          ENDIF.
          IF NOT w_src-werks IS INITIAL.
            w_poitem-plant = w_src-werks.
          ENDIF.
    Material group
          IF NOT w_src-matkl IS INITIAL.
            w_poitem-matl_group = w_src-matkl.
          ENDIF.
    Open or Partial Qty
          IF w_src-opqty IS  NOT INITIAL.
            w_poitem-quantity = w_src-opqty.
          ELSEIF NOT w_src-paqty IS INITIAL.
            w_poitem-quantity = w_src-paqty.
          ENDIF.
          IF NOT w_src-meins IS INITIAL.
            w_poitem-po_unit = w_src-meins. "Base Unit of Measure
          ENDIF.
          IF NOT w_src-netpr IS INITIAL.
            w_poitem-net_price = w_src-netpr.  "Net Price
          ENDIF.
          IF NOT w_src-mwskz IS INITIAL.
            w_poitem-tax_code = w_src-mwskz.
          ENDIF.
          IF NOT w_src-pstyp IS INITIAL.
            w_poitem-item_cat = w_src-pstyp.
          ENDIF.
          IF NOT w_src-knttp IS INITIAL.
            w_poitem-acctasscat = w_src-knttp.
          ENDIF.
          w_src-vrtkz = '2'.    "Added
          IF NOT w_src-vrtkz IS INITIAL.
            w_poitem-distrib = w_src-vrtkz.
          ENDIF.
    Package No
          IF w_src-srv_line_no EQ '2'.
            w_poitem-pckg_no = 0000000001. "Assign dummy package no "w_src-packno.  "Package no
          ELSEIF w_src-srv_line_no EQ '3'.
            w_poitem-pckg_no = 0000000004. "Assign dummy package no "w_src-packno.  "Package no
          ENDIF.
          IF w_poitem-delete_ind IS INITIAL AND
             w_poitem-short_text IS INITIAL AND
             w_poitem-plant IS INITIAL AND
             w_poitem-matl_group IS INITIAL AND
             w_poitem-quantity IS INITIAL AND
             w_poitem-po_unit IS INITIAL AND
             w_poitem-net_price IS INITIAL AND
             w_poitem-tax_code IS INITIAL.
            CLEAR lv_item.
          ELSE.
            APPEND w_poitem TO i_poitem.
            CLEAR: w_poitem.
            lv_item = 'X'.
          ENDIF.
          w_poitemx-po_item = w_src-ebelp.
          w_poitemx-delete_ind = 'X'.
          w_poitemx-short_text = 'X'.
          w_poitemx-plant = 'X'.
          w_poitemx-matl_group = 'X'.
          w_poitemx-quantity = 'X'.
          w_poitemx-po_unit = 'X'.
          w_poitemx-net_price = 'X'.
          w_poitemx-tax_code = 'X'.
          w_poitemx-item_cat = 'X'.
          w_poitemx-acctasscat = 'X'.
          w_poitemx-distrib = 'X'.
          w_poitemx-pckg_no = 'X'.
          IF lv_item = 'X'.
            APPEND w_poitemx TO i_poitemx.
            CLEAR: w_poitemx,
                   lv_item.
          ENDIF.
    PO Deliery Address
          w_poaddrdelivery-po_item = w_src-ebelp.
          IF NOT w_src-adrn2 IS INITIAL.
            w_poaddrdelivery-addr_no = w_src-adrn2.
            APPEND w_poaddrdelivery TO i_poaddrdelivery.
            CLEAR w_poaddrdelivery.
          ENDIF.
    POschedule
          w_poschedule-po_item = w_src-ebelp.
       w_poschedule-SCHED_LINE = w_src-
          CLEAR: lv_date.
          CALL FUNCTION 'CONVERT_DATE_TO_INTERNAL'
            EXPORTING
              date_external            = w_src-eindt
            IMPORTING
              date_internal            = lv_date
            EXCEPTIONS
              date_external_is_invalid = 1
              OTHERS                   = 2.
          IF NOT lv_date IS INITIAL.
            w_poschedule-del_datcat_ext = 'D'. "Delivery Date in Day Format
            w_poschedule-delivery_date = lv_date.
            w_poschedule-quantity = w_src-menge.
            APPEND w_poschedule TO i_poschedule.
            CLEAR w_poschedule.
            lv_schd = 'X'.
          ENDIF.
          w_poschedulex-po_item = w_src-ebelp.
       w_poschedule-SCHED_LINE = 'X'.
          w_poschedulex-del_datcat_ext = 'X'.
          w_poschedulex-delivery_date = 'X'.
          w_poschedulex-quantity = 'X'.
          IF lv_schd = 'X'.
            APPEND w_poschedulex TO i_poschedulex.
            CLEAR : w_poschedulex,
                    lv_schd.
          ENDIF.
    PO Account Assignment
          w_poaccount-po_item = w_src-ebelp.
          w_poaccount-serial_no = w_src-zekkn.
    Distribution Indicator is 1
          IF w_src-vrtkz EQ '1'.
            w_poaccount-distr_perc = w_src-vproz.
            IF NOT w_src-menge IS INITIAL.
              CLEAR lv_menge.
              lv_menge = w_src-menge.
            ENDIF.
            lv_acct_qty = lv_menge * w_src-vproz / 100.
    Get Round value of Quanity
            frac = FRAC( lv_acct_qty ).
            IF frac EQ 0.
              lv_acct_qty = FLOOR( lv_acct_qty ).
            ELSE.
              lv_acct_qty = CEIL( lv_acct_qty ).
            ENDIF.
            w_poaccount-quantity = lv_acct_qty.
          ELSEIF w_src-vrtkz IS INITIAL.
            w_poaccount-quantity = w_src-menge.
          ENDIF.
      w_poaccount-quantity = w_src-menge.    "added
          w_poaccount-gl_account = w_src-saknr.
          w_poaccount-costcenter = w_src-kostl.
          w_poaccount-asset_no = w_src-anln1.
          w_poaccount-wbs_element = w_src-wbs.
          w_poaccount-network = w_src-nplnr.
          w_poaccount-tax_code = w_src-mwskz.
          w_poaccount-activity = w_src-vornr.
          APPEND w_poaccount TO i_poaccount.
          CLEAR w_poaccount.
          w_poaccountx-po_item = w_src-ebelp.
          w_poaccountx-serial_no = w_src-zekkn.
          IF w_src-vrtkz EQ '1'.
            w_poaccountx-distr_perc =  'X'.
          ENDIF.
          w_poaccountx-quantity = 'X'.
          w_poaccountx-gl_account = 'X'.
          w_poaccountx-costcenter = 'X'.
          w_poaccountx-wbs_element = 'X'.
          w_poaccountx-network = 'X'.
          w_poaccountx-tax_code = 'X'.
          w_poaccountx-activity = 'X'.
          w_poaccountx-cmmt_item = 'X'.
          APPEND w_poaccountx TO i_poaccountx.
          CLEAR w_poaccountx.
    Extension for ZZSub
          IF NOT w_src-zzsub IS INITIAL.
            w_extensionin-structure = 'BAPI_TE_MEPOACCOUNTING'.
            w_extensionin-valuepart1+0(5) = w_src-ebelp.
            w_extensionin-valuepart1+5(2) = '01'.
            w_extensionin-valuepart1+28(5) = w_src-zzsub.
            APPEND w_extensionin TO i_extensionin.
            CLEAR w_extensionin.
            w_extensionin-structure = 'BAPI_TE_MEPOACCOUNTINGX'.
            w_extensionin-valuepart1+0(5) = w_src-ebelp.
            w_extensionin-valuepart1+5(2) = '01'.
            w_extensionin-valuepart1+11(1) = 'X'.
            APPEND w_extensionin TO i_extensionin.
            CLEAR w_extensionin.
          ENDIF.
    Extension to add Expense Type only
          IF NOT  w_src-zzexptype IS INITIAL.
            w_extensionin-structure = 'BAPI_TE_MEPOHEADER'.
            w_extensionin-valuepart1+10(4) = w_src-zzexptype.
            APPEND w_extensionin TO i_extensionin.
            CLEAR w_extensionin.
            w_extensionin-structure = 'BAPI_TE_MEPOHEADERX'.
            w_extensionin-valuepart1+10(4) = 'X'.
            APPEND w_extensionin TO i_extensionin.
            CLEAR w_extensionin.
          ENDIF.
          EXPORT i_extensionin[] TO MEMORY ID 'SUB'.
    PO Services( One Line Iem)
          IF w_src-srv_line_no EQ '2'.
            w_poservices-pckg_no = 0000000001.  "w_src-packno. "(assign package no as a dummy number)
            w_poservices-line_no = 0000000001.  "w_src-srv_line_no.    "Line item
            w_poservices-outl_ind = 'X'.
            w_poservices-subpckg_no = 0000000003.  "w_src-sub_packno. "(Dummy No.) "Sub package no
         w_poservices-quantity = w_src-srqty.  "Service Quantity
         w_poservices-base_uom = w_src-srmeins.  "Service Basic unit of Measure
         w_poservices-price_unit = '1'.
            w_poservices-from_line = '1'.
         w_poservices-gr_price  = w_src-brtwr.  "GR Price
         w_poservices-short_text = w_src-sh_text1.    "Service Short Text
            APPEND w_poservices TO i_poservices.
            CLEAR w_poservices.
    PO Services(Second Line Item )
            w_poservices-pckg_no = 0000000003.  "w_src-sub_packno. "(Dummy No.) "Sub package no
            w_poservices-line_no = 0000000002.
            w_poservices-ext_line = w_src-extrow.    "External line
            w_poservices-quantity = w_src-srqty.  "Service Quantity
            w_poservices-base_uom = w_src-srmeins.  "Service Basic unit of Measure
            w_poservices-price_unit = '1'.
            w_poservices-gr_price  = w_src-brtwr.  "GR Price
            w_poservices-short_text = w_src-sh_text1.    "Service Short Text
            APPEND w_poservices TO i_poservices.
            CLEAR w_poservices.
    PO Service Access values
            w_posrvacc-pckg_no = 0000000003.  "w_src-sub_packno.  "Sub package no
            w_posrvacc-line_no = 0000000002.  "w_src-srv_line_no. "Line item
            w_posrvacc-serno_line = w_src-zekkn.                "'01'.
            IF w_src-vproz IS INITIAL.
              w_posrvacc-percentage = '100.0'.
            ENDIF.
            w_posrvacc-serial_no = '01'.
            w_posrvacc-quantity = w_src-srqty.  "Service Quantity
            APPEND w_posrvacc TO i_posrvacc.
            CLEAR w_posrvacc.
          ELSEIF w_src-srv_line_no EQ '3'.
    PO Services
            if w_src-srv_line_no EQ '2'.
            w_poservices-pckg_no = 0000000004.  "(assign package no as a dummy number)
            w_poservices-line_no = 0000000001.  "Line item
            w_poservices-outl_ind = 'X'.
            w_poservices-subpckg_no = 0000000005.  "(Dummy No.) "Sub package no
            w_poservices-from_line = '1'.
            APPEND w_poservices TO i_poservices.
            CLEAR w_poservices.
            w_poservices-pckg_no = 0000000005.  "w_src-sub_packno. "(Dummy No.) "Sub package no
            w_poservices-line_no = 0000000002.
            w_poservices-ext_line = w_src-extrow.    "External line
            w_poservices-quantity = w_src-srqty.  "Service Quantity
            w_poservices-base_uom = w_src-srmeins.  "Service Basic unit of Measure
            w_poservices-price_unit = '1'.
            w_poservices-gr_price  = w_src-brtwr.  "GR Price
            w_poservices-short_text = w_src-sh_text1.    "Service Short Text
            APPEND w_poservices TO i_poservices.
            CLEAR w_poservices.
            endif.
            if  w_src-srv_line_no EQ '3'.
            w_poservices-pckg_no = 0000000005.  "w_src-sub_packno. "(Dummy No.) "Sub package no
            w_poservices-line_no = 0000000003.
            w_poservices-ext_line = w_src-extrow.    "External line
            w_poservices-quantity = w_src-srqty.  "Service Quantity
            w_poservices-base_uom = w_src-srmeins.  "Service Basic unit of Measure
            w_poservices-price_unit = '1'.
            w_poservices-gr_price  = w_src-brtwr.  "GR Price
            w_poservices-short_text = w_src-sh_text1.    "Service Short Text
            APPEND w_poservices TO i_poservices.
            CLEAR w_poservices.
            endif.
    PO Service Access values
           if  w_src-srv_line_no EQ '2'.
            w_posrvacc-pckg_no = 0000000005.  "w_src-sub_packno.  "Sub package no
            w_posrvacc-line_no = 0000000002.  "w_src-srv_line_no. "Line item
            w_posrvacc-serno_line = '01'.
            w_posrvacc-percentage = '100.0'.
            w_posrvacc-serial_no = '01'.    "w_src-zekkn.
            w_posrvacc-quantity = w_src-srqty.  "Service Quantity
            APPEND w_posrvacc TO i_posrvacc.
            CLEAR w_posrvacc.
            endif.
            if  w_src-srv_line_no EQ '3'.
            w_posrvacc-pckg_no = 0000000005.  "w_src-sub_packno.  "Sub package no
            w_posrvacc-line_no = 0000000003.  "w_src-srv_line_no. "Line item
            w_posrvacc-serno_line = '01'.
            w_posrvacc-percentage = '100.0'.
            w_posrvacc-serial_no = '02'.  "w_src-zekkn.  "'01'.
            w_posrvacc-quantity = w_src-srqty.  "Service Quantity
            APPEND w_posrvacc TO i_posrvacc.
            CLEAR w_posrvacc.
            endif.
          ENDIF.
        ENDIF.
    ***Create a NEW PO
    Call BAPI
          CALL FUNCTION 'BAPI_PO_CREATE1'
            EXPORTING
              poheader          = w_poheader
              poheaderx         = w_poheaderx
              TESTRUN           = ' '
            IMPORTING
              exppurchaseorder  = gv_ebeln
            TABLES
              return            = i_return
              poitem            = i_poitem[]
              poitemx           = i_poitemx[]
              poaddrdelivery    = i_poaddrdelivery[]
              poschedule        = i_poschedule[]
              poschedulex       = i_poschedulex[]
              poaccount         = i_poaccount[]
              poaccountx        = i_poaccountx[]
              poservices        = i_poservices[]
              posrvaccessvalues = i_posrvacc[]
              extensionin       = i_extensionin[].
    Commit the Transaction
          CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
            EXPORTING
              wait = 'X'.
    Regards,
    Deepthi.

    it is solved

  • Order schedule lines not created using BAPI_SALESORDER_CREATEFROMDAT2

    Hi experts,
      I am creating sales order using BAPI_SALESORDER_CREATEFROMDAT2. I want to update the Order quantity in VBAP-KWMENG.I got the information from SDN when including the Schedule line in BAPI 'BAPI_SALESORDER_CREATEFROMDAT2  '.
      I tried by using Update flag = 'I'.I am not able to update, what are the values to be passed and how to update the field.
    Is there any other way..Please suggest me..
    Thanks&Regards,
    Karthik.

    Hi, In the BAPI if you look at the tables parameter you will find ORDER_ITEMS_IN and ORDER_ITEMS_INX as well as ORDER_SCHEDULES_IN and ORDER_SCHEDULES_INX. To update KWMENG you will have to pass that value to ORDER_ITEMS_IN-TARGET_QTY and update the same in the table ORDER_ITEMS_INX (ORDER_ITEMS_INX-TARGET_QTY) with 'X'.
    For updating schedule line go for ORDER_SCHEDULES_IN-SCHED_LINE and update X for the same in ORDER_SCHEDULES_INX.
    Try looking into the following code, I am filling in both the Item data as well as the Schedule line data.
      loop at t_mdata into fs_mdata.
        fs_item-itm_number  = fs_mdata-posnr.
        fs_itemx-itm_number = c_flag.
        fs_item-material    = fs_mdata-matnr.
        fs_itemx-material   = c_flag.
        fs_item-target_qty  = fs_mdata-kwmeng.
        fs_itemx-target_qty = c_flag.
        fs_item-item_categ  = fs_mdata-pstyv.
        fs_itemx-item_categ = c_flag.
        fs_itemx-updateflag = c_flag.
          APPEND fs_item TO t_item.
          APPEND fs_itemx TO t_itemx.
        fs_sline-ITM_NUMBER  = fs_mdata-posnr.
        fs_slinex-ITM_NUMBER = c_flag.
        fs_sline-SCHED_LINE  = c_sline.
        fs_slinex-SCHED_LINE = c_flag.
        fs_sline-REQ_QTY     = fs_mdata-kwmeng.
        fs_slinex-REQ_QTY    = c_flag.
          APPEND fs_sline TO t_sline.
          APPEND fs_slinex TO t_slinex.
      endloop.                             " Loop t_mdata
    c_flag contains 'X'.
    fs_item is of structure ORDER_ITEMS_IN.
    fs_sline is of structure ORDER_SCHEDULES_IN.

  • Sales order not created using BAPI_SALESORDER_CREATEFROMDAT2

    HI,
    I have used the bapi BAPI_SALESORDER_CREATEFROMDAT2 to create sales order. I have passed the parameters, doc_type, sales_org, distr_chan, division, partn_role, part_numb and material.
    It displays back the message as
    sales_header_in createds,
    sales_item_in created,
    sales document not yet complete : Edit data.
    Standard Order 135428 has been saved.
    But when i check the same standard order in VA03 ( or vbak ), its not present.
    I have also run BAPI_TRANSACTION_COMMIT, to commit work. But still cant figure out.
    Any suggestions plzz...
    regards,
    Taj

    I am able to create the sales order when i am entering these details in VA01. I mean the sales document type and othr details.
    But when i pass the same parameters in bapi. This doesnt happen. Is there any thing more that needs to be passed.

  • Student not created using BAPI_STUDENT_CREATEFROMDATA3

    Hi,
    I use the recommended remote function "BAPI_STUDENT_CREATEFROMDATA3" through Excel VBA to import student data, which seems to run fine - it returns a success message and student's object ID generated, e.g. "TRUE, 00000795". However, whenever I check the Student file or PP01 for this newly created student, I can't find it.
    Any ideas what can go wrong? I already tried to look up this student using different key dates - no success.
    Sub TestStudentCreation()
            Dim functionCtrl As Object             'Function Control (Collective object)
            Dim sapConnection As Object         'Connection object
            Dim theFunc As Object                 'Function object
            Set functionCtrl = CreateObject("SAP.Functions")
            Set sapConnection = functionCtrl.Connection
            sapConnection.Client = "020" 'Test client
            sapConnection.user = "janek"
            sapConnection.Language = "EN"
            If sapConnection.logon(0, False) <> True Then
                MsgBox ("No connection to R/3!")
                Exit Sub
            End If
            Set theFunc = functionCtrl.Add("BAPI_STUDENT_CREATEFROMDATA3")
            'Fills the structure with key required fields
            Dim oStructure As Object
            theFunc.Exports("STUDENTPERSONALDATA").Value("LAST_NAME") = "TestLastName"
            theFunc.Exports("STUDENTPERSONALDATA").Value("FIRST_NAME") = "TestFirstName"
            theFunc.Exports("STUDENTPERSONALDATA").Value("CORRESP_LANGUAGE") = "E" 'English
            Dim returnFunc As Boolean
            returnFunc = theFunc.Call
            functionCtrl.Connection.logoff
            MsgBox (returnFunc & " " & theFunc.Imports("OBJECTID").Value)
    End Sub

    We had the same problem with BAPI_CTRACDOCUMENT_CREATE, and we could only generate a document number but we could not found it. So we used the commit Joachim mentioned and we could post documents then
    Cheers
    Sergio

  • JOB is created but SPOOL is not created - using SUBMIT stmt in WD

    Hi,
    I am submitting report from WD. PFB the code i used. This is cuccessfully creating the JOB in SM37 and the status is 'Finished'. But when I click for the SPOOL, it is giving me an error 'No list available'.
    I used the following code for submitting the program.
    * call the FM 'JOB_OPEN' and create the job.
      SUBMIT ztest TO SAP-SPOOL
        WITH pnppernr-low EQ pernr
        WITH pnpbukrs-low EQ bukrs
        SPOOL PARAMETERS lv_print_parameters
        WITHOUT SPOOL DYNPRO
        VIA JOB lv_name NUMBER lv_number " job name and number created from JOB_OPEN
        AND RETURN.
    * call the FM 'JOB_CLOSE' and close the job.
    The submit stmt is working perfectly fine when executed directly..from R/3. The spool is also being created.
    I tried debugging the same. This goes to the INITIALIZITION part of the program but no goin to START-OF-SELECTION.
    Pls suggest if I am missing something in the code.
    Thanks,
    Teja.

    >
    teja wrote:
    > Hi,
    >
    > I am submitting report from WD. PFB the code i used. This is cuccessfully creating the JOB in SM37 and the status is 'Finished'. But when I click for the SPOOL, it is giving me an error 'No list available'.
    >
    > I used the following code for submitting the program.
    >
    >
    > * call the FM 'JOB_OPEN' and create the job.
    >
    >   SUBMIT ztest TO SAP-SPOOL
    >     WITH pnppernr-low EQ pernr
    >     WITH pnpbukrs-low EQ bukrs
    >     SPOOL PARAMETERS lv_print_parameters
    >     WITHOUT SPOOL DYNPRO
    >     VIA JOB lv_name NUMBER lv_number " job name and number created from JOB_OPEN
    >     AND RETURN.
    >
    > * call the FM 'JOB_CLOSE' and close the job.
    >
    >
    > The submit stmt is working perfectly fine when executed directly..from R/3. The spool is also being created.
    >
    > I tried debugging the same. This goes to the INITIALIZITION part of the program but no goin to START-OF-SELECTION.
    >
    > Pls suggest if I am missing something in the code.
    >
    > Thanks,
    > Teja.
    Hi,
    I guess this wont work. Didnt you get any dump ?
    FM's with dialog screens,conversion exits would cause the webdynpro session to disconnect.

  • PDFs not created using  Acrobat fail to read in PB20 short profile

    In our ECC system, when trying to read an applicant resume in PB20 (Short Profile->ArchiveLink Object Hit List), we get an error when trying to load someone's resume in which the resume that is saved as a PDF but created in something other than Acrobat (Example: MS Word-->Save as PDF):
    In SDV-->  "The file is damaged and could not be repaired"
    Can anyone offer any suggestions as how to fix this?

    Well, I tried a quick test of the Save As Excel and also Word and the conversion replaces hyphens with bullets; -$20,083.86 becomes •$20,083.86 and 18-JUN-2013 becomes 18•JUN•2013
    I can work with this if I have to, but it certainly is a cludgy approach.
    Do you happen to know if there's a routine in the VB-accessible SDK that allows me to fetch a block of text without any parsing by the SDK? That is, if I could read the contents of the PDF as a stream of characters and do my own parsing, perhaps I could see the hyphens.

  • Qualifications not created using BAPI_APPLICANT_CREATE.

    Hi Everybody,
    I have a requirement to create applicant from a file. I could create with Bapi 'BAPI_APPLICANT_CREATE' but the qualifications are not being created. Can somebody help me on this please.
    Any clue will be highly appreciated.
    Thanks in advance,
    RSS.

    HI,
    Even if u execute the BAPI individually data base will not be updated unless u call the FM BAPI_TRANSACTION_COMMIT. Yes it will generate the document number because that code exists in ur BAPI code. It will take the earlier doc generated and add 1 to it and store that document in application server. But data base will be updated only when u call this FM. Once u execute the BAPI data will be there in the application server. Once u do commit it will be pushed to database.
    I will tell another funny thing. Just execute ur BAPI with some data. U will get a message xxx saying document xxx generated. Go back and execute it again. Now ur new document will be old doc+1. But both documents will not be there in database.
    So even though if u call a BAPI individually u have to do commit to update the database.
    Hope u understood the scenario.
    Thanks,
    Vinod.

  • PO service is not created using BAPI_PO_CREATE FM

    Hi,
          CALL FUNCTION 'BAPI_PO_CREATE'
            EXPORTING
              po_header                  = wa_header
              po_header_add_data         = wa_hdr_add
              header_add_data_relevant   = wa_hdr_flg
            IMPORTING
              purchaseorder              = v_po
            TABLES
              po_items                   = i_line
              po_item_schedules          = i_sch
              po_item_account_assignment = i_po_acc
              po_services                = i_po_ser
              po_srv_accass_values       = i_po_srv
              po_services_text           = i_po_sertxt
              return                     = i_return
              poaddrdelivery             = i_del_addr.
    TheIT_RETURN returned me the below 2 lines.
    1. Sum of percentages >200.0< exceeds 100 %
    2. Document contains no items
    Regards
    Deepthi.

    Hi,
    wa_header-DOC_DATE = 20080901
    wa_header-DOC_TYPE = 'Z0RD'.
    wa_header-CO_CODE = '3082'.
    wa_header-PURCH_ORG = 'P000'.
    wa_header-PUR_GROUP = '052'..
    wa_header-VENDOR = '0005021295'.
    wa_header-CREATED_BY = sy-uname.
    wa_header-ZZEXPTYPE = '9015'.
    wa_hdr_add-PMNTTRMS = 'Z004'.
    wa_hdr_add-CURRENCY = 'USD'.
    wa_hdr_add-REF_1 = 'CONVERSION'.
    wa_hdr_add-OUR_REF = '5172APN'.
    wa_hdr_flg = 'X'.
    w_line-PO_ITEM = '00010'.
    w_line-ITEM_CAT = '9'.
    w_line-ACCTASSCAT = 'N'.
    w_line-MAT_GRP = '088'.
    w_line-SHORT_TEXT = 'Alarm System Installation'.
    w_line-DISTRIB = space.
    w_line-PLANT = '3082'.
    w_line-UNIT = 'AU'.
    w_line-NET_PRICE = '2000.0000'.
    w_line-PCKG_NO = '0000000010'.
    w_line-TRACKINGNO = '10'.
    w_line-TAX_CODE = 'I0'.
    append w_line to i_line.
    w_sch-PO_ITEM = '00010'.
    w_sch-SERIAL_NO = '01'.
    w_sch-DELIV_DATE = '20100901'.
    w_sch-QUANTITY = '2000.000'.
    w_sch-CREATE_IND = 'X'.
    append w_sch to i_sch.
    w_po_acc-PO_ITEM = '00010'.
    w_po_acc-SERIAL_NO = '01'.
    w_po_acc-w_po_acc-w_po_acc-QUANTITY = ' 2000.000'.
    w_po_acc-DISTR_PERC = '0.0'.
    w_po_acc-G_L_ACCT = '0000622025'.
    w_po_acc-CO_AREA = 'FC01'.
    w_po_acc-NETWORK = '000004003658'.
    w_po_acc-ACTIVITY = '0210'.
    append w_po_acc to i_po_acc.
    w_po_ser-PCKG_NO = '0000000010'.
    w_po_ser-LINE_NO = '0000000001'.
    w_po_ser-w_po_ser-SUBPCKG_NO = '0000000010'.
    w_po_ser-QUANTITY = '2000.00'.
    w_po_ser-BASE_UOM = 'LE'.
    w_po_ser-GR_PRICE = '1.00'.
    w_po_ser-SHORT_TEXT = 'Alarm System Installation'.
    w_po_ser-distrib = space.
    w_po_ser-TAX_CODE = 'I0'.
    w_po_ser-MATL_GROUP = '001'.
    append w_po_ser to i_po_ser.
    w_po_srv-PCKG_NO = '0000000010'.
    w_po_srv-LINE_NO = '0000000001'.
    w_po_srv-PERCENTAGE = '100.0'.
    w_po_srv-SERIAL_NO = '01'.
    w_po_srv-QUANTITY = '1.00'.
    append w_po_src to i_po_srv
    w_po_sertxt-PCKG_NO = '0000000010'.
    w_po_sertxt-LINE_NO = '0000000001'.
    w_po_sertxt-TEXT_LINE = 'CONVERSION'.
    append w_po_sertxt to i_po_sertxt.
    w_del_addr-po_item = '00010'.
    w_del_addr-addr_no = '0000068279'.
    append w_del_addr to i_del_addr.
    data:  v_po         TYPE ebeln,
              i_return    TYPE STANDARD TABLE OF bapireturn.
          CALL FUNCTION 'BAPI_PO_CREATE'
            EXPORTING
              po_header                  = wa_header
              po_header_add_data         = wa_hdr_add
              header_add_data_relevant   = wa_hdr_flg
            IMPORTING
              purchaseorder              = v_po
            TABLES
              po_items                   = i_line
              po_item_schedules          = i_sch
              po_item_account_assignment = i_po_acc
              po_services                = i_po_ser
              po_srv_accass_values       = i_po_srv
              po_services_text           = i_po_sertxt
              return                     = i_return
              poaddrdelivery             = i_del_addr.
    Regards,
    Deepthi.

Maybe you are looking for

  • Helvetica Neue font conflict causing problems in Dashboard and elsewhere

    I'm an art director who makes extensive use of the Postscript version of Helvetica Neue. With Leopard, Apple has also started using it for certain interface elements, and unfortunately the system doesn't seem to know the difference between the OpenTy

  • Connection to a DSLR camera.

    I own a nice iPod touch, great device! I would like to be able to connect it to my DSLR camera in order to retrieve somes pictures and send them by email. I usually capture in RAW+JPEG. Ideally I would send the JPEG, but I guess sometime the RAW. If

  • Java Script Error in downloading CS3 Master Collection

    I just bought a new MacBook Pro and I went to download my CS3 Master Collection. In the middle of downloading Disc 1 I got a kernel telling my to push the power button until the computer shuts off and turn it on again. Then when I tried to redownload

  • Try catch trouble

    hi all, im quite new to java and am having a bit of trouble with a try catch statement try           System.out.println("Enter your level: ");           level = data.nextInt();           while (!VLevel(level))      System.out.println("Enter your leve

  • EQ1 Error Message on Loading Premiere Pro 5.0!

    I have CS5 on a Mac.  This morning, I received an error message halfway through loading Premiere Pro.  The message read, "EQ1 - could not open bin file."  The only option is to click "OK", followed by an option to report the problem or reload the pro