‎2017 Jan 24 11:06 AM
Hi all
I have to show "project definition" in alv report output , I AM USING PROJ-PSPID field,
data comes in like (COTP2C 0000) but i want in the form like (CO.TP2C), so what should i do, i tried with using FM like "CJPN_GET_PROJECT_DEFINITION" but not useful format getting. Please help in regard
READ TABLE IT_PROJ INTO WA_PROJ WITH KEY PSPNR = WA_PRPS-PSPHI.
IF SY-SUBRC = 0.
WA_FINAL-PSPID = WA_PROJ-PSPID. "project definition"
WA_FINAL-WERKS = WA_PROJ-WERKS.
WA_FINAL-OBJNR1 = WA_PROJ-OBJNR.
ENDIF.