2014 Aug 18 10:57 AM
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.
2014 Aug 18 11:02 AM
Hi,
You Need to create a new one using table KNA1 and KNVP.
Regards
2014 Aug 18 11:11 AM
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
2014 Aug 18 12:20 PM
Is it PARVW in VBPA table?
Whihc fields i should consider for search help.
2014 Aug 18 11:13 AM
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
2014 Aug 18 12:27 PM
Hi Narsi ,
Can you try this Search help - H_TPAR , which is on table TPAR for Business Partner: Functions
2014 Aug 18 12:52 PM
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
2014 Aug 18 1:00 PM
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.