Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

STXH - TDNAME information for Network/Network-Activity

0 Kudos
499

Hello,

im in search of a logic how the STXH - TDNAME is generated by the system for Network/Network-Activity.

Example:
I changed the longtext for my Network-Activity (Network 918714; Activity 0010) in CJ20N and saved it. I looked up my user in STXH and found an entry with TDNAME "550000001874000000001".

550 is sy-mandt
187 is part of the networknumber (i believe)

for the rest i cant get the logic behind it. Can someone give me a hint? Is there a general way to look it up for any object with a text?

Thanks for helping!
Raphael

1 ACCEPTED SOLUTION

Sandra_Rossi
Active Contributor
435
Maybe:TDOBJECT = 'AUFK'

TDID = 'AVOT'

TDNAME = <mandt><activity 10 digits><><>

  • mandant: 550
  • activity: 0000018740 (AFVC-AUFPL)
  • number: 0000000001 (AFVC-APLZL)

2 REPLIES 2

Sandra_Rossi
Active Contributor
436
Maybe:TDOBJECT = 'AUFK'

TDID = 'AVOT'

TDNAME = <mandt><activity 10 digits><><>

  • mandant: 550
  • activity: 0000018740 (AFVC-AUFPL)
  • number: 0000000001 (AFVC-APLZL)

435

From 400957 - Long text for the activity in the network: Error TD602) - a correction report ZZTXTSP01.

(...)
SELECT * FROM STXH INTO TABLE LT_STXH WHERE TDOBJECT = 'AUFK' AND TDNAME EQ LV_TDNAME AND TDID = 'AVOT'. '
(...)
LV_TDNAME = SY-MANDT. LV_TDNAME+3(10) = LT_AFVC-AUFPL. LV_TDNAME+13(8) = LT_AFVC-APLZL.