Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Installation - The system expected a key specification in the form "KEY k1 ... kn", "TABLE LINE", or "DEFAULT KEY" . . . . . . . . . #34

Open
fabiopagoti opened this issue May 6, 2014 · 1 comment

Comments

@fabiopagoti
Copy link
Owner

See #29

Where? ZCL_WB_SEARCHER

Check declaration of internal tables in recent releases

@fabiopagoti fabiopagoti added this to the Sprint Backlog milestone May 6, 2014
@fabiopagoti fabiopagoti self-assigned this May 6, 2014
@fabiopagoti
Copy link
Owner Author

Fixed for

TYPES: BEGIN OF TY_PACKAGE,
            devclass type tdevc-devclass,
  •        text    TYPE tdevct-ctext,
        end of ty_package.
    

    TYPES: tt_packages TYPE STANDARD TABLE OF ty_package.

    TYPES: BEGIN OF ty_program,
    progname type reposrc-progname,

  •        text      TYPE trdirt-text,
        end of ty_program.
    

    TYPES: tt_programs TYPE STANDARD TABLE OF ty_program.

    TYPES: BEGIN OF ty_class,
    clsname type seoclass-clsname,
    *** text TYPE seoclasstx-descript,
    end of ty_class.
    TYPES: tt_classes TYPE STANDARD TABLE OF ty_class.

    TYPES: BEGIN OF ty_interface,
    intname type seoclass-clsname,
    *** text TYPE seoclasstx-descript,
    end of ty_interface.
    TYPES: tt_interfaces TYPE STANDARD TABLE OF ty_interface.

    TYPES: BEGIN OF ty_local_class_interface,
    progname type reposrc-progname,
    ** text TYPE trdirt-text,
    end of ty_local_class_interface.
    TYPES: tt_local_class_interface TYPE STANDARD TABLE OF TY_LOCAL_CLASS_INTERFACE.

    TYPES: BEGIN OF ty_domain,
    domname type dd01l-domname,

  •    text    TYPE dd01t-ddtext,
    

    end of ty_domain.
    TYPES: tt_domains TYPE STANDARD TABLE OF TY_DOMAIN.

    TYPES: BEGIN OF ty_data_element,
    dtel_name type dd04l-rollname,

  •    text    TYPE dd04v-ddtext,
        end of ty_data_element.
    

    TYPES: tt_data_elements TYPE STANDARD TABLE OF TY_DATA_ELEMENT.

    TYPES: BEGIN OF ty_dd02l,
    name type dd02l-tabname,

  •    text    TYPE dd04v-ddtext,
        end of ty_dd02l.
    

    TYPES: tt_dd02l TYPE STANDARD TABLE OF ty_dd02l .

    TYPES: BEGIN OF ty_table_type,
    typename type dd40l-typename,

  •    text    TYPE dd40t-ddtext,
        end of ty_table_type.
    

    TYPES: tt_table_types TYPE STANDARD TABLE OF ty_table_type.

    DATA t_packages TYPE tt_packages READ-ONLY .
    DATA t_programs TYPE tt_programs READ-ONLY .
    DATA t_classes TYPE tt_classes READ-ONLY .
    DATA t_interfaces TYPE tt_interfaces READ-ONLY .
    DATA t_local_classes_interfaces TYPE tt_local_class_interface READ-ONLY .
    DATA t_domains TYPE tt_domains READ-ONLY .
    DATA t_data_elements TYPE tt_data_elements READ-ONLY .
    DATA t_structures TYPE tt_dd02l READ-ONLY .
    DATA t_structures_append TYPE tt_dd02l READ-ONLY .
    DATA t_table_types TYPE tt_table_types READ-ONLY .
    DATA t_tables TYPE tt_dd02l READ-ONLY .
    DATA t_tables_cluster TYPE tt_dd02l READ-ONLY .
    DATA t_tables_pooled TYPE tt_dd02l READ-ONLY .
    DATA t_views TYPE tt_dd02l READ-ONLY .

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant