cancel
Showing results for 
Search instead for 
Did you mean: 

where are the values maintained for BBP_ACC_CAT data element?

Former Member
0 Kudos

Hello,

I'm using the standard field which has data element as BBP_ACC_CAT and when I use Dropdown by key, I was getting values. But if make 'Z' field with the same data element, I'm unable to see any value in F4. Lately I realized that no values maintained in Domain and there is no value table assigned.

Thanks,

Sravanti.

Accepted Solutions (1)

Accepted Solutions (1)

konstantin_anikeev
Active Contributor
0 Kudos

Hi Sravanti,

if under F4 you mean a Web Context - you should look for attribute KNT, assigned to the user in organizational model (PPOMA_BBP)

Regards

Konstantin

Former Member
0 Kudos

Hello Konstantin,

If that is the case, I should not be able to view values when i'm using standard field as well.

I don't have access to ppoma_bbp to check that instantly.

Any further possibilities??

Sravanti    

konstantin_anikeev
Active Contributor
0 Kudos

Hi Sravanti,

where is this standard field? DB-Table? Shopping cart? Customizing transaction?

Regards

Konstantin

Former Member
0 Kudos

Hello Konstantin,

I was referring to the standard field in the SC Item level structure /SAPSRM/S_CLL_SC_ITEM-ACC_CATACC.

Regards,

Sravanti.

konstantin_anikeev
Active Contributor
0 Kudos

Hi Sravanti,

open your structure in SE11 and go to the tab "Entry help/check" - there you should be able to see (assign) a search method for your field.

Regards

Konstantin

Former Member
0 Kudos

Hello I didn't find the search help for the standard field.

So, Whatz the point in adding the search help for the custom field?

konstantin_anikeev
Active Contributor
0 Kudos

Hi Sravanti,

where do you have this field? Where do you see it? What transaction/application is it.

There are a lot of ways, how to define a search help. To provide a concrete answer I need to know, where this field to be used.

screenshot would be great.

Regards

Konstantin

Former Member
0 Kudos

Hello,

the requirement is to have the account assignment column at the item overview table.

However, due to config and some custon include structures, i can't use the standard field and need to use a Z field say zACC_CATACC. but then I'm unable to get the field in the dropdown.

context level attributes,

and for the Zfield

Former Member
0 Kudos

i missed to add the standard field attributes at context level

konstantin_anikeev
Active Contributor
0 Kudos

Hi,

just check, how it is done by the standard.

navigate to webdynpro /SAPSRM/WDC_UI_DO_ACC, view V_DO_ACCOUNTING

The same you should try to set for your field.

Regards

Konstantin

Former Member
0 Kudos

tried this...!! but not working..!

Any coding is required?

konstantin_anikeev
Active Contributor
0 Kudos

Hi Lakshmi,

if you defined the cell editor as dropdownbykey - you may need following initialization code

* retrieve node

   lo_detail = wd_context->get_child_node( name = wd_this->wdctx_YOURCONTEXTNODENAME )->get_node_info( ).

   lo_detail->set_attribute_value_set( name = 'YOURFIELDNAME'

                                                      value_set = lt_value_comp_set ).

  

Table lt_value_comp_set has a type wdy_key_value_table and has the paars key/value for dropdown.

Regards

Konstantin

Former Member
0 Kudos

Hello,

Thanks a lot for the reply..!

I'm a little new to webdynpro. Can you please elaborate a little more on where to write this code?

Regards,

Sravanti

konstantin_anikeev
Active Contributor
0 Kudos

Hi Sravanti,

it would be too complicated for you (if you do not have enought experience in WDA) to make all it the right way. The quick and durty solution, which should work it to implement this code in pre- or post- exit of WDDOINIT method of your view.

Regards

Konstantin

Former Member
0 Kudos

Thanks..!!

Coded in the wddoinit and it is working now..!

Answers (1)

Answers (1)

Former Member
0 Kudos

Any other solution to solve this.