Run time Errors GETWA_NOT_ASSIGNED at Time of Print Reports.

Hello hy All experts.
I ma trying to print Reports, but at time of preview i got an error message. Run time Errors GETWA_NOT_ASSIGNED.
Please Give me Solutions.
Thnks
Bhavesh Panchal.
Baroda

FORM fetch_data.
  break mtabap.
  SELECT *
          FROM vbep
          INTO TABLE it_vbep
          WHERE edatu IN so_edatu
          AND vbeln IN so_vbeln.
  IF NOT it_vbep[] IS INITIAL.
    SELECT *
                   FROM vbak
                   INTO TABLE it_vbak
                   FOR ALL ENTRIES IN it_vbep
                   WHERE vbeln = it_vbep-vbeln
                   AND kunnr IN so_kunnr.
  ENDIF.
  IF NOT it_vbak[] IS INITIAL.
    SELECT *
            FROM vbpa
            INTO TABLE it_vbpa
            FOR ALL ENTRIES IN it_vbak
            WHERE vbeln = it_vbak-vbeln
            AND   posnr = space.
    SELECT *
             FROM vbap
             INTO TABLE it_vbap
             FOR ALL ENTRIES IN it_vbak
             WHERE vbeln = it_vbak-vbeln.
Select all Customer Data
    SELECT * FROM kna1 INTO TABLE it_kna1
    FOR ALL ENTRIES IN it_vbak
    WHERE kunnr = it_vbak-kunnr .
    SELECT *
             FROM vbkd
             INTO TABLE it_vbkd
             FOR ALL ENTRIES IN it_vbap
             WHERE vbeln = it_vbap-vbeln.
           and posnr = IT_VBAP-POSNR.
    SELECT *
             FROM vbbe
             INTO TABLE it_vbbe
             FOR ALL ENTRIES IN it_vbap
             WHERE vbeln = it_vbap-vbeln
             AND posnr = it_vbap-posnr.
    SELECT *
             FROM vbup
             INTO TABLE it_vbup
             FOR ALL ENTRIES IN it_vbap
             WHERE vbeln = it_vbap-vbeln
             AND posnr = it_vbap-posnr.
    SELECT *
             FROM konv
             INTO TABLE it_konv
             FOR ALL ENTRIES IN it_vbak
             WHERE knumv = it_vbak-knumv
             AND kinak = space .
    SELECT *
          FROM vbrp
          INTO TABLE it_vbrp
          FOR ALL ENTRIES IN it_vbak
          WHERE aubel = it_vbak-vbeln.
    IF NOT it_vbrp[] IS INITIAL.
      SELECT * FROM likp
                        INTO TABLE it_likp
                        FOR ALL ENTRIES IN it_vbrp
                        WHERE vbeln = it_vbrp-vgbel.
      SELECT * FROM lips
                        INTO TABLE it_lips
                        FOR ALL ENTRIES IN it_vbrp
                        WHERE vbeln = it_vbrp-vgbel
                        AND posnr = it_vbrp-vgpos.
    ENDIF.
  ENDIF.
  LOOP AT it_vbap.
    itab-posnr = it_vbap-posnr.
    itab-posar = it_vbap-posar.
ITAB-BRGEW = IT_VBAP-BRGEW.
    itab-brgew = it_vbap-brgew.
    itab-ntgew = it_vbap-ntgew.
    READ TABLE it_vbak WITH KEY vbeln = it_vbap-vbeln.
    itab-vbeln = it_vbak-vbeln.
    itab-netwr = it_vbak-netwr.
    itab-kunnr = it_vbak-kunnr.
    READ TABLE it_vbep WITH KEY vbeln = it_vbap-vbeln.
    itab-edatu = it_vbep-edatu.
    READ TABLE it_kna1 WITH KEY kunnr = it_vbak-kunnr.
    itab-name1 = it_kna1-name1.
    READ TABLE it_vbkd WITH KEY vbeln = it_vbap-vbeln .
    itab-bstdk = it_vbkd-bstdk.
    itab-bstkd = it_vbkd-bstkd.
    READ TABLE it_vbrp WITH KEY aubel = it_vbap-vbeln aupos = it_vbap-posnr.
    READ TABLE it_lips WITH KEY vbeln = it_vbrp-aubel posnr = it_vbrp-aupos.
    itab-delivery = it_lips-vbeln.
    itab-lfimg = it_lips-lfimg.
    READ TABLE it_likp WITH KEY vbeln = it_vbrp-aubel   .
    itab-lfdat = it_likp-lfdat.
   itab-ntgew = it_likp-ntgew.
    break mtabap.
    READ TABLE it_vbup WITH KEY vbeln = it_vbap-vbeln posnr = it_vbap-posnr.
    itab-lfsta = it_vbup-lfsta.
    READ TABLE it_vbep WITH KEY vbeln = it_vbap-vbeln posnr = it_vbap-posnr.
    itab-wmeng = it_vbep-wmeng .
    itab-bmeng = it_vbep-bmeng.
    READ TABLE it_vbbe WITH KEY vbeln = it_vbap-vbeln posnr = it_vbap-posnr.
    itab-omeng = it_vbbe-omeng .
    READ TABLE it_konv WITH KEY knumv = it_vbak-knumv
                                kposn = it_vbap-posnr
                                kschl = 'PR00'.
   ITAB-KBETR = IT_KONV-KBETR / 10. " CONDITION RATE
    itab-kbetr = it_konv-kbetr.
    itab-kwert = it_konv-kwert . "CONDITION VALUE
   itab-pending_val =  ITAB-OMENG * ITAB-KWERT .
    itab-pending_val =  itab-omeng * itab-kbetr .
    APPEND itab.
  ENDLOOP.
ENDFORM. "data_retrieval
*&      Form  build_listheader
      text
     -->IT_LISTHEADER  text
Show quoted text -
FORM build_listheader USING it_listheader TYPE slis_t_listheader.
DATA HLINE TYPE SLIS_LISTHEADER.
  DATA: ls_line TYPE slis_listheader.
bhavesh
HLINE-INFO = 'report Developed by Bhavesh'.
HLINE-TYP = 'H'.
Header
Bhavesh
  CLEAR ls_line.
  ls_line-typ = 'H'.
LS_LINE-KEY: not used for this type
  ls_line-info = 'Sales ORDER Report'.
  APPEND ls_line TO it_listheader.
bhavesh
***Selection
  CLEAR ls_line.
  ls_line-typ = 'S'.
  ls_line-key = 'Key 1'.
  ls_line-info = 'SFEL'.
  APPEND ls_line TO it_listheader.
  ls_line-key = 'Key 2'.
  ls_line-info = 'SFEL'.
  APPEND ls_line TO it_listheader.
***Action
  CLEAR ls_line.
  ls_line-typ = 'A'.
LS_LINE-KEY: not used for this type
  ls_line-info = 'Status list'.
  APPEND ls_line TO it_listheader.
ENDFORM. "BUILD_LISTHEADER
*ENDFORM. "build_listheader
*&      Form  display
*&       text
FORM display.
  CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          i_callback_program      = sy-repid
         i_callback_top_of_page  = 'TOP_OF_PAGE'
          is_layout               = alv_layout
          it_fieldcat             = i_fieldcat
         it_events               = gt_events[]
          i_callback_user_command     = 'USER_COMMAND'
          i_grid_title            = 'BHAVESH REPORT'
        TABLES
          t_outtab                = itab[].
  CLEAR : itab .
ENDFORM.                    "display
*&      Form  top_of_page
      text
FORM top_of_page.
  CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
    EXPORTING
      it_list_commentary = it_listheader[].
i_logo = 'ENJOYSAP_LOGO'.
I_END_OF_LIST_GRID =
ENDFORM. "TOP_OF_PAGE

Similar Messages

  • Package failed with run time error: " GETWA_NOT_ASSIGNED".

    Hi,
    One of our custom package is failing with run time error " GETWA_NOT_ASSIGNED". We are getting this error after refresh. Infact this package is working fine both in production and Dev, but in QA system it giving runtime error.
    Here with I am pasting run time error details. Please see...If any one have any idea or clue or if you have faced this kind of error.
    Thanks is advance.
    Error Details.
    What happened?
        Error in the ABAP Application Program
        The current ABAP program "CL_UJK_CUSTOM_LOGIC===========CP" had to be
         terminated because it has
        come across a statement that unfortunately cannot be executed.
    What can you do?
        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
        You attempted to access an unassigned field symbol
        (data segment 32774).
        This error may occur if
        - You address a typed field symbol before it has been set with
          ASSIGN
        - You address a field symbol that pointed to the line of an
          internal table that was deleted
        - You address a field symbol that was previously reset using
          UNASSIGN or that pointed to a local field that no
          longer exists
        - You address a global function interface, although the
          respective function module is not active - that is, is
          not in the list of active calls. The list of active calls
          can be taken from this short dump.
    Regards, Trine

    Hi Trine,
    the error is about some field you are trying to map using field-simbols, that is diferent in the other system.
    Go to the code program in the st22, there you will see when the erros occurs e what field gives the error.
    Best Regards,
    António

  • Receiving run time error GETWA_NOT_ASSIGNED  for a particular a Datasource

    Hi all,
    In the test system receiving run time error GETWA_NOT_ASSIGNED  for a particular a Datasource 
    8ZSD_O07 while trying check PSA maintenance.  For rest of data source able to display the PSA maintenance.
    Kindly help to resolve the issue. 
    Thanks

    Re-generate Export Data Source for ZSD_O07 in test system .
    Please share the result
    Regards
    Anindya

  • ABAP Run time Error whle executing the Balance sheet report in FGI0

    Hi,
    I am getting the below ABAP Run time error while executing the Balance Sheet report in FGI0.It was working before but now it is giving the error.Kindly help me in solving this.
    Runtime Errors         MESSAGE_TYPE_X
    Date and Time          06/12/2009 15:17:17
    Short text
         The current application triggered a termination with a short dump.
    What happened?
         The current application program detected a situation which really
         should not occur. Therefore, a termination with a short dump was
         triggered on purpose by the key word MESSAGE (type X).
    Error analysis
         Short text of error message:
         RAISE RKD_CONDITION_READ       (internal error)
         Long text of error message:
          Diagnosis
              The program was terminated because a situation occurred which
              should not have arisen.
          Procedure
              Analyze the situation and contact SAP.
         Technical information about the message:
         Message class....... "KH"
         Number.............. 299
         Variable 1.......... "RKD_CONDITION_READ"
         Variable 2.......... " "
         Variable 3.......... " "
         Variable 4.......... " "
    Trigger Location of Runtime Error
        Program                                 SAPLKYPR
        Include                                 LKYPRU31
        Row                                     36
        Module type                             (FUNCTION)
        Module Name                             RKD_CONDITION_READ
    Thanks
    Supriya

    Hello,
    Please refer SAP
    Note 971535 - dump when deleting characteristic with hierarchy
    Regards,
    Ravi

  • Abap run time error at the time of GR

    I am facing a ABAP run time error at the time of  GR of STO through MIGO_GR, then abap run time error is generated, details are given as per the Tcode:- ST22;
    Runtime Error          MESSAGE_TYPE_X
    ShrtText
       The current application triggered a termination with a short dump.
    What happened?
       The current application program detected a situation which really
        should not occur. Therefore, a termination with a short dump was
        triggered on purpose by the key word MESSAGE (type X).
    Transaction
       Transaction......... "MIGO "
       Program............. "SAPLMBWL"
       Screen.............. "SAPLMIGO 0001"
       Screen line......... 15
    Information on where terminated
         The termination occurred in the ABAP program "SAPLMBWL" in
         "MB_POST_GOODS_MOVEMENT".
         The main program was "SAPLMIGO ".
         The termination occurred in line 56 of the source code of the (Include)
         program "LMBWLU21"
         of the source code of program "LMBWLU21" (when calling the editor 560).
    Source Code Extract
         55    IF NOT sy-subrc IS INITIAL.
    >>>>>       MESSAGE ID sy-msgid TYPE x NUMBER sy-msgno WITH            "385830
         57                  sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.

    Hi Tiwari,
    The error seems to be triggered by note 385830. Pls refer to 'Note 556000 - Short dump due to note 385830' in www.service.sap.com
    Btw, which version are you in?
    Best Regards
    Sathees Gopalan

  • Run time Errors GETWA_NOT_ASSIGNED Date and Time

    Hi Experts,
    Please help me to resolve this...
    While Executing the conversion program in EMIGALL, I come across the following  short Dump.
    """Runtime Errors GETWA_NOT_ASSIGNED
    Date and Time DD:MM:YYY xx:xx:xx
    Short text
    Field symbol has not yet been assigned.
    Any help will be appreciated.""""""
    Thanks and Regards
    Vipin KV

    Hello,
    Can you please provide some more details from the dump?
    Regards
    Olivia

  • Run time error while executing Project Info system Reports

    Hi,
    I would like to inform while running project infosystems reports (CN41/41N / cns41 etc), it is taking long time & most of the time run time errors are coming. I observed due to more objects in projects, run time error is coming. Request you to suggest to fix the issue.
    Thank you for your cooperation.
    Regards,
    Rakesh Pradhan

    Hi,
    I would like to inform while running project infosystems reports (CN41/41N / cns41 etc), it is taking long time & most of the time run time errors are coming. I observed due to more objects in projects, run time error is coming. Request you to suggest to fix the issue.
    Thank you for your cooperation.
    Regards,
    Rakesh Pradhan

  • Run time Error while executing Project Info system Reports (CN41/CN41N)

    Hi,
    I would like to inform while running project infosystems reports (CN41/41N / cns41 etc), it is taking long time & most of the time run time errors are coming. I observed due to more objects in projects, run time error is coming. Request you to suggest to fix the issue.
    Thank you for your cooperation.
    Regards,
    Rakesh Pradhan

    Hi,
    I would like to inform while running project infosystems reports (CN41/41N / cns41 etc), it is taking long time & most of the time run time errors are coming. I observed due to more objects in projects, run time error is coming. Request you to suggest to fix the issue.
    Thank you for your cooperation.
    Regards,
    Rakesh Pradhan

  • I can't get my itunes to update it keeps giving me a run time error but every time it tells me to uninstall and reinstall I keep getting the same error.

    I keep trying to update itunes but it gives me a run time error and tells me to uninstall and then reinstall. It is driving me crazy. Any suggestions?

    Hi, I had this problem too and Barton (bless you) has said
    1. go to C:\ programe files(x86) itunes & c:programesfiles/itunes. look for all .dll iles
    2. QT movie.DLL ( I didn't have this file) and all .dll files. and move to the desk top.
    I did any file that had a .dll after it.
    3. reboot your computer.
    4. Uninstall Itunes and anything that is related with Apple. eg Quicktime,Bonjour. what ever says Apple is the publisher.
    5. Reboot computer
    6. go to Itunes and down load again.
    This fixed my computer and it took me 3 days until a remote assistant guys that I used for another problem told me to go on community Itunes.
    I tried a few of the suggestions but had trouble following but this is pretty simple even for me.
    Good luck

  • What does the error code -41004 mean in print report.vi?

    I am getting the following error in the Print report.vi.
    Error Code : -41004
    Error Scource : Print Report.viPrint_VI_Image.vi

    Hi
    I have attached the main vi which is using the NI-Print Report.vi.
    I have also attached the image of the error desciption I got.
    Attachments:
    OPG_Print_to_PDF.llb ‏94 KB
    error.bmp ‏273 KB

  • Run Time Error- Getwa_not_assigned

    Getwa_not_assigned
    Program : CL_FAA_DC_SEGMENTS
    ROW 50
    Module type  ( method)
    Module name  HLPSEGCREATE

    Hi,
    You missed out to fill some parameters before passing it to function module or any call. you can look at the below link for more information
    Need help on ALV Print dump.
    Regards
    Sudheer

  • Error message when trying to print reports.

    done

    user8114199 wrote:
    Hello everyone. I work for a Lockheed Martin and we are contracted to administer the computers on Ft. Benning in Georgia. I have run into a problem with a computer that is related to Oracle, I believe. I am at best a novice to Oracle and what it can do, so please bear with me.
    The error I am getting is
    REP-52251 : Cannot get ouput of job ID 4465 you requested on Wed Feb. 25
    <P>REP-56093 : Cached output for job 4465 is no longer valid
    This is coming from a machine that is used to process Human Resources material. It is a Windows XP box.
    Any help from you guys is always appreciated. :)
    Please let me know if there is any more information that I can offer that would be of assistance.
    Thank you!Since you are working on military systems, please be careful about what you expose on public forums. A few years back a contractor exposed the full domain name and oracle_sid of a database on a .mil domain. I called him out on it and he assured us that he had not compromised security, whereupon another participant in the forum (this was an Oracle newsgroup on usenet) promptly <b><i>demonstrated</i></b> his ability to connect to the db with dba privs.

  • Runtime Error  -GETWA_NOT_ASSIGNED when running COI

    Hi ALL,
    We are getting run time error -  GETWA_NOT_ASSIGNED when running COI tasks.
    Error analysis
         You attempted to access an unassigned field symbol
         (data segment 32995).
         This error may occur for any of the following reasons:
         - You address a typed field symbol before it is set using ASSIGN
         - You address a field symbol that points to a line in an internal table
           that has been deleted
         - You address a field symbol that had previously been reset using
           UNASSIGN, or that pointed to a local field that no longer exists
        - You address a global function interface parameter, even
          though the relevant function module is not active,
          that is it is not in the list of active calls. You can get the list
          of active calls from the this short dump.
    How to correct the error
        You may able to find an interim solution to the problem
        in the SAP note system. If you have access to the note system yourself,
        use the following search criteria:
        "GETWA_NOT_ASSIGNED" C
        "CL_UC_COI_ACT_PT==============CP" or "CL_UC_COI_ACT_PT==============CM00P"
        "REDUCE_GOODWILL_ENTRIES"
        If you cannot solve the problem yourself and you wish to send
        an error message to SAP, include the following documents:
        1. A printout of the problem description (short dump)
           To obtain this, select in the current display "System->List->
           Save->Local File (unconverted)".
    2. A suitable printout of the system log
        To obtain this, call the system log through transaction SM21.
        Limit the time interval to 10 minutes before and 5 minutes
        after the short dump. In the display, then select the function
        "System->List->Save->Local File (unconverted)".
    3. If the programs are your own programs or modified SAP programs,
        supply the source code.
        To do this, select the Editor function "Further Utilities->
        Upload/Download->Download".
    4. Details regarding the conditions under which the error occurred
        or which actions and input led to the error.
    Information on where terminated
        The termination occurred in the ABAP program "CL_UC_COI_ACT_PT==============CP"
         in "REDUCE_GOODWILL_ENTRIES".
        The main program was "UCUWB000 ".
        The termination occurred in line 722 of the source code of the (Include)
         program "CL_UC_COI_ACT_PT==============CM00P"
        of the source code of program "CL_UC_COI_ACT_PT==============CM00P" (when
         calling the editor 7220).
    702   call method do_inv_net_change->create_data_reference
    703     exporting
    704       i_type   = cl_uc_coi_inv_net=>gc_ref_pt_block
    705       io_model = do_model
    706     importing
    707       er_data  = lr_t_data.
    708   assign lr_t_data->* to <lt_share_block>.
    709   call method do_inv_net_change->get_block
    710     importing
    711       et_pt_shares = <lt_share_block>.
    712
    713   create data lr_s_data like line of <lt_share_block>.
    714   assign lr_s_data->* to <ls_share_block>.
    715 * change due to selling invor's transaction
    716   read table <lt_share_block> into <ls_share_block> index 1.
    717
    718 * direct shares prior to divestiture
    719   assign component 'R_TH_DSH_OLD'
    720     of structure <ls_share_block> to <lr_th_dsh_old>.
    721   assign <lr_th_dsh_old>->* to <lt_dsh_old>.
    >>>>   create data lr_s_data like line of <lt_dsh_old>.
    723   assign lr_s_data->* to <ls_dsh_old>.
    724   assign component ucf6_cs_coi_fld-pcnt1
    725     of structure <ls_dsh_old> to <pcnt1_7a>.
    726
    727 * change of direct shares in divestiture
    Please provide your suggestions.
    Edited by: VM2727 on Feb 10, 2012 3:27 AM

    Or even these ones:
    SAP Note 1480856 - C/I: Program termination GETWA_NOT_ASSIGNED
    Symptom
    When you execute the consolidation of investments, a program termination
    occurs (short dump GETWA_NOT_ASSIGNED in the method CREATE_OCI_LIST of the
    class CL_UC_COI_ACT).
    Note 1467924 - Termination GETWA_NOT_ASSIGNED in CL_UC_COI_ACT_PD
    Symptom
    When you execute the consolidation of investments, the program termination GETWA_NOT_ASSIGNED occurs in the method CALC_NET_INCOME_MEM of the class CL_UC_COI_ACT_PD.

  • Run time error in FMBB after execution of RGZZGLUX GETWA_NOT_ASSIGNED FM

    Hello Experts,
    We have activated funds management in Development it is working fine without any issues. Transported same changes to Quality system and executed Program RGZZGLUX.
    Issue: Run time error in FMBB transaction code even after execution of program RGZZGLUX. similar error in funds center group also.
    Category               ABAP Programming Error
    Runtime Errors         GETWA_NOT_ASSIGNED
    ABAP Program           SAPLFMBD_DATABASE_ACCESS
    Application Component  PSM-FM-BCS-BU
    Date and Time          10.06.2014 13:28:36
    Short text
        Field symbol has not yet been assigned.
    Requirement:  Please let us know how to solve this issue
    we have checked note:0000939958 - and changed Inactive status for tables FMIT, FMIP and FMIA, but no use, when we run program RGZZGLUX, it has deactivated this tables again.
    Regards,
    Chalapathi

    Hello Shyam / Javed,
    Thank you for your inputs.
    I have solved issue, now it is working fine.
    Activated EA-PS and included into transport request. executed program RGZZGLUX.
    Note used to solve issue :0000908007
    Regards,
    Chalapathi

  • GETWA_NOT_ASSIGNED run time error in LKKBLF99 include.

    Hi all,
      Thank you for viewing this thread. I am facing this run time error when I execute a ZProgram in    SAP database version. 700  version. In 4.6c it is working fine. The info in the run time error is:
    What happened?                                                                               
    Error in the ABAP Application Program                                                                               
    The current ABAP program "SAPLKKBL" had to be terminated because it has come across a statement that unfortunately cannot be executed                    
    Source code where it is getting terminated:
    2825
    2826
          FORM GEN_FIELD_OUT2                                           *
    2827
    2828
    2829
    2830
    form gen_field_out2.
    2831
    field-symbols <l_initial>.
    2832
    2833
    case gs_out-field_colcount.
    2834
    when 001.
    2835
    if gs_out_flags-slave ne 'X'.
    2836
    assign <fm01> to <field>.
    2837
    gs_fc = gs_mfc01.
    2838
    else.
    2839
    assign <fs01> to <field>.
    2840
    gs_fc = gs_sfc01.
    2841
    endif.
    2842
    when 002.
    2843
    if gs_out_flags-slave ne 'X'.
    |>>>>>|        assign <fm02> to <field>.   ""this is where the std program LKKBLF99 is getting terminated.
    The function module from which it is navigating from the ZProgram to this standard include is "REUSE_ALV_HIERSEQ_LIST_DISPLAY"
    The fieldsymbols are declared as type any in the standard program, LKKBLTOP.
    I tried to get solution from the threads posted, but couldnt arrive to a proper solution. Kindly suggest as soon as possible.                                 
    Thanks
    Sam
    Edited by: Palakodety Samyuktha on Apr 8, 2009 6:31 AM

    Hi Voros,
       Thank you for your quick reply, I tried that note but it didnt help me. As for the field symbol fs02, it is blank. But <Field> has  a value as '0000000055-Base'.
    Kindly help me further.
    In the first case, I  tried to change the value of ' gs_out_flags-slave' . I tried to find whether it is the problem with field symbols, the actual run time error without changing the values in debugging mode occurs at line 2847.
    2825
    2826
          FORM GEN_FIELD_OUT2                                           *
    2827
    2828
    2829
    2830
    form gen_field_out2.
    2831
    field-symbols <l_initial>.
    2832
    2833
    case gs_out-field_colcount.
    2834
    when 001.
    2835
    if gs_out_flags-slave ne 'X'.
    2836
    assign <fm01> to <field>.
    2837
    gs_fc = gs_mfc01.
    2838
    else.
    2839
    assign <fs01> to <field>.
    2840
    gs_fc = gs_sfc01.
    2841
    endif.
    2842
    when 002.
    2843
    if gs_out_flags-slave ne 'X'.
    2844
    assign <fm02> to <field>.
    2845
    gs_fc = gs_mfc02.
    2846
    else.
    >>>>>>        assign <fs02> to <field>.                   "this is where it is getting terminated                      |
    2848
    gs_fc = gs_sfc02.
    | 2849|      endif.
    sorry for the inconvenience caused.
    Thanks
    sam

Maybe you are looking for

  • Office jet pro 8600 e print

    Hi all, ive been trying to set up the printer above for eprint so i need to set the email address. however when i try and set this up i print out the network configuration. my question is what is the "code" that is asked for? i try adding the printer

  • SMTP service failure

    I have been quite happy with JES messaging server 2005Q4 until recently. The other night SMTP service failed at around 1:04am. I had to restart the processes using "imsimta restart". Then, last night, the same thing happened again but this time at 1:

  • Can i filter my calendar?

    Is it possible to filter my calendar by anything other than the calendar list on the left? For example, I'm using this calendar to schedule and keep track of classes at different schools. So, I have a calendar for each school so that I can look at th

  • Setting up application aprovers in AE 5.2

    Hi, I'm busy configuring the AE system, and I'm trying to set the application approvers. I have maintained the relevant connectors, the connection was sucessful. I have also managed to import the roles from the relevant connection. I have read a few

  • JDBC Connection Reset when using many processes on 64 bit system

    Hi, we've a annoying JDBC connection problem since we migrated our Java server to a 64 bit operating system. Here our environment. Database Machine: Oracle 10g Linux 32 Bit (but same problem on 64 Bit) Application Servers Machine: JDBC driver 11.1.0.