6 - ALV - ALV Grid by REUSE_ALV_GRID_DISPLAY Part1

Поділитися
Вставка
  • Опубліковано 31 січ 2025

КОМЕНТАРІ • 24

  • @FunFlicksJoy
    @FunFlicksJoy 7 місяців тому +1

    Hey Sir,
    Just wanted to say thanks for the clear explanation. Your teaching is top-notch! 🙏

  • @UshaSaini-r7v
    @UshaSaini-r7v 6 місяців тому +1

    Hello sir,, your way of teaching, explanation is just amazing...thanku so much for all videos..

  • @madhusudanraogandi89
    @madhusudanraogandi89 Місяць тому

    This session has a valuable information.
    Thanks Rahul sir

  • @dharma_reddy
    @dharma_reddy Рік тому +1

    Hi Rahul sir. Thanks for spreading the knowledge of yours.
    I tried implementing this and I was able to obtain the same ALV output by passing the structure name which we have created in the i_structure_name. So we can avoid calling a pattern for generating field catalog

  • @AhamedKabeer-wn1jb
    @AhamedKabeer-wn1jb Рік тому +1

    Thank you Sir..well explained..

  • @FoodMania907
    @FoodMania907 Рік тому +2

    Why you donot use Read Table to read the IT table , you inly used loop statement, without read statement also program executed properly.

    • @sapabapbyrahulmehta
      @sapabapbyrahulmehta  Рік тому

      Hello - If We have 1: N Relationship between the tables, So If we go for Read Table, It will be in Data Loss, as Read Table reads the first matching Record, but We have multiple matching records in the dependent table. So In current scenario, We need to opt nested loops and we will improve the performance through Parallel cursor.

  • @kalyanbandaru7052
    @kalyanbandaru7052 11 місяців тому +1

    Hello Rahul sir,
    Suppose in output of the alv report i want to add a column in 1st position which stores record number ex : 1,2,3,....
    Could you please tell me can we able to do that

    • @sapabapbyrahulmehta
      @sapabapbyrahulmehta  11 місяців тому

      Yes You can. You can take a extra column in the fieldcatalog internal table and data internal table. You can take a counter and assign the value of the counter to the respective column of the data internal table and increment that counter. This needs to be done in the loop.

  • @rr-rf5yk
    @rr-rf5yk 4 місяці тому +1

    sir , error comes like "Field symbol has not been assingned yet" when i try to run alv list display

    • @sapabapbyrahulmehta
      @sapabapbyrahulmehta  4 місяці тому

      Check for the below mentioned points.
      1) The sequence of columns in the fieldcatalog internal table is not matching with the sequence of columns in data internal table.
      2) While preparing the fieldcatalog( if it is manual method) , the field names are in small. Please pass in capital.

  • @canomercik
    @canomercik 6 місяців тому

    Sir, can we use avl grid in a subscreen etc. I want to make a program which has adding record up top and below i want to show an avl grid. Is that possible to do? Beacuse im having a hard time trying to make it.
    Thank you.

  • @rakshandamadan4472
    @rakshandamadan4472 4 місяці тому +1

    Im getting error while executing " Field catalog not found"

    • @sapabapbyrahulmehta
      @sapabapbyrahulmehta  4 місяці тому

      Check for the below mentioned points.
      1) Either the structure which is passed to REUSE_ALV_FIELDCATALAOG_MERGE is not active. Activate the structure.
      2) The structure which is passed to REUSE_ALV_FIELDCATALAOG_MERGE must be a global structure( created through SE11), it need not to be local structure.

  • @AteebRaza-ds3uy
    @AteebRaza-ds3uy Місяць тому +1

    Sir Why we don't use join here ?

  • @te_70_sejalrana87
    @te_70_sejalrana87 8 місяців тому +1

    hi, how to solve "no_fieldcatalogue_error" ?

    • @sapabapbyrahulmehta
      @sapabapbyrahulmehta  8 місяців тому

      Please check for the below mentioned points -1) The Structure which you are passing to REUSE_ALV_FIELDCATALOG_MERGE must be a global structure( created through SE11).
      2) The Structure is not active.
      3) You are passing the wrong name of the structure - means it might be the case you are passing the blank spaces.

  • @madhurinemani6106
    @madhurinemani6106 5 місяців тому

    How to freeze columns in output of a ALV report.

    • @sapabapbyrahulmehta
      @sapabapbyrahulmehta  5 місяців тому

      You can use the property - fix_column = 'X' or KEY = 'X' to freeze the specific column in the ALV output.