Video není dostupné.
Omlouváme se.

11 - ABAP Programming - Classical Reports - Multiple Database Tables(FOR ALL ENTRIES IN) Part4

Sdílet
Vložit
  • čas přidán 18. 05. 2023
  • -Declaring a Final Internal Table of 6 Columns.
    -Moving the data of Header Internal table and Item Internal table in to Final Internal Table Using APPEND.
    -Displaying the Data From Final Internal Table.

Komentáře • 31

  • @renukaghosh510
    @renukaghosh510 Před rokem +2

    Sir.. you don't know what you are!!... you are really 'MESSENGER OF GOD ' for those who new to SAP ..SIR a request to you please start 'FIELD SYMBOL '... Thank you SIR

    • @sapabapbyrahulmehta
      @sapabapbyrahulmehta  Před rokem +1

      Thank you very much for your kind Feedback. Sure Field-Symbols , I will cover as a part of ABAP Programming in the upcoming days.

  • @bablu6945
    @bablu6945 Před rokem +1

    Sir, you cleared my concept of loop and read execution logic... Thanks a lot..

  • @charan3059
    @charan3059 Před 5 měsíci +1

    Why you are looping lt_data? There is only one matching record right. Can we go with read statement for this.

    • @sapabapbyrahulmehta
      @sapabapbyrahulmehta  Před 5 měsíci

      Hello Charan - The input to the program is using select-options, so we can pass multiple inputs - means multiple order numbers, so we need to go for loop only.

  • @saisshekar4167
    @saisshekar4167 Před 2 měsíci +1

    Sir , Could you please explain us this concept by using 4 tables .So it will be more understandable.
    You are way of teaching is excellent.

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

      Hello Sai - Please refer the playlist of Project Case Studies. There I explained with 3 tables - VBAK, VBAP and MAKT.
      czcams.com/play/PLM3lhmHjSeIRh0kwuQXWx4IO2vuogr9Ng.html&si=BgZv45VJrRy9BG6b

  • @user-tn5pg8xm8i
    @user-tn5pg8xm8i Před 4 měsíci +1

    Can I give loop statement to item table I’ll give read statement header table what should happen is it correct or not ….can we do like this…

    • @sapabapbyrahulmehta
      @sapabapbyrahulmehta  Před 4 měsíci

      It will result in to data loss. if the entry is in header table, but not in item table. Suppose there is a order number 10 in header table but not in item table. When we loop on item, it will not appear in the output.

  • @shrutichakraborty2919
    @shrutichakraborty2919 Před měsícem

    Can we use 'loop' for item table and 'read table' for header table?

    • @sapabapbyrahulmehta
      @sapabapbyrahulmehta  Před měsícem

      Once you proceed, I explained that part as well. You will automatically get the answer.

  • @itsPranjalMalviya
    @itsPranjalMalviya Před 8 měsíci +1

    Hi Rahul if i have 4 tables , then should i use 4 loops if i have more than 1 matching record?

    • @sapabapbyrahulmehta
      @sapabapbyrahulmehta  Před 8 měsíci

      Yes - For One Matching Record in the Dependent table - READ Table , More than one matching record - LOOP.

  • @user-ey3bj7hj9b
    @user-ey3bj7hj9b Před 2 měsíci

    Sir if we not use for all entries then also it will fetch the records then y we are using for all entries.

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

      Please send your code of without using FOR ALL ENTRIES IN. I will explain based upon the code, so you will be able to understand in an effective manner.

  • @bhushangayake2840
    @bhushangayake2840 Před 9 měsíci

    Hello sir, if I've four tables and I am using the for all entries then in that case do I use 4 loops or is it okay if I use one loop and three read statements inside the loop?

    • @sapabapbyrahulmehta
      @sapabapbyrahulmehta  Před 9 měsíci

      Hello Bhushan, It is totally depends upon the data of the table. If you are sure that you have exactly one matching record for the condition which you are passing, then you can go for read table, else you need to opt loop.

    • @bhushangayake2840
      @bhushangayake2840 Před 9 měsíci

      @@sapabapbyrahulmehta OK thanks sir

  • @rupeshrupi9331
    @rupeshrupi9331 Před 7 měsíci +1

    sir shall we do same process using subroutines?

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

      Hello Rupesh - The Subroutine is a modularization technique, It is totally your wish you want to use function module or Subroutines.

    • @rupeshrupi9331
      @rupeshrupi9331 Před 7 měsíci +1

      sir but how can we write the same program using subroutine I tired a lot, but iam getting only header table data

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

      @@rupeshrupi9331 Please refer the video no -29 to 35 in the Modularization Techniques playlist, I explained the same example.
      czcams.com/play/PLM3lhmHjSeISM5OwWjUxLdjNWPqqOVivz.html&si=sCBpI9Yu0KOb7Moy

  • @InsaneGamer-lq6wc
    @InsaneGamer-lq6wc Před měsícem

    Hi Sir can we get you coaching on real time experience

    • @sapabapbyrahulmehta
      @sapabapbyrahulmehta  Před měsícem

      The question is not clear to me as in maximum videos I explained the real project work itself.

    • @InsaneGamer-lq6wc
      @InsaneGamer-lq6wc Před měsícem +1

      @@sapabapbyrahulmehta I have gone through your videos I already have knowledge on basic ABAP I want to learn more can I get coaching from you

    • @sapabapbyrahulmehta
      @sapabapbyrahulmehta  Před měsícem

      @@InsaneGamer-lq6wc Thank you for connecting, but I don't provide trainings.

    • @InsaneGamer-lq6wc
      @InsaneGamer-lq6wc Před měsícem

      @@sapabapbyrahulmehta thank you sir can I get your number I need some inputs and guidance from you.

  • @user-ey3bj7hj9b
    @user-ey3bj7hj9b Před 2 měsíci

    Sir if we not use for all entries then also it will fetch the records then y we are using for all entries.