cancel
Showing results for 
Search instead for 
Did you mean: 

Activity Clipboard in table format issue

Former Member
0 Kudos

Hi All,

we are just upgraded from CRM 6.0 to 7.0 and after upgrade the Activity clip board is displayed in table format only but without field borders(Transparent) as shown in attached screens for reference. But we need in tbale format with borders. In newer version they used the tag cellerator and in older version they used tag  tableView. I just tried to adopt the older one but no luck, any suggestion here?

Thanks.

Accepted Solutions (1)

Accepted Solutions (1)

corrine_guan
Employee
Employee
0 Kudos

Hi Vij,

Have you found the solution to the requirement? If yes, would you please share it here?


Actually, I checked our CRM 6.0 system whose version is: SAPKU60016/SAPK-60013INCRMUIF. It is the same as in the system CRM7.0 --- in Activity Clipboard, there is no field borders in either CRM6.0 or CRM7.0.

Which version is your CRM6.0? Is the activity clipboard UICMP_ACC_CLIP->IRecActivitiesClipboard.htm? Have you enhanced it in CRM6.0?

Maybe there are two places to check and compare:

1. check the codes in UICMP_ACC_CLIP->IRecActivitiesClipboard.htm especially you have enhanced it in CRM6.0.

2. compare the html source codes, focusing on the CCS definitions. 'developer tool' is a helpful tool. it is integrated if IE version is higher than IE8. In the 'interaction record' page, click F12 to show the 'developer tool' , then focus the html source into the table line of 'activity clipboard'. Comparing the difference, it might be possible to find out where the field border line is defined.

Best Regards, Corrine

Former Member
0 Kudos

Hi

Please find the solution below,

Component / View : UICMP_ACC_CLIP/IRecActivitiesClipboard

Modified the view layout ‘IRecActivitiesClipboard.htm’. Here add a new attribute ‘editMode’ to cellerator tag as no vertical line will be displayed if the table is ready-only mode. Please find the document screenshot below.

  <thtmlb:gridCell columnIndex         = "1"

                    rowIndex            = "1"

                    horizontalAlignment = "RIGHT" >

     <thtmlb:cellerator id                = "activities"

                        onRowSelection    = "onSelect"

                        table             = "<%= <fs> %>"

                        verticalScrolling = "TRUE"

                        fillUpEmptyRows   = "FALSE"

                        width             = "100%"

                        editMode          = 'SINGLE'

                        selectionMode     = "NONE"

                        personalizable    = "FALSE"

                        iterator          = "<%= lr_iterator %>" >

     </thtmlb:cellerator>

   </thtmlb:gridCell>

</thtmlb:grid>

Thanks,

Vij

Answers (0)