PCUI showing dump errors after EEWB enhancement

Hi Experts,
I'm using CRM5.0.
After adding some fields by EEWB(Easy Enhancement Workbench) the PCUI application showing several dump errors in several places. How to correct this problem, should I regenerate all the layout by CRMC_BLUEPRINT or any other way is there to correct these errors. Please suggest a solution for that.This is very urgent.
Thanks In Advance
Rana

Hi Fred,
1>
Whenever I'm clicking  F4 help button beside service prospect,contact person etc the following dump is coming as in opportunity transaction (CRMD_BUS2000111) likewise other transactions also.
Note
     The following error text was processed in the system CS1 : CRM_BSP_LIBRARY:structureEdit: Act. table parameter gt_layout is empty
     The error occurred on the application server nmpcsssb1_CS1_01 and in the work process 0 .
     The termination type was: ERROR_MESSAGE_STATE
     The ABAP call stack was:
Method: IF_BSP_ELEMENT~DO_AT_BEGINNING of program CL_CRM_BSP_STRUCTUREEDIT======CP
What can I do?
     If the termination type was RABAX_STATE, then you can find more information on the cause of the termination in the system CS1 in transaction ST22.
     If the termination type was ABORT_MESSAGE_STATE, then you can find more information on the cause of the termination on the application server nmpcsssb1_CS1_01 in transaction SM21.
     If the termination type was ERROR_MESSAGE_STATE, then you can search for more information in the trace file for the work process 0 in transaction ST11 on the application server nmpcsssb1_CS1_01 . In some situations, you may also need to analyze the trace files of other work processes.
     If you do not yet have a user ID, contact your system administrator.
Error code: ICF-IE-http -c: 500 -u: ABAP1 -l: E -s: CS1 -i: nmpcsssb1_CS1_01 -w: 0 -d: 20070521 -t: 115438 -v: ERROR_MESSAGE_STATE -e: CRM_BSP_LIBRARY:structureEdit: Act. table parameter gt_layout is empty
HTTP 500 - Internal Server Error
Your SAP Internet Communication Framework Team
second error:
2>
Whenever any business partner is selected in partner id of  partner tab ,partner fn(sold-to-party) then it is showing the following dump error.
SAP Note
     The following error text was processed in the system:
An exception with the type CX_SY_DYN_CALL_PARAM_NOT_FOUND occurred, but was neither handled locally, nor declared in a RAISING clause
Exception Class     CX_SY_DYN_CALL_PARAM_NOT_FOUND
Error Name     
Program     CL_CRM_BSP_INTLAY_PARTNER=====CP
Include     CL_CRM_BSP_INTLAY_PARTNER=====CM002
ABAP Class     CL_CRM_BSP_INTLAY_PARTNER
Method     PUT_DATA
Line     1269
Long text     Call of the function CRM_PARTNER_GET_COM_BY_STRUCT failed: The formal parameter ET_RETURN_VALUES does not exist.
EEWB used to add a field Account No in Service order transaction.
which is now reflecting to all the transaction as a customer field.
Thanks
Koustav

Similar Messages

  • Dump error after migration.

    Dear Members,
         The driver program for the smartfrom which I have created is throwing a dump error after migration to another server, please suggest me a solution.
    Thanks,
    Subhendu Gouda

    Hello Subhendu,
    Just pass the FM name of your smartfom using a variable like "w_fmodule".
    * Variable declarations
    DATA:
    w_form_name TYPE tdsfname VALUE 'ZSUBHENDU_TEST',
    w_fmodule TYPE rs38l_fnam,
    CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
    EXPORTING
    formname = w_form_name
    IMPORTING
    fm_name = w_fmodule
    EXCEPTIONS
    no_form = 1
    no_function_module = 2
    OTHERS = 3
    IF sy-subrc <> 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    CALL FUNCTION w_fmodule
    EXPORTING
    control_parameters = w_cparam
    output_options = w_outoptions
    IMPORTING
    job_output_info = t_otf_from_fm
    EXCEPTIONS
    formatting_error = 1
    internal_error = 2
    send_error = 3
    user_canceled = 4
    OTHERS = 5
    IF sy-subrc <> 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    Hope this solves your issue.
    Cheers,
    Suvendu

  • While updating ipod to ios5 it shows an error after downloading the update

    while updating ipod to ios5 it shows an error after downloading the update

    Are there any error details like numbers for example?
    Did you follow this article about installing iOS5? iOS 5: Updating your device to iOS 5
    Did you check your security software settings? iTunes for Windows: Troubleshooting security software issues

  • Dump error after calling a global class from se24

    this is the small code i did so far.
    parameters: X type i,
                      Y type i.
    data: Z type i.
    data: con1 type ref to ZTEST1.
    CALL METHOD con1->zm1
      EXPORTING
        a      = x
        b      = y
      IMPORTING
        c      = z.
    write:/ z.
    after executing iam getting a dump error-
    An exception occurred that is explained in detail below.
    The exception, which is assigned to class 'CX_SY_REF_IS_INITIAL', was not
      caught and
    therefore caused a runtime error.
    The reason for the exception is:
    You attempted to use a 'NULL' object reference (points to 'nothing')
    access a component (variable: "CON1").
    An object reference must point to an object (an instance of a class)
    before it can be used to access components.
    Either the reference was never set or it was set to 'NULL' using the
    CLEAR statement.

    Hi, Could you please tell me how to solve this issue?

  • Syntax Error after creating enhancements for subroutine

    Problem:
    Creating enhancement sections gives a syntax error when creating enhancement options and implementations for a subroutine and then ceating enhancement options and implementations for the call to that same subroutine.
    <p>
    Syntax Error:
    "Different number of parameters in FORM and PERFORM (routine: SET_LAYOUT, number of formal parameters: 2, number of actual parameters: 1)
    </p>
    <p>
    Here's the following scenario:
    </p>
    <p>
    A subroutine is defined in a program.
    The subroutine is called within the same program.
    </p>
    <p>
    I then executed these steps:
    <br>     1. Defined an enhancement section around the subroutine definition
    <br>     2. Defined an enhancement section around the subroutine call.
    <br>     3. Implemented the enhancement section around the subroutine definition and add an additional parameter.
    </p>
    <p>
         Currently, this gives a syntax error as expected, since the call to the subroutine needs 1 more parameter.
    </p>
    <p>
         4. Implemented the enhancement section for the subroutine call.  I change the call in the implementation so it passes the new parameter.
    </p>
    <p>
    A syntax check to this gives an error.  The syntax checker is not only checking the new implementation, but also the original subroutine that should have been overwritten.
    </p>
    <p>
    The enhancement sections use the same enhancement spot, and the enhancement implementations use the same implementation.
    </p>
    <p>
    I tried various combinations of using different enhancement spots and/or implementations, but all give the same syntax error.  I tried separating the subroutine in a different include and  retried my testing, but it still gave the same syntax error.
    </p>
    <p>
    Here's the sample code I first created to try troubleshooting the problem:
    </p>
    <p>
    <pre>
    ENHANCEMENT-SECTION ZEP_Z_MICHAEL_02 SPOTS ZES_Z_MICHAEL .
         PERFORM set_layout
              CHANGING
              wa_layout.
    END-ENHANCEMENT-SECTION.
    $$-Start: ZEP_Z_MICHAEL_02----
    $$
    ENHANCEMENT 2  ZEI_TEST_SECTIONS.
         "inactive version
         PERFORM set_layout
         using 'X'
              CHANGING
              wa_layout.
    ENDENHANCEMENT.
    $$-End:   ZEP_Z_MICHAEL_02----
    $$
    ENHANCEMENT-SECTION ZEP_Z_MICHAEL_01 SPOTS ZES_Z_MICHAEL STATIC .
    FORM set_layout
    CHANGING p_wa_layout TYPE slis_layout_alv.
    p_wa_layout-zebra = 'X'.
    wa_layout-no_colhead = 'X'..
    p_wa_layout-colwidth_optimize ='X'.
    wa_layout-window_titlebar = 'Woot'.
    ENDFORM. "set_layout
    END-ENHANCEMENT-SECTION.
    $$-Start: ZEP_Z_MICHAEL_01----
    $$
    ENHANCEMENT 1  ZEI_TEST_SECTIONS.
         "inactive version
    FORM set_layout
    using p_test type boolean
    CHANGING p_wa_layout TYPE slis_layout_alv.
    p_wa_layout-zebra = 'X'.
    wa_layout-no_colhead = 'X'..
    p_wa_layout-colwidth_optimize ='X'.
    wa_layout-window_titlebar = 'Woot'.
    ENDFORM. "set_layout
    ENDENHANCEMENT.
    $$-End:   ZEP_Z_MICHAEL_01----
    $$
    </pre>
    </p>
    <p>
    Please let me know if you think I am doing something wrong. 
    </p>
    <p>
    Thanks, <br>
    Mike
    </p>
    Edited by: Michael Herman on Mar 8, 2010 8:11 PM

    Yes, Sandra.  That is what did and it worked with no syntax errors!
    I'm not sure if this is getting off topic or not, but the SAP documentation(taken from the SAP help after pressing F1 on the keyword static in ERP6) seems misleading:
    "The STATIC addition is intended for the enhancement of data declarations, while the statement ENHANCEMENT-POINT without the STATIC addition is designed for the enhancement of executable coding."
    I would think the enhancement section ZEP_Z_MICHAEL_02 would fall under the category of executable code, while the enhancement section ZEP_Z_MICHAEL_01 would fall under the category of declarative code.
    Unfortunately, all the SAP enhancement sections I come accross are dynamic.  The SAP help explains the reasoning for this:
    "In contrast to the statement ENHANCEMENT-POINT, the addition STATIC of the statement ENHANCEMENT-SECTION can only be used with maximum caution for changes of data declarations, because a replacement and no completion is carried out. Especially application development within SAP should not use the addition STATIC at all with ENHANCEMENT-SECTION as the change will be active in the entire customer system. "
    I do not know what the word "completion" means in the previous quote, so I can't determine why it would matter.  Regardless, if a developer wanted to change a standard subroutine declaration, they would also have to mod an enhancement section to change it to static.  This seems to defeat the purpose of using enhancements, but maybe this scenario is not what enhancements were intended for.

  • SAP HR Security_ Dump error after table maintenance (T77UA)

    Hi,
    In our project we have both general authorizations and structural authorizations. There are ESS, MSS and HR Roles maintained in PFCG transactions. Our approach of Role assignments (profiles) is for Users and not against positions.
    Hence table T77UA is maintained with Authorization profile (created for HR) against users (who are HR). This authorization profile is used in HR Role and this Role is assigned to the users using SU01 transaction.
    I have also used Evaluation path in the authorization profile, which will fetch all the employees under the HR, so that the HR will be authorized to access the data of those employees.
    After maintaining the table (T77UA),  when i try to test the HR Role in backend for eg: PA20 or PA30 to display any employee data under him, i am getting dump error.
    Can someone guide me how i can resolve this!!
    Thanks!

    Hi Christine,
    Please find below the error details:
    The dump comes when i maintain the Table T77UA (authorization profile against the username).
    Is the manual way of maintaining the table, a wrong method? Is there any other approach to go ahead with the structural authorization without maintaining this table? Please suggest.
    Runtime Errors:         TSV_TNEW_PAGE_ALLOC_FAILED
    Short text
        No more storage space available for extending an internal table.
    What happened?
        You attempted to extend an internal table, but the required space was
        not available.
    Error analysis
        The internal table "\FUNCTION-POOL=RHAC\DATA=OBJECT_TAB1[]" could not be
         further extended. To enable
        error handling, the table had to be delete before this log was written.
        As a result, the table is displayed further down or, if you branch to
        the ABAP Debugger, with 0 rows.
        At the time of the termination, the following data was determined for
        the relevant internal table:
        Memory location: "Session memory"
        Row width: 1388
        Number of rows: 1537109
        Allocated rows: 1537109
        Newly requested rows: 8 (in 1 blocks)
    Trigger Location of Runtime Error
        Program                                 SAPLRHAC
        Include                                 LRHACF04
        Row                                     90
        Module type                             (FORM)
        Module Name                             FILL_SET_TAB
    Source Code Extract
    Line  SourceCde
       60                   object_tab2-skipf = relat_tab-skipf.
       61                   object_tab2-pup   = rec_check_tab_index.
       62                   IF rhas-sflag EQ 'X'.
       63                     PERFORM build_sel_interval
       64                       USING t1001-begda       t1001-endda
       65                             object_tab-sbegd  object_tab-sendd
       66                             object_tab2-sbegd object_tab2-sendd.
       67                   ELSE.
       68                     object_tab2-sbegd = object_tab-sbegd.
       69                     object_tab2-sendd = object_tab-sendd.
       70                   ENDIF.
       71                   APPEND object_tab2.
       72                   blatt = off.
       73                   object_tab2_count   = object_tab2_count + 1.
       74                 WHEN '2'.
       75                   CLEAR object_tab1.
       76                   MOVE-CORRESPONDING t1001 TO object_tab1.
       77                   object_tab1-otype   = t1001-sclas.
       78                   object_tab1-objid   = t1001-sobid.
       79                   object_tab1-skipf = relat_tab-skipf.
       80                   object_tab1-pup   = rec_check_tab_index.
       81                   IF rhas-sflag EQ 'X'.
       82                     PERFORM build_sel_interval
       83                       USING t1001-begda       t1001-endda
       84                             object_tab-sbegd  object_tab-sendd
       85                             object_tab1-sbegd object_tab1-sendd.
       86                   ELSE.
       87                     object_tab1-sbegd = object_tab-sbegd.
       88                     object_tab1-sendd = object_tab-sendd.
       89                   ENDIF.
    >>>>>                   APPEND object_tab1.
       91                   blatt = off.
       92                   object_tab1_count   = object_tab1_count + 1.
       93               ENDCASE.
       94             ELSE.
       95               exit_sw = on.
       96               EXIT.
       97             ENDIF.
       98
       99           ENDIF.
      100           ADD 1 TO t1001_index.
      101         ENDDO.
      102       ELSE.
      103         LOOP AT  eo_1001 WHERE plvar      EQ rhas-plvar
      104                          AND   otype      EQ object_tab-otype
      105                          AND   objid      EQ object_tab-objid
      106                          AND   infty      EQ rela_infty
      107                          AND   rsign      EQ relat_tab-rsign
      108                          AND   relat      EQ relat_tab-relat
    109                          AND   priox      BETWEEN min_priox
    Thanks!

  • ME55 DUMP error after EHP upgrade

    Hi all,
    We recently upgraded to SAP ECC EHP7 version (Basis 740) and we are getting some kind of dump error upon entering ME55.
    Is this a common issue? I could not find the same issue noted before.
    How can I resolve it?
    I attached the error screen that shows up.
    Many thanks,

    Hi,
    Could you post the whole dump analysis report from ST22.
    Also check the below OSS Note it may help you...
    1855828 - Transaction ME55 dumps

  • Dump error after applying patches

    Dear all;
    after applying SAP_BASIS Packs (SAPKB62019 and SAPKB62020) the transaction was canceled before finched implementing the patches and We are receiving ABAP dump errors while executing any transaction ( syntax_error)
    could you help me to resolve this proble?
    thanks and regards.
    Issam CHIBOUNI

    Hi
    SAPKB62020
               Symptom: After you import Basis Support Package SAPKB62020, you may experience a change in the system response at different points in an R/3 Enterprise system. This problem can be seen in the sudden appearance of screen elements, for example, or in changes in the process flow of transactions. In extreme cases, it can also cause data corruption.
               Reason: Support Package SAPKB62020 included an incomplete correction to BAdI processing that caused the execution of BAdI implementation of deactivated Enterprise Extensions.
               Solution: You must refer to SAP Note 601742. Import Basis Support Package SAPKB62023 as soon as possible (planned release date is May 06, 2003) or implement the additional correction instructions as described in Note 601742.
    thanks and regard
    Khurshid

  • ZL_BT115H_S_DETAILS_CN00 does not exists after EEWB enhancements

    Hi Gurus,
    I have enhanced the component view BT115H_SLSO/details initially, after some days, I have added two Zfields to BTADMINH using EEWB. while opening the Context node BTADMINH in the view BT115H_SLSO, the following error message is being displayed: Object type ZL_BT115H_S_DETAILS_CN00 does not exist.
    while opening the link to create the sales order in Web UI, the following Exceptions occured:
    CX_SY_CREATE_OBJECT_ERROR - The object could not be created: The class ZL_BT115H_S_DETAILS_CN00 does not exist. 
    Method:  CL_BSP_MODEL=>CREATE 
    Source Text Row:  12
    Initialization of view BT115H_SLSO/Details failed
    An exception has occurred Exception Class  CX_SY_CREATE_OBJECT_ERROR - The object could not be created: The class ZL_BT115H_S_DETAILS_CN00 does not exist. 
    Method:  CL_BSP_MODEL=>CREATE 
    Source Text Row:  12
    Cannot display view BT115H_SLSO/DetailsVS
    An exception has occurred Exception Class  CX_SY_CREATE_OBJECT_ERROR - The object could not be created: The class ZL_BT115H_S_DETAILS_CN00 does not exist. 
    Method:  CL_BSP_MODEL=>CREATE 
    Source Text Row:  12
    Initialization of view BT115H_SLSO/DetailsVS failed
    An exception has occurred Exception Class  CX_BSP_WD_RUNTIME_ERROR - View BT115H_SLSO/Details could not be bound 
    Method:  CL_BSP_WD_VIEW_CONTROLLER=>BIND_VIEW 
    Source Text Row:  162
    Cannot display view BT115H_SLSO/SOHOverView
    An exception has occurred Exception Class  CX_BSP_WD_RUNTIME_ERROR - View BT115H_SLSO/Details could not be bound 
    Method:  CL_BSP_WD_VIEW_CONTROLLER=>BIND_VIEW 
    Source Text Row:  162
    Cannot display window MainWindow.
    An exception has occurred Exception Class  CX_BSP_WD_RUNTIME_ERROR - View BT115H_SLSO/DetailsVS could not be bound 
    Method:  CL_BSP_WD_VIEW_CONTROLLER=>BIND_VIEW 
    Source Text Row:  162
    Any idea of why this exception is occured.
    Did anyone faced the same issue? if yes,please share me the solution.
    Thanks and Regards,
    S Reddy

    Hi Suchita,
    Thanks for your quick response.
    Actually we have not done any enhancements to the BTADMINH context node. we have enhaced the CRMD_ORDERADM_H table using the EEWB fields. After this I have checked the component BT115H_SLSO/view to provide the value help for the fields, the Zclass was automatically assinged to the Context and Page attribute remained same for BTADMINH.
    I have checked in the SE24, the class does not exists. I have created a copy of CL_BT115H_S_DETAILS_CN00 as ZL_BT115H_S_DETAILS_CN00 and assigned to BTADMINH and Page attributes of the same view. After I have opened the Web UI, the following exceptions are occured:
    Context generation failed in view BT115H_SLSO/Details
    An exception has occurred Exception Class  CX_SY_MOVE_CAST_ERROR - Source type \CLASS=ZL_BT115H_S_DETAILS_CN00 is not compatible, for the purposes of assignment, with target type \CLASS=CL_BT115H_S_DETAILS_CN00 
    Method:  ZL_BT115H_S_DETAILS_CTXT=>CREATE_BTADMINH 
    Source Text Row:  13
    Initialization of view BT115H_SLSO/Details failed
    An exception has occurred Exception Class  CX_SY_MOVE_CAST_ERROR - Source type \CLASS=ZL_BT115H_S_DETAILS_CN00 is not compatible, for the purposes of assignment, with target type \CLASS=CL_BT115H_S_DETAILS_CN00 
    Method:  ZL_BT115H_S_DETAILS_CTXT=>CREATE_BTADMINH 
    Source Text Row:  13
    Cannot display view BT115H_SLSO/DetailsVS
    An exception has occurred Exception Class  CX_SY_MOVE_CAST_ERROR - Source type \CLASS=ZL_BT115H_S_DETAILS_CN00 is not compatible, for the purposes of assignment, with target type \CLASS=CL_BT115H_S_DETAILS_CN00 
    Method:  ZL_BT115H_S_DETAILS_CTXT=>CREATE_BTADMINH 
    Source Text Row:  13
    Initialization of view BT115H_SLSO/DetailsVS failed
    An exception has occurred Exception Class  CX_BSP_WD_RUNTIME_ERROR - View BT115H_SLSO/Details could not be bound 
    Method:  CL_BSP_WD_VIEW_CONTROLLER=>BIND_VIEW 
    Source Text Row:  162
    Cannot display view BT115H_SLSO/SOHOverView
    An exception has occurred Exception Class  CX_BSP_WD_RUNTIME_ERROR - View BT115H_SLSO/Details could not be bound 
    Method:  CL_BSP_WD_VIEW_CONTROLLER=>BIND_VIEW 
    Source Text Row:  162
    Cannot display window MainWindow.
    An exception has occurred Exception Class  CX_BSP_WD_RUNTIME_ERROR - View BT115H_SLSO/DetailsVS could not be bound 
    Method:  CL_BSP_WD_VIEW_CONTROLLER=>BIND_VIEW 
    Source Text Row:  162
    Thanks and Regards,
    S Reddy

  • PA30, PA40 Showing dump error

    Hi Experts,
    When i run the tcode PA30 and PA40  getting short dump attached here with.
    Kindly suggest how to overcome from this issue.
    Our current SAP_HR support pack level is SAPKE60429
    Thanks,
    Narasimhan Krishna

    Category               ABAP Programming Error
    Runtime Errors         SYNTAX_ERROR
    ABAP Program           /1PAPAXX/HDR_80004A
    Application Component  Not Assigned
    Date and Time          06.04.2014 19:11:29
    |Short text                                                                                        |
    |    Syntax error in program "/1PAPAXX/HDR_80004A ".                                               |
    |What happened?                                                                                    |
    |    Error in the ABAP Application Program                                                         |
    |                                                                                                  |
    |    The current ABAP program "SAPFP50M" had to be terminated because it has                       |
    |    come across a statement that unfortunately cannot be executed.                                |
    |                                                                                                  |
    |    The following syntax error occurred in program "/1PAPAXX/HDR_80004A " in                      |
    |     include "/1PAPAXX/HDR_80004AO01 " in                                                         |
    |    line 44:                                                                                      |
    |    ""LV_LENGTH" has already been declared"                                                       |
    |    " "                                                                                           |
    |    " "                                                                                           |
    |    " "                                                                                           |
    |                                                                                                  |
    |    The include has been created and last changed by:                                             |
    |    Created by: "BONIN "                                                                          |
    |    Last changed by: "SAPUSER "                                                                   |
    |    Error in the ABAP Application Program                                                         |
    |                                                                                                  |
    |    The current ABAP program "SAPFP50M" had to be terminated because it has                       |
    |    come across a statement that unfortunately cannot be executed.                                |
    |What can you do?                                                                                  |
    |    Please eliminate the error by performing a syntax check                                       |
    |    (or an extended program check) on the program "/1PAPAXX/HDR_80004A ".                         |
    |    You can also perform the syntax check from the ABAP Editor.                                   |
    |                                                                                                  |
    |    If the problem persists, proceed as follows:                                                  |
    |    Note down which actions and inputs caused the error.                                          |
    |                                                                                                  |
    |                                                                                                  |
    |    To process the problem further, contact you SAP system                                        |
    |    administrator.                                                                                |
    |                                                                                                  |
    |    Using Transaction ST22 for ABAP Dump Analysis, you can look                                   |
    |    at and manage termination messages, and you can also                                          |
    |    keep them for a long time.                                                                    |
    |Error analysis                                                                                    |
    |    The following syntax error was found in the program /1PAPAXX/HDR_80004A :                     |
    |    ""LV_LENGTH" has already been declared"                                                       |
    |    " "                                                                                           |
    |    " "                                                                                           |
    |    " "                                                                                           |
    |How to correct the error                                                                          |
    |    Probably the only way to eliminate the error is to correct the program.                       |
    |    -                                                                                             |
    |    If you cannot solve the problem yourself and want to send an error                            |
    |    notification to SAP, include the following information:                                       |
    |                                                                                                  |
    |    1. The description of the current problem (short dump)                                        |
    |                                                                                                  |
    |       To save the description, choose "System->List->Save->Local File                            |
    |    (Unconverted)".                                                                               |
    |                                                                                                  |
    |    2. Corresponding system log                                                                   |
    |                                                                                                  |
    |       Display the system log by calling transaction SM21.                                        |
    |       Restrict the time interval to 10 minutes before and five minutes                           |
    |    after the short dump. Then choose "System->List->Save->Local File                             |
    |    (Unconverted)".                                                                               |
    |                                                                                                  |
    |    3. If the problem occurs in a problem of your own or a modified SAP                           |
    |    program: The source code of the program                                                       |
    |       In the editor, choose "Utilities->More                                                     |
    |    Utilities->Upload/Download->Download".                                                        |
    |                                                                                                  |
    |    4. Details about the conditions under which the error occurred or which                       |
    |    actions and input led to the error.                                                           |
    |                                                                                                  |
    |System environment                                                                                |
    |    SAP Release..... 702                                                                          |
    |    SAP Basis Level. 0011                                                                         |
    |                                                                                                  |
    |    Application server... "JKTSAPBLR2"                                                            |
    |    Network address...... "192.168.10.181"                                                        |
    |    Operating system..... "Windows NT"                                                            |
    |    Release.............. "6.1"                                                                   |
    |    Hardware type........ "4x AMD64 Level"                                                        |
    |    Character length.... 16 Bits                                                                  |
    |    Pointer length....... 64 Bits                                                                 |
    |    Work process number.. 1                                                                       |
    |    Shortdump setting.... "full"                                                                  |
    |                                                                                                  |
    |    Database server... "JKTSAPBLR2"                                                               |
    |    Database type..... "MSSQL"                                                                    |
    |    Database name..... "JED"                                                                      |
    |    Database user ID.. "jed"                                                                      |
    |                                                                                                  |
    |    Terminal.......... "BLR-FNTT8R1"                                                              |
    |                                                                                                  |
    |    Char.set.... "C"                                                                              |
    |                                                                                                  |
    |    SAP kernel....... 721                                                                         |
    |    created (date)... "Dec 4 2013 15:53:05"                                                       |
    |    create on........ "NT 5.2 3790 S x86 MS VC++ 14.00"                                           |
    |    Database version. "SQL_Server_9.00 "                                                          |
    |                                                                                                  |
    |    Patch level. 201                                                                              |
    |    Patch text.. " "                                                                              |
    |                                                                                                  |
    |    Database............. "MSSQL 9.00.2047 or higher"                                             |
    |    SAP database version. 721                                                                     |
    |    Operating system..... "Windows NT 5.0, Windows NT 5.1, Windows NT 5.2, Windows                |
    |     NT 6.0, Windows NT 6.1, Windows NT 6.2, Windows NT 6.3"                                      |
    |                                                                                                  |
    |    Memory consumption                                                                            |
    |    Roll.... 0                                                                                    |
    |    EM...... 25138752                                                                             |
    |    Heap.... 0                                                                                    |
    |    Page.... 311296                                                                               |
    |    MM Used. 7058688                                                                              |
    |    MM Free. 5507568                                                                              |
    |User and Transaction                                                                              |
    |    Client.............. 800                                                                      |
    |    User................ "SAPUSER"                                                                |
    |    Language key........ "E"                                                                      |
    |    Transaction......... "PA30 "                                                                  |
    |    Transaction ID...... "0791BDE33448F14DA9F5005056AF3C2B"                                       |
    |                                                                                                  |
    |    EPP Whole Context ID.... "005056AF3C2B1EE3AFB21F7FE7D409F5"                                   |
    |    EPP Connection ID....... 00000000000000000000000000000000                                     |
    |    EPP Caller Counter...... 0                                                                    |
    |                                                                                                  |
    |    Program............. "SAPFP50M"                                                               |
    |    Screen.............. "MP000700 1000"                                                          |
    |    Screen Line......... 3                                                                        |
    |    Debugger Active..... "none"                                                                   |
    |Information on where terminated                                                                   |
    |    Termination occurred in the ABAP program "SAPFP50M" - in                                      |
    |     "GET_HEADER_WITH_TCLAS".                                                                     |
    |    The main program was "MP000700 ".                                                             |
    |                                                                                                  |
    |    In the source code you have the termination point in line 146                                 |
    |    of the (Include) program "FP50MDHD".                                                          |
    |Source Code Extract                                                                               |
    |Line |SourceCde                                                                                   |
    |  116|  CALL FUNCTION 'HR_HEADER_GET'                                                             |
    |  117|      EXPORTING                                                                             |
    |  118|           DHDID                    = FHD_HID                                               |
    |  119|           BEGDA                    = BEGDA                                                 |
    |  120|           TCLAS                    = TCLAS                                                 |
    |  121|* Es wird nur einer der folgenden 3 Parameter benutzt.                                      |
    |  122|* Ausgewertet wird zunaechst MOLGA, dann P0001 dann PERNR.                                  |
    |  123|* Der erste der nicht initial ist wird ausgewertet.                                         |
    |  124|*           MOLGA                   =                                                       |
    |  125|           P0001                    = P0001                                                 |
    |  126|           PERNR                    = PSPAR-PERNR                                           |
    |  127|      IMPORTING                                                                             |
    |  128|           PROG                     = HEADER_PROG                                           |
    |  129|           DNUM                     = HEADER_DYNNR                                          |
    |  130|       EXCEPTIONS                                                                           |
    |  131|            HEADER_DEACTIVATED          = 1                                                 |
    |  132|            HEADER_UNKNOWN              = 2                                                 |
    |  133|            HEADER_GENERATE_DEACTIVATED = 3                                                 |
    |  134|            HEADER_GENERATE_FAILED      = 4                                                 |
    |  135|            INTERNAL_ERROR              = 5                                                 |
    |  136|            OTHERS                      = 6.                                                |
    |  137|                                                                                            |
    |  138|  IF NOT SY-SUBRC IS INITIAL.                                                               |
    |  139|* Bei Problemen gibt's eben ein leeres Dynpro.                                              |
    |  140|    HEADER_PROG = 'SAPMP50A'.                                                               |
    |  141|    HEADER_DYNNR = '0090'.                                                                  |
    |  142|  ELSE.  " NOT sy-subrc IS INITIAL.                                   "                     |
    |  143|* Dann setzen wir jetzt auch noch das Datum fest.                                           |
    |  144|    PERFORM HEADER_BEGDA_SET IN PROGRAM (HEADER_PROG) USING BEGDA.                          |
    |  145|* Und schalten auf Uebergabe der PERNR mit globalen Variablen.                              |
    |>>>>>|    PERFORM HEADER_LAZY_ON IN PROGRAM (HEADER_PROG).                                        |
    |  147|  ENDIF.  " (ELSE) NOT sy-subrc IS INITIAL.                           "                     |
    |  148|* Merken wie der Header heisst. Damit MPPERS00 sich erinnern kann.                          |
    |  149|* Wird mit Einfuehrung des Headerobjekts obsolet.                                           |
    |  150|  PERFORM REMEMBER_HEADER  "                             "XYVPH4K015649                     |
    |  151|    USING HEADER_PROG HEADER_DYNNR 'S'.  "               "XYVPH4K015649                     |
    |  152|ENDFORM.                                                                                    |
    |  153|*---------------------------------------------------------------------*                     |
    |  154|*       FORM RE588I                                                   *                     |
    |  155|*---------------------------------------------------------------------*                     |
    |  156|*       ........                                                      *                     |
    |  157|*---------------------------------------------------------------------*                     |
    |  158|*  -->  T588I_DHDID                                                   *                     |
    |  159|*  -->  T588I_MOLGA                                                   *                     |
    |  160|*  -->  T588I_TCLAS                                                   *                     |
    |  161|*---------------------------------------------------------------------*                     |
    |  162|FORM RE588I USING T588I_DHDID T588I_MOLGA T588I_TCLAS.      "QNUR3                          |
    |  163|  CLEAR SY-SUBRC.                                           "QNUK64192                      |
    |  164|  CHECK T588I-DHDID NE T588I_DHDID OR T588I-MOLGA NE T588I_MOLGA                            |
    |  165|     OR T588I-TCLAS NE T588I_TCLAS.                                                         |
    |Contents of system fields                                                                         |
    |Name    |Val.                                                                                     |
    |SY-SUBRC|0                                                                                        |
    |SY-INDEX|0                                                                                        |
    |SY-TABIX|1                                                                                        |
    |SY-DBCNT|1                                                                                        |
    |SY-FDPOS|0                                                                                        |
    |SY-LSIND|0                                                                                        |
    |SY-PAGNO|0                                                                                        |
    |SY-LINNO|1                                                                                        |
    |SY-COLNO|1                                                                                        |
    |SY-PFKEY|                                                                                         |
    |SY-UCOMM|                                                                                         |
    |SY-TITLE|Planned Working Time Infotype (0007)                                                     |
    |SY-MSGTY|                                                                                         |
    |SY-MSGID|                                                                                         |
    |SY-MSGNO|000                                                                                      |
    |SY-MSGV1|                                                                                         |
    |SY-MSGV2|                                                                                         |
    |SY-MSGV3|                                                                                         |
    |SY-MSGV4|                                                                                         |
    |SY-MODNO|0                                                                                        |
    |SY-DATUM|20140406                                                                                 |
    |SY-UZEIT|191129                                                                                   |
    |SY-XPROG|SAPMSSY1                                                                                 |
    |SY-XFORM|XAB_READ                                                                                 |
    |Active Calls/Events                                                                               |
    |No.   Ty.          Program                             Include                             Line   |
    |      Name                                                                                        |
    |    6 FORM         SAPFP50M                            FP50MDHD                              146  |
    |      GET_HEADER_WITH_TCLAS                                                                       |
    |    5 FORM         SAPFP50M                            FP50MDHD                              144  |
    |      GET_HEADER_WITH_TCLAS                                                                       |
    |    4 FORM         SAPFP50M                            FP50MDHD                               96  |
    |      GET_HEADER                                                                                  |
    |    3 FORM         SAPFP50M                            FP50MDHD                               61  |
    |      FILL_HEADER                                                                                 |
    |    2 FORM         SAPFP50M                            FP50ME00                              417  |
    |      INIT_DIALOG                                                                                 |
    |    1 MODULE (PBO) MP000700                            MPPERS00                              575  |
    |      INIT_DIALOG                                                                                 |
    |Chosen variables                                                                                  |
    |Name                                                                                              |
    |    Val.                                                                                          |
    |No.       6 Ty.          FORM                                                                     |
    |Name  GET_HEADER_WITH_TCLAS                                                                       |
    |SY-REPID                                                                                          |
    |    SAPFP50M                                                                                      |
    |    5454533422222222222222222222222222222222                                                      |
    |    3106050D00000000000000000000000000000000                                                      |
    |    0000000000000000000000000000000000000000                                                      |
    |    0000000000000000000000000000000000000000                                                      |
    |    53004100500046005000350030004D0020002000200020002000200020002000200020002000200020002000200020|
    |T582A-DAVO                                                                                        |
    |    1                                                                                             |
    |    3                                                                                             |
    |    1                                                                                             |
    |    0                                                                                             |
    |    0                                                                                             |
    |    3100                                                                                          |
    |SYST-REPID                                                                                        |
    |    SAPFP50M                                                                                      |
    |    5454533422222222222222222222222222222222                                                      |
    |    3106050D00000000000000000000000000000000                                                      |
    |    0000000000000000000000000000000000000000                                                      |
    |    0000000000000000000000000000000000000000                                                      |
    |    53004100500046005000350030004D0020002000200020002000200020002000200020002000200020002000200020|
    |PSHDR-PSKEY-PERNR                                                                                 |
    |    00000000                                                                                      |
    |    33333333                                                                                      |
    |    00000000                                                                                      |
    |    00000000                                                                                      |
    |    00000000                                                                                      |
    |    30003000300030003000300030003000                                                              |
    |%_SPACE                                                                                           |
    |                                                                                                  |
    |    2                                                                                             |
    |    0                                                                                             |
    |    0                                                                                             |
    |    0                                                                                             |
    |    2000                                                                                          |
    |PSYST-BEGDA                                                                                       |
    |    20140406                                                                                      |
    |    33333333                                                                                      |
    |    20140406                                                                                      |
    |    00000000                                                                                      |
    |    00000000                                                                                      |
    |    32003000310034003000340030003600                                                              |
    |DELETE                                                                                            |
    |    DEL                                                                                           |
    |    44422222222222222222                                                                          |
    |    45C00000000000000000                                                                          |
    |    00000000000000000000                                                                          |
    |    00000000000000000000                                                                          |
    |    440045004C0020002000200020002000200020002000200020002000200020002000200020002000              |
    |PSINFO[]                                                                                          |
    |    Table IT_0[6x80]                                                                              |
    |    \PROGRAM=SAPFP50M\DATA=PSINFO[]                                                               |
    |    Table reference: 0                                                                            |
    |    TABH+  0(20) = 50240D00DF070000000000000000000000000000                                       |
    |    TABH+ 20(20) = 00000000000000000600000050000000FFFFFFFF                                       |
    |    TABH+ 40(16) = 04000000709C020005000000C104C000                                               |
    |    store        = 0x50240D00DF070000                                                             |
    |    ext1         = 0x0000000000000000                                                             |
    |    shmId        = 0     (0x00000000)                                                             |
    |    id           = 0     (0x00000000)                                                             |
    |    label        = 0     (0x00000000)                                                             |
    |    fill         = 6     (0x06000000)                                                             |
    |    leng         = 80    (0x50000000)                                                             |
    |    loop         = -1    (0xFFFFFFFF)                                                             |
    |    xtyp         = TYPE#000105                                                                    |
    |    occu         = 5     (0x05000000)                                                             |
    |    accKind      = 1     (ItAccessStandard)                                                       |
    |    idxKind      = 0     (ItIndexNone)                                                            |
    |    uniKind      = 2     (ItUniNo)                                                                |
    |    keyKind      = 1     (default)                                                                |
    |    cmpMode      = 2     (cmpSingleMcmpR)                                                         |
    |    occu0        = 0                                                                              |
    |    stMode       = 0                                                                              |
    |    groupCntl    = 0                                                                              |
    |    rfc          = 0                                                                              |
    |    unShareable  = 0                                                                              |
    |    mightBeShared = 0                                                                             |
    |    sharedWithShmTab = 0                                                                          |
    |    isShmLockId  = 0                                                                              |
    |    isUsed       = 1                                                                              |
    |    isCtfyAble   = 1                                                                              |
    |    hasScndKeys  = 0                                                                              |
    |    hasRowId     = 0                                                                              |
    |    scndKeysOutdated = 0                                                                          |
    |    scndUniKeysOutdated = 0                                                                       |
    |    ----- Shareable Table Header Data -----                                                       |
    |    tabi         = 0xA0220D00DF070000                                                             |
    |    pgHook       = 0xE0631100DF070000                                                             |
    |    idxPtr       = 0x0000000000000000                                                             |
    |    id           = 2     (0x02000000)                                                             |
    |    shmTabhSet   = 0x0000000000000000                                                             |
    |    refCount     = 0     (0x00000000)                                                             |
    |    tstRefCount  = 0     (0x00000000)                                                             |
    |    lineAdmin    = 125   (0x7D000000)                                                             |
    |    lineAlloc    = 13    (0x0D000000)                                                             |
    |    shmVersId    = 0     (0x00000000)                                                             |
    |    shmRefCount  = 1     (0x01000000)                                                             |
    |    rowId        = 18446744073709551615                                                           |
    |    scndKeyAdmin = 0x0000000000000000                                                             |
    |                                                                                                  |
    |    0000002000011800010199991231A    1    ##                                                      |
    |    3333333333333333333333333333422223222201                                                      |
    |    000000200001180001019999123110000100000C                                                      |
    |    0000000000000000000000000000000000000000                                   

  • How to register a students edition to get a licence number, as the respective adobe webpage form shows a error after submit?

    We have all relevant documents and information to show to adobe that this students edition of lightroom for my daughter is valid and that she could get a license number to make it usable after the 30 days test period.
    But when we try to submit the relevant adobe web form including copy of her students license of the University we face an error message indicating that the target page could not be found.
    At least up to now we have found no way to contact adobe fro this topic. Just chat is offered.
    Is there someone who could help us?
    Regards from Germany

    You had probably best tried to use the chat option. I'm wondering if maybe the website you are trying to access is not available in Germany. That's only a guess.

  • Office 2013 apps showing templates error after Sysprepping Windows 7 with CopyProfile setting

    Here is my setup:
    I installed Windows 7 Professional.
    I entered Audit Mode (which automatically logged me in as the built-in Administrator user) and installed the entire Office 2013 Professional Plus suite.
    In Audit Mode, I opened Word 2013 to get through the "new user" prompts, such as the opening movie that plays in all Office 2013 programs. I did this to ensure that any new users who log into the computer would not need to sit through these "new
    user" prompts.  I also rearmed Office 2013.
    I ran Sysprep with the CopyProfile setting in the Unattend.xml file, with the /generalize switch, and the /oobe switch. The CopyProfile setting copies settings from the built-in Administrator account to any new user who logs into the system.
    Both Windows and Office were successfully activated using KMS.
    Everything seemed to work, but there is one problem: when any user -- all of which are standard users rather than administrator users -- logs into Windows and runs any Office 2013 program that has templates (such as Word, Excel, and PowerPoint), the templates
    on the Start page do not appear. In their place, the following error message appears on the Start page where the templates would normally have been listed:
    "Sorry, we had trouble getting the featured templates and can't show them right now."
    Below the error message is a link that reads “Work Offline.” If you click the “Work Offline” link, the error message disappears and the templates appear as they should.  However, the error message re-occurs when the application is closed and re-opened.
    If I login as the built-in Administrator account (i.e., the account I used to modify the default profile), this problem does not occur at all when using Office 2013 programs.
    Any ideas?

    "logs into Windows and runs any Office 2013 program that has templates (such as Word, Excel, and PowerPoint), the templates on the Start page do not appear. In their place, the following error message appears on the Start page where the templates would normally
    have been listed:
    "Sorry, we had trouble getting the featured templates and can't show them right now." "
    Is there any chance to let you skip the Start page for Office application? I mean that try to open Office application (such Word)and go to File > Options > Untick the option "Show the Start screen when this application starts". Try to re-launch
    the application again to check if the error still pop-up. If yes, I'm afraid the default build-in template is corrupted somehow and we need to copy a healthy one from another computer or totally rename normal.dotm documents from %userprofile%\AppData\Roaming\Microsoft\template.
    Afte that, please check if the issue still persists.
    Here is another thread with the similar topic for your reference:
    http://social.technet.microsoft.com/Forums/ie/en-US/09a69d4c-9e5f-489d-ba7b-2af79ff83596/deploying-normaldotm-through-oct-doesnt-work-in-office-2013?forum=officesetupdeploy
    http://answers.microsoft.com/en-us/office/forum/office_2013_release-office_install/can-not-sign-into-office-2013-version/b6951c25-2fb5-4fc1-a667-2327b9da2f7f
    Tony Chen
    TechNet Community Support

  • Dump error while filling the Setup table

    Hi All,
    I am trying to fill the setup table.While filling the stup table for 2lis_03_BF datasource, i got the Dump error after some time. I have checked the data in Setup table and found 9000 records.
    Shall i proceed further by pulling the data from R/3 to BW.I have checked the data in RSA3 and got some data.
    Shall i schedule the data from BW side.
    Pls help on this issue.
    Thanks,
    Siva.

    Thanks Reddy and JS.
    I have checked the TCODE SM37 and found no jobs are available. I have checked the TCODE : NPRT and found some logs.In this, it is not showing any errors.
    I have checked in SM21 and found some errors.
    Time_______________Text
    17:08:10____________Transaction Canceled M2 630 ( )
    17:23:47____________Run-time error "TIME_OUT" occurred
    17:23:47____________> Short dump "090302 172347 sand1_W2 2_00 " generated
    17:30:08____________Status: 80% of IL00.DAT is in use
    17:30:17____________Status: 90% of IL00.DAT is in use
    17:30:18____________Overflow of Paging File (032768 Blocks)
    17:30:18____________Run-time error "MEMORY_NO_MORE_PAGING" occurred
    17:30:19____________> Short dump "090302 173018 sand1_W2 2_00 " generated
    Shall i execute filling the setup table again. Do i need to give termination time More ( 2 Hrs difference)
    Any issue on refilling the setup table again.
    Pls suggest.
    Thanks,
    Siva.

  • Regarding dump error in smartforms

    hi experts,
                   my one driver program along with smartforms is working fine in the development server after transportation to production server it is showing dump error :::
    the error is:
    Function module " " not found.                                                                
    What happened?                                                                               
    The function module " " was called, but cannot be                                             
        found in the Function Library.                                                                               
    Error in ABAP application program.                                                                               
    The current ABAP program "ZSD_DELIVERY_ORDER_DRIVER_PREP" had to be terminated                
         because one of the                                                                               
    statements could not be executed.                                                                               
    This is probably due to an error in the ABAP program.                                         
    What can you do?                                                                               
    Print out the error message (using the "Print" function)                                      
        and make a note of the actions and input that caused the                                      
        error.                                                                               
    To resolve the problem, contact your SAP system administrator.                                
        You can use transaction ST22 (ABAP Dump Analysis) to view and administer                      
         termination messages, especially those beyond their normal deletion                          
        date.                                                                               
    is especially useful if you want to keep a particular message.                                
    Error analysis                                                                               
    An exception occurred. This exception will be dealt with in more detail                       
        below. The exception, assigned to the class 'CX_SY_DYN_CALL_ILLEGAL_FUNC', was                
         not caught, which                                                                               
    led to a runtime error. The reason for this exception is:                                    
        The program "ZSD_DELIVERY_ORDER_DRIVER_PREP" contains a CALL FUNCTION                         
         statement. The name                                                                               
    of the function module to be called is " ".                                                                               
    No function module exists with the name " ".                                                  
        All function modules are stored in the Function Library (SE37).                                                                               
    Possible reasons:                                                                               
    a) Wrong name specified. Particular attention should be paid                                  
           to upper/lower case and underscores ("_")                                                  
        b) Transport error                                                                               
    c) If an enqueue/dequeue module has been used, the lock object                                
           may not have been activated (ABAP Dictionary)                                              
           may not have been activated (ABAP Dictionary).                                             
    i have checked in the production server but i m not finding <b>" "</b> this thing in the program ..plz help me to solve this.

    Hi Ravi,
    Can you show me the code where you have called the smart form in driver program.Becaus the FM generated in Development server may differ from the FM generated in Production server.Make sure u r passing the FM  which is generated from the function module SSF_FUNCTION_MODULE_NAME.

  • Short dump error while filling setup tables for 2LIS_06_INV

    Hi All,
    I am trying to fill the setup table.While filling the stup table for 2lis_06_inv datasource, i got the Dump error after some time.
    Error
    Runtime Errors         DBIF_RSQL_SQL_ERROR
    Exception              CX_SY_OPEN_SQL_DB
    Short text
        SQL error in the database when accessing a table.
    plz can anyone help me out...

    Dear friends,
    I tried it by giving the selection on fiscal year,but again same problem.If i give 1 0r 2 document numbers in selection then extractor works fine.
    error:in detail.
    Runtime Errors         DBIF_RSQL_SQL_ERROR
    Exception              CX_SY_OPEN_SQL_DB
    Short text
        SQL error in the database when accessing a table.
    Information on where terminated
        Termination occurred in the ABAP program "SAPLMRMBW" - in "BW_RETRIEVE_DB_CO".
        The main program was "RMCENEUR ".
        In the source code you have the termination point in line 827
        of the (Include) program "LMRMBWF01".
        The program "SAPLMRMBW" was started as a background job.
        Job Name....... "RMCENEUR"
        Job Number..... 10524100
        The termination is caused because exception "CX_SY_OPEN_SQL_DB" occurred in
        procedure "BW_RETRIEVE_DB_CO" "(FORM)", but it was neither handled locally nor
         declared
        in the RAISING clause of its signature.
        The procedure is in program "SAPLMRMBW "; its source code begins in line
        806 of the (Include program "LMRMBWF01 ".
      806 FORM bw_retrieve_db_co  USING    t_mcrbkey_bv    TYPE mcrbkey_t
      807                                  t_mcrbkey_nbv   TYPE mcrbkey_t
      808                                  t_ekbe_acc      TYPE t_ekbe
      809                         CHANGING t_mcrbco        TYPE mcrbco_t.
      810
      811   TYPES: BEGIN OF s_target.
      812   TYPES: table_left LIKE rbco.
      813   TYPES: table_right TYPE rbex.
      814   TYPES: END OF s_target.
      815   TYPES: t_target TYPE TABLE OF s_target.
      816
      817
      818   DATA: t_rbco_nbv  TYPE t_target,
      819         t_rbco_bv   TYPE t_target,
      820         s_rbco      TYPE s_target,
      821         s_ekbe      LIKE ekbe,
      822         s_mcrbco    TYPE mcrbco,
      823         l_index     LIKE sy-tabix.
      824
       825 * Data source: invoice item non-background
      826   IF NOT t_mcrbkey_nbv[] IS INITIAL.
    *>>>>>     SELECT * FROM  rbco AS r LEFT OUTER JOIN rbex AS i*
      828        ON   ( rmandt = imandt AND
      829               rbelnr = ibelnr AND
      830               rbuzei = ibuzei AND
      831               rcobl_nr = icobl_nr )
      832        INTO TABLE t_rbco_nbv
      833        FOR ALL ENTRIES IN t_mcrbkey_nbv
      834        WHERE r~gjahr = t_mcrbkey_nbv-gjahr AND
      835              r~belnr = t_mcrbkey_nbv-belnr.
      836   ENDIF.
      837 * Data source: invoice item background
      838   IF NOT t_mcrbkey_bv[] IS INITIAL.
      839     SELECT * FROM  rbco AS r LEFT OUTER JOIN rbex AS i
      840        ON   ( rmandt = imandt AND
      841               rbelnr = ibelnr AND
      842               rbuzei = ibuzei AND
      843               rcobl_nr = icobl_nr )
      844        INTO  TABLE t_rbco_bv
      845        FOR ALL ENTRIES IN t_mcrbkey_bv
      846        WHERE r~gjahr = t_mcrbkey_bv-gjahr AND
    Thnks in advance

Maybe you are looking for

  • LaserJet M1319f MFP Installation issue on Windows 7

    Dear HP support team and community members, I'm currently trying to install HP LaserJet M1319f MFP connected by USB on Lenovo Q190 machine /Intel Core i3 processor/ running freshly installed Windows 7 Enterprise 64 bit with Bulgarian language pack, a

  • Problem in cloning of EBS R12

    Hi All, I am working in Oracle E-Business Suite Release 12.1.1 at RHEL 64bit Os. I want to switch my EBS R12 set to new machine of same OS. for the same i am following the document Cloning Oracle Applications Release 12 with Rapid Clone :406982.1. In

  • Clearing a View Object

    Hi, I'm currently using an OracleStatement to do a custom query from the database and then copying that data over to a View Object. Sometimes when I do a set on the ViewRowImpl, I get the "Too many objects match the primary key oracle.jbo.Key[62 ]."

  • STOK IN TRANSIT VALUE

    Hi, In MB5T report, its showing the stock in transit qty only. I want to know what is the amount for each item that is in transit. is there any standard report to know what is the transit value for a particular period of  time. Thanks Satya

  • Sequential Numbering (Ex: Invoices) and #-Up per Sheet

    I have a 3 part NCR Invoice which measures 5.5x8.5. In the bottom left corner I need to put sequential numbering beginning with 31677 and continuing on 1,000 times. I am going to copy this sheet and put it 4-up on 11x17 sheet size. Is there anyway i