Quantcast
Channel: SCN : All Content - ABAP Development
Viewing all articles
Browse latest Browse all 8332

Doubt Abou ABAP Command

$
0
0

Hi Gurus

I have the code:

 

"*&--------------------------------------------------------------------*

"*&  Include           LZBRHR_HIST_CLS_IMPEXPY01                       *

"*&--------------------------------------------------------------------*

  report dummy.

  tables: ZBRHR_HIST_CL_T.

  form import_result using key type ZBRHR_HIST_PERNR_DE

                           result type ZBRHR_HIST_STR_CLUSTER_ST

                           imp_subrc

                           vers_num.

 

   data: save_imp_subrc like sy-subrc.

 

   catch system-exceptions import_mismatch_errors = 1.

 

    import

VERSION TO RESULT-VERSION

FICHA_FINANCEIRA TO RESULT-FICHA_FINANCEIRA

DADOS_FUNCIONARIO TO RESULT-DADOS_FUNCIONARIO

HIST_ALT_SALARIO TO RESULT-HIST_ALT_SALARIO

HIST_SINDICAL TO RESULT-HIST_SINDICAL

HIST_FERIAS TO RESULT-HIST_FERIAS

HIST_ANOT_GERAL TO RESULT-HIST_ANOT_GERAL

HIST_ALT_CARGO TO RESULT-HIST_ALT_CARGO

HIST_INF_RENDIMENTOS TO RESULT-HIST_INF_RENDIMENTOS

HIST_FOLHAS TO RESULT-HIST_FOLHAS

HIST_EVENTOS TO RESULT-HIST_EVENTOS

HIST_CAB_HOLERITE TO RESULT-HIST_CAB_HOLERITE

HIST_CAB_CTPS TO RESULT-HIST_CAB_CTPS

**IMPORT_REQUESTED_OBJECTS

    from database ZBRHR_HIST_CL_T(BR) id key

    IGNORING STRUCTURE BOUNDARIES.

 

    save_imp_subrc = sy-subrc.

   endcatch.

 

   if sy-subrc = 1.

     imp_subrc = sy-subrc.

   else.

     imp_subrc = save_imp_subrc.        "0 - import OK ; 4 - failure

   endif.

 

   vers_num = ZBRHR_HIST_CL_T-versn.

 

  endform.

 

 

I understand that this command is seeking Import data ZBRHR_HIST_CL_T

and moving each structure

 

I was wondering why when I open the table in SE11 not appear these structures code

 

se11_hr.png

 

How can I see in the SE16 HIST_FOLHAS for example?

 

Thanks for help.


Viewing all articles
Browse latest Browse all 8332

Trending Articles