35 - ABAP Dictionary - Search Help - Import, Export and Assigning Search Help

Поделиться
HTML-код
  • Опубликовано: 14 дек 2024

Комментарии • 30

  • @chethanCBchethanCB
    @chethanCBchethanCB 2 месяца назад +2

    Excellent sir really helps a lot .....Thank you so much , the way you explained is awesome

  • @gchauran1
    @gchauran1 2 месяца назад +2

    Excellent videos, I have learned a lot

  • @Rajasekharabap
    @Rajasekharabap 5 месяцев назад +2

    Excellent sir zhank u now i undestand exactly what happen in search help

  • @sivakrishnaoruganti2298
    @sivakrishnaoruganti2298 Месяц назад

    Very useful video sir, in this video i learn how to assign search help to input field in reports. Thank you so much sir

  • @JoySarkar-h5p1v
    @JoySarkar-h5p1v 23 дня назад +1

    In the input field or screen field only four coumn is showning.Why Billing Mode is not visible in the input field?

    • @sapabapbyrahulmehta
      @sapabapbyrahulmehta  23 дня назад

      Please provide SPOS for billing mode. It will appear in the screen position.

  • @JoySarkar-h5p1v
    @JoySarkar-h5p1v 23 дня назад +1

    Sir in the list posiion or hit list out of five columns why only the 'Order Date' is displaying sorted into ascending order ?

    • @sapabapbyrahulmehta
      @sapabapbyrahulmehta  23 дня назад

      Hello Joy - We can not conclude this. Add 2-3 records to order header table and provide the old order date. Based upon my perception, it will not be in sorted order of date. Once you proceed, you will learn SORT operation. When we want to sort based upon certain column, we apply SORT operation.

  • @sanatanabehera2327
    @sanatanabehera2327 9 месяцев назад +2

    Thank you sir . Kindly make the video on hot key and collective search help and how many ways to assign the search help

    • @sapabapbyrahulmehta
      @sapabapbyrahulmehta  9 месяцев назад +1

      Collective Search help and 2 ways to assign the search help are already covered here. Once you move on to ABAP programming ,Module Pool programming playlist , you will also learn how to assign the values using SAP standard function modules. Hot Key will be covered in the future.

  • @unobingshoniyogi7154
    @unobingshoniyogi7154 19 дней назад

    11:30.
    Same thing we can achieve by writing...
    AT SELECTION-SCREEN ON VALUE REQUEST FOR P_ONO.
    SELECT statement.
    ...
    CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
    ...
    Now my question is, 1) is there any differences between these to methods? 2) When to use which one?

    • @sapabapbyrahulmehta
      @sapabapbyrahulmehta  18 дней назад

      With the help of the Function Module F4IF_INT_TABLE_VALUE_REQUEST, we can assign a search help by writing the code. So, it is used when we want to override the existing search help or we want to assign a search help which from the combination of multiple tables and logic needs to be written for the same.

  • @SAP_USER
    @SAP_USER 2 месяца назад +1

    Hi sir, if I declare parameter as
    PARAMETERS P_ID TYPE TABLE_NAME-FIELDNAME.
    it won't give any error.
    But I use it as select-option it gives error as table_name-fieldname is unknown
    Select-options s_id for table_name-fieldname.

    • @sapabapbyrahulmehta
      @sapabapbyrahulmehta  2 месяца назад

      You need to write - TABLES : name of the table which you are referring to. Once you move on to ABAP Programming , you will learn this syntax for select-options.

  • @mangaliusha7221
    @mangaliusha7221 24 дня назад +1

    Search field ZSC_DEP-ST_NUM is not in the search help interface error when assigning search help to table how to resolve it sir where zsc_dep is table and st_num is one of the field in search help

    • @sapabapbyrahulmehta
      @sapabapbyrahulmehta  24 дня назад

      Hello - Check for the below points.
      1) Is ST_NUM column is in the search help?
      2) Is export is ticked for ST_NUM column?
      3) Is your search help active?

    • @mangaliusha7221
      @mangaliusha7221 24 дня назад

      @@sapabapbyrahulmehta ok sir

  • @chaitanyakumarramireddy
    @chaitanyakumarramireddy 5 месяцев назад +1

    Had a good exposure about search help and one question, how I get f4 option for table fields on SM30 screen, could you please share the idea?

    • @sapabapbyrahulmehta
      @sapabapbyrahulmehta  5 месяцев назад +1

      You can create a search help and assign it to table fields. It will appear in SM30 as well.

    • @chaitanyakumarramireddy
      @chaitanyakumarramireddy 5 месяцев назад +1

      @@sapabapbyrahulmehta Hi Rahul bro, I tried to create search help for each field for my requirement and now I can able to see on SM30, Thank you

  • @beststocks8555
    @beststocks8555 7 месяцев назад +1

    if we unticked all import checkboxes then also it is working then what is the use of import here?

    • @sapabapbyrahulmehta
      @sapabapbyrahulmehta  7 месяцев назад

      If we take a default value, importing must be unticked. This importing plays a vital role when we use search help in programming. In future, I will cover this as a part of Additional ABAP Concepts playlist.

  • @mugondasravani593
    @mugondasravani593 Год назад +1

    Sir what is the use of hot key in the elementary search help ?

    • @sapabapbyrahulmehta
      @sapabapbyrahulmehta  Год назад +1

      Use of Hot Key will be explained in future as a Part of ABAP Programming Playlist, as Hot Key We used in the programs.

  • @mugondasravani593
    @mugondasravani593 Год назад +1

    Sir Pls explain about the import parameter checkbox..
    Import ( input ) from where it is taking ?

    • @sapabapbyrahulmehta
      @sapabapbyrahulmehta  Год назад

      When we use search help in the program at that time, the search help parameters having Import as ticked, Will appear as input when we click on to F4 button. If we are passing default value, then importing checkbox needs to be unticked. If you already have the knowledge of programming, We can assign a search help to a Parameter or select-options using Matchcode object.