cancel
Showing results for 
Search instead for 
Did you mean: 

Variable name in the title of the table

Former Member
0 Kudos

Hi gurus,

I have 2 questions:

1. How to display the variable names in Table title or chart title in Visual Composer?

2. Is there a way to save selection as variants in Visual Composer for different users or can we create personalization like we do in Bex?

Thanks.

Sheo

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

hi

<a href="http://help.sap.com/saphelp_nw04s/helpdata/en/e9/c8a20afb794633a9528a5f52c04b9c/frameset.htm">refer ths link for Table View</a>

<a href="http://help.sap.com/saphelp_nw70/helpdata/en/a5/7aa694966248b7b646808496049c84/frameset.htm">refer ths link for Chart View</a>

rgds

mythili

/if it useful reward me/

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi,

1) Do it as Mario mentioned with the workaround from the WIKI.

2) you have to create a Z-table with the columns user, setting1 ... setting N. Write an ABAP RFC like a get and set method.

Best Regards,

Marcel

Former Member
0 Kudos

Hi Mario and Marcel,

Thanks a lot.

Can you explain the 2nd point, and post some code samples, how to achieve personalization? Z-table is OK but how to proceed from there? Because in VC, we have created value help and users are selecting from multiple selection. Where to put the codes?

Thanks.

Sheo

Former Member
0 Kudos

Hi Sheo,

I can't give you a code, because I don't know your exact requirements.

You want to save something which depends on the user, so I think you have to create a Z-table (Go to transaction SE11 and create a table in the data dictionary which depends on your requirements). Then you have to write in the transaction SE37 resp. SE80 a Z_SET_USER_SETTINGS RFC function module, which saves the user settings and a Z_GET_USER_SETTINGS for reading the user settings from the backend.

In your VC model you can load the user settings (direct after the start point) and you can save a modification of the user setting, when the user modify it.

Best Regards,

Marcel

Former Member
0 Kudos

ad 1) https://wiki.sdn.sap.com/wiki/display/VC/Dynamictabletitles

ad 2) no, that's not available with VC. You'd have to take care of that yourself by using RFcs, etc.