Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Help on Recording in SHDB using NACE Tcode

Former Member
0 Likes
487

Hi friends,

i am trying to create BDC for NACE tcode.

NACE Tcode -> Application ME>selct Secondition records>select Output type

in SHDB when i am trying to select output type scrollbar needs to be scrolled 5 times and selece the Output type.

scrooling part is not recording in SHDB(there is page down button in the screen)

Please help me how can hnadle this situatuion.

Thanks

1 ACCEPTED SOLUTION
Read only

venkat_o
Active Contributor
0 Likes
396

Hi Ramesh, Here the procedure how to check perticular Application type on the table control in the nace transaction code first screen. Check the following one.

DATA:field(132) TYPE c,
         sy_tabix   TYPE char2.
    DATA:i_t681z    TYPE TABLE OF t681z,
         w_t681z    LIKE LINE OF i_t681z.
    SELECT *
      FROM t681z
     INTO TABLE i_t681z
     WHERE kvewe  = 'B'.
    IF sy-subrc = 0.
      READ TABLE i_t681z INTO w_t681z WITH KEY kappl = p_appl."Application type on the table control.
      IF sy-subrc = 0.
        sy_tabix  = sy-tabix.
        CONCATENATE 'VIM_MARKED' '(' sy_tabix ')' INTO field.
      ENDIF.
    ENDIF.

    PERFORM bdc_dynpro      USING 'SAPLWMCW' '0100'.
    PERFORM bdc_field       USING 'BDC_OKCODE'
                                  '=NACU'.
    PERFORM bdc_field       USING field            "'VIM_MARKED(15)'
                                  'X'.
I hope that helps u . Regards, Venkat.O

3 REPLIES 3
Read only

Former Member
0 Likes
396

Hi Ramesh,

DO not use Scrolling, Instead use Page Down.

Regards,

Atish

Read only

0 Likes
396

Hi Atish thanks for your reply.

in this out put type screen if i press page down the screen is not going own.

Thanks

Read only

venkat_o
Active Contributor
0 Likes
397

Hi Ramesh, Here the procedure how to check perticular Application type on the table control in the nace transaction code first screen. Check the following one.

DATA:field(132) TYPE c,
         sy_tabix   TYPE char2.
    DATA:i_t681z    TYPE TABLE OF t681z,
         w_t681z    LIKE LINE OF i_t681z.
    SELECT *
      FROM t681z
     INTO TABLE i_t681z
     WHERE kvewe  = 'B'.
    IF sy-subrc = 0.
      READ TABLE i_t681z INTO w_t681z WITH KEY kappl = p_appl."Application type on the table control.
      IF sy-subrc = 0.
        sy_tabix  = sy-tabix.
        CONCATENATE 'VIM_MARKED' '(' sy_tabix ')' INTO field.
      ENDIF.
    ENDIF.

    PERFORM bdc_dynpro      USING 'SAPLWMCW' '0100'.
    PERFORM bdc_field       USING 'BDC_OKCODE'
                                  '=NACU'.
    PERFORM bdc_field       USING field            "'VIM_MARKED(15)'
                                  'X'.
I hope that helps u . Regards, Venkat.O