SGEN problem in ECC6.0

Hi gurus,
Need help here. I have a very weird problem. My DEV server cant perform Sgen, the server is running ECC 6.0 on Windows2003 32bit/Oracle 10g on a dual-core CPU with 4GB RAM. What happens is, halfway thru the SGEN generation job, the entire OS will freeze/hang.
Check the logs in eventviewer but there is totally no error message. added /3GB and /PAE in windows boot.ini , tweak rz12 to make it run on single processor. H/W vendor checked and say that the h/w is running fine. Updated kernel, components, bla bla....
However my PRD system with 8gb,2P DC proc is running fine with sgen. please advice , out of idea. thanks.

Hi gurus,
Need help here. I have a very weird problem. My DEV server cant perform Sgen, the server is running ECC 6.0 on Windows2003 32bit/Oracle 10g on a dual-core CPU with 4GB RAM. What happens is, halfway thru the SGEN generation job, the entire OS will freeze/hang.
Check the logs in eventviewer but there is totally no error message. added /3GB and /PAE in windows boot.ini , tweak rz12 to make it run on single processor. H/W vendor checked and say that the h/w is running fine. Updated kernel, components, bla bla....
However my PRD system with 8gb,2P DC proc is running fine with sgen. please advice , out of idea. thanks.

Similar Messages

  • Print Output problem in ECC6

    Hi Friends,
    I am getting print output problem in ECC6.
    In VF03 I am giving issue output for invoice printing. Whenever I am presseing issue output one screen is coming for selecting output type. I have selected one output type and I pressed print preview then in print preview one item and corresponding amounts it is showing properly for the first time. But the problem is after the print preview if I come back and again if i press print preview button values are not getting refreshed and same item is repeated for twice and the amounts are also getting added. Again for the third time if i come back and again if i press print preview one more item is getting repeated and the amounts are also getting added which should not suppose to happen.
    What could be the problem and how to resolve it?
    Rewarded,
    Steve

    Hi,
    clear those variables in the program .
    Regards,
    Bharat.
    Reward points if helpful

  • FTP problem in ECC6 PROGRAM

    Hi Gurus!
    We have a ftp's problem within a ABAP Program. It runs successfully in DEV and doesn't run in QAS.
    We don't Know if it's a basis or programming problem. Apparently  the program take the local directory instead of de SAP's directory.
    Our landscape is SAP SERVER W2003 - ECC6 , FTP Server Unix
    It's the code
    1        cd sbo_in
    2        lcd D:
    3        put pal_10001412.txt
    resultado
    1        cd sbo_in
    2        250 Instrucción CWD ejecutada con éxito.
    3        lcd D:
    4        Local directory now D:
    5        put pal_10001412.txt
    6        open pal_10001412.txt errno 22: Invalid argument
    Can someone help me with this issue?
    Thanks in advance!
    Regards,
    Miguel

    Hi Kriss, thanks for your reply.
    DEV and QAS are both installed in the same Server, then directory exists. Users <sid>adm and SapService<SID> have the same rights on this folder, furthermore in trx al11 we see the same valor DIR_PUT = D:\usr\sap\put
    The users which run program has the sap_all authorization
    Thanks in advance for your help
    Miguel

  • Problem with ECC6 system name

    Hi,
        Recently we upgraded our system from 4OB to ECC6. In new system when I try to change order through t.code KO02, It is giving message as 'Order Can not be changed in the current system SBX'.
       Our new system name is SBX & we changed this name from CAD. Does this have any effect on this data.How to rectify this error.
    Regards,
    Karthik.k

    Can anybody help me.

  • Problem with ECC6.0 version.

    Experts,
                  I find that in a standard program RSSTATDA there is a field RSYSTEM which is declared of type long_inst which is CHAR of 39 size.
                       But the same field is declared in 4.7 & lower versions of type short_inst which is CHAR of 8 size.
                 In both the versions this field is used in number of function modules in many standard programs.
    I get a short dump in ECC 6.0 version due to this. Anyone had faced the same problem pls help.
    Thanks & regards,
    Kevin.

    Dear Kevin.
    I suggest you to call OSS or make a copy of their programs and deal with the problems there ..
    Rebeka

  • Giving problem in ecc6.0

    Hi experts,
      PARAMETERS:
      P_TABLE LIKE DD03L-TABNAME.
    DATA: BEGIN OF XTABLE OCCURS 10,
          string(3000),
          END OF XTABLE.
      SELECT * FROM (P_TABLE) INTO TABLE XTABLE ORDER BY PRIMARY KEY.
    The above code is working in 4.6 but not in ECC6.0 because the type of p_table and xtable are not convertable each other.
    Kindly give a solution how to declare the internal table to store the data coming from the table which we entered on  selection-screen.
    Thanks & Regards,
    Sweta.

    REPORT  ZSRK_024                                .
    TYPE-POOLS : ABAP.
    PARAMETERS: P_TABLE LIKE DD03L-TABNAME.
    DATA: BEGIN OF XTABLE OCCURS 10,
    STRING(3000),
    END OF XTABLE.
    FIELD-SYMBOLS: <DYN_TABLE> TYPE STANDARD TABLE,
                 <DYN_WA>,
                 <DYN_FIELD>,
                 <DYN_WA1> TYPE C,
                 <DYN_XTABLE> TYPE C.
    DATA: DY_TABLE TYPE REF TO DATA,
        DY_LINE  TYPE REF TO DATA,
        XFC TYPE LVC_S_FCAT,
        IFC TYPE LVC_T_FCAT.
    PERFORM GET_STRUCTURE.
    PERFORM CREATE_DYNAMIC_ITAB.
    PERFORM GET_DATA.
    LOOP AT <DYN_TABLE> INTO <DYN_WA>.
      ASSIGN <DYN_WA> TO <DYN_WA1> CASTING.
      ASSIGN XTABLE  TO <DYN_XTABLE>  CASTING.
      <DYN_XTABLE> = <DYN_WA1>.
      APPEND <DYN_XTABLE> TO XTABLE.
      CLEAR <DYN_XTABLE>.
    ENDLOOP.
    *&      Form  get_structure
          text
    FORM GET_STRUCTURE.
      DATA : IDETAILS TYPE ABAP_COMPDESCR_TAB,
           XDETAILS TYPE ABAP_COMPDESCR.
      DATA : REF_TABLE_DES TYPE REF TO CL_ABAP_STRUCTDESCR.
    Get the structure of the table.
      REF_TABLE_DES ?=
          CL_ABAP_TYPEDESCR=>DESCRIBE_BY_NAME( P_TABLE ).
      IDETAILS[] = REF_TABLE_DES->COMPONENTS[].
      LOOP AT IDETAILS INTO XDETAILS.
        CLEAR XFC.
        XFC-FIELDNAME = XDETAILS-NAME .
        XFC-DATATYPE = XDETAILS-TYPE_KIND.
        XFC-INTTYPE = XDETAILS-TYPE_KIND.
        XFC-INTLEN = XDETAILS-LENGTH.
        XFC-DECIMALS = XDETAILS-DECIMALS.
        APPEND XFC TO IFC.
      ENDLOOP.
    ENDFORM.                    "get_structure
    *&      Form  create_dynamic_itab
          text
    FORM CREATE_DYNAMIC_ITAB.
    Create dynamic internal table and assign to FS
      CALL METHOD CL_ALV_TABLE_CREATE=>CREATE_DYNAMIC_TABLE
        EXPORTING
          IT_FIELDCATALOG = IFC
        IMPORTING
          EP_TABLE        = DY_TABLE.
      ASSIGN DY_TABLE->* TO <DYN_TABLE>.
    Create dynamic work area and assign to FS
      CREATE DATA DY_LINE LIKE LINE OF <DYN_TABLE>.
      ASSIGN DY_LINE->* TO <DYN_WA>.
    ENDFORM.                    "create_dynamic_itab
    *&      Form  get_data
          text
    FORM GET_DATA.
    Select Data from table.
        SELECT * INTO TABLE <DYN_TABLE>
                 FROM (P_TABLE) ORDER BY PRIMARY KEY.
    ENDFORM.                    "get_data
    Edited by: sreekanth reddy on Nov 4, 2008 5:03 PM
    Edited by: sreekanth reddy on Nov 4, 2008 5:04 PM

  • Strage problem in ECC6 MM02 transaction when adding EAN/UPC

    Hi,
    We are seeing a strange problem in MM02 when adding EAN/UPC in "Additional EAN" screen. Following is my input:
    <u>Alterate Unit of Measure</u>
    EA
    <u>EAN/UPC</u>
    Internally generated
    <u>EAN Category</u>
    ZJ
    When I hit save and then enter it does not save, I mean the new EAN/UPC generated is not getting saved. But if I hit Enter and then Save or Save twice it does.
    Thank you,
    Jagadish

    post the message to OSS

  • SGEN Problem

    Hi,
    I have executed SGEN after installing a fresh system. However, if I execute any TCODE, still system compiles first and then executes the tcode!
    In addition to that, I believe once we execute any TCODE for the first time (without executing SGEN), system first compiles it and then executes the tcode. If we execute the same tcode second time, system simply executes the tcode bcoz it is already compiled.
    However, in this scenario, the number of times you execute a tcode, that number of times system first compiles the same tcode and then executes!
    Your inputs are welcomed.
    Regards,
    faisal

    Hi Faisal,
    To start ABAP/screen generation for the objects in the installed add-on, Please proceed as follows:
           1.      Call the SAP Load Generator (transaction SGEN).
           2.      Choose Generate All Objects of Selected Software Components and then Continue.
           3.      Select the software component of the installed add-on.
    You can thus ensure that all objects in the installed add-on are generated again.
    Please also click  [SGEN(SAP Load Generator)|http://help.sap.com/erp2005_ehp_04/helpdata/EN/0e/f75f3cf4dff476e10000000a114084/frameset.htm] for more information.
    With Regards,
    Krishna.

  • F110  Problem  in Ecc6.0

    I am running the Automatic Payment Program (f110 t.code). After runnig the proporsal i am receiving two document numbers in log but in 4.6c only one document number is generated in log.
    its very urgent issue
    Regards
    Babu

    hi,
    Please see when the date of 2 postings has been created.
    if the amount is overdue then only the amount will be shown in that and also see the date of postings the amount. Only the old date entries will be displayed.
    Thanks ,
    assign points.
    Ranjit

  • Database termination Problem

    Hi every body ..plz help me on this..
    We are facing database termination problem in ECC6 production syste.
    Database: Oracle 10.2, O/S: Windows 2003. Spam  :27, SP level 13.
    Error is:
    Errors in file f:\oracle\p02\saptrace\background\p02_ckpt_6520.trc:
    ORA-00206: error in writing (block 3, # blocks 1) of control file
    ORA-00202: control file: 'D:\ORACLE\P02\ORIGLOGB\CNTRL\CNTRLP02.DBF'
    ORA-27072: File I/O error
    OSD-04008: WriteFile() failure, unable to write to file
    O/S-Error: (OS 33) The process cannot access the file because another process has locked a portion of the file.
    When we are performing backup then data base termination occuring freequently.
    Give right solution as early as possible.
    Thanks,
    Nani.

    Hi,
    Have a look at below snote which actually speaks about the oracle error codes
    Snote :  546006
    within the Snote it says :-
    " If you cannot access a database file (for instance a data file, control file or RedoLog) for whatever reason, an ORA-270xx appears. The actual cause comes from additional error messages (usually in the operating system) that occur on ORA-270xx. "
    And as per your last update
    " ORA-00206: error in writing (block 3, # blocks 1) of control file
    ORA-00202: control file: 'D:\ORACLE\P02\ORIGLOGB\CNTRL\CNTRLP02.DBF' "
    i think there is problem accessing the database control file. Hence you  are facing the above problem.
    I think if you recreate your control file i think, it should resolve the problem.
    Hope it will be helpful to resolve your problem.
    Rgds
    Radhakrishna D S

  • User password problem in RFC after system copy

    HEllo,
    we have a problem in ECC6.0 after system copy (refresh QUAL system by PRD data).
    BEfore doing this copy, we export RFC data (SM59 tables) of our QUAL system and after the refresh we reimport these RFC in our QUAL system. We don't want RFC comming from productive system.
    After this reimport, RFC configuration is ok but we have a problem with RFCuser password. In the password box we have "inconsistent"...
    Have you an idea to reimport succesfully these informations ?
    Thanks
    lionel

    Hello,
    We performed another refresh yesterday. But unfortunatly it was not working. Password are still inconsistent.
    This are exactly way we perform it:
    Before restoring DB :
    export table via R3trans for tables:
    RFCDES, RFCDOC, RFCATTRIB, RFCCHECK, RFCDESSECU, RFCSYSACL, RFCTRUST, RFCCMC, RFCGO, SXRFC, IBSSI_RFCDEST, PARAMVALUE, RSECACTB where ident LIKE '___/RFC%'
    export users via scc8
    Restore DB, truncate upper rfc tables,  import rfc Tables
    Check SM59 => inconsistent
    Migrate Secstore => still inconsistent
    Import Users via transport generated by scc8
    run scc7 as post actions
    Tuncatate/re-import rfc tables
    Check SM59 => inconsistent
    Migrate Secstore => still inconsistent
    What else could be done ?
    We have a lot of RFC. so re-enter all password is really a hudge task ..
    Thanks a lot for help

  • PDF email attachment logo problem

    Hi All,
    Can any one tell me how to solve the problem with Email attachment in PDF. If i remove the logo of the client in the Smartform i am getting the Email attachment fine but when i put back the image in the smartform the PDF is giving error and not opening the attachment.
    The image is working fine in 4.6 system but the problem with ECC6.
    Regards,
    Lakshmikanth.

    Hi All,
    Can any one tell me how to solve the problem with Email attachment in PDF. If i remove the logo of the client in the Smartform i am getting the Email attachment fine but when i put back the image in the smartform the PDF is giving error and not opening the attachment.
    The image is working fine in 4.6 system but the problem with ECC6.
    Regards,
    Lakshmikanth.

  • ECC6 + XI issue

    Hello all,
         I am in the process of integration ECC6 in XI landscape. Currently R/3 is already in XI's Landscape and everything is fine.
    The problem withe ECC6.0 is, no IDOCs can be seen in IDX on the XI system. After sending IDOCS in ECC6.0, BD87 shows no errors and everything seems to be fine. I have done the necessary things in the BD64 also.
    Am I missing something here. IDX1 and IDX2.
    Also, in ECC6.0 when I setup RFC entry for "XI_INTEGRATIONSEVER" with type "H",with path prefix as "/sap/xi/engine/?type=entry", getting an error like "Query string not allowed". This entry works good in R/3
    I need your hlep please.
    Regards,
    N.S

    Hi,
    <i>Also, in ECC6.0 when I setup RFC entry for "XI_INTEGRATIONSEVER" with type "H",with path prefix as "/sap/xi/engine/?type=entry", getting an error like "Query string not allowed". This entry works good in R/3</i>
    I think thats a warning . Just press enter again and do the rest of the configuration.
    Regards
    Vijaya

  • Error "number out of range" in pdf sent through mail using smartform output

    Hi Experts,
    We have a program which sends mail using smartform output in 'PDF' format. We are able to preview smartform correctely in SAP and mail is also getting sent fine with attachment of form as PDF document. But, when we try to open the document, it gives error saying 'Number out of range'. Also, not all of the windows of smartform are appearing in document and some are coming only half.
    We are not able to find out the reason for this. Any help would be appriciated.
    Gouri.

    Hello,
    How did you solve this one? We are facing the same problem in ECC6.0.
    Thanks in advance,
    Benjamin de Rijke

  • Quantity Based Overheads

    Hi SAP Gurus,
    I have a serious problem with Quantity Based Overheads.  The client has asked for Qty Based Overheads in the last moment.  And somehow it is not working properly.  I have done it in ECC6 but it is not working in ECC6.
    Kindly let me know any specific problem in ECC6 for calculating Qty  Based Overheads.
    I have done the following settings: 
    In costing Sheet i have given the parameters.  Then in Material Master i have selected Material Origin.  Then i have selected Qty indicator and given Unit of measurement in Relevant Cost Element.
    URGENT.  PLEASE
    Solution to this problem will be suitably awarded with marks

    Hi,
    Good afternoon and greetings,
    Please go through the following
    To calculate quantity-dependent overhead rates , the units of measure must be updated in CO.
    You have two options:
    Set the "mangage quantity" indicator in the cost element master data.
    If you wish to post different materials with different units of measure to an object (order, cost center, business process, WBS element...) under the same cost element, you must set the Material origin indicator in the costing view for the material master record. Materials with various units of measure must also differ in the "origin group" field entry.
    The system only accounts for input materials and activities with units of quantity for quantity-based overhead that are updated in CO. These are the base units of measure for materials.
    Conversions between units of measure
    Also ensure that the Cost Center inside the Credit tab is maintained as for the Overheads it is mandatory.
    Please reward points if found useful
    Thanking you
    With kindest regards
    Ramesh Padmanabhan

Maybe you are looking for

  • Is there an easy way to batch process channel swapping?

    I'm creating a IR time-lapse, and I need an easy/effective way to swap the red/blue channels and do a few other things in Photoshop before I transfer the work to Lightroom to finish. I know that you can batch process for resizing and whatnot, but it

  • COPA Report - Characteristics

    Hi. A report has been created via KE30 in our test system. Rather than transporting it i'd like to create it in our prod system.  The listing of characteristics are different tho. For example, Posting Date is available in test but not prod. Is there

  • XI Webservice Exception within Webdynpro component

    Hi All, I have created a model for an XI webservice within the webdynpro project and created 2 view one for search and the other for search results and have accordingly associated the context variables of these views to the import and response parame

  • PT91 Attendance/Absence Report

    Hi Friends, I am running a standard report PT91 which gives attendance/absence report. I defined the indicators for the attendances like P for Present etc., And when I enter a attendance record in IT2002, the indicator is coming as "P". But if I ente

  • Problem adding events to calendar - they don't show up

    I have an intermittent and very strange problem which occurs when adding an event to the calendar on my iPhone 4 (Verizon - running latest iOS). I will create an event, fill out time, date, name, etc and click done, and then the event will not show u