Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

How to avoid sort functionality for F4 using Function module F4IF_INT_TABLE_VALUE_REQUEST.

0 Likes
1,841

i have created one custom f4 using F4IF_INT_TABLE_VALUE_REQUEST and want to remove standard sort functionality . Please check screen shots attached here for more details.

1 ACCEPTED SOLUTION
Read only

0 Likes
1,544

Thanks Edger for your reply, The structure is mentioned below

   Types:                   BEGIN OF ty_f4,

                      txt TYPE char7,

                      END OF ty_f4,

mt_input_f4 TYPE STANDARD TABLE OF ty_f4.

i concatenated the quarter and year value to the txt fied of the structure.

Gernally in place of f0001 text the Window title displays. It is first time i am countering and cant able to figure out why it is coming.

if disappearing sort funtionality is not possible i just want to change the text f0001 to some other values.Please reply if it is possible.

5 REPLIES 5
Read only

former_member223133
Active Participant
0 Likes
1,544

HI,

You can check whether the value table "mt_input_f4" type is of sorted internal table or not.

If it is sorted, then sorted order shall come automatically.

Regards

Gangadhar

Read only

Former Member
0 Likes
1,544

Hi Shehzad,

I haven't figured out what F00001 is since you haven't post the mt_input_f4 structure (I suppose it's the name of the field?) but I can give some advice:

  • place the year before the quarter. With 2015 Q1 your sorting would be more agreeable or:
    • separate year from quarter as columns of the search help table
  • if it's still inadequate you can create your own customized search help interface

I don't think you can make sort disappear in F4IF_INT_TABLE_VALUE_REQUEST.

regards,

Edgar

Read only

0 Likes
1,545

Thanks Edger for your reply, The structure is mentioned below

   Types:                   BEGIN OF ty_f4,

                      txt TYPE char7,

                      END OF ty_f4,

mt_input_f4 TYPE STANDARD TABLE OF ty_f4.

i concatenated the quarter and year value to the txt fied of the structure.

Gernally in place of f0001 text the Window title displays. It is first time i am countering and cant able to figure out why it is coming.

if disappearing sort funtionality is not possible i just want to change the text f0001 to some other values.Please reply if it is possible.

Read only

0 Likes
1,544

Hello Rizvi,

Please paste your code releated to F4 help.

Thanks

Read only

0 Likes
1,544


Hi Edger,

Your above post gave me an idea andi  checked the data element. Actually it is coming from data element char07. I created my custom data element and gave proper description under Field Label tab.

It is now coming correctly. Thanks Alot!!!

Please refer to the screen shots attached.