EXPORT statement in ABAP-Ecc version

I used EXPORT FLAG TO MEMORY ID 'MB51_FLAG'. in Ecc version.
when i do EPC check, i am getting error in Obsolete statments like..
EXPORT var_1 ... var_n TO MEMORY ... is not supported in the OO context. Use
EXPORT name_1 from var_1 ... name_n from var_n TO MEMORY ... instead . . . .
Can anyone tell me how to implement it Plz ...?

Hi,
Instead of this:
EXPORT FLAG TO MEMORY ID 'MB51_FLAG'.
Use the very similar syntax:
EXPORT name1 = FLAG TO MEMORY ID 'MB51_FLAG'.
OR
EXPORT name1 FROM FLAG TO MEMORY ID 'MB51_FLAG'.
Then when you need to do the corresponding IMPORT you use the same syntax.  Here's one simple example to demonstrate:
REPORT  ztest_jrg.
TYPES: ty_ctype TYPE c LENGTH 20.
DATA: l_test TYPE ty_ctype.
PARAMETERS: p_test TYPE ty_ctype.
EXPORT ptst = p_test TO MEMORY ID 'ZTEST'.
IMPORT ptst = l_test FROM MEMORY ID 'ZTEST'.
WRITE: /1 l_test.
Best Regards,
Jamie

Similar Messages

  • Export statement in ABAP Objects

    Hi All,
    I am using A Statment like this a BADI.
    EXPORT XXXXX TO MEMORY ID 'YYY'.
    But this statement is not supported in ABAP Objects can any one please let me know how i can use export statment is abap objects?
    Thanks in advance.

    I have pass a structure to the memory.
    Here is my structure : ztest.
    And i am using like this
    EXPORT ZTEST TO MEMORY ID 'HK'.
    Its not supporting in ABAP Objects.
    Can you please more clear with your answer?
    Thanks

  • Is import & export working in ECC version?

    i had one program. In which Export and Import is not working
    properly in ECC 6.0 version where as 4.6C working fine.
    If i commented the Import & Export than only it is working fine. Is there any other procedure OR how to use
    import and export in ECC version. Please advise me it is very
    urgent.
    Edited by: jagan ravula on Jan 29, 2008 8:00 AM

    Hi,
    To import from txt, look this:
    REPORT ZTXTTOTABLE .
    DATA: p_file TYPE string value 'C:\teste.txt',
    BEGIN OF TI_table OCCURS 0,
    COD(5) TYPE C,
    NAME(40),
    END OF TI_table,
    a(2).
    PARAMETERS: sel_file(128) TYPE c
    default 'C:\teste.txt' OBLIGATORY LOWER CASE.
    p_file = sel_file.
    CALL FUNCTION 'GUI_UPLOAD'
    EXPORTING
    filename = p_file
    TABLES
    data_tab = ti_table[].
    format color COL_TOTAL INTENSIFIED ON.
    loop at ti_table.
    write: / sy-vline, ti_table-cod, at 10 sy-vline, ti_table-name,
    at 60 sy-vline.
    endloop.
    write: / sy-uline(60).
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR sel_file.
    CALL FUNCTION 'WS_FILENAME_GET'
    EXPORTING
    def_filename = ''
    def_path = 'C:\'
    mask = ',Documentos de texto (*.txt), *.txt.'
    mode = ''
    IMPORTING
    filename = p_file
    EXCEPTIONS
    inv_winsys = 1
    no_batch = 2
    selection_cancel = 3
    selection_error = 4
    OTHERS = 5.
    find '.txt' IN p_file.
    if sy-subrc 0.
    concatenate p_file '.txt' into sel_file.
    else.
    sel_file = p_file.
    endif.
    top-of-page.
    format color COL_HEADING INTENSIFIED ON.
    uline (60).
    write: / sy-vline, 'COD', at 10 sy-vline, 'NAME', at 60 sy-vline.
    write: / sy-uline(60).
    to export to txt try it:
    *& Report ZTABLETOTXT *
    REPORT ZTABLETOTXT .
    TABLES: spfli.
    DATA: ti_spfli LIKE STANDARD TABLE OF spfli WITH HEADER LINE,
    p_file TYPE string value 'C:\spfli.txt'.
    PARAMETERS: sel_file(128) TYPE c
    default 'C:\spfli.txt' OBLIGATORY LOWER CASE.
    SELECT * FROM spfli INTO TABLE ti_spfli.
    p_file = sel_file.
    CALL FUNCTION 'GUI_DOWNLOAD'
    EXPORTING
    FILENAME = p_file
    TABLES
    DATA_TAB = ti_spfli[].
    IF SY-SUBRC = 0.
    MESSAGE I398(00) WITH 'Arquivo criado com sucesso!'.
    else.
    MESSAGE E398(00) WITH 'Ocorreu um erro!'.
    ENDIF.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR sel_file.
    CALL FUNCTION 'WS_FILENAME_GET'
    EXPORTING
    def_filename = ''
    def_path = 'C:\'
    mask = ',Documentos de texto (*.txt), *.txt.'
    mode = ''
    IMPORTING
    filename = p_file
    EXCEPTIONS
    inv_winsys = 1
    no_batch = 2
    selection_cancel = 3
    selection_error = 4
    OTHERS = 5.
    find '.txt' IN p_file.
    if sy-subrc 0.
    concatenate p_file '.txt' into sel_file.
    else.
    sel_file = p_file.
    endif.
    go through these links
    exporting internal table to memory variable
    http://www.sts.tu-harburg.de/teaching/sap_r3/ABAP4/export01.htm
    Reward Points if found helpfull..
    Cheers,
    Chandra Sekhar.

  • PROBELM WITH TYPE X  VALUE '20' IN CONCATENATE STATEMENT in ECC version

    Hi EXPERTS,
             I am working in ECC 6.0 version.
             PROBELM WITH TYPE X  VALUE '20' IN CONCATENATE STATEMENT in ECC           version
             C_DEL     TYPE X VALUE '09' having solution --C_DEL TYPE C VALUE CL_ABAP_CHAR_UTILITIES=>HORIZONTAL_TAB,
             If  C_DEL     TYPE X VALUE '20'   what was the solution in ECC version.
             Please let me know. I am awaiting for ur answers
    <b><REMOVED BY MODERATOR></b>
    Message was edited by:
            Alvaro Tejada Galindo

    Hi
    welcome to SDN forum
    move that X field to a char field and use in concatenation
    CONCATENATE works only with CHAR fields
    Regards
    Anji

  • Reg ABAP(ECC 5.0 versions) Certification

    Hi,
    I am planning to do my certification in ABAP ECC 5.0 versions
    Please provide me with the study materials, documents, exam pattern, & ways to prepare for exam.
    Thanks in advance
    Regards
    Suresh

    PL check this <a href="http://www50.sap.com/useducation/certification/curriculum.asp?rid=493&vid=5">Link</a> for an idea on the Exam Content & Weighting Information.
    ~Suresh

  • Syntax Error with EXPORT statement in ECC 6

    Hi All,
    I have one issue with EXPORT statement syntax.
    I have declared data like below:
    DATA: BEGIN OF mem_id,
              mandt LIKE sy-mandt,
              uname LIKE sy-uname,
              modno LIKE sy-modno,
            END OF mem_id.
    export the memory id
        EXPORT E_VBKOK XANZPK TEXTTAB XBOLNR TO MEMORY ID MEM_ID.
    When I am checking the syntax error i am getting like "MEM_ID" must be a character-type field (data type C, N, D or T). by "INTERFACE". by "INTERFACE". "INTERFACE". by "INTERFACE". by "INTERFACE".
    I know this statement would be like IMPORT ITAB TO JTAB FROM MEMORY ID 'table'. So I have written like below
    EXPORT E_VBKOK XANZPK TEXTTAB XBOLNR TO MEMORY ID 'MEM_ID'. But still it is throwing an error.
    Can you please let me know how can I resolve this?
    Regards,
    Jyothi CH.

    Hi Jyothi,
    data: l_var type string.
    concatenate '6' '8' into l_var separated by space.
    export l_var to memory id 'BB'.
    Here we have to declare the type(structure) for l_var not for BB
    and in another program
    data:l_var type string.
    import l_var from memory id 'BB'.
    write : l_var.

  • Issue in sending the email with XL attachment in ECC version

    Hi,
    I have an issue with sending the email with XL attachment. My program is sending a mail to the receiver with XLS as attachment. Recently we have migrated from 4.6B to ECC version. Same code was worked in 4.6B.But it is not working in ECC version.When i try to open the attachment, i get a Dialog Box with the following message
    "The file is not in a recognizable format.
    1. if you know the file is from another program whih is incompatible with Microsoft excel,click cancel,then open this file in its original application
    2.If you suspect the file is damaged, click help for more information about solving theproblem.
    3.if you still want to see what text is contained in the file, click OK.Then click the text import wizard. "
    when i click OK, the excel sheet is opening with all required data.
    Can anyone kindly tell me why this is happening.
    I am also attaching part of the coding related to this requirement.
    *&      Form  BUILD_XLS_DATA_TABLE
          text
    -->  p1        text
    <--  p2        text
    FORM build_xls_data_table.
      DATA: w_total(13),
      w_clabs(13),
      w_cinsm(13),
      w_ceinm(13),
      w_cretm(13),
      w_cspem(13),
      w_cumlm(13),
      w_exp_date(8),
      w_v_totalp(13),
      w_min_rem(8),
      w_ersda(10),
      w_hsdat(10),
      w_vfdat(10),
      w_ship_date(10),
      w_plnmg(13),
       w_mhdrz(4).
      CLEAR: w_total, w_clabs, w_cinsm, w_ceinm, w_cspem, w_exp_date,
      w_v_totalp, w_min_rem, w_ersda, w_hsdat, w_vfdat, w_ship_date,
      w_plnmg, w_mhdrz.
      w_total = it_batch1-total.
      w_clabs = it_batch1-clabs.
      w_cinsm = it_batch1-cinsm.
      w_ceinm = it_batch1-ceinm.
      w_cspem = it_batch1-cspem.
      w_cumlm = it_batch1-cumlm.
      w_cretm = it_batch1-cretm.
      w_exp_date = it_batch1-exp_date.
      w_v_totalp = it_batch1-v_totalp.
      w_min_rem = it_batch1-min_rem.
      w_plnmg = it_batch1-plnmg.
      w_mhdrz = it_batch1-mhdrz.
      CONCATENATE it_batch1-ersda6(2) it_batch1-ersda4(2)
                  it_batch1-ersda+0(4) INTO w_ersda SEPARATED BY '.'.
      CONCATENATE it_batch1-hsdat6(2) it_batch1-hsdat4(2)
                  it_batch1-hsdat+0(4) INTO w_hsdat SEPARATED BY '.'.
      CONCATENATE it_batch1-vfdat6(2) it_batch1-vfdat4(2)
                  it_batch1-vfdat+0(4) INTO w_vfdat SEPARATED BY '.'.
      CONCATENATE it_batch1-ship_date6(2) it_batch1-ship_date4(2)
                  it_batch1-ship_date+0(4) INTO w_ship_date SEPARATED BY '.'
      CONCATENATE
      it_batch1-werks it_batch1-mtart it_batch1-matnr it_batch1-maktg
    it_batch1-prdha it_batch1-prctr it_batch1-ktext  it_batch1-dispo
      it_batch1-charg it_batch1-lgort it_batch1-herkl w_clabs
      w_cinsm w_ceinm w_cretm w_cspem
      w_cumlm w_total  it_batch1-meins  it_batch1-v_spr_unit
      w_v_totalp it_batch1-waers w_plnmg  it_batch1-meins
      w_ersda w_hsdat w_vfdat  w_exp_date
       w_ship_date  w_mhdrz  w_min_rem it_batch1-zlifer
       it_batch1-doknr it_batch1-dokar it_batch1-doktl  it_batch1-dokvr
               INTO L_STRING SEPARATED BY CON_TAB.
                  INTO l_string SEPARATED BY cl_abap_char_utilities=>horizontal_tab.
      WHILE l_string <> space.
        CALL FUNCTION 'TEXT_SPLIT'
          EXPORTING
            length       = 255
            text         = l_string
            as_character = 'X'
          IMPORTING
            line         = it_attach
            rest         = l_string.
        IF l_string = space.
       CONCATENATE IT_ATTACH CON_CRET INTO IT_ATTACH.
          CONCATENATE it_attach cl_abap_char_utilities=>cr_lf INTO it_attach.
          APPEND it_attach.
          CLEAR it_attach.
        ELSE.
          APPEND it_attach.
          CLEAR it_attach.
        ENDIF.
      ENDWHILE.
    move l_string to it_attach .
    CONCATENATE it_attach cl_abap_char_utilities=>cr_lf INTO it_attach.
    APPEND it_attach.
    CLEAR it_attach.
    ENDFORM.                    " BUILD_XLS_DATA_TABLE
    *&      Form  SEND_FILE_AS_EMAIL_ATTACHMENT
          text
    -->  p1        text
    <--  p2        text
    FORM send_file_as_email_attachment.
      DATA:w_length TYPE i.
      DATA:  w_cnt TYPE i,
              w_sent_all(1) TYPE c,
              w_doc_data LIKE sodocchgi1,
              gd_error    TYPE sy-subrc,
              gd_reciever TYPE sy-subrc,
              t_attachment LIKE solisti1 OCCURS 0 WITH HEADER LINE.
    Fill the document data.
      w_doc_data-doc_size = 1.
    Populate the subject/generic message attributes
    w_doc_data-obj_langu = sy-langu.
    w_doc_data-obj_name  = 'SAPRPT'.
    w_doc_data-obj_descr = text-034 .
    w_doc_data-sensitivty = 'F'.
    Fill the document data and get size of attachment
      CLEAR w_doc_data.
    DESCRIBE TABLE it_attach LINES w_cnt.
      DESCRIBE TABLE it_message LINES w_cnt.
      READ TABLE it_message INDEX w_cnt.
    w_length = STRLEN( it_attach ).
      w_doc_data-doc_size =
         ( w_cnt - 1 ) * 255 + STRLEN( it_message ).
      w_doc_data-obj_langu  = sy-langu.
    w_doc_data-obj_name   = 'SAPRPT'.
      w_doc_data-obj_descr  = text-034.
      w_doc_data-sensitivty = 'F'.
      CLEAR t_attachment.
      REFRESH t_attachment.
      t_attachment[] = it_attach[].
    describe the body of the message
      CLEAR t_packing_list.
      REFRESH t_packing_list.
      t_packing_list-transf_bin = space.
      t_packing_list-head_start = 1.
      t_packing_list-head_num = 0.
      t_packing_list-body_start = 1.
    ***Start of changes by 501507008 on 29.01.2009
      t_packing_list-obj_descr  = 'MAIL BODY'.
    ***End of changes by 501507008 on 29.01.2009
      DESCRIBE TABLE it_message LINES t_packing_list-body_num.
      t_packing_list-doc_type = 'RAW'.
      APPEND t_packing_list.
    Create attachment notification
      t_packing_list-transf_bin = 'X'.
      t_packing_list-head_start = 1.
      t_packing_list-head_num   = 1.
      t_packing_list-body_start = 1.
      DESCRIBE TABLE t_attachment LINES t_packing_list-body_num.
      t_packing_list-doc_type   =  'XLS'.
      t_packing_list-obj_descr  =  text-034.
      t_packing_list-obj_name   =  'filename'.
      t_packing_list-doc_size   =  t_packing_list-body_num * 255.
      APPEND t_packing_list.
    Add the recipients email address
      CLEAR t_receivers.
      REFRESH t_receivers.
      LOOP AT it_adr6.
        t_receivers-receiver = it_adr6-smtp_addr.
        t_receivers-rec_type = 'U'.
        t_receivers-com_type = 'INT'.
        t_receivers-notif_del = 'X'.
        t_receivers-notif_ndel = 'X'.
        APPEND t_receivers.
      ENDLOOP.
    CALL FUNCTION 'SO_DOCUMENT_SEND_API1'
       EXPORTING
         document_data              = w_doc_data
         put_in_outbox              = 'X'
         sender_address             = ' '
         sender_address_type        = ' '
         commit_work                = 'X'
       IMPORTING
         sent_to_all                = w_sent_all
       TABLES
         packing_list               = t_packing_list
         contents_bin               = t_attachment
         contents_txt               = it_message
         receivers                  = t_receivers
       EXCEPTIONS
         too_many_receivers         = 1
         document_not_sent          = 2
         document_type_not_exist    = 3
         operation_no_authorization = 4
         parameter_error            = 5
         x_error                    = 6
         enqueue_error              = 7
         OTHERS                     = 8.
      CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
        EXPORTING
          document_data                    = w_doc_data
         put_in_outbox                    = 'X'
      commit_work                      = ' '
    IMPORTING
      sent_to_all                      =
      new_object_id                    =
    tables
            packing_list               = t_packing_list
            contents_bin               = t_attachment
            contents_txt               = it_message
            receivers                  = t_receivers
      contents_hex                     =
      object_para                      =
      object_parb                      =
       exceptions
         too_many_receivers               = 1
         document_not_sent                = 2
         document_type_not_exist          = 3
         operation_no_authorization       = 4
       parameter_error                  = 5
       x_error                          = 6
       enqueue_error                    = 7
       OTHERS                           = 8.
      IF sy-subrc <> 0.
      ENDIF.
    ENDFORM.                    " SEND_FILE_AS_EMAIL_ATTACHMENT

    Hi,
    could you tell me which opeion should i select in SCOT under INT node. I have tried with diffrent options. but no luck.
    SAPscript/Smart Forms  - No Conversion
    ABAP List                     - No Conversion
    Business Object/Link     - No Conversion
    RAW Text                     - No Conversion

  • Exporting data clusters with type version

    Hi all,
    let's assume we are saving some ABAP data as a cluster to database using the IMPORT TO ... functionality, e.g.
    EXPORT VBAK FROM LS_VBAK VBAP FROM LT_VBAP  TO DATABASE INDX(QT) ID 'TEST'
    Some days later, the data can be imported
    IMPORT VBAK TO LS_VBAK VBAP TO LT_VBAP FROM DATABASE INDX(QT) ID 'TEST'.
    Some months or years later, however, the IMPORT may crash: Since it is the most normal thing in the world that ABAP types are extended, some new fields may have been added to the structures VBAP or VBAK in the meantime.
    The data are not lost, however: Using method CL_ABAP_EXPIMP_UTILITIES=>DBUF_IMPORT_CREATE_DATA, they can be recovered from an XSTRING. This will create data objects apt to the content of the buffer. But the component names are lost - they get auto-generated names like COMP00001, COMP00002 etc., replacing the original names MANDT, VBELN, etc.
    So a natural question is how to save the type info ( = metadata) for the extracted data together with the data themselves:
    EXPORT TYPES FROM LT_TYPES VBAK FROM LS_VBAK VBAP FROM LT_VBAP TO DATABASE INDX(QT) ID 'TEST'.
    The table LT_TYPES should contain the meta type info for all exported data. For structures, this could be a DDFIELDS-like table containing the component information. For tables, additionally the table kind, key uniqueness and key components should be saved.
    Actually, LT_TYPES should contain persistent versions of CL_ABAP_STRUCTDESCR, CL_ABAP_TABLEDESCR, etc. But it seems there is no serialization provided for the RTTI type info classes.
    (In an optimized version, the type info could be stored in a separate cluster, and being referenced by a version number only in the data cluster, for efficiency).
    In the import step, the LT_TYPES could be imported first, and then instances for these historical data types could be created as containers for the real data import (here, I am inventing a class zcl_abap_expimp_utilities):
    IMPORT TYPES TO LT_TYPES FROM DATABASE INDX(QT) ID 'TEST'.
    DATA(LO_TYPES) = ZCL_ABAP_EXPIMP_UITLITIES=>CREATE_TYPE_INFOS ( LT_TYPES ).
    assign lo_types->data_object('VBAK')->* to <LS_VBAK>.
    assign lo_types->data_object('VBAP')->* to <LT_VBAP>.
    IMPORT VBAK TO <LS_VBAK> VBAP TO <LT_VBAP> FROM DATABASE INDX(QT) ID 'TEST'.
    Now the data can be recovered with their historical types (i.e. the types they had when the export statement was performed) and processed further.
    For example, structures and table-lines could be mixed into the current versions using MOVE-CORRESPONDING, and so on.
    My question: Is there any support from the standard for this functionality: Exporting data clusters with type version?
    Regards,
    Rüdiger

    The IMPORT statement works fine if target internal table has all fields of source internal table, plus some additional fields at the end, something like append structure of vbak.
    Here is the snippet used.
    TYPES:
    BEGIN OF ty,
      a TYPE i,
    END OF ty,
    BEGIN OF ty2.
            INCLUDE TYPE ty.
    TYPES:
      b TYPE i,
    END OF ty2.
    DATA: lt1 TYPE TABLE OF ty,
          ls TYPE ty,
          lt2 TYPE TABLE OF ty2.
    ls-a = 2. APPEND ls TO lt1.
    ls-a = 4. APPEND ls TO lt1.
    EXPORT table = lt1 TO MEMORY ID 'ZTEST'.
    IMPORT table = lt2 FROM MEMORY ID 'ZTEST'.
    I guess IMPORT statement would behave fine if current VBAK has more fields than older VBAK.

  • Key functional differences between SAP ECC Version 6.0 and SAP Version 4.6

    Hi Forum,
    As we are currently updgqrading to SAP ECC Version 6.0 from SAP Version 4.6, could someone please identify what are the new functionalities are being offred in SAP ECC 6.0.
    Please let me know or guide me in a right direction - my email address is [email protected] or simply reply to the forum.
    Thank you
    Yogesh

    Dear Yogesh,
    Please go through Upgrade info @ service.sap.com.
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/43/6880cbb88f297ee10000000a422035/frameset.htm
    http://solutionbrowser.erp.sap.fmpmedia.com/
    Major difference is ECC6 is netwear product having WASJAVA+ABAP
    secondly support unicode apart from this we have other diff. you can get fom master guide from service.sap.com/instguides
    For installing ECC 6.0 you required a solution manager key.With out solutionmanager key you cannot install ECC6.0.
    For ECC 6.0 is called netweaver component here you have ABAP+JAVA stack.
    ECC6.0 supports UNCODE.
    For installing 4.6 you don't required solution manager key.It only having ABAP stack.
    4.6C supports NONUNICODE.
    Hope this would add some more info.
    Regards,
    Naveen.

  • Installing SAP NW 7.01 ABAP Trial Version for dummies

    Hello sappers...
    Sorry if you thought this was a guide for dummies, though it could turn out to be if I get some help - I'm the dummy!
    Not wanting to be left out, I too have had a host of issues trying to install this, over several days now... it feels like bashing your head against a brickwall.  After staying up till 4am last night, then wiping my laptop and reinstalling Windows AGAIN to start from scratch this morning, and encountering the cranio-mural interface again, I feel like a crash test dummy!
    I am installing on a new installation of Windows Vista Home Basic, I have a gig of RAM and plenty of hard drive space.
    Forgive me if this is an ignorant question, but do I need to install the Loopback adaptor if I'm connected to the internet?  If it's to generate an IP address, surely my computer has one.  Note networking is not my strong point (though I'm an ok programmer - one project manager even gave me 4 out of 10!) - please be kind!  Anyway, I have tried with and without this on my various attempts.
    ANYWAY.... the sorry saga goes like this...
    I seem to be able to install Max DB OR SAP NW 7.01 ABAP Trial Version u2013> NSP, but not both at the same time - I may have done once, and it seemed to work once, I even managed to sign on - then it wouldnt work in the morning - but then that was on Windows XP Pro on my wife's laptop which only has 500 meg of RAM.
    My last attempt was fairly typical - Max DB is showing up in the program menu, but SAP NW 7.01 ABAP Trial Version u2013> NSP is not.
    However, I seem to have managed to start the NSP server ok, using SAP Management console, thanks to a handy tip on this forum about using your Windows OS password when it prompts for credentials.
    When I try to sign on I get 'partner 127.0.0.1:sapdp00 not reached WSAECONNREFUSED: Connection refused - error number 10061, return code -10, system call connect.
    That's one of my better attempts.
    Last night having deleted all the installed files from my C drive, uninstalled everything, tinkered with the registry to remove all relevant entries, I managed to run an installation that skipped out installing MaxDB (it was super quick!), yet did install the SAP NW 7.01 ABAP Trial Version u2013> NSP bits in my program menu - imagine my excitement at being able to start and stop the server, yet with no database it produced red windows on my screen saying 'sorry, you screwed up AGAIN' (or words to that effect).  Trying to sign on produced equally disheartening error messages...
    Am going to give it another try after taking a break, next time WITH loop back adaptor installed...
    Please pardon lack of relevant detail, I didnt note everything I did on every attempt - substituting humour for detail is all that's saving my sanity at this stage...
    Anyone that can help me achieve this will be my friend for ever... I'm a contractor bitten by the recession trying to learn some news skills.... the first one being how to install Netweaver at home...!
    Log text gives
    (Mar 4, 2009 12:50:08 PM), Install, com.sap.installshield.CheckServicesAction, err, CheckServicesAction(bean17): Expected service (SAPNSP_00) is not currently running
    (Mar 4, 2009 12:50:08 PM), Install, com.sap.installshield.CheckServicesAction, wrn, CheckServicesAction(bean17): Service SAPNSP_00 is not available, retry after 10 s.
    (Mar 4, 2009 12:50:18 PM), Install, com.sap.installshield.CheckServicesAction, err, CheckServicesAction(bean17): Expected service (SAPNSP_00) is not currently running
    (Mar 4, 2009 12:50:18 PM), Install, com.sap.installshield.CheckServicesAction, wrn, CheckServicesAction(bean17): Service SAPNSP_00 is not available, retry after 10 s.
    (Mar 4, 2009 12:50:28 PM), Install, com.sap.installshield.CheckServicesAction, err, CheckServicesAction(bean17): Expected service (SAPNSP_00) is not currently running
    (Mar 4, 2009 12:50:28 PM), Install, com.sap.installshield.CheckServicesAction, wrn, CheckServicesAction(bean17): Service SAPNSP_00 is not available, retry after 10 s.
    (Mar 4, 2009 12:50:38 PM), Install, com.sap.installshield.CheckServicesAction, err, CheckServicesAction(bean17): Expected service (SAPNSP_00) is not currently running
    (Mar 4, 2009 12:50:38 PM), Install, com.sap.installshield.CheckServicesAction, wrn, CheckServicesAction(bean17): Service SAPNSP_00 is not available, retry after 10 s.
    (Mar 4, 2009 12:50:48 PM), Install, com.sap.installshield.CheckServicesAction, err, CheckServicesAction(bean17): Expected service (SAPNSP_00) is not currently running
    (Mar 4, 2009 12:50:48 PM), Install, com.sap.installshield.CheckServicesAction, wrn, CheckServicesAction(bean17): Service SAPNSP_00 is not available, retry after 10 s.
    (Mar 4, 2009 12:50:58 PM), Install, com.sap.installshield.CheckServicesAction, err, CheckServicesAction(bean17): Expected service (SAPNSP_00) is not currently running
    (Mar 4, 2009 12:50:58 PM), Install, com.sap.installshield.CheckServicesAction, wrn, CheckServicesAction(bean17): Service SAPNSP_00 is not available, retry after 10 s.
    (Mar 4, 2009 12:51:09 PM), Install, com.sap.installshield.CheckServicesAction, err, An error occurred and product installation failed.  Look at the log file C:\SAP\NSP\log.txt for details.
    (Mar 4, 2009 12:51:09 PM), Install, com.sap.installshield.CheckServicesAction, err, ProductException: (error code = 601; message="Services failed to start (see the log for details)")
    STACK_TRACE: 12
    ProductException: (error code = 601; message="Services failed to start (see the log for details)")
         at com.sap.installshield.CheckServicesAction.install(CheckServicesAction.java:95)
         at com.installshield.product.service.product.PureJavaProductServiceImpl.installProductAction(Unknown Source)
         at com.installshield.product.service.product.PureJavaProductServiceImpl$InstallProduct.getResultForProductAction(Unknown Source)
         at com.installshield.product.service.product.InstallableObjectVisitor.visitComponent(Unknown Source)
         at com.installshield.product.service.product.InstallableObjectVisitor.visitInstallableComponents(Unknown Source)
         at com.installshield.product.service.product.InstallableObjectVisitor.visitProductBeans(Unknown Source)
         at com.installshield.product.service.product.PureJavaProductServiceImpl$InstallProduct.install(Unknown Source)
         at com.installshield.product.service.product.PureJavaProductServiceImpl$Installer.execute(Unknown Source)
         at com.installshield.wizard.service.AsynchronousOperation.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    (Mar 4, 2009 12:51:11 PM), Install, com.installshield.product.service.product.PureJavaProductServiceImpl$InstallProduct, err, An error occurred and product uninstallation failed.  Look at the log file C:\SAP\NSP\log.txt for details.
    (Mar 4, 2009 12:51:11 PM), Install, com.sap.installshield.sdcstepswrapper.StepWrapperInstallFiles, err, ProductException: (error code = 200; message="Java error"; exception = [java.lang.Exception])
    STACK_TRACE: 15
    ProductException: (error code = 200; message="Java error"; exception = [java.lang.Exception])
         at com.sap.installshield.sdcstepswrapper.StepWrapperInstallFiles.execute(StepWrapperInstallFiles.java:254)
         at com.sap.installshield.sdcstepswrapper.StepWrapperInstallFiles.executeAllSteps(StepWrapperInstallFiles.java:224)
         at com.sap.installshield.sdcstepswrapper.StepWrapperInstallFiles.executeAllUninstallationSteps(StepWrapperInstallFiles.java:192)
         at com.sap.installshield.sdcstepswrapper.StepWrapperInstallFiles.uninstall(StepWrapperInstallFiles.java:313)
         at com.installshield.product.service.product.PureJavaProductServiceImpl.uninstallProductAction(Unknown Source)
         at com.installshield.product.service.product.PureJavaProductServiceImpl$InstallProduct.processActionsFailed(Unknown Source)
         at com.installshield.product.service.product.InstallableObjectVisitor.visitComponent(Unknown Source)
         at com.installshield.product.service.product.InstallableObjectVisitor.visitInstallableComponents(Unknown Source)
         at com.installshield.product.service.product.InstallableObjectVisitor.visitProductBeans(Unknown Source)
         at com.installshield.product.service.product.PureJavaProductServiceImpl$InstallProduct.install(Unknown Source)
         at com.installshield.product.service.product.PureJavaProductServiceImpl$Installer.execute(Unknown Source)
         at com.installshield.wizard.service.AsynchronousOperation.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)

    ok, this is the log from my latest attempt...
    > Subprocess starts at 20090312182156
    Execute Command : C:\sapdb\programs\pgm\dbmcli.exe -n James-PC inst_enum
    Execute Session Command : exit
    > Subprocess stops at 20090312182159
    OK
    7.7.06.07    C:\sapdb\NSP\db
    > Subprocess starts at 20090312182159
    Execute Command : C:\sapdb\programs\pgm\dbmcli.exe -n James-PC inst_enum
    Execute Session Command : exit
    > Subprocess stops at 20090312182159
    OK
    7.7.06.07    C:\sapdb\NSP\db
    > Subprocess starts at 20090312182205
    Execute Command : C:\sapdb\programs\pgm\dbmcli.exe -n James-PC inst_enum
    Execute Session Command : exit
    > Subprocess stops at 20090312182206
    OK
    7.7.06.07    C:\sapdb\NSP\db
    > Subprocess starts at 20090312182206
    Execute Command : C:\sapdb\programs\pgm\dbmcli.exe -n James-PC inst_enum
    Execute Session Command : exit
    > Subprocess stops at 20090312182206
    OK
    7.7.06.07    C:\sapdb\NSP\db
    > Subprocess starts at 20090312182206
    Execute Command : C:\sapdb\programs\pgm\dbmcli.exe -n James-PC db_enum
    Execute Session Command : exit
    > Subprocess stops at 20090312182209
    OK
    NSP     C:\sapdb\NSP\db                             7.7.06.07     fast     offline
    NSP     C:\sapdb\NSP\db                             7.7.06.07     slow     offline
    > Subprocess starts at 20090312182209
    Execute Command : C:\sapdb\programs\pgm\dbmcli.exe -n James-PC db_enum
    Execute Session Command : exit
    > Subprocess stops at 20090312182209
    OK
    NSP     C:\sapdb\NSP\db                             7.7.06.07     fast     offline
    NSP     C:\sapdb\NSP\db                             7.7.06.07     slow     offline
    > Subprocess starts at 20090312182209
    Execute Command : C:\sapdb\programs\pgm\dbmcli.exe -R C:\sapdb\NSP\db dbm_version
    Execute Session Command : exit
    > Subprocess stops at 20090312182209
    OK
    VERSION    = 7.7.06
    BUILD      = DBMServer 7.7.06   Build 007-123-197-046
    OS         = WIN32
    INSTROOT   = C:\sapdb\NSP\db
    LOGON      = True
    CODE       = UTF8
    SWAP       = full
    UNICODE    = YES
    INSTANCE   = (unknown)
    SYSNAME    = Windows
    MASKING    = YES
    REPLYTREATMENT = none,zlib,auto
    SDBDBM_IPCLOCATION = C:\sapdb\data\wrk
    > Subprocess starts at 20090312182209
    Execute Command : C:\sapdb\programs\pgm\dbmcli.exe -n James-PC inst_enum
    Execute Session Command : exit
    > Subprocess stops at 20090312182210
    OK
    7.7.06.07    C:\sapdb\NSP\db
    > Subprocess starts at 20090312182210
    Execute Command : C:\sapdb\programs\pgm\dbmcli.exe -n James-PC db_enum
    Execute Session Command : exit
    > Subprocess stops at 20090312182210
    OK
    NSP     C:\sapdb\NSP\db                             7.7.06.07     fast     offline
    NSP     C:\sapdb\NSP\db                             7.7.06.07     slow     offline
    > Subprocess starts at 20090312182211
    Execute Command : C:\sapdb\programs\pgm\dbmcli.exe -n James-PC inst_enum
    Execute Session Command : exit
    > Subprocess stops at 20090312182211
    OK
    7.7.06.07    C:\sapdb\NSP\db
    > Subprocess starts at 20090312182211
    Execute Command : C:\sapdb\programs\pgm\dbmcli.exe -n James-PC inst_enum
    Execute Session Command : exit
    > Subprocess stops at 20090312182211
    OK
    7.7.06.07    C:\sapdb\NSP\db
    > Subprocess starts at 20090312182212
    Execute Command : C:\sapdb\programs\pgm\dbmcli.exe -n James-PC -d NSP -u control,******** db_state
    Execute Session Command : exit
    > Subprocess stops at 20090312182213
    OK
    State
    OFFLINE
    > Subprocess starts at 20090312182213
    Execute Command : C:\sapdb\programs\pgm\dbmcli.exe -n James-PC -d NSP -u CONTROL,******** db_state
    Execute Session Command : exit
    > Subprocess stops at 20090312182214
    OK
    State
    OFFLINE
    > Subprocess starts at 20090312182214
    Execute Command : C:\sapdb\programs\pgm\dbmcli.exe -n James-PC -d NSP -u CONTROL,******** db_state
    Execute Session Command : exit
    > Subprocess stops at 20090312182214
    OK
    State
    OFFLINE
    > Subprocess starts at 20090312182214
    Execute Command : C:\sapdb\programs\pgm\dbmcli.exe -n James-PC -d NSP -u CONTROL,******** db_online
    Execute Session Command : exit
    > Subprocess stops at 20090312182228
    > Subprocess call failed
    ERR
    -24988,ERR_SQL: SQL error
    -902,I/O error
    3,Database state: OFFLINE
    Internal errorcode, Error code 9050 "disk_not_accessible"
    20017,RestartFilesystem failed with 'I/O error'
    > Subprocess starts at 20090312182303
    Execute Command : C:\sapdb\programs\pgm\dbmcli.exe -n James-PC -d NSP -u control,******** db_state
    Execute Session Command : exit
    > Subprocess stops at 20090312182304
    OK
    State
    OFFLINE
    > Subprocess starts at 20090312182304
    Execute Command : C:\sapdb\programs\pgm\dbmcli.exe -n James-PC -d NSP -u CONTROL,******** db_state
    Execute Session Command : exit
    > Subprocess stops at 20090312182305
    OK
    State
    OFFLINE
    > Subprocess starts at 20090312182305
    Execute Command : C:\sapdb\programs\pgm\dbmcli.exe -n James-PC -d NSP -u CONTROL,******** db_state
    Execute Session Command : exit
    > Subprocess stops at 20090312182305
    OK
    State
    OFFLINE
    > Subprocess starts at 20090312182306
    Execute Command : C:\sapdb\programs\pgm\dbmcli.exe -n James-PC -d NSP -u CONTROL,******** db_online
    Execute Session Command : exit
    > Subprocess stops at 20090312182316
    > Subprocess call failed
    ERR
    -24988,ERR_SQL: SQL error
    -902,I/O error
    3,Database state: OFFLINE
    Internal errorcode, Error code 9050 "disk_not_accessible"
    20017,RestartFilesystem failed with 'I/O error'

  • Error installing SAP NetWeaver 7.01 ABAP Trial Version on Windows Vista

    This is my second attempt to install. The first time the laptop froze during the MaxDB installation. I was not able to use uninstall.exe (did not exist), so I deleted the entire contents of the sapdb folder and also ran the registry clean tool, RegistryClean.cmd, before the second attempt. Any assistance would be appreciated!!  Here is the contents of log.txt:
    (Feb 15, 2011 11:19:04 PM), Install, com.sap.installshield.maxdb.maxdb_call_sdbinst, err, An error occurred and product installation failed.  Look at the log file C:\sapdb\log.txt for details.
    (Feb 15, 2011 11:19:04 PM), Install, com.sap.installshield.maxdb.maxdb_call_sdbinst, err, ProductException: (error code = 601; message="An Error happened during call of MaxDB Tool sdbinst. Check end of Logfile C:/Users/OFFICE~1/AppData/Local/Temp/MaxDBSAPNWPREV.log")
    STACK_TRACE: 22
    ProductException: (error code = 601; message="An Error happened during call of MaxDB Tool sdbinst. Check end of Logfile C:/Users/OFFICE~1/AppData/Local/Temp/MaxDBSAPNWPREV.log")
         at com.sap.installshield.maxdb.maxdb_call_sdbinst.install(maxdb_call_sdbinst.java:193)
         at com.installshield.product.service.product.PureJavaProductServiceImpl.installProductAction(Unknown Source)
         at com.installshield.product.service.product.PureJavaProductServiceImpl$InstallProduct.getResultForProductAction(Unknown Source)
         at com.installshield.product.service.product.InstallableObjectVisitor.visitComponent(Unknown Source)
         at com.installshield.product.service.product.InstallableObjectVisitor.visitInstallableComponents(Unknown Source)
         at com.installshield.product.service.product.InstallableObjectVisitor.visitProductBeans(Unknown Source)
         at com.installshield.product.service.product.PureJavaProductServiceImpl$InstallProduct.install(Unknown Source)
         at com.installshield.product.service.product.PureJavaProductServiceImpl.installProduct(Unknown Source)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at com.installshield.wizard.service.LocalImplementorProxy.invoke(Unknown Source)
         at com.installshield.wizard.service.AbstractService.invokeImpl(Unknown Source)
         at com.installshield.product.service.product.GenericProductService.installProduct(Unknown Source)
         at com.installshield.product.service.product.PureJavaProductServiceImpl.installAssembly(Unknown Source)
         at com.installshield.product.service.product.PureJavaProductServiceImpl.access$900(Unknown Source)
         at com.installshield.product.service.product.PureJavaProductServiceImpl$Installer.execute(Unknown Source)
         at com.installshield.wizard.service.AsynchronousOperation.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)

    Faisal,
    Thanks for your response to my question.  I have successfully installed VirtualDisk, however I CANCELED the "Create New Virtual Disk" setup at step 8 of your instructions because it states that you must select a size of more than 50GB.  After installing VirtualDisk I only have 38GB of free space on my hard drive.  System requirements for SAP NetWeaver 7.01 ABAP Trial Version states 25GB temporary for installation - 12GB permanent. Your instructions specify that an additional 3.5GB are needed for setup files bringing the total space to 28.5GB.  Why are more than 50GB required?
    If more than 50GB are required, then what are my options? (I have already removed unneeded software, files, etc., so I can't get more space on my existing hard drive.)
    Thanks for your help!
    Gary

  • Error  installing  7.01 ABAP trial version, during step "start instance"

    Hi,
    I have installed 7.01 ABAP trial version on WINDOWS VISTA.
    During the step 24/27 "start  instance" I have this error:
    INFO 2009-10-05 03:17:19.165
    Disconnect from message server (PC-Andre/3900) succeeded.
    INFO 2009-10-05 03:17:19.181
    Connect to message server (PC-Andre/3900) succeeded.
    INFO 2009-10-05 03:17:19.181
    Disconnect from message server (PC-Andre/3900) succeeded.
    INFO 2009-10-05 03:17:19.306
    State of instance NSP/DVEBMGS00 changed from ABAP: STARTING to ABAP: STARTING.
    WARNING[E] 2009-10-05 03:17:19.321
    CJS-30105  Instance NSP/DVEBMGS00 reached state SHUTDOWN after having state STARTING. Giving up.
    ERROR 2009-10-05 03:17:19.337
    FCO-00011  The step start with step key |NW_ABAP_OneHost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|2|0|NW_CI_Instance|ind|ind|ind|ind|10|0|NW_CI_Instance_Start|ind|ind|ind|ind|2|0|start was executed with status ERROR .
    INFO 2009-10-05 08:46:25.193
    An error occured and the user decided to stop.\n Current step "|NW_ABAP_OneHost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|2|0|NW_CI_Instance|ind|ind|ind|ind|10|0|NW_CI_Instance_Start|ind|ind|ind|ind|2|0|start".
    Please help me.
    Thanks.
    Andrea

    Thanks peoplel!!!
    The problem was the file "host" :
    in  the file C:\Winnt\system32\drivers\etc\hosts enter:
    <permanent IP address> <host name>
    For example:
    10.10.0.10      yourhost
    I was forget to change it.
    Bye!!!
    Edited by: zerofolle on Oct 6, 2009 12:24 AM

  • SAP NetWeaver 7.01 ABAP Trial Version on Vista Ultimate Issue

    Hi,
    I am trying to install SAP NetWeaver 7.01 ABAP Trial Version on windows vista ultimate 32 bit. when i check MaxDBSAPNWPREV.log
    Tue Mar 17 08:30:19 GMT 2009 MaxDB sdbinst: starting installation phase of package SQLDBC 77 7.7.04.23 32 bit
    Tue Mar 17 08:30:19 GMT 2009 MaxDB sdbinst: -----------------------------------------------------------------
    Tue Mar 17 08:30:19 GMT 2009 MaxDB sdbinst:
    Tue Mar 17 08:30:19 GMT 2009 MaxDB sdbinst: start real extraction of "C:/sapdb/NSP/_tempLocation/SQLDBC77.TGZ"
    Tue Mar 17 08:30:19 GMT 2009 MaxDB sdbinst: extracting: drwxr-xr-x            0 2008-07-09 06:04:44 pgm/
    Tue Mar 17 08:30:19 GMT 2009 MaxDB sdbinst: extracting: -rwxr-xr-x       655360 2008-07-09 04:24:09 pgm/libSDBLoader77.dll
    Tue Mar 17 08:30:20 GMT 2009 MaxDB sdbinst: extracting: -rwxr-xr-x      1642496 2008-07-09 04:24:03 pgm/libSQLDBC77.dll
    Tue Mar 17 08:30:20 GMT 2009 MaxDB sdbinst: extracting: drwxr-xr-x            0 2008-07-09 06:04:44 sdk/
    Tue Mar 17 08:30:20 GMT 2009 MaxDB sdbinst: extracting: drwxr-xr-x            0 2008-07-09 06:04:44 sdk/fastload/
    Tue Mar 17 08:30:20 GMT 2009 MaxDB sdbinst: extracting: drwxr-xr-x            0 2008-07-09 06:04:44 sdk/fastload/lib/
    Tue Mar 17 08:30:20 GMT 2009 MaxDB sdbinst: extracting: -rw-r--r--        23124 2008-07-09 04:24:09 sdk/fastload/lib/libSDBLoader77.lib
    Tue Mar 17 08:30:20 GMT 2009 MaxDB sdbinst: extracting: drwxr-xr-x            0 2008-07-09 06:04:44 sdk/sqldbc/
    Tue Mar 17 08:30:20 GMT 2009 MaxDB sdbinst: extracting: drwxr-xr-x            0 2008-07-09 06:04:44 sdk/sqldbc/lib/
    Tue Mar 17 08:30:20 GMT 2009 MaxDB sdbinst: extracting: -rw-r--r--       146580 2008-07-08 23:51:15 sdk/sqldbc/lib/libSQLDBC77.lib
    Tue Mar 17 08:30:20 GMT 2009 MaxDB sdbinst: extracting: drwxr-xr-x            0 2008-07-09 06:04:44 symbols/
    Tue Mar 17 08:30:21 GMT 2009 MaxDB sdbinst: extracting: -rw-r--r--      4041728 2008-07-09 04:24:08 symbols/libSDBLoader77.pdb
    Tue Mar 17 08:30:21 GMT 2009 MaxDB sdbinst: extracting: -rw-r--r--      7539712 2008-07-09 04:24:02 symbols/libSQLDBC77.pdb
    Tue Mar 17 08:30:21 GMT 2009 MaxDB sdbinst: checking unpacked archive... ok
    Tue Mar 17 08:30:21 GMT 2009 MaxDB sdbinst: installation of MaxDB Software finished successfully Tu, Mar 17, 2009 at 14:00:20
    Tue Mar 17 08:30:21 GMT 2009 MaxDB sdbinst: creating database NSP...
    Tue Mar 17 08:30:21 GMT 2009 MaxDB sdbinst: getInstalledReleasesWin(): wrong version format
    Tue Mar 17 08:30:21 GMT 2009 MaxDB sdbinst: ERROR: Backup check for  'C:\sapdb\NSP\_tempLocation\load\load_datasave' failed:
    Tue Mar 17 08:30:21 GMT 2009 MaxDB sdbinst: File not found: C:\sapdb\NSP\_tempLocation\load\load_datasave
    Tue Mar 17 08:30:21 GMT 2009 MaxDB sdbinst: installation exited abnormally  at Tu, Mar 17, 2009 at 14:00:20
    Tue Mar 17 08:30:22 GMT 2009 MaxDB: Error during call to sdbinst, rc= 1
    Tue Mar 17 08:30:22 GMT 2009 MaxDB: Done with call_sdbinst
    Tue Mar 17 08:30:22 GMT 2009 MaxDB: rc of sdbinst = 1
    Tue Mar 17 08:30:22 GMT 2009 MaxDB: Start of CallSdbuninst
    Tue Mar 17 08:30:22 GMT 2009 MaxDB: IndepProgPath: C:/sapdb/programs
    Tue Mar 17 08:30:22 GMT 2009 MaxDB: dbmcli path: C:/sapdb/programs/pgm/dbmcli.exe
    Tue Mar 17 08:30:22 GMT 2009 MaxDB: Calling check for db_enum in case of an abort
    Tue Mar 17 08:30:25 GMT 2009 MaxDB: nsp doesn't exist. Nothing to do !
    Tue Mar 17 08:30:25 GMT 2009 MaxDB: rc of Method: 3
    Tue Mar 17 08:30:25 GMT 2009 MaxDB: IndepProgPath = C:/sapdb/programs
    MaxDB: dbmcli_path = C:/sapdb/programs/pgm/dbmcli.exe
    MaxDB: Database instance to drop: :NSP:
    MaxDB: Instroot of NSP is: null
    MaxDB: sdbuninst_option = :3
    MaxDB: 0=uninstall all, 1=uninstall Kernel package, 2=drop database only, 3=do nothing
    Tue Mar 17 08:30:25 GMT 2009 MaxDB: End of CallSdbuninst
    Tue Mar 17 08:30:25 GMT 2009 MaxDB: End of uninstallation
    What could be the issue
    as the error says File not found: C:\sapdb\NSP\_tempLocation\load\load_datasave
    i am not able to find the folder in my system.
    Regards

    Hello every body... i´m facing with the same problem and i thinank i´ve just tried everything with no success... 2 days ago i installed ABAP Trial without problems, everything works fine and yesterday i was able to login and practice a little bit. At the end of the day i run the tc SGEN to compile the system and when the jobs ended i shutdown the db and the computer.
    This morning i´m not able to stats the db, it´s impossible... i´ve just tried many things that i´ve seen in different post but the error still appears... any idea ? please help me... it´s very important for me to have the ABAP Trial working.
    System
    Windows XP Pro SP2.
    HD 100GB.
    Here is my dbm file (...the end of the file to see the error).
    My user is assigned to SDB Operators.
    If i try to start the service manually the system says that service it has been started and stopped because there is nothing to do... any idea ?
    Thanks in advance
    Joaquin Casas
    2009-04-11 12:52:24 0x00000e88 INF          1 DBMSrvCo A DBM Server client connection was established at 2009-04-11 12:52:24 (client process has process ID 3456 on computer sapquim).
    2009-04-11 12:52:24 0x00000e88 INF        283 DBMSrv   Command 'db_online' is being executed.
    2009-04-11 12:52:27 0x00000e88 INF          1 DBMKnl   Sending an administrative statement to the database
                        0x00000e88 INF          8 DBMKnl   Statement:  RESTART
    2009-04-11 12:52:33 0x00000e88 ERR          3 DBMKnl   Received the result of an administrative statement from the database
                        0x00000e88 ERR          9 DBMKnl   Statement:  RESTART
                        0x00000e88 ERR         10 DBMKnl   Returncode: -902
                        0x00000e88 ERR          5 DBMKnl   Errortext:  I/O error
    2009-04-11 12:52:33 0x00000e88 ERR     -24580 DBMSrv   ERR_COMMAND_FAILED: Command 'db_online' has ended and failed with return code -24988.
                        0x00000e88 ERR     -24988 DBMSrv   ERR_SQL: SQL error
                        0x00000e88 ERR     -24778 DBMSrv   -902,I/O error
                        0x00000e88 ERR     -24778 DBMSrv   3,Database state: OFFLINE
                        0x00000e88 ERR     -24778 DBMSrv   Internal errorcode, Error code 9050 "disk_not_accessible"
                        0x00000e88 ERR     -24778 DBMSrv   20017,RestartFilesystem failed with 'I/O error'
    2009-04-11 12:52:33 0x00000e88 INF          2 DBMSrvCo A DBM Server client connection was released (client process has process ID 3456 on computer sapquim).
    2009-04-11 12:53:02 0x00000900 INF          1 DBMSrvCo A DBM Server client connection was established at 2009-04-11 12:53:02 (client process has process ID 3368 on computer sapquim).
    2009-04-11 12:53:02 0x00000900 INF        283 DBMSrv   Command 'db_online' is being executed.
    2009-04-11 12:53:05 0x00000900 INF          1 DBMKnl   Sending an administrative statement to the database
                        0x00000900 INF          8 DBMKnl   Statement:  RESTART
    2009-04-11 12:53:11 0x00000900 ERR          3 DBMKnl   Received the result of an administrative statement from the database
                        0x00000900 ERR          9 DBMKnl   Statement:  RESTART
                        0x00000900 ERR         10 DBMKnl   Returncode: -902
                        0x00000900 ERR          5 DBMKnl   Errortext:  I/O error
    2009-04-11 12:53:11 0x00000900 ERR     -24580 DBMSrv   ERR_COMMAND_FAILED: Command 'db_online' has ended and failed with return code -24988.
                        0x00000900 ERR     -24988 DBMSrv   ERR_SQL: SQL error
                        0x00000900 ERR     -24778 DBMSrv   -902,I/O error
                        0x00000900 ERR     -24778 DBMSrv   3,Database state: OFFLINE
                        0x00000900 ERR     -24778 DBMSrv   Internal errorcode, Error code 9050 "disk_not_accessible"
                        0x00000900 ERR     -24778 DBMSrv   20017,RestartFilesystem failed with 'I/O error'
    2009-04-11 12:53:11 0x00000900 INF          2 DBMSrvCo A DBM Server client connection was released (client process has process ID 3368 on computer sapquim).
    2009-04-11 12:54:00 0x00000fec INF          1 DBMSrvCo A DBM Server client connection was established at 2009-04-11 12:54:00 (client process has process ID 3596 on computer sapquim).
    2009-04-11 12:54:00 0x00000fec INF        283 DBMSrv   Command 'db_online' is being executed.
    2009-04-11 12:54:01 0x00000fec INF          1 DBMKnl   Sending an administrative statement to the database
                        0x00000fec INF          8 DBMKnl   Statement:  RESTART
    2009-04-11 12:54:07 0x00000fec ERR          3 DBMKnl   Received the result of an administrative statement from the database
                        0x00000fec ERR          9 DBMKnl   Statement:  RESTART
                        0x00000fec ERR         10 DBMKnl   Returncode: -902
                        0x00000fec ERR          5 DBMKnl   Errortext:  I/O error
    2009-04-11 12:54:07 0x00000fec ERR     -24580 DBMSrv   ERR_COMMAND_FAILED: Command 'db_online' has ended and failed with return code -24988.
                        0x00000fec ERR     -24988 DBMSrv   ERR_SQL: SQL error
                        0x00000fec ERR     -24778 DBMSrv   -902,I/O error
                        0x00000fec ERR     -24778 DBMSrv   3,Database state: OFFLINE
                        0x00000fec ERR     -24778 DBMSrv   Internal errorcode, Error code 9050 "disk_not_accessible"
                        0x00000fec ERR     -24778 DBMSrv   20017,RestartFilesystem failed with 'I/O error'
    2009-04-11 12:54:07 0x00000fec INF          2 DBMSrvCo A DBM Server client connection was released (client process has process ID 3596 on computer sapquim).

  • Problems with SAP NetWeaver 7.01 ABAP Trial Version installation

    Hi,
    I have installed NW 7.01 ABAP trial version "successfully".
    Unfortunately the application server doesn't start.
    After some time the Dispatcher process stopps.
    In the syslog you can see that 7 workprocesses are started.
    they all don't seem to be able to connect to the database and shut down.
    The related syslog messages are:
    Database: SQL error -1070 occurred (possible network problems?). Work process is stopped
    Database: Database error -10709 at CON   
    Database: > Connection failed (RTE:Database name is missing) 
    SAP-Basis System: Stop Workproc 4, PID     4136
    I already re-installed the Trial version, and I also checked that the database is up and running.
    The error persist.
    Can anyone help ?
    Thanks
    Stefan

    Hi Juan,
    thanks for the suggestion.
    here's the trace file dev_dev0.
    Still need help though ....
    Regards Stefan
    trc file: "dev_w0", trc level: 1, release: "701"
    ACTIVE TRACE LEVEL           1
    ACTIVE TRACE COMPONENTS      all, MJ

    B Sat Oct 25 20:51:49 2008
    B  create_con (con_name=R/3)
    B  Loading DB library 'C:\SAP\NSP\SYS\exe\run\dbsdbslib.dll' ...
    B  Library 'C:\SAP\NSP\SYS\exe\run\dbsdbslib.dll' loaded
    B  Version of 'C:\SAP\NSP\SYS\exe\run\dbsdbslib.dll' is "700.08", patchlevel (0.7)
    B  New connection 0 created
    M sysno      02
    M sid        NSP
    M systemid   560 (PC with Windows NT)
    M relno      7010
    M patchlevel 0
    M patchno    7
    M intno      20020600
    M make:      multithreaded, ASCII, optimized
    M pid        5388
    M
    M  kernel runs with dp version 240(ext=110) (@(#) DPLIB-INT-VERSION-240)
    M  length of sys_adm_ext is 364 bytes
    M  ***LOG Q0Q=> tskh_init, WPStart (Workproc 0 5388) [dpxxdisp.c   1319]
    I  MtxInit: 30000 0 0
    M  DpSysAdmExtCreate: ABAP is active
    M  DpSysAdmExtCreate: VMC (JAVA VM in WP) is not active

    M Sat Oct 25 20:51:50 2008
    M  DpShMCreate: sizeof(wp_adm)          8232     (1176)
    M  DpShMCreate: sizeof(tm_adm)          3786880     (18840)
    M  DpShMCreate: sizeof(wp_ca_adm)          1280     (60)
    M  DpShMCreate: sizeof(appc_ca_adm)     1200     (60)
    M  DpCommTableSize: max/headSize/ftSize/tableSize=500/8/528040/528048
    M  DpShMCreate: sizeof(comm_adm)          528048     (1048)
    M  DpSlockTableSize: max/headSize/ftSize/fiSize/tableSize=0/0/0/0/0
    M  DpShMCreate: sizeof(slock_adm)          0     (96)
    M  DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    M  DpShMCreate: sizeof(file_adm)          0     (72)
    M  DpShMCreate: sizeof(vmc_adm)          0     (1296)
    M  DpShMCreate: sizeof(wall_adm)          (22440/34344/56/100)
    M  DpShMCreate: sizeof(gw_adm)     48
    M  DpShMCreate: SHM_DP_ADM_KEY          (addr: 04CA0040, size: 4389744)
    M  DpShMCreate: allocated sys_adm at 04CA0040
    M  DpShMCreate: allocated wp_adm at 04CA1BF8
    M  DpShMCreate: allocated tm_adm_list at 04CA3C20
    M  DpShMCreate: allocated tm_adm at 04CA3C50
    M  DpShMCreate: allocated wp_ca_adm at 050404D0
    M  DpShMCreate: allocated appc_ca_adm at 050409D0
    M  DpShMCreate: allocated comm_adm at 05040E80
    M  DpShMCreate: system runs without slock table
    M  DpShMCreate: system runs without file table
    M  DpShMCreate: allocated vmc_adm_list at 050C1D30
    M  DpShMCreate: allocated gw_adm at 050C1D70
    M  DpShMCreate: system runs without vmc_adm
    M  DpShMCreate: allocated ca_info at 050C1DA0
    M  DpShMCreate: allocated wall_adm at 050C1DA8
    M  rdisp/queue_size_check_value :  -> off
    M  ThTaskStatus: rdisp/reset_online_during_debug 0
    X  EmInit: MmSetImplementation( 2 ).
    X  MM global diagnostic options set: 0
    X  <ES> client 0 initializing ....
    X  Using implementation view
    X  <EsNT> Using memory model view.
    M  <EsNT> Memory Reset disabled as NT default
    X  ES initialized.

    M Sat Oct 25 20:51:52 2008
    M  ThInit: running on host 4FIL41430
    M  calling db_connect ...

    C  DBSDBSLIB : version 700.08, patch 0.007 (Make PL 0.7)
    C  MAXDB shared library (dbsdbslib) patchlevels (last 10)
    C    (0.007) Support DB-Type 'SAP DB' by UPDSTAT (note 1225668)


    C  Loading SQLDBC client runtime ...
    C  SQLDBC SDK Version : SQLDBC.H  7.6.0    BUILD 002-121-083-965
    C  SQLDBC Library Version : libSQLDBC 7.6.4    BUILD 014-123-188-347
    C  SQLDBC client runtime is MaxDB 7.6.4.014 CL 188347
    C  SQLDBC supports new DECIMAL interface : 0
    C  SQLDBC supports VARIABLE INPUT data   : 1
    C  SQLDBC supports keepAlive indicator   : 0
    C  INFO : SQLOPT= -I 0 -t 0 -S SAPR3
    C  Try to connect (DEFAULT) on connection 0 ...
    C  *** ERROR => Connect to database failed, rc = -10757 (XUSER error (the USERKEY is unknown))
    [dbsdbsql.cpp 113]
    C  Try to connect (SQLOPT) on connection 0 ...
    C  *** ERROR => Connect to database failed, rc = -10709 (Connection failed (RTE:Database name is missing))
    [dbsdbsql.cpp 137]
    B  ***LOG BV3=> severe db error -10709    ; work process is stopped [dbsh#1 @ 1199] [dbsh    1199 ]
    B  ***LOG BY2=> sql error -10709 performing CON [dblink#1 @ 431] [dblink  0431 ]
    B  ***LOG BY0=> Connection failed (RTE:Database name is missing) [dblink#1 @ 431] [dblink  0431 ]
    M  ***LOG R19=> ThInit, db_connect ( DB-Connect 000256) [thxxhead.c   1440]
    M  in_ThErrHandle: 1
    M  *** ERROR => ThInit: db_connect (step 1, th_errno 13, action 3, level 1) [thxxhead.c   10557]

    M  Info for wp 0

    M    pid = 5388
    M    severity = 0
    M    status = 0
    M    stat = WP_RUN
    M    waiting_for = NO_WAITING
    M    reqtype = DP_RQ_DIAWP
    M    act_reqtype = NO_REQTYPE
    M    rq_info = 0
    M    tid = -1
    M    mode = 255
    M    len = -1
    M    rq_id = 65535
    M    rq_source =
    M    last_tid = 0
    M    last_mode = 0
    M    semaphore = 0
    M    act_cs_count = 0
    M    csTrack = 0
    M    csTrackRwExcl = 0
    M    csTrackRwShrd = 0
    M    mode_cleaned_counter = 0
    M    control_flag = 0
    M    int_checked_resource(RFC) = 0
    M    ext_checked_resource(RFC) = 0
    M    int_checked_resource(HTTP) = 0
    M    ext_checked_resource(HTTP) = 0
    M    report = >                                        <
    M    action = 0
    M    tab_name = >                              <
    M    attachedVm = no VM

    M  *****************************************************************************
    M  *
    M  *  LOCATION    SAP-Server 4FIL41430_NSP_00 on host 4FIL41430 (wp 0)
    M  *  ERROR       ThInit: db_connect
    M  *
    M  *  TIME        Sat Oct 25 20:51:52 2008
    M  *  RELEASE     701
    M  *  COMPONENT   Taskhandler
    M  *  VERSION     1
    M  *  RC          13
    M  *  MODULE      thxxhead.c
    M  *  LINE        10777
    M  *  COUNTER     1
    M  *
    M  *****************************************************************************

    M  PfStatDisconnect: disconnect statistics
    M  Entering TH_CALLHOOKS
    M  ThCallHooks: call hook >ThrSaveSPAFields< for event BEFORE_DUMP
    M  *** ERROR => ThrSaveSPAFields: no valid thr_wpadm [thxxrun1.c   724]
    M  *** ERROR => ThCallHooks: event handler ThrSaveSPAFields for event BEFORE_DUMP failed [thxxtool3.c  261]
    M  Entering ThSetStatError
    M  ThIErrHandle: do not call ThrCoreInfo (no_core_info=0, in_dynp_env=0)
    M  Entering ThReadDetachMode
    M  call ThrShutDown (1)...
    M  ***LOG Q02=> wp_halt, WPStop (Workproc 0 5388) [dpnttool.c   334]

  • Import/Export Statement

    Hi,
    I want to import 2 internal tables (Declared with Header Line) and 1 variable from the memory. These 2 internal tables are exported separately at different points using separate Export Statements. I am not sure, why my Import statement is not working correct. Can you please give me the correct syntax?
    Thanks in advance
    Kannan.

    Hi,
    This code is from which program you want to export to the ABAP memory:          
       export ist_resb to memory id 'ZPPC0122_FD'.
                 where ist_resb is the internal table name &
                       ZPPC0122_FD is the include name of my program ZPPC0122.
    This code is from which program you want to import from the ABAP memory
            import *ist_resb *= ist_resb from memory id 'ZPPC0122_FD'.
                  where  ist_resb This internal table is the importing program internal table.
                        ist_resb This internal table is the exporting program internal table.
    But remember in both the program you have defined the same internal table with same structure
    Refer this link-
    IMPORT:
    http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb3bde358411d1829f0000e829fbfe/content.htm
    http://abaplovers.blogspot.com/2008/04/passing-data-from-one-abap-program-to.html
    http://help.sap.com/saphelp_45b/helpdata/en/34/8e73a36df74873e10000009b38f9b8/content.htm
    Check this
    EXPORT an internal table  and  IMPORT an internal table in another program
    Hope it will help you.
    Regards,
    Sujit

Maybe you are looking for

  • Error trying to install SP1 Windows Server 2008 R2

    Hi team, I'm having an error when I'm trying to deploy service pack 1 of Windows Server 2008 R2. I try this scenario installing the SP1 in a workgroup machine and the results were successful. But when I'm trying to install in my Domain it doesn't wor

  • Problem with printing a PDF

    Hi All, I'm developing a web application written in J2EE that uses Java Reporting Component (JRC) to display crystal reports from some filters recovered from a jsp and passed to a report .rpt previously designed and invoked just at runtime. I have a

  • If i want to contact apple with an idea i have for a new feature for the iphone how would i do this?

    if i want to contact apple with an idea i have for a new feature for the iphone how would i do this?

  • Eclipse for java - ToolBox plug-in

    Peace be upon you:- I need a FREE effective toolbox and form designer for Eclipse for java I am using java Eclipse 3.4.1 (not Java EE) Thank you in advance

  • Importing song files between computers

    Hi. I've been trying to help my wife import song files from her desktop PC iTunes library to her laptop PC iTunes library, without much success (I'm a Mac guy). Her iTunes libraries can "see" each other, but when you try to access them, a message app