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

Partner function search help

Former Member
0 Likes
3,316

Hi all,

I have created a field(ZZ_XXX) on VA02 screen.

I have created dataelement for this field using PARVW as domain.

For this field i would like to have F4 search help, it should show all available partner functions (ex: sold-to-party, billing,etc....)

Is there any search helps for this or do i need to create a new one, if so how to create it. I mean by using which table.

Thanks in advance,

regards,

NarsiReddy.

7 REPLIES 7
Read only

Former Member
0 Likes
1,776

Hi,

     You Need to create a new one using table KNA1 and KNVP.

Regards

Read only

Former Member
0 Likes
1,776

Yes KNA1 has general data and it also includes account group which can be helpful depending on what you're going after.

But account group isn't partner functions.  Two tables which have this info are:

VBPA - which has partner functions for given documents (like sales orders, deliveries, billing).

KNVP - has the partner functions at master data level (what are the partners linked for a given sold).

Regards,

Ashvin

Read only

0 Likes
1,776

Is it PARVW in VBPA table?

Whihc fields i should consider for search help.

Read only

Former Member
0 Likes
1,776

Please try this:

AT SELECTION-SCREEN ON VALUE-REQUEST FOR <field_name>

    SELECT partner_fct  FROM <config_tab>

  INTO TABLE SearcH_tab.

  CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'

    EXPORTING

      retfield     = 'PARTNER_fct'

      dynpprog     = sy-cprog

      dynpnr       = sy-dynnr

      dynprofield  = ' '

      window_title = text-006

      value_org    = 'S'

    TABLES

      value_tab    = <config_tab>

      return_tab   = ret_tab

Read only

Former Member
0 Likes
1,776

Hi Narsi ,

Can you try this Search help - H_TPAR , which is on table TPAR for Business Partner: Functions

Read only

0 Likes
1,776

Hi Praveen,

I think it is fine upto some extent,

Do you know, if there is some more helps availabe ? like H_TPAR.

Thanks & regards,

Narsireddy

Read only

0 Likes
1,776

Hi Narsi ,


This search help is on table TPAR( Business Partner: Functions), if you need some restriction on

the output , then you can try for the search help exit in it or a custom search help with this table as

selection method.