cancel
Showing results for 
Search instead for 
Did you mean: 

Issue in Shopping Cart SRM 7.0 Dynpro Component: /SAPSRM/WDC_UI_SC_DOTC_BD

former_member642890
Participant
0 Kudos

Hi,

We have a problem in Shopping cart of SRM 7.0 system in our production Environment.

The issue is when we display a particular shopping Cart, we get the item overview and in that we get some different buttons such as

'Details' 'Add Item' 'Delete' 'Create Invoice' and there is another button which actually should display as 'Confirmation' but it is displaying as '4CDCC61E997E10000000A421ACB'.

Please find below some details:

Dynpro Component:/SAPSRM/WDC_UI_SC_DOTC_BD

View Information: V_SC_DOTC_BASIC

Information on Field

Field ID: AUTO_CONFIRMATION

Type of UI Element: TOOLBAR_BUTTON

UI Element Library: STANDARD

Attributes of UI Element

List of Attributes Attribute Name Value Context Path Type

TEXT 4CDCC61E99745077E10000000A421ACB

IMAGE_FIRST X

IMAGE_SOURCE

TEXT_DIRECTION inherit (02)

ENABLED X COMP_CONTEXT.M_AS_ITEMS.CONFIRM_RECEIPT BOOLE_D

TOOLTIP 4CDC3E8A10015076E10000000A421ACB

VISIBLE visible (02) COMP_CONTEXT.LOCAL_UI_CONTROL.CONFIRM_RECEIPT WDUI_VISIBILITY

CONTEXT_MENU_BEHAVIOUR inherit (00)

Could you please help me to solve this issue. ACTUALLY THIS PROBLEM IS OCCURING IN THE QUALITY AND PRODUCTION SYSTEM but NOT IN THE DEVELOPMENT ENVIRONMENT.

Accepted Solutions (0)

Answers (1)

Answers (1)

former_member184111
Active Contributor
0 Kudos

Hi Rohit,

Try to activate the view and component and then see. If this does not works, create an enhancement for the view and write the below code in method WDDOMODIFYVIEW

DATA btn_confirm TYPE REF TO cl_wd_button.
  
  btn_confirm ?= view->get_element( 'AUTO_CONFIRMATION' ).
  
  if btn_confirm is BOUND.
    btn_confirm->SET_TEXT( value = 'Confirmation' ).  
  endif.

This code will set the button text as 'Confirmation' .

Regards,

Anubhav