‎2008 Apr 16 12:43 AM
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
‎2008 Apr 16 4:39 AM
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.
I hope that helps u .
Regards,
Venkat.O
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'.
‎2008 Apr 16 1:46 AM
Hi Ramesh,
DO not use Scrolling, Instead use Page Down.
Regards,
Atish
‎2008 Apr 16 2:35 AM
Hi Atish thanks for your reply.
in this out put type screen if i press page down the screen is not going own.
Thanks
‎2008 Apr 16 4:39 AM
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.
I hope that helps u .
Regards,
Venkat.O
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'.