cancel
Showing results for 
Search instead for 
Did you mean: 

How can I read notes in cProject?

Former Member
0 Kudos

Hello everybody,

i´m looking for a function to read out the notes of a ppm object, but i can´t find anything in the function group DPR_BUS2172 - DPR_BUS2178 .

Can someone help me  ?

Kind regards,

Andreas

Accepted Solutions (1)

Accepted Solutions (1)

former_member209919
Active Contributor
0 Kudos

Hello,

You can use READ_TEXT function.

I hope thsi can be useful.

Sara

Former Member
0 Kudos

Unfortunately not. I have a project guid and with BABI_BUS2172_GET_TREE i get a list of all objects of a project inclusive their guids.

Example:

DPO    -     Projektdefinition    -     00101825954C03E0A8EFB9A8DD998CE2

PPO    -     Phase                  -     00101825954C03E0A8EFD5FFDDD30D07

TTO     -     Task                    -     00101825954C03E0A8EFDD0E9E124D24

CTO     -     Checkliste          - ...

ITO      -     Checklist-Item     - ...

So, now i have to find a BAPI which get the guid and gave me the table of notes. Of course i will be happy for further solutions.

Kind regards,

Andreas

schneidertho
Advisor
Advisor
0 Kudos

Hi Andreas,

I also believe that function module READ_TEXT will work:

ID = 'LOG'

NAME = GUID of the object

OBJECT =  'CGPL_TEXT'

I don't think there is a BAPI... at least I have not been able to find any.

I am not sure, if the string returned by the function module is already what you need.

You may take a look at CL_DPR_PROJECT_O->GET_NOTES. That is the method where the standard coding retrieves the notes.

Best regards

Thorsten

Answers (1)

Answers (1)

Former Member
0 Kudos

Thanks a lot !!!