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.

Similar Messages

  • 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

  • Role for Changing communication Channel parameters

    Hello All,
      I'm looking for a role that gives access to Changing communication Channel parameters in Integration Directory. I know that SAP_XI_ CONFIG_J2ee gives this access but is there a way to assign any security role or any component so that it gives access to  just Changing communication Channel parameters  in Integration Directory instead of giving access to the whole IB:Configuration.
    Thanks in Advance

    Hi
    dont have idea but maybe u can get idea about assigning role from these,
    see if  it helps
    http://help.sap.com/saphelp_nw04/helpdata/en/89/05793c05f0807be10000000a11405a/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/45/0c86aab4d14dece10000000a11466f/frameset.htm
    regards
    Pratibha

  • Environment or system variables in PI Communication channel parameters

    Is it possible to use any of the system/environment variables in the PI Communication channel parameters ? Please point me to the documentation. I know I had seen it on SDN sometime but can't seem to be able to find the link.
    I am not interested in ASMA or variable substitution.
    Thank you,
    Sridhar

    I don't know anything other than Asma, DynamicConf, VariableSubs, etc...
    There're some system variables like "%f" or "%F" usable in FileAdapter channel (OS command box)

  • 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

  • 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 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

  • Any standard table that keep tracks of changes in user attributes

    Hi,
    We have a HR system and we are tyring to find out a standard table that keep tracks of changes(when was it changed,who changed it,what has been changed) in user details like email,address etc.
    Plz let me know the solution
    Thanks
    Bala Duvvuri

    CDHDR
    CDPOS

  • 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.

  • 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

  • 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

  • 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 user license information

    Which is the table that stores the user licensing information? How do i make license changes to a large number of users at once?

    Hi
    Check this [Link|http://www.erpgenie.com/sap-technical/security/list-of-useful-reports-on-sap-users]
    Regards
    Uday

  • Communication channel parameters not preserved on import

    Hi gurus,
    I noticed that on doing an export from dev and import into qa, i was not able to activate the imports as the parameters for server..etc in the communication channel were missing...is this routine.. or ..??
    Any ideas...
    Venkat

    Hi,
    While transporting we miss some parameters in QA or PRD there we have to again mention them.
    check some links how to tranport.
    How to handle SLD for Tranporting Dev to Quality ser
    https://service.sap.com/~sapdownload/011000358700001684302005E/HowToSLDandXI.pdf
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/0fa2c490-0201-0010-61b4-df12869c4753
    Transporting XI from DEV to QA
    Transporting XI from DEV to QA
    using CMS system. in XI
    1. /people/sap.india5/blog/2005/11/03/xi-software-logistics-1-sld-preparation
    2. /people/sap.india5/blog/2005/11/09/xi-software-logistics-ii-overview
    3. /people/sap.india5/blog/2005/11/28/xi-software-logistics-solution-iii-cms
    4. /people/sravya.talanki2/blog/2005/11/02/overview-of-transition-from-dev-to-qa-in-xi --> Overview of Transition from Dev to QA in XI
    5. /people/sravya.talanki2/blog/2005/12/20/inconsistencies-while-transporting-rfc-objects-from-dev-to-qa-150-sp12
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/9e76e511-0d01-0010-5c9d-9f768d644808
    http://help.sap.com/saphelp_nw2004s/helpdata/en/93/a3a74046033913e10000000a155106/content.htm --> Transporting XI Objects
    http://help.sap.com/saphelp_nw04/helpdata/en/ef/a21e3e0987760be10000000a114084/content .htm --> Configuring Groups and Transport Targets
    Look into this blog for how to export / improt IR and ID objects,
    /people/sap.india5/blog/2005/11/09/xi-software-logistics-ii-overview
    /people/sap.india5/blog/2005/11/03/xi-software-logistics-1-sld-preparation
    Please go through these links which actualy show you how to configure CMS and also gives you all information regarding it.
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/43f5d790-0201-0010-2984-ff72d822b109
    http://help.sap.com/saphelp_nw04/helpdata/en/de/a4214174abef23e10000000a155106/content.htm
    /people/daniel.wirbser/blog/2005/10/27/tcsfilecreateexception--error-while-assembly-of-software-components-in-nwdi
    http://help.sap.com/saphelp_nw04/helpdata/en/f6/719a2172f74b67b150612a7cd3b7df/content.htm
    http://www.sap-hefte.de/download/dateien/964/074_lesesprobe.pdf
    Regards,
    Phani
    Reward points if Helpful

Maybe you are looking for

  • I can no longer download Apps from App store nor update the existing ones

    iMac 21" Intel year 2013 OSX10.10.1 I can no longer download Apps from App Store. I would select the app, press the icon to download the App (Ottieni in my language, Italian), download would not start and an alarm saying "Download failed, try from th

  • I have lost everything on my ipod 5th gen

    I have lost every single little piece of info on my ipod 5th generation i was updating via my ipod overnight. When i woke up i got the sign telling me to plug my ipod into itunes. it takes me several tries to finally get my ipod to download IOS 7.0.4

  • Unnecessary page limit for Blurb book in Lightroom Book module

    I'm posting this per Julieanne Kost's request following an email exchange regarding this topic.  I am in the process of making a photobook using Lightroom and discovered when I reached page 240 that I couldn't add any additional pages, much to my sur

  • Alv table validations

    Hi all, I have alv table for create PR. i have entered values in first row but incomplete and tries to add another row but it show the message like enter the value in the field(field name). after the values are entered completely in the first row, it

  • AirPort Extreme Crash during PPTP connect using VPN on demand

    I can reproduce this crash consistently every time. My AEBSn is running 7.4.2. My MBP is running 10.6.2. I set up a PPTP connection, tick "send all traffic over VPN connection" in the advanced options. I add a domain to the "VPN on Demand" list and a