cancel
Showing results for 
Search instead for 
Did you mean: 

Workbook: view key and description in the same cell.

Former Member
0 Kudos

Hi Developers,

I'd to Know if it is possible to see (in the workbook) in the same excel's cell the Key and the denomination and not in two different cells.

Thanks in Advance!

Domenico

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Thanks for your answer!

I'd like to have more details on this solution:

"You could use the long description: concatenate Value and Short (or medium) descrition and do present Long Descr in the Report."

Thanks a lot!

Domenico

GFV
Active Contributor
0 Kudos

Hi Domenico,

let's suppose you have an InfoObject (ZIOBJ) with short medium and long descriptions and that you do feed such values using a DataSource for texts. In the Trasfer Rule you map ZIOBJ 0TXTSH, 0 TXTMD and 0TXTLG to 4 different fields ZVALUE, TXT_SH, TXT_MD and TXT_LG of a Transfer Structure.

You could write a simple ABAP Routine for the 0TXTLG as:

CONCATENATE ZVALUE, TXT_MD SEPARATED BY SPACE INTO RESULT.

Hope it's clear.

GFV

Answers (2)

Answers (2)

Former Member
0 Kudos

Thanks a lot Gianfranco,

your idea works fine!

I'd like to write the right sintax:

CONCATENATE TRAN_STRUCTURE-(f1) TRAN_STRUCTURE-(f2) INTO

RESULT SEPARATED BY SPACE.

I hope it helps!

GFV
Active Contributor
0 Kudos

HI Domenico,

you are right ... sorry but I didn't check the code and many thanks for the points.

Bye

GFV

GFV
Active Contributor
0 Kudos

Hi Domenico,

don't think it should be possible as a standard functionality. As a possible workaround you could use the long description: concatenate Value and Short (or medium) descrition and do present Long Descr in the Report.

Another similar solution could be done with some VBA coding ... without affecting InfoObject metadata.

Hope it helps

GFV