cancel
Showing results for 
Search instead for 
Did you mean: 
Subscribe

This may be a rookie question, but how do you find out the purpose of a custom tcode?

Background: Global company, very poor documentation processes, dog eat dog place with 0 mentorship or development.

Started a new project in which the foreign country R/3 environment has hundreds of custom tcodes but with no documentation. I have to figure what the custom tcode does as well as if it can be replaced by standard tcodes.

Example: One that has analyzed already by another co-worker: "Creates outbound file to send invoices from region. Along with equipment details from table X. Uses data from tables X,X. Generates file at outbound directory with name X. Sends serial number, customer, invoice date, and company code."

All of this found just by being supplied Tcode.

I'm not sure at all how to find this out. I've gone into SE93, but that only gives me the program.

Excuse my ignorance. Just trying to learn and figure this out.

View Entire Topic
Abinathsiva
Active Contributor
0 Likes

Hi juanmaddox

Get functional inputs from functional guys based on that check the code or debugging only can help. by query below check and bucket the z developments by objects and proceed one by one and also as mentioned in comment do follow the links on Question and Answer session

  SELECT       e71~trkorr
             e71~pgmid
             e71~object
             e71~obj_name
             e71~lockflag
             e70~trfunction
             e70~trstatus
            e70~as4user
             e70~as4date
             e70~as4time
            e70~strkorr
*            e70~AS4TEXT
    FROM e070 AS e70 INNER JOIN e071 AS e71 ON e70~trkorr = e71~trkorr
                    INTO TABLE it_e7071t
                    WHERE    e70~trkorr   IN tr_reqst
                     AND e70~strkorr  IN request
         AND e70~as4user  IN username
         AND e70~as4date  IN date
         AND e71~object   IN object
         AND e71~obj_name IN obj_name.