Regarding Debugging in Selection screen

Hi All,
I have a program when it will call a screen screen it will go to the debugging screen , could you plz tell me the ans.
Regards,
Nihar

Hi Nihar,
steps to go in debug mode in called program.
<li>Put break-point on SUBMIT statement. Submit statement calls another program.
<li>Before run calling program after entering selection-screen, give /H in command field and press ENTER.
<li> Now Check , Break-point At menu in the menu bar, select statement and now give MESSAGE statement.It stops when MESSAGE is reached.
I hope that it helps you.
Thanks
Venkat.O

Similar Messages

  • Is it possible to debug the selection screen???

    Hi Frdz,
    Is it possible to debug the selection screen.
    eg: if i want to know what is happening in PBO and PAI modules of the selection screen i am not able to debug that.
    Even in code if i click on MODULES present in PBO and PAI modules it is saying MODULE doesnot exist!!!!. So i can't put the break point. even if i press /h it will go to Report events like INITIALIZATION, AT SELECTION-SCREEN but not PBO and PAI modules!.
    Also what is the meaning of exclamatory mark here(Before select option name)
    MODULE !SO_UDATE.
    MODULE !SO_UNAME.
    Thanks,
    Vinod.

    Hi Vinod,
    Double click on the module and then put the break point for the first statement of it. It will work.
    Reward points if useful.
    Thanks,
    Khan.

  • Regarding dates and selection screen

    Hi all,
    In my selection screen i have 2 date fields(ranges). I have a requirement wherein i have to allow user to select only one date i.e. let the date fields be date1 and date2 when the user enters date1 he should not be allowed to enter date2 and when the user enters date2 then he should not be allowed to enter date1.
    when user enters date1 and tries to enter date2 then a message should be displayed.
    pls urgent requirement and points are gauranteed.
    Regards,
    Ravi

    try this code
    slect-options : sdate1 for mkpf-budat,
                          sdate2 for mkpf-budat.
    parameters : rdate1 radiobutton group rb1 user-command date default 'X',
                       rdate1 radiobutton group rb1.
    at selection-screen output.
    if rdate1 = 'X'.
    loop at screen.
    if screen-name = sdate2-low or screen-name = sdate2-high.
    screen-input = '0'.
    modify screen.
    elseif rdate2 = 'X'.
    loop at screen.
    if screen-name = sdate1-low or screen-name = sdate1-high.
    screen-input = '0'.
    modify screen.
    endif.
    at selection-screen.
    if rdate1 = 'X'.
    clear sdate2[].
    elseif rdate2 = 'X'.
    clear sdate1[].
    endif.
    START-OF-SELECTION.
    regards
    shiba dutta

  • Regarding button in selection screen

    Hi all,
    A query...
    After clicking the button on the screen, when i press the execute button it should give a display saying the corresponding button i clicked....
    But its not working out frnds...
    tables sscrfields.
    data flag.
    parameters test.
    selection-screen pushbutton /20(10) but1 user-command cli1.
    selection-screen pushbutton /20(10) text-020 user-command cli2.
    initialization.
    but1 = 'Button 1'.
    At selection-screen.
    if sscrfields-ucomm = 'cli1'.
    flag = '1'.
    elseif sscrfields-ucomm = 'cli2'.
    flag = '2'.
    endif.
    start-of-selection.
    if flag = '1'.
    write :/'Button 1 was clicked'.
    elseif flag = '2'.
    write :/'Button 2 was clicked'.
    endif.
    Thanking u all.
    regards,
    suraj

    Hi,
    <b>CHECK THIS CODE now it's working</b>
    data flag.
    selection-screen pushbutton /20(10) but1 user-command CLI1.
    selection-screen pushbutton /20(10) but2 user-command CLI2.
    initialization.
    but1 = 'Button 1'.
    but2 = 'Button 2'.
    At selection-screen.
    <b>if sy-ucomm = 'CLI1'.</b>
    flag = '1'.
    <b>elseif sy-ucomm = 'CLI2'.</b>
    flag = '2'.
    endif.
    start-of-selection.
    if flag = '1'.
    write :/'Button 1 was clicked'.
    elseif flag = '2'.
    write :/'Button 2 was clicked'.
    endif.
    Regards,
    Priyanka.

  • Regarding Tablename in Selection-screen

    HI all,
       my requirement is,, If i will give Table name in the selection-screen then the output is to display all the fields in table...
    for example if i will give MARA.... THE Output has to display all the fields of mara and their description..
    can any one give some idea pls...and if poss give some eg coding also....

    Hi,
    Check these function modules
    BKK_DB_GET_TABLE_FIELDS
    RM_TABLE_FIELDS_GET
    or check these tables
    DD03L                          Table Fields
    DD03T                          DD: Texts for fields (language dependent)
    Regards,
    Jyothi CH.

  • Regarding Infoset (At Selection-Screen) - Urgent

    Hi All,
    In Infoset 'Selections' tab, i have defined a selection parameter 'country', i want the user to have options to input only 5 country codes. The country code i am reading from LFA1-LAND1 as this relates to Vendor.
    I would like to know, what code should i enter in 'At Selection-Screen' to ensure that, when the user press F4 they only see these 5 country code + the description?
    Hope my problem is clear, await inputs.
    Vivek

    Hi Vivek,
    Here i am trying to give you the code again. Please try this code in your program.
    SELECT-OPTIONS: land1  FOR lfa1_land1.
    DATA: BEGIN OF IT_LAND OCCURS 0,
              LAND1  LIKE LFA1_LAND1,
              LTEXT(15)  TYPE C,
              END OF IT_LAND.
    IT_LAND-LAND1 = 'IN'.
    IT_LAND-LTEXT = 'INDIA'.
    APPEND IT_LAND1.
    IT_LAND-LAND1 = 'DE'.
    IT_LAND-LTEXT = 'GERMANY'.
    APPEND IT_LAND1.
    IT_LAND-LAND1 = 'AF'.
    IT_LAND-LTEXT = 'AFGHANISTAN'.
    APPEND IT_LAND1.
    IT_LAND-LAND1 = 'AT'.
    IT_LAND-LTEXT = 'Austria'.
    APPEND IT_LAND1.
    IT_LAND-LAND1 = 'AD'.
    IT_LAND-LTEXT = 'Andorra'.
    APPEND IT_LAND1.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR LAND1-LOW.
    CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
        EXPORTING
          RETFIELD   = 'LAND1'
          VALUE_ORG  = 'S'
        TABLES
          VALUE_TAB  = IT_LAND
          RETURN_TAB = IT_RETURN.
      IF SY-SUBRC = 0.
        READ TABLE IT_RETURN INDEX 1.
        MOVE IT_RETURN-FIELDVAL TO LAND1-LOW.
      ENDIF.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR LAND1-HIGH.
      CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
        EXPORTING
          RETFIELD   = 'LAND1'
          VALUE_ORG  = 'S'
        TABLES
          VALUE_TAB  = IT_LAND
          RETURN_TAB = IT_RETURN.
      IF SY-SUBRC = 0.
        READ TABLE IT_RETURN INDEX 1.
        MOVE IT_RETURN-FIELDVAL TO LAND1-HIGH.
      ENDIF.

  • Regarding reports and selection screens

    Hi,
    I have to call one report program from anthoer report program . But the ohter report
    program has a selection with radio buttons and check boxes and parameters.
    we have to fill that selection screen from this program with the data
    and we have to skip that screen.
      How we have to do this ?

    Hi
    I believe you need to skip the selection screen of the report you call... please chk out the code below for the same
    *-- Company Code
      IF NOT us_bukrs[] IS INITIAL.
        LOOP AT us_bukrs INTO ls_bukrs.
          ls_rspar_line-selname = 'S_BUKRS'.
          ls_rspar_line-kind    = 'S'.
          ls_rspar_line-sign    = ls_bukrs-sign.
          ls_rspar_line-option  = ls_bukrs-option.
          ls_rspar_line-low     = ls_bukrs-low.
          IF NOT ls_bukrs-high IS INITIAL.
            ls_rspar_line-high     = ls_bukrs-high.
          ENDIF.
          APPEND ls_rspar_line TO lt_rspar_tab.
          CLEAR: ls_rspar_line,
                 ls_bukrs.
        ENDLOOP.            " us_bukrs
      ENDIF.                " us_bukrs
    *-- Business Entity of SU
      IF NOT us_swenr[] IS INITIAL.
        LOOP AT us_swenr INTO ls_swenr.
          ls_rspar_line-selname = 'S_SWENR'.
          ls_rspar_line-kind    = 'S'.
          ls_rspar_line-sign    = ls_swenr-sign.
          ls_rspar_line-option  = ls_swenr-option.
          ls_rspar_line-low     = ls_swenr-low.
          IF NOT ls_swenr-high IS INITIAL.
            ls_rspar_line-high     = ls_swenr-high.
          ENDIF.
          APPEND ls_rspar_line TO lt_rspar_tab.
          CLEAR: ls_rspar_line,
                 ls_swenr.
        ENDLOOP.            " us_swenr
      ENDIF.                " us_swenr
    *-- Get the Total costs from the report zrfreexposting_cc
      SUBMIT zreexposting_cc
             USING SELECTION-SCREEN '1000'
             WITH SELECTION-TABLE lt_rspar_tab
             WITH p_begin EQ uv_fdate
             WITH p_end EQ uv_tdate
             AND RETURN.
    Santosh

  • Regarding At selection-screen on Radiobutton    output....

    Hi...
    This is the code I used, to check AT SELECTION-SCREEN ON RADIOBUTTON.
    But, after displaying the error message,
    all fields are becoming inactive in selection screen.
    CODE:
    TYPES : BEGIN OF st_employee,
                  cid TYPE zintelli_emp-cid,              
                 cname TYPE zintelli_emp-cname,         
             l   ocation TYPE zintelli_emp-location,           
                phno TYPE zintelli_emp-phno ,          
                gender TYPE zintelli_emp-gender,       
            END OF st_employee.
    DATA :  it_employee TYPE STANDARD TABLE OF      st_employee,
            wa_employee TYPE st_employee,
            v_cid TYPE  zintelli_emp-cid.
    SELECTION-SCREEN BEGIN OF SCREEN 500 TITLE title.
    PARAMETERS : p_cid TYPE st_employee-cid obligatory.
    PARAMETERS : p_cname TYPE st_employee-cname,       
                 p_culoc TYPE st_employeelocation,    
                 p_phno TYPE st_employee-phno. 
    SELECTION-SCREEN SKIP 2.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT 1(6) rc1.
    PARAMETERS : rb_1 RADIOBUTTON GROUP b .
    SELECTION-SCREEN COMMENT 15(7) rc2.
    PARAMETERS :  rb_2 RADIOBUTTON GROUP b.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN SKIP 2.
    SELECTION-SCREEN PUSHBUTTON /35(10) pb1 USER-COMMAND pb1.
    SELECTION-SCREEN SKIP 5.
    SELECTION-SCREEN END OF SCREEN 500.
    CALL SELECTION-SCREEN '500'.
    INITIALIZATION.
      title  = 'CUSTOMER INFORMATION'.
      pb1 = 'INSERT'.
      rc1 = 'MALE'.
      rc2 = 'FEMALE'.
    AT SELECTION-SCREEN ON RADIOBUTTON GROUP b.
      IF rb_1 EQ 'X'.
        p_cid = p_cid+0(1).
        IF p_cid NE 'M'.
          MESSAGE e020(z50871msg) WITH 'The id should start with "M" '.
         EXIT.
        ENDIF.
      ELSE.
        p_cid = p_cid+0(1).
        IF p_cid NE 'F'.
          MESSAGE e020(z50871msg) WITH 'The id should start with "F" '.
          EXIT.
        ENDIF.
        ENDIF.
    Regards
    sandeep.

    At selection-screen on FIELD
              Will give work like: If given input is wrong then it will give the Error message and all other fields will be diasable except the entered wrong on At selection-screen on FIELD.
    until you give the right input it won't go for next At Selection-screen On FILED.
    If you Don't want to disable other fields Use ONLY AT SELECTION-SCREEN.
    Regards,
    Umashankar

  • How to deal with dynamic selection screen elements when macros are used?

    Hello experts,
    This is regarding the dynamic selection screen elements. Actually the requirement is to modify the existing standard report program RFUMSV00 by copying it into a Z report, adding a few selection screen elements and new fields in the output. I actually did everything required except for the one thing that is going out of my reach.
    There are a certain fields which are coming when they are not supposed to get displayed. I don't understand the code because of its obsoleteness. Neither can I debug it because it is just data declaration.
    This is the code where there is a fault. If I copy the entire code into a new Z report, I'm getting new fields like Entry Date, Document Type, Reference Transaction,  Reference key, Logical system.
      DEFINE selection_screen_line.
      selection-screen: begin of line.
      parameters &3 like &4 default 'X' modif id mc4.
      selection-screen: comment (30) &1 for field &3 modif id mc4.
      selection-screen: comment pos_low(10) text-019
                        for field &2 modif id mc4.  "neu
      parameters &2 like rfums_alv-variante modif id mc4.
      selection-screen:
          position pos_high.
      selection-screen: pushbutton (15) text-028
                        user-command &5 modif id mc4.
      selection-screen end of line.
    END-OF-DEFINITION.
    Kindly, suggest me the right solution.

    In the program attributes ( SE38 > RFUMSV00 > GOTO > Properties ), you will find a logical database BRF declared. The include DBBRFSEL is part of the selection screen of this logical database.
    The selection screen is actually the selection screen of this logical database.
    Under the Logical Database field, there is a Selection screen field where you can input which selection screen of the logical database to be used.
    But, this is just to change the selection screen that is displayed. To completely suppress it you need to remove logical database declaration from the properties of the program and call it inside your program through function module.
    You cannot just remove it from the declaration because many of its variables are used in the program.
    So call it using function module as the first step in INITIALIZATION section of the program.
    The syntax and function module to call it in your program can be found in the following thread :
    How to hide the selection screen of a Logical datebase?
    Regards,
    Ashish

  • How to Print Selection-Screen along with ALV Report output

    Hi,
    I have a requirement wherein i need to also print the Selection Screen of a report when I print the ALV report output.
    Basically i need to print the ALV output along with selection screen.
    Could you plz suggest me the way.
    Regards,
    Nitin

    Hi,
    My selection Screen is a very big one. It contains around 30 select-options.
    So is their any standard method in which you can choose whether you want to take the output printout with or without Selection screen.
    Regards,
    Nitin

  • Help in selection screen

    Hallow every one I have a program that check if employee do course and employee don't.
    For that u have to choose course num ,the problem is that when the user choose course that not <b>valid</b> how can I bring error message for that tanks.
    This is my declaration
    SELECTION-SCREEN BEGIN OF BLOCK b2 WITH FRAME TITLE text-t02.
    SELECT-OPTIONS c_course FOR z_course_table-objid
    OBLIGATORY NO INTERVALS NO-EXTENSION.

    Hi  judith
    I try your suggestion and it still don’t working maybe u have idea why
    And when I try with this kind of messege(message e000 WITH 'Cousre ID not valid'.) I have this error
    A message ID has not been entered. You can specify this entry for thewhole program using the "MESSAGE-ID msgid" addition with the statment               
    I change the messege for new and I don’t have error but it not work
    and when i put break point its not going to this place .
    <b>regards</b>
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR c_course-low.
    *======================================================
      IF NOT c_course[] IS INITIAL.
        SELECT objid FROM hrp1001
                     INTO z_course_table-objid
                     WHERE objid IN c_course.
          IF sy-subrc NE 0.
            MESSAGE 'Pleas enter the value for course' TYPE 'E'.
          ENDIF.
      ENDSELECT.
    ENDIF.
    REFRESH: c_course.
    CLEAR:  c_course.
      PERFORM get_objid USING 'D'
                        CHANGING c_course-low.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR c_course-high.
    *======================================================
    IF c_course-high IS INITIAL.
       MESSAGE 'Pleas enter the value for course' TYPE 'E'.
    ENDIF.
      REFRESH: c_course.
      CLEAR:  c_course.
      PERFORM get_objid USING 'D'
                        CHANGING c_course-high.

  • RE:HR-ABAP selection screen problem.

    hi,
    hi friends iam facing one problem regarding hr ABAP  selection screen ,in my program iam using PNP LDB for bonus details report
    i have using selection screen declaration present  for single selection.
    SELECTION-SCREEN BEGIN OF BLOCK B3 WITH FRAME TITLE TEXT-006.        
    SELECT-OPTIONS: S_ABKRS FOR P0001-ABKRS NO INTERVALS NO-EXTENSION,
                    S_WERKS FOR P0001-WERKS NO INTERVALS NO-EXTENSION,
                    S_BTRTL FOR P0001-BTRTL NO INTERVALS NO-EXTENSION,
                    S_PERSG FOR P0001-PERSG NO INTERVALS NO-EXTENSION,
                    S_PERSK FOR P0001-PERSK NO INTERVALS NO-EXTENSION.   
    SELECTION-SCREEN END OF BLOCK B3.
    based on this selection iam fetching the information from infotypes using  macros.
    now my requirement is iam fetch the information for multiple  selections means like payroll areas z1,z2 and z3 payroll informations
    should be  fetching once.  pls any body knows solution please give me reply.
    thanks & regards,
    mgrao.

    You should be using a selection view (HR Report Category in the programs attributes) to filter results from the LDB.
    Why is this in the objects forum?

  • RE:pnp LDB selection screen problem

    hi,
    hi friends iam facing one problem regarding hr ABAP selection screen ,in my program iam using PNP LDB for bonus details report
    i have using selection screen declaration present for single selection.
    SELECTION-SCREEN BEGIN OF BLOCK B3 WITH FRAME TITLE TEXT-006.
    SELECT-OPTIONS: S_ABKRS FOR P0001-ABKRS NO INTERVALS NO-EXTENSION,
    S_WERKS FOR P0001-WERKS NO INTERVALS NO-EXTENSION,
    S_BTRTL FOR P0001-BTRTL NO INTERVALS NO-EXTENSION,
    S_PERSG FOR P0001-PERSG NO INTERVALS NO-EXTENSION,
    S_PERSK FOR P0001-PERSK NO INTERVALS NO-EXTENSION.
    SELECTION-SCREEN END OF BLOCK B3.
    based on this selection iam fetching the information from infotypes using macros.
    now my requirement is iam fetch the information for multiple selections means like payroll areas z1,z2 and z3 payroll informations
    should be fetching once. pls any body knows solution please give me reply.
    thanks & regards,
    mgrao.

    hi jain thanks for your reply, iam already created report category and assigned my report. here iam giving my report selection
    declerations fully   below.
          S E L E C T I O N       S C R E E N                           *
    SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001. " DECLEARED REPORT CODE LEVEL
    SELECT-OPTIONS: S_DATE   FOR SY-DATUM NO-EXTENSION.    "Bonus for Financial Year
    PARAMETERS:     P_BDATE  TYPE SY-DATUM OBLIGATORY,     "Bous payed as on
                    P_WKDAYS TYPE CHAR6.                                            "No.of Working Days     
    SELECTION-SCREEN END OF BLOCK B1.
    *SELECTION-SCREEN BEGIN OF BLOCK B3 WITH FRAME TITLE TEXT-006.    " COMMENTED report level TAKING FROM LDB PNP    
    *SELECT-OPTIONS: S_ABKRS FOR P0001-ABKRS NO INTERVALS NO-EXTENSION,     "  Payroll area
                   S_WERKS FOR P0001-WERKS NO INTERVALS NO-EXTENSION,                       Personnel area   
                   S_BTRTL FOR P0001-BTRTL NO INTERVALS NO-EXTENSION,                          Personnel  sub area        
                   S_PERSG FOR P0001-PERSG NO INTERVALS NO-EXTENSION,
                   S_PERSK FOR P0001-PERSK NO INTERVALS NO-EXTENSION.   
    *SELECTION-SCREEN END OF BLOCK B3.
    SELECTION-SCREEN BEGIN OF BLOCK B2 WITH FRAME TITLE TEXT-002. "REPORT CODE LEVEL SELECTION
    PARAMETERS: P_FORMCP TYPE PIN_RATE, " char6,    "Form C %    
                P_FORMEP TYPE PIN_RATE, " char6,                 "Exgratia %
                P_FORMBP TYPE PIN_RATE. " char6 .               "Bonus %   
    SELECTION-SCREEN END OF BLOCK B2.
    SELECTION-SCREEN BEGIN OF BLOCK B4 WITH FRAME TITLE TEXT-004.
    PARAMETERS: L_REPORT TYPE ZHRD_FORMC AS LISTBOX VISIBLE LENGTH 40 OBLIGATORY . Report for list box   1 form c
    SELECTION-SCREEN END OF BLOCK B4.                                                                                2 exgratia
    the above selection is iam used first, now iam commented BLOCK B3 SELECTION  PARAMETERS  and taking the parameters from REPORT CATEGORY  ASSINGN MENT.
    MY PROBLEM  is if i select one payroll area example z1 it showing all pay roll employees bonus details it is not filter the remaining payroll areas my requirement is what are the payrolls iam  selecting  those pay roll area details only displaying.
    data fetching from  INFOTYPES 0001,0002,0021 AND 9150 FOR BONUS DETAILS and out put is classical report format.
    please kindly give the reply if you knows the solution.
    thanks & regards ,
    mgr.

  • AT SELECTION SCREEN

    HI ALL
    am using the code below but am getting an "ERROR CALLED ON VALUE REQUEST FOR" should be followed by <parameter> or <select-option>-LOW / <select-option>-HIGH.please help and also please mention the changes if needed
    with regards
    vijay
    at selection-screen on value-request for p_hfile.
    file name get (F4)
      call function 'KD_GET_FILENAME_ON_F4'
        exporting
          static        = 'X'
        changing
          file_name     = p_hfile
        exceptions
          mask_too_long = 1
          others        = 2.
    start-of-selection.
      perform upload_data.
      sort it_file.
      perform open_group.
      loop at it_file.
        at new aznum.
          import febmka-vari_start
                 febmka-kont_int
                 febmka-debi_mid
                 febmka-kred_mid
                 febmka-wvar_art
                 novaluta_flag                "XVALUT
                 nofdis_flag
            from database rfdt(mk) id sy-uname.
          if febmka-kont_int = 'X'.
            v_srno = '0101'.
          else.
            v_srno = '0102'.
          endif.
          read table it_file index sy-tabix.
          perform bdc_dynpro      using 'SAPMF40K' v_srno.      "'0102'.
          perform bdc_field       using 'BDC_OKCODE'
                                        '/EVORG'.
          if v_srno = '0102'.
            perform bdc_field       using 'BDC_CURSOR'
                                          'FEBMKA-BANKL'.
          elseif v_srno = '0101'.
            perform bdc_field       using 'BDC_CURSOR'
                                          'FEBMKA-BUKRS'.
          endif.
          perform bdc_dynpro      using 'SAPMF40K' '0110'.
          perform bdc_field       using 'BDC_CURSOR'
                                        'FEBMKA-WVAR_ART'.
          perform bdc_field       using 'BDC_OKCODE'
                                        '=ENTE'.
          perform bdc_field       using 'FEBMKA-KONT_INT'
                                        'X'.
          perform bdc_field       using 'FEBMKA-FDIS_SEL'
                                        'X'.
          perform bdc_field       using 'FEBMKA-VARI_START'
                                        'ZSHV'.
          perform bdc_field       using 'FEBMKA-DEBI_MID'
                                        'D'.
          perform bdc_field       using 'FEBMKA-KRED_MID'
                                        'K'.
          perform bdc_field       using 'FEBMKA-WVAR_ART'
                                        '2'.
          perform bdc_field       using 'FEBMKA-BUCH_VAL'
                                        'X'.
          perform bdc_dynpro      using 'SAPMF40K' '0101'.
          perform bdc_field       using 'BDC_CURSOR'
                                        'FEBMKA-AZNUM'.
          perform bdc_field       using 'BDC_OKCODE'
                                        '/00'.
          perform bdc_field       using 'FEBMKA-BUKRS'
                                        it_file-bukrs.          "'0571'.
          perform bdc_field       using 'FEBMKA-HBKID'
                                        it_file-hbkid. "'HDFC'.
          perform bdc_field       using 'FEBMKA-HKTID'
                                        it_file-hktid.          "'HD01'.
          perform bdc_field       using 'FEBMKA-AZNUM'
                                        it_file-aznum.          "'11114'.
          perform bdc_field       using 'FEBMKA-AZDAT'
                                        it_file-azdat. "'31.07.2006'.
          perform bdc_field       using 'FEBMKA-SSALD'
                                        it_file-ssald. "'                 0'.
          perform bdc_field       using 'FEBMKA-ESALD'
                                        it_file-esald. "'              -200'.
          perform bdc_field       using 'FEBMKA-BUDTM'
                                        it_file-budtm. "'31.07.2006'.
          perform bdc_field       using 'FEBMKA-MNAM1'
                                        it_file-mnam1.          "'2222'.
          perform bdc_field       using 'FEBMKA-MNAM2'
                                        it_file-mnam2.          "'2111'.
          perform bdc_field       using 'FEBMKA-JNAME'
                                        sy-uname.  "'RAJUK'.
        endat.

    Hi.
    You missed the definition of the parameter.
    So insert the following line before all others.
    PARAMETER: p_hfile TYPE RLGRAP-FILENAME.
    Regards,
    Timo

  • DYNAMIC SELECTION SCREEN uisng FREE_SELECTIONS_INIT

    Hi,
    I am facing a problem regarding the dynamic selection screen using FREE_SELECTIONS_INIT and FREE_SELECTIONS_DIALOG .After entering the values in Dynamic Selections on pressing Enter, the values are  getting distorted.For example if i gave the purchase order no as 0099994434 it is getting truncated to four digits no like 0099.
    Its a bit urgent .Can any body help me out in resolving this isuue.

    Hi,
    You may refer this http://help.sap.com/saphelp_47x200/helpdata/en/9f/db996135c111d1829f0000e829fbfe/frameset.htm
    Raja T
    Message was edited by:
            Raja T

Maybe you are looking for

  • Oracle Install Base Interface Error

    Error: The source item instance 33604, in Subinventory 4131, for Organization 734 in Oracle Install Base does not exist. Please verify that any receipt transations were successful. I have checked values by running the following SQL: select Instance_I

  • Current date & time in text field

    I need to auto-fill a text field with four letters plus the current date and current time. The text field should populate when the user clicks a checkbox. For example, if today is April 25, 2012 and the current time is 10:27 a.m., the text field shou

  • Results analysis reports (KKA2)

    Gurus New to this space.. Is there a place where can get the output of KKA2 in a text format? (Either a program that can output to file or a standard report) Thanks, tzone.

  • Difference between Oracle Application Express and Oracle Forms/Reports

    hi guys, i have just use oracle apex to create some report generation tools through the web. know that this is what is known as html db in the past. however, i have not really touch oracle forms and reports before, neither have i really seen how they

  • Can the Calendar please be made to work

    Is it beyond Apple's ken to make a competent Calendar application? Is it not possible for the OS and the iPhone to understand and use floating time zones? I enter an appointment on the iPhone 2:30pm Eastern. I sync. I open Calendar on the Mac. In mon