Video není dostupné.
Omlouváme se.

ALV IDA ( ALV on SAP HANA )

Sdílet
Vložit
  • čas přidán 24. 11. 2022
  • Playlist
    SAP ABAP on HANA course :-
    • SAP ABAP on HANA Intro...
    ABAP SAP ABAP 7.4 / 7.5 New Syntax :-
    • Inline declaration in ...
    Enhancement in ABAP :-
    • SAP Enhancement Framew...
    CDS in ABAP on HANA :-
    • SAP CDS Introduction -...

Komentáře • 20

  • @SwatiKumari-me5ic
    @SwatiKumari-me5ic Před rokem +1

    However, the ALV IDA comes with its own set of restrictions -
    Handling of data that is changed during display is not supported. Data records that are removed during the display are automatically filled by empty lines.
    The Data Display is restricted to a maximum of 2 billion cells.
    All available operations are then executed on the entire data set
    Aggregation of amount fields with currencies or quantities can be displayed when same currency or unit
    Table fields of type STRING should not be used.
    The ready for input status for cells is not supported in IDA ALV.
    IDA-ALV programs cannot be scheduled as background jobs.

    • @SAPTECHNOMANIAC
      @SAPTECHNOMANIAC  Před rokem

      Thank you Swati for the information. I will include in part 2 video along with other topics

  • @ssga7081
    @ssga7081 Před 2 měsíci

    What happens to ALV reports when converted to ABAP cloud / clean core? Will it need more steps now? Create RAP for odata backend then do additional BAS work for frontend?

    • @SAPTECHNOMANIAC
      @SAPTECHNOMANIAC  Před 2 měsíci

      Yes we have to create RAP service and Create application in BAS using same RAP and give it to user instead of ALV. Since there will be no GUI on Public cloud and BTP .

  • @mual77
    @mual77 Před rokem

    Nice into to IDA.
    Thank you so much

  • @Anirban242
    @Anirban242 Před 11 měsíci

    How to use double click event on cds view using alv ida and not on only a table or simple view ?

    • @SAPTECHNOMANIAC
      @SAPTECHNOMANIAC  Před 7 měsíci

      Use cl_salv_gui_table_ida=>create_for_cds_view for CDS views.
      Enable double-click with lo_display_options->enable_double_click.
      Create an event handler class for custom logic.
      Access row data using e_row_data->get_row_data.
      Consider error handling and user interface feedback for a robust solution.

  • @AtchuthaRaoNaiduDarapu

    Hi bro Thanks to your videos i have learnt so many concepts from them.
    bro can you please explain o data services and oo abap concepts also it will be more helpful

  • @MUNESHKUMAR-ju2kg
    @MUNESHKUMAR-ju2kg Před rokem

    pls make vedio on VDM. No one covers this topic in detail

  • @shubhvaish2779
    @shubhvaish2779 Před rokem

    why the column name declared explicitly is not getting displayed in alv ida

    • @nikhilraut7560
      @nikhilraut7560 Před rokem +1

      I seems like you need to provide a label for that column using EndUserText annotation

    • @SAPTECHNOMANIAC
      @SAPTECHNOMANIAC  Před rokem

      @@nikhilraut7560 @shubhvaish2779 Yes we have to pass end user text label :-
      @EndUserText.label: 'Num lit'
      0.23 as num_lit,

  • @tejkumar7043
    @tejkumar7043 Před rokem

    Hi,
    am getting INVALID_PRINT_OR_ARCHIVE_PARAM runtime error while calling create->fullscreen( )->display( ).
    am passing VBAK table to IDA class.
    can you please let me know if anything wrong in below
    TRY.
    cl_salv_gui_table_ida=>create(
    EXPORTING
    iv_table_name = 'VBAK'
    * io_gui_container =
    * io_calc_field_handler =
    * RECEIVING
    * ro_alv_gui_table_ida =
    )->fullscreen( )->display( ).
    CATCH cx_salv_db_connection.
    ENDTRY.

  • @nagulameera427
    @nagulameera427 Před rokem

    is it possible to editable ALV IDA ?

    • @SAPTECHNOMANIAC
      @SAPTECHNOMANIAC  Před rokem

      ALV IDA only for analyzing huge data. We don't have editable option there ....

    • @nagulameera427
      @nagulameera427 Před rokem

      @@SAPTECHNOMANIAC Ok , thanks for your reply..