Table that stores screens and subscreens of stnd transaction

hi
can anybody help in which table the screens and subscreens of a standard transaction stores

hi asik
Thnaks for ur reply
but i want the screens with respect to transaction code not with respect to program name.
table D020S does not have field transaction code.
clearly saying if i am entering mk01 then each time when u are entering the fields screen is going to be changed .i want in which standard table all the screens are geting stored
Regards
hemanth

Similar Messages

  • Table that stores the application logs messages for transaction CRMD_ORDER

    Hi Guru's,
    I would like to know which CRM table that is used to store application logs (consist of error / warning / information messages) in transaction CRMD_ORDER? I would like to retrieve the text messages of the application log.
    Thanks.

    Hi there,
    The logs are on tables BALHDR (header) and BALDAT (detail).
    In BALHDR you can fill OBJECT with 'CRM_DOCUMENT' and EXTNUMBER with the document GUID (you can obtain it in CRMD_ORDERADM_H table).
    The BALDAT is a cluster table, so the information is a little 'encoded' there for direct consulting without abap code.
    Alternatively, you can use FM APPL_LOG_READ_DB to read the messages that are contained in any CRM document.
    Kind regards,

  • Table that stores the business role and user id mapping

    Hi,
    i want to know the table that stores the Business role and the business role and user id mapping in CRM system.
    Thanks in Advance.
    Regards,
    Pricy

    Hi Mary,
    There is no direct table but there is a way to find it.
    HRP1263 is the table where business roles are stored when maintained at org level. These are stored against the Position.
    For getting user ID and position linkage refer table HRP1001.
    In HRP1001 table use below criteria to get the User and Position.
    OTYPE = CP
    SCLAS = US
    SOBID = User ID
    ENDDA = 31.12.9999
    Get the OBJID
    Query the HRP1001 table again with following
    OTYPE = CP
    OBJID = OBJID from above Query
    ENDDA = 31.12.9999
    SCLAS = S
    SOBID = Thats Position.
    Pass the position to HRP1263 as below.
    OTYPE = S
    OBJID = POSITION
    PROFILE - Thats business role assigned for the given position and user.
    Hope this is helpful.
    Regards,
    Naresh

  • Table that stores movement types and reversal movement type?

    I want  to take a movement type 561 and look that up in a table and find the reversing movement type in a program.  is there a table that stores the movement type and reversing movement type

    Hi
    Table T156 has got movement type control and details. Where as other T156* tables stores other details directly or indirectly used b yMovement types
    T156A
    T156B
    T156C
    T156F
    T156H
    T156HT
    T156K
    T156M
    T156N
    T156Q
    T156S
    T156SC
    T156SY
    T156T
    T156V
    T156W
    T156X
    Regards
    Virender Singh

  • Tables that store description of TRFMs and DTPs

    Hi Experts,
    Kinldy let me know the name of the tables that store description of transformation and DTPs.
    The usual ones like RSTRAN, RSTRANT, RSBKDTP etc. are not containing text for all transformations and DTPs.
    TIA,
    Ravi

    Hi,
    Pl check following tables
    RSBKDTP  BW: Data Transfer Process Header Data 
    RSBKDTPH  DTP: Historic Versions 
    RSBKDTPSTAT  Status Information on Data Transfer Process 
    RSBKDTPT  Texts on Data Transfer Processes 
    RSBKDTPTH  Texts on Data Transfer Processes 
    RSDDSTATDTP  Table for WHM Statistics. Details DTP 
    RSOACUBE_DTP  BW: OLTP Direct Access: Directory of Assigned Remote DTPs 
    RSBKDATAPAKSEL  DTP: Data Package Selections 
    RSBKSELECT  Selections for DTP Request (Summary) 
    RSBKREQUEST  DTP Request 
    RSBKREQUEST_V  View of DTP Request 
    RSBKBP  Breakpoints 
    RSBKDATAINFO  Information on DTP Runtime Buffers 
    RSBKDATAPAKID  DTP: Status Table for Data Packages 
    RSBKSUBSTEP  Properties of Substeps in a DTP 
    For transformation check following thread
    SAP BW tables
    Thanks and regards

  • Table that stores field label, language wise

    Hi,
       Is there any table that stores the field label of a data element, language wise ?
    For example, the field 'kunnr' has label as 'Customer' in EN
    and  'Client' in FR .
    I need to know this FR label where i am given only the field and language .
    How to know ?
    ( In SE16 i get these field names language specific, I need the same info, where it is fetched )
    Answers will be suitably rewarded !
    Thanks,
    Lively

    try this sample code it may help you
    DATA : V_REPTEXT TYPE REPTEXT,
           V_SCRTEXT_S TYPE SCRTEXT_S,
           V_SCRTEXT_M TYPE SCRTEXT_M,
           V_SCRTEXT_L TYPE SCRTEXT_L.
    DATA : LANG TYPE DDLANGUAGE.
    LANG = 'FR'.
    CALL FUNCTION 'WCGW_DATA_ELEMENT_TEXT_GET'
      EXPORTING
        I_DATA_ELEMENT       = 'KUNNR'
        I_LANGUAGE           = LANG
    IMPORTING
       E_REPTEXT            = V_REPTEXT
       E_SCRTEXT_S          = V_SCRTEXT_S
       E_SCRTEXT_M          = V_SCRTEXT_M
       E_SCRTEXT_L          = V_SCRTEXT_L
    EXCEPTIONS
       ERROR                = 1
       OTHERS               = 2
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    WRITE : / V_REPTEXT.
    WRITE : / V_SCRTEXT_S.
    WRITE : / V_SCRTEXT_M.
    WRITE : / V_SCRTEXT_L.
    regards
    shiba dutta

  • Standard table that stores communication channel parameters

    Hi All,
    Can you tell me if there is a standard table that stores the parameters of communication channel?
    For example, Which table has the value of "Quality of Service" in "Processing Parameters"?
    Regards,
    Nisha

    Can you tell me if there is a standard table that stores the parameters of communication channel?
    not aware of a standard table....each communication has its own QOS.....you can check it in the log in SXMB_MONI....opne the particular message processing and look in the upper window (Window 1) where all the details are mentioned.

  • Table that stores Transport Request Details

    Hi SDN Gurus,
    Is there any table that stores all the details of all the transports in Import Queue (STMS). I am mainly interested in import time and method execution time of the transport. I need to write an ABAP program that for calculating the time for mass migrating all the transports in the queue.
    i looked at the tables E070, E071 and some others but din't get the required info.
    Any help will be rewarded with points.
    Thanks

    Here is some correction to what i said. i got some information like the transport number, owner of the transport, target system and the IMPORT time of the request from the table E070. i guess all i need now is to find the time at which the transport is completed (Method Execution time) so i can calculate the time it took for transport.
    Thanks

  • Currency tables that stores description of currency after decimal points.

    Hi ,
    I need table that stores description of currency
    for example : for INR its Rupees and paise...
    I need table that stores paise,Cents for Dollars etc..
    Table TCURC will show Rupees, Dollars...but doesnt show paise,,cents etc..
    Thanks in advance
    Kashyap.

    hi,
    you can get number of decimals for currency from TCURX table.
    To read them in program use SPELL_AMOUNT function module.

  • Request - The table that stores various variables (modifiable)

    Hi,
    I am trying to find the standard table that stores various variables in the SAP system and is modifiable. I think it starts with a "T" but I can't be sure.
    Please help.
    Thanks,
    John

    I think you are talking about TVARV
    TVARV is  Table of variables in selection criteria .
    Hope this helps
    Vinodh Balakrishnan

  • Table that links vendor and customer

    hi
    is there any table that links vendor and customer, for example theres a vendor zz400, he can be a customer as well
    do you know in which table we can find that?

    Hi
    Go through the link given below :
    Configuration for vendor as well as customer
    With Regards
    Sandeep

  • Tables that store the "Personalization" values in Demantra CWB

    Hi All,
    Can some tell me, which tables stores the basic "personalize information" on CWB Demantra.Like i am looking for tables that stores "MY worksheets" information in the home page of CWB.
    Thanks,

    as far as i know...we dont have any table to show the below requirement
    "Like i am looking for tables that stores "MY worksheets" information in the home page of CWB."
    you can only view the list of available worksheets in queries table

  • Table that stores  descriptions of BP roles

    Hi gurus,
    I am new to CRM.What is the table that stores the descriptions for the BP roles?

    hi Divya,
    Check BUT100 table.
    Regards,
    Shalini Chauhan

  • ANYBODY GIVE ME THE TABLE/TABLES THAT CONTAIN TCODE AND DEVELOPMENT CLASS

    ANYBODY GIVE ME THE TABLE/TABLES THAT CONTAIN TCODE AND DEVELOPMENT CLASS

    Hi phani,
                 The table TSTC contains the transaction codes.
    Also the below links provides a lot of info on the Standard SAP Tables.
    http://www.sapdev.co.uk/tables/tables.htm
    Pls reward if useful..
    Thanks,
    Sirisha.

  • My computer was dropped yesterday and it will not turn on past this gray screen that tells me to reboot it but everytime I reboot it, it just goes back to that same screen and tells me to do it again. Anyone know how to fix this?

    My computer was dropped yesterday and it will not turn on past this gray screen that tells me to reboot it, but everytime I reboot it, it just goes back to that same screen and tells me to do it again. Anyone know how to fix this?

    When you jar or drop a hard drive when it's operating the heads strike the platters and ruin sectors and the data on them.
    Your getting the spinning wheel because the OS has been damaged and/or quite possibly the drive.
    You'll first have to determine if it's a hardware issue
    Do #3 Hardware Test and #5 Disk Utlity Repair Disk/Permissions here (check the SMART status)
    Step by Step to fix your Mac
    If the drive is fine and you don't have a recent copy of your data off the machine then also do this
    Create a data recovery/undelete external boot drive
    Then proceed with fixing the damaged software, likley by #8 your problem will be fixed.
    Step by Step to fix your Mac

Maybe you are looking for

  • How do I add Pantone Color Books to Illustrator CC?

    I'm used to using the Pantone Process color book in illustrator, but it's missing from my Illustrator CC. How can I add it? I had it at work, so I assume it is a standard color book, because my work never paid for anything extra. I see I have a Panto

  • Images do not display at placeholder location from one sender.

    When I receive emails with images from one sender, who uses a tablet, the headings appear in a list then there are placeholders for each image and then the images show with only an ID for each image. This one sender is the only one I have seen this h

  • Navigation Bar doesn't display in Safari

    Hi, I just made a website using iWeb '09. After i published the website, the navigation bar doesn't show up on Safari, Where as when i visit the webpage from any other browser, it works all fine, I want to fix this issue, Please help! http://www.orig

  • Periodic Data Trasfer using LSMW

    Dear All, How to do periodic Data trasfer using LSMW? For this, is it necessary to use File from Application Server only (& not from PC)? How the Last Extra Step will be processed? Please help. Thanks in advance. Kind Regards, Prasad

  • CS2 created loader, need to update to CS5

    Hello I'm just learning about loaders and i have a loader created in CS2 and im using it in CS5 it seems to work correctly but has a few compiler errors. I tried to clean it up but only made it worse, anybody want to take a shot at it: var my_loader: