Reg:Table for Custom Messages and custom Messaege Classes

Hi ,
My requirement is to find out all custom messages . so can any one tell in which tables all custom messages and custom message classes are stored .
Thanks & Regards,
Lakshmi.

hi,
You can checkthese tables listed below,
  T100                             Messages
  T100A                            Message IDs for T100
  T100C                            Message Control by User
  T100O                            Assignment of message to object
  T100S                            Configurable system messages
  T100SA                           Application Areas for Configurable Messages
  T100T                            Table T100A text
  T100U                            Last person to change messages
  T100V                            Assignment of messages to tables/views
  T100W                            Assign Messages to Workflow
  T100X                            Error Messages: Supplements
  T100ARBGB                    Application Area
But The main table for storing all the message classes and their numbers are stored in table
T100

Similar Messages

  • Working on IDOC OUTBOUND FOR Vendor Master and Customer Master

    Hi Group,
    I need to create IDOC's for Vendor master and customer master using ALE. Whenever they create vendor/customer or changes to vendor/customer should create IDOC's.
    Can anyone please help me out how to proceed? I know that we can use CREMAS/DEBMAS and CREMAS04/CREMAS...But I would like to know how to use those.
    Thank-You,
    Venky

    Hi Sai,
    Welcome to group.
    Related to CREMAS/DEBMAS, for your situation, you can use the change pointers.  With this, when ever there is an change/create, it will create an entry in CDHDR & CDPOS and based on that it will create the IDOCs for these.
    Activate the change pointers for these message types and run the application RBDMIDOC periodically (whenever you want).  This application will create the IDOCs based on your entries.
    To activate the change pointers, the TCODEs are
    BD50 Checking change pointer is activated for Message Type
    BD52 Checking which fields are configured change pointer to create.  (please make sure, an entry will exist in BDCP table)
    I hope you know the remaining configuration related to partner profile entries (WE20) i.e. to which system you want to send the idocs and Inbound or Outbound etc.
    Let me know if you need further info.
    shylesh

  • Use solution manager to create customer message and apply oss notes

    Hello All,
    Is it possible to use SAP Solution Manager to create/ open Customer Messages and for the application of OSS notes in satellite systems via solution manager?
    Currently, our Solution Manager system is bieng used for Central System Monitoring!
    Please let me your your expert thoughts!
    Thanks,
    Antarpreet

    Hi,
    By using Service Desk scenario of Solution Manager you can convert an issue to an OSS message and follow it up.
    Refer the  [Link|http://help.sap.com/saphelp_smehp1/helpdata/en/b3/64c33af662c514e10000000a114084/frameset.htm]
    Snote application is also integrated with this Service Desk, you can apply SAP notes to any satellite systems.

  • 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

  • End to End processes in Customer Messaging and Points card

    Dear friends
    What are the E2E business processes involved in a typical customer messaging and points card scenario for a high street retailer.
    How best can we define Customer messaging processes? And what is the right way to model these processes if they are brand new processes (i.e new processes to be added in the lifecycle). How should we map them in the first place?
    Thanks in advance,
    Jo

    Dear Johannes,
    We have a few administration transactions that you can use on back-end. For example:GRFN_STR_CHANGE -GRFN_STR_CHANGE-Change Process Control
    as well as RE_RHGRENZ4 to  Set a new end date to the objects.
    At last case, you can run the program RHRHDL00 thru SE38 Tcode.Be carefull because this program delete the object from database.
    Regards,
    Karina Atonaidan

  • While running FBL5N (Business area wise) customer code and customer names a

    Hi Gurus,
    While running FBL5N (Business area wise) customer code and customer names are not appearing.

    Hi Raju,
    Please click on the change layout screen button on the screen of FBLN5N report. then select the fields customer code and customer name from the right hand side table and drag it to left hand side table.
    After that run the report again. it will appear. please assign points.
    Rgds
    Manish

  • Custom classpath and custom jar entry in R12

    Hi all,
    I have created the custom classpath and custom jar file for isrore process. I had put custom jar and custom class entry in orien_application.xml file. But it was working on R12 at doveloper mode. It will creates the classes for custom jsp file using custom import class or custom jar. But once i revert back the devloper mode means it won't work.
    Could you please help..

    Oracle apps R12 - Compiling JSP with custom classpath
    We all know that to compile JSP manually on the Oracle Application R12 instance, we need to run the file $FND_TOP/patch/115/bin/ojspCompile.pl.
    Its help is as follows:
    syntax: ./ojspCompile.pl COMMAND {ARGS}
    COMMAND --compile               update dependency, compile delta
    --create                rebuild entire dependency file
    -delta.out update dependency, list delta to file
    -dep.out update dependency, output heirarchy to file
    ARGS -s matching condition for JSPs filenames
    -p number of parallel compilations
    -log to override logfile from ojspCompile.conf
    You are
    recommended to set the log file location
    outside of any network file system shared (NFS) area/drive.
    -conf to override ojspCompile.conf
    --retry         retry previously failed compilation attempts
    --flush         forces recompilation of all parent JSPs
    --quiet         do not provide an actively running progress meter
    --fast          instantly fail jsps that are possibly invalid
    example1: ojspCompile.pl compile -s 'jtf%' -p 20 retry
    example2: ojspCompile.pl compile -s 'jtflogin.jsp,jtfavald.jsp' flush
    example3: ojspCompile.pl compile fast --quiet
    If your JSP uses custom classes, then compiling jsp manually can fail if proper classpath is not set. Yes, even though if you have setup the classpath correctly in orion-application.xml, it will fail because this jsp compile utility does not read orion-application.xml classpath.
    So, the problem is to identify where to set the classpath so that above utility can pick it up. After several search and looking into code, I found following:
    By default, the jsp compiler script uses following configuration file
    $INST_TOP/appl/admin/ojspCompile.conf
    This conf file has a classpath field in it which is usually pointed to file
    $INST_TOP/appl/admin/ojspCompile.properties
    This property file lists the classpath used for JSP compilation.
    So if your classes are not listed in this file, your jsps will not compile by ojspCompile.
    Ofcourse, you can always set the "main_mode" to "recompile" in orion-web.xml, but that for production you do not want to change it and compile the JSP on file deployment.
    References:
    458338.1 How to Enable Automatic Compilation of JSP pages in R12 Environment
    433386.1 JSP Pages Hanging in R12 After Removing Cached Class Files in _pages
    783094.1 Compile jsp files at Application R12 at Windows

  • Customer Groups and Customer Credit Groups

    Hello
      I was going through the documentation for Credit Management, but I was confused on what the difference was between customer groups and customer CREDIT Groups.. both of them sort of have the same definition, then what is the difference ?
    Please help me out.
    Regards,

    Hi Raj,
    For your info :
    The <b>credit group</b> groups together different business transactions which should be dealt with in the same manner with regard to the credit check.
    You enter the credit groups when you configure the sales document types for credit management and define the automatic credit check.
    Default settings
    The following credit groups are contained in the standard SAP R/3 System:
    01 = credit group for sales order
    02 = credit group for delivery
    03 = credit group for goods issue
    Actions
    1. Check whether you can use the credit groups in the standard system.
    2. If you need to create new credit groups, enter an alphanumeric key with two characters and a descripion for the credit group.
    A <b>customer group</b> tells to which a customer can belongs to.
    You specify the customer group for sales data in the customer master record for each sales area.
    The SAP System copies this specification automatically into the sales documents at header and item level. Here, you will find the customer group on the detail screen for general business data.
    Actions
    1. Specify an alphanumeric key which can have up to 2 characters and a description for the customer groups.
    2. Make sure that the customer groups are entered in the customer master records.
    Hope it helps. Pl reward if useful.
    Thanks & Regards
    Sadhu Kishore

  • Customer balance and customer sales

    I am running the transactions S_ALR_87012171 and S_ALR_87012169 to view the customer sales and customer account balances, respectively. What database tables are these figures from?
    Thanks.

    S_ALR_87012171 :
    TABLES: RFRRD10, COIX, COIX_DATA40, RKB1X, RKB1F, RKB1D.
    S_ALR_87012169 :
    TABLES: RFRRD10, COIX, COIX_DATA40, RKB1X, RKB1F, RKB1D.
    The COIX_DATA* relates to client number!

  • Standard form :'Customer  invoice' and 'customer Invoice : Property Damage'

    Hi
    Can someone tell me what is the standard form for 'Customer  invoice' and 'customer Invoice : Property Damage'.? Is there any config involved.
    I'll reward points for any helpful answer.
    -Nash

    LB_BIL_INVOICE is the Standard SMARTFORM for Invoice  Document
    you need to do Output Type/Control configuration(TCode NACE)

  • How to search Products based on content of Custom 1 and Custom 2 fields

    I have a client who has only 6 products but each product has 30 colour and 6 size variations (for each colour of each prdouct) thus creating 1080 separate prdoucts which all need to be sold be individual product codes and with managing inventory levels.
    What we want to do is to give users a search facility that once they select the main product they can choose the colour and the size (as would be set in the custom 1 and custom 2 fields to present the desired product for purchase.
    Anyone got any idea whether this is possible in BC and if so how to achieve this?
    Whilst not for the clothing idnustry this requirement is common for any busienss in that industry so a solution would be very appealing tomany people I am sure.
    Thanks in anticipation...

    Hi Greg,
    I don't know how you'd implement that. There's no facility that will provide you with a search capability for a particular product, so if you're looking at the detail view of a product you can narrow it down somehow to a particular colour. By the way, how do you imagine this to work? Would it be a keyword search for colour?
    Out of the box you can only group those products, since your require inventory(otherwise you'd probably use attributes), and that would render the dropdown that contains all of the other products in that group and the customer would select the colour they want from the dropdown.
    Cheers,
    mario

  • Customs documents and customs declaration.

    Hi Experts,
    Can any one please briefly explain what is the difference between customs document and customs declaration. Is there any special process required to convert customs document as customs declaration?
    I will explain by taking one scenario.
    If we transfer any documents from ecc to gts those documents will called as customs documents. Please tell me am I Right or wrong if right,
    another scenario,
    when we send proforma invoice to gts those invoice will be converted as customs declaration. Is it right or wrong if it is right how it converts to customs declaration why cann't it convert as customs document.
    for converting customs document to as customs declaration is there require any process or configuration settings if yes please let me explain i am little bit confuse.
    Thanks in advance for help ful answer.

    Hi Hari,
    You are exactly bang on in explaining about what is a Customs document and What is a Customs declaration.
    Firstly, please take a look at the below thread where this had been discussed earlier also.
    Difference between customs document and customs declaration document
    But to further differentiate in real sense,
    A Custom document is something that is record in the SAP GTS system of the trade transactions occurring in the SAP logistics system and some time may a supporting document as well. An example of such a case is when we create a sales order , then a customs document is being generated in the GTS system. Here, SAP GTS Custom Documents are just a replica of the SAP feeder system's documents like Sales order etc. with Trade specific data like licenses embedded into them to further assist for future declarations and tracking.
    A Custom Declaration is something that contains data to be declared to the appropriate authorities in the specified format.  During this process ,data from the company's SAP business documents is copied into a declaration to further pass on to the authorities for approval for trade and related processes.
    I hope that now the things will be clear to you. If not, please open a discussion thread for an open discussion to get the required stuff.
    Regards,
    Aman

  • Is  Creating a Custom Component and Custom UIComponent are same in Flex ??

    Hi ,
    I am getting confusion in the terminology of words  with respect to Custom  Components .
    Please let me know whether  Creating a Custom Component and Custom UIComponent are same in Flex ??
    Because i have created some  Custom Components based on Form Container based on my business screens .
    Does they both Custom Component and Custom UIComponent mean the same ??
    Please tell me .
    Thanks in advance

    There seems to be a little confusion here. Think of it this way:
    A basic UIComponent by itself is not visible; you can add something you can see to it to make a visual custom component. For example, a ComboBox component is a UIComponent with a ComboBox added to it.
    The UIComponent is the lightest weight component available from which you can create other components. I use it as the base for custom components that the user cannot see, like a data manager.
    HTH,
    Carlos

  • Currency rate vs custom 3 and custom 4

    Hi all
    I have used all currencies in custom 1 and required currency in custom 2 for entering currency rates. Now for custom 3 and custom 4, Do these have to be [None] only( and that too as base members? ??
    A wild example i came up with
    Assume I have two times in custom 3..one is 11:00 AM and other is 11:00 PM and custom 4 are the dates..i.e 1st 2nd 3rd and so on till 31st.
    I need currency rates at these two times daily and I have these in custom 3 and 4 dimensions say. So how do i go about entering currency rates?
    Question 2)
    If I need to enter data at custom dimension level, does the member necessarily have to be under [None] ? If not then how do i go about? Since when I take the member out of [None] and keep it at a sibling level of [None] , I cannot enter data at that member but If I keep the same as a child of [None], It will allow me to enter data. So how do i go about this?
    Question 3)
    This is basically a combination of Q1 and Q2..If I have a member under [None] in custom 3 dimension, I cannot use custom 3 as [None] while entering Currency rates since [None] becomes a parent. If I keep the member as a sibling of [None] in custom 3 dimension, then I cannot enter data at that member, but I can enter currency rate at [None].
    Please help me resolve these 3 problems.
    Thanks!

    i think you are trying to do things not supported by HFM.
    you are correct, when entering currency rate data in HFM, both custom3 and custom4 must be set to [None] member.
    these are the types of custom rate that are used by the "Translation" feature in HFM and Sub Translate()
    i do not know how you could have different currency rates in the same rate accounts for different times of day. I do not think HFM is normally used in this way. You would probably need to use Multiple different rate accounts for the different times of day, and then write complicated rules in the Sub Translate() to use the different rate accounts depending on the target cell POV.
    I suggest you reach out to someone who has experience in designing HFM applications to see if there is any way to achieve your goals using HFM.

  • My phone is not ringing for a message and a call

    Not able to here a tone for a message and a call. names just appear on the banner even my phone is in handy.

    Hello all...
    I'm on iPhone 4 with iOS 5.0.1 on Australian Vodafone Pre-paid network.
    Have a similar issue where I would call my iPhone from a landline, ring tone suggest that phone is ringing, but the actual iPhone device itself is not ringing.
    Thought it was the network, so I got myself a new sim - same problem.
    Use other (working in other iPhone) sim on the problem iPhone - same problem.
    Tried calling out from the problem iPhone - same problem.
    The only fix for me was to reset the iPhone by going to: Settings - General - Reset - Reset All Settings.
    Hope that helps others...
    The question is - what was the root cause of the problem? Hmmmm...

Maybe you are looking for