Tables for Multilevel Categorization selected in the Transactions

Hello guys,
We are using CRM 2007 IC Web Client. I have set up Multilevel Categorization with 2 levels for Service Orders
Level 1: Motivo
Level 2: Central
When creating a Service Order, I choose both Level 1 and Level 2. And I want to know in which table I can find the both Levels I selected for each Service Order. I mean, I do not need the table with the categories (which I customized in the Rule Modeler)....I need the transactional table where I can find the Service Order ID and the Levels which were selected.
I performed a trace and I found a  the table CRMD_SRV_SUBJECT. However it only shows me the Level 2 for each Service Order and this has some logic because if I check in the GUI (by using transaction CRMD_ORDER) the service order I created in the IC Web, it only shows me One Level and it corresponds to the Level 2.
I hope you can help me!
Many thanks in advance!
Pablo

Hello Rupesh and Saumya, many thanks for your quick replies.
However they do not solve my question.
Rupesh, those tables that you mentioned are useful to see what I customize in the Rule Modeler with the IC_MANAGER Business Role. I need the transactional table where I can find all the two Levels values that I selected for each Service Order.
Saumya, as I mentioned in the question posted, we have already been able to reach table CRMD_SRV_SUBJECT. The problem is that the table only shows me the LAST Level I chose in the IC Web when creating the Service Order. In our case Level 2 (as we only need 2 Levels).
I have just read in the CR410 manual and it says the following which is the cause why I only see the Level 2 in the CRMD_SRV_SUBJECT table:
"In the IC WebClient the categories can be selected to categorize a transaction. However the categories are only visible in the service ticket in the IC WebClient UI. They are not directly sotred in the service ticket. When the ticket is saved the Catalog/Code Group/ Code of the lowest selected category is stored on the database. The categories are linked via the hierarchy of the category modeler to the codes and thus to the ticket"
Any suggestions?
Many thanks for your help!
Pablo

Similar Messages

  • Badi for setting default values in the transaction in APO.

    BADI NAME: SMOD_APOCF005 which is used for setting default values in the transaction.
    I have implemented the BADI using the below code but that BADI is not triggering. Please can you provide any solution for resolving this.
    As per my requirement I am trying to set default values for these three fields RRP_TYPE, WHATBOM, CONVH.
    DATA: LS_MATLOC LIKE LINE OF IT_MATLOC.
    LOOP AT IT_MATLOC INTO LS_MATLOC.
    LS_MATLOC-RRP_TYPE = '4'.
    LS_MATLOC-WHATBOM = '5'.
    LS_MATLOC-CONVH = '999'.
    MODIFY TABLE IT_MATLOC FROM LS_MATLOC TRANSPORTING RRP_TYPE WHATBOM CONVH.
    ENDLOOP.
    DATA: LS_MATLOCX LIKE LINE OF IT_MATLOCX.
    LOOP AT IT_MATLOCX INTO LS_MATLOCX.
    LS_MATLOCX-RRP_TYPE = 'X'.
    LS_MATLOCX-WHATBOM = 'X'.
    LS_MATLOCX-CONVH = 'X'.
    MODIFY TABLE IT_MATLOCX FROM LS_MATLOCX TRANSPORTING RRP_TYPE WHATBOM CONVH.
    ENDLOOP.

    The  BADI name: SMOD_APOCF005 .
    T.code at APO : /sapapo/mat1
    Once we enter in that T.Code with some Product and Location data.
    There under PP/DS tab.
    Under Planning Procedure there is a field PP Plng Procedure which I want to set as 4
    And under Order Creation there is Plan Explosion which needs to be set as 5
    And Under Horizons there is PP/DS Horizon which needs to be set as 999.
    BADi is implemented and active.
    And once the data is CIF from ECC to APO
    These default values are not set in the T code in APO and the BADi is not triggering.

  • Table for user status field in CJ20n transaction project defination

    HI ALL,
    what is table for user status field in CJ20n transaction project defination creation. This field is in Basic Data tab.
    Thanks.

    Hi,
    Check following tables for Usre status:
    TJ30 - User status
    TJ30T - Texts for user status
    TJ20 - Status profile
    JEST - Object status
    JSTO- WBS status profile.
    Check this code:
    REPORT zps_get_userstatus .
    PARAMETERS: p_posid LIKE prps-posid.
    *-- Constants
    CONSTANTS: gc_yes(1)     TYPE c                 VALUE 'X',
               gc_no(1)      TYPE c                 VALUE ' '.
    *-- Variables
    DATA: l_objnr LIKE prps-objnr.
    *-- Internal tables
    DATA: BEGIN OF lit_jest OCCURS 0,
           objnr LIKE jest-objnr,
           stat  LIKE jest-stat,
         END OF lit_jest.
    DATA: BEGIN OF lit_jsto OCCURS 0,
           objnr LIKE jsto-objnr,
           stsma LIKE jsto-stsma,
          END OF lit_jsto.
    DATA: BEGIN OF lit_status OCCURS 0,       "Combination of JEST & JSTO
              objnr LIKE jest-objnr,
              stsma LIKE jsto-stsma,
              stat  LIKE jest-stat,
            END OF lit_status.
    DATA: BEGIN OF lit_usrsta OCCURS 0,       "Uer status for all wbs
             objnr LIKE jest-objnr,
             stsma LIKE jsto-stsma,
             stat  LIKE tj30t-estat,
             txt04 LIKE tj30t-txt04,
           END OF lit_usrsta.
    DATA: BEGIN OF lit_usrtxt OCCURS 0,       "User Status text - TJ30T
            stsma LIKE tj30t-stsma,
            stat  LIKE tj30t-estat,
            txt04 LIKE tj30t-txt04,
          END OF lit_usrtxt.
    * get WBS object number
    SELECT SINGLE
         objnr FROM prps
               INTO l_objnr
               WHERE posid = p_posid.
    * get WBS active status from table JEST
    SELECT
          objnr
          stat
               FROM jest INTO TABLE lit_jest
               WHERE objnr =  l_objnr AND
                     inact <> gc_yes.
    * get WBS status profile from table JSTO
    SELECT
          objnr
          stsma FROM jsto
                INTO TABLE lit_jsto
                WHERE objnr =  l_objnr.
    * combine JEST and JSTO table for user status
    LOOP AT lit_jest.
      IF lit_jest-stat CP 'E++++'.
        READ TABLE lit_jsto WITH KEY
                            objnr = l_objnr.
        IF sy-subrc = 0.
          lit_status-objnr = lit_jest-objnr.
          lit_status-stsma = lit_jsto-stsma.
          lit_status-stat  = lit_jest-stat.
          APPEND lit_status.
        ENDIF.
      ENDIF.
      CLEAR: lit_jsto, lit_status.
    ENDLOOP.
    *  get text for user status
    SELECT DISTINCT
             stsma
             estat
             txt04 FROM tj30t
                   INTO TABLE lit_usrtxt
                   FOR ALL ENTRIES IN lit_status
                   WHERE stsma = lit_status-stsma AND
                         estat = lit_status-stat  AND
                         spras = sy-langu.
    Let me know if you have any question.
    Regards,
    RS

  • Internal Reconciliation when Selecting all the transactions to Reconcile

    Hello Experts,
    In Internal Reconciliation when Selecting all the transactions at once to Reconcile for setting up the Aging Report. It gives an error i.e. Reconciliation amount must be less than the balance due for this transaction 47901.
    Help Required
    Thanks & Regards

    Hi Shazad,
    please check note [1318821|https://service.sap.com/sap/support/notes/1318821] & see if this is the problem.
    All the best,
    Kerstin

  • Table for dates in date-type in transaction

    Hi,
    Can anybody tell me the table inwhich the dates saved in the different date-types  ( which are part of date-profile) are stored for the transaction type.
    This date profile is assigned to transaction type( LEAD).
    thanks and regards,
    PD

    Hi Prashant,
    Use Table: BAD_APPOINTMENT
    Field: ORDERADM_H_GUID contains guid of Lead transaction obtained from table CRMD_ORDERADM_H.
    Field: APPT_TYPE contains information for Data Types.
    Best Regards,
    Pratik Patel
    <b>Reward with Points!</b>

  • To Get the earlier records in a table for a particular id neglecting the newer ones

    Hi All,
    I need to get the older records for a particular id rejecting the newer ones..My Scenarios is as follows..
    ID      Result           Date
    1        Pass             2015-01-01
    1        Fail                2015-03-05
    2       Pass                2014-06-07
    2       Fail                  2015-02-02
    My Output will be 
    ID        Result              Date
    1          Pass                2015-01-01
    2          Pass                 2014-06-07
    How can i achieve this....Thanks in advance

    Please follow the basic Netiquette of all SQL forums for the past 35+ years on the Internet. Post DDL that follows ISO-11179 rules for data element names. You have no idea; you do not even know that DATE is a reserved word in SQL! Use industry standard
    encodings (ISBN, UPC, GTIN, etc) and avoid needless dialect. Give clear specifications. Give sample data. Web need to see the keys and constraints, the DRI, etc.  80-95% of the work in SQL is in the DDL. 
    If you do not know that rows are not records, fields are not columns and tables are not files, then you should not be posting. If your tables have no keys, you should not be posting. If you have not tried any DML yourself, you should not be posting. 
    >> I need to get the older records [sic] for a particular product_id, rejecting the newer ones..My Scenarios is as follows.. <<
    Now we have to do all your typing because of your bad manners. Thanks a lot. Here is a repair job. 
    CREATE TABLE Inspections 
    (product_id CHAR(5) NOT NULL,
     inspection_date DATE NOT NULL
    PRIMARY KEY (product_id, inspection_date),
     inspection_result CHAR(4) NOT NULL
     CHECK (inspection_result IN ('pass', 'fail'))
    INSERT INTO Inspections 
    VALUES
    ('prod1', '2015-01-01', 'pass'),
    ('prod1', '2015-03-05', 'fail'),
    ('prod2', '2014-06-07', 'pass')
    ('prod2', '2015-02-02', 'fail'); 
    Here is one way to do this: 
    WITH X(product_id, inspection_date, inspection_result, first_inspection_date)
    AS 
    (SELECT product_id, inspection_date, inspection_result,
            MIN(inspection_date) OVER (PARTITION BY product_id) 
       FROM Inspections)
    SELECT product_id, inspection_date, inspection_result
     FROM X 
    WHERE first_inspection_date = inspection_date;
    --CELKO-- Books in Celko Series for Morgan-Kaufmann Publishing: Analytics and OLAP in SQL / Data and Databases: Concepts in Practice Data / Measurements and Standards in SQL SQL for Smarties / SQL Programming Style / SQL Puzzles and Answers / Thinking
    in Sets / Trees and Hierarchies in SQL

  • How to update a column in a nested table for a given record in the master t

    Hi I have translations for all attributes of an item stored as a nested table
    CREATE OR REPLACE TYPE T_ITM_ATTR AS OBJECT(
    ATTR_NM VARCHAR2(30),
    ATTR_VAL VARCHAR2(200 CHAR),
    ATTR_STS_BL NUMBER(1))
    INSTANTIABLE
    FINAL
    CREATE OR REPLACE TYPE T_ITM_ATTRIBUTES AS TABLE OF T_ITM_ATTR;
    CREATE TABLE XGN_MOD_ITEMS_T
    IDS NUMBER,
    MOD_IDS NUMBER NOT NULL,
    MOD_ITM_IDS NUMBER NOT NULL,
    LGG_ID VARCHAR2(3 CHAR) NOT NULL,
    ITM_TYPE VARCHAR2(50 CHAR) NOT NULL,
    ITM_NM VARCHAR2(50 CHAR) NOT NULL,
    ITM_BLOCK VARCHAR2(50 CHAR),
    ITM_ATTR T_ITM_ATTRIBUTES,
    ITM_COL1 VARCHAR2(1 CHAR),
    ITM_DSC VARCHAR2(100 CHAR),
    CREATED_BY VARCHAR2(30 CHAR) DEFAULT USER NOT NULL,
    CREATION_DATE DATE DEFAULT SYSDATE NOT NULL,
    LAST_UPDATED_BY VARCHAR2(30 CHAR),
    LAST_UPDATE_DATE DATE
    NESTED TABLE ITM_ATTR STORE AS NESTED_ITM_ATTR_T
    TABLESPACE XGN4_TAB
    PCTUSED 40
    PCTFREE 10
    INITRANS 1
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    PCTINCREASE 0
    FREELISTS 1
    FREELIST GROUPS 1
    BUFFER_POOL DEFAULT
    What I want to do is to update only the attr_val of each item to a value coming from a temporary table where the user inserted his translations
    So how can I update ?
    this doesn't work since I have to know the previous value?
    update table(
    select t2.attr_val
    from XGN_MOD_ITEMS_T t1, table(t1.itm_attr) t2
    where t1.mod_itm_ids=160) attr
    set value(attr) = 'Profil'
    where value(attr) = 'Profile'
    This updates all occurences for all entries wich doesn't work either because I have for each language another record
    UPDATE /*+ NESTED_TABLE_GET_REFS */
    NESTED_ITM_ATTR_T
    SET attr_val = 'SHIT'
    WHERE attr_val = 'Profile'

    http://www.psoug.org/reference/nested_tab.html
    Look for UPDATE. There is a working demo on the page.
    That said nested tables are not a good place to store data. Reconsider using relational tables with, if necessary, object views.

  • Table for process order &Selection profile status  details -reg

    Hi ,
    From which tabel we can get the link between the process order and selection status profile (like SAP001 etc..
    When we input the process orders we should get the selection status profiel linked to it
    Regards,
    Madhu Kiran

    Hi,
    The tables JEST and JSTO  are related to status profile .
    What i need is of Selection Profile
    You can see this field in COOIS or COOISPI  just above the Sys Status field
    We need this urgently
    Can any one help ?
    Madhu Kiran

  • How do I get my application to continue processing instead of waiting for a menu selection when the user clicks on a drop-down menu?

    I'm developing a process-control application,using serial communication for data acquisition. My problem - I need this serial read of data to be continuous. But, when I click on a drop-down menu, the rest of the processing halts until I click on one of the menu items in the drop-down list and I lose data in that interval. What can I do?

    In most process-control applications it is not about just avoiding lost measurement data. The most important is having a robust control-algoritm that reacts to a change of input-situation in a given time.
    A non-responsive system is not a very reliable process-control solution.
    The vi you mentioned are only around since the latest versions and the old method of polling controls still suits many applications (but that's another discussion).
    As about RS-232 input time-outs, I have never used that.
    In the time before VISA was created I (as other LabVIEW users I discovered) used a method of storing every incoming string in a buffer (memory-vi with USR) and that still works (classic serial VI's versus VISA is also another never-ending discussio
    n).

  • Table for storing Pre-Selection Activities

    I want to run a report to display candidate names who have have received the activity Management Ranking.
    What table are the activities stored in?

    Linking to a thread which is again linking to an outdated data model, buhhh - just kidding , please don't be mad at me Nicole
    In addition to the link provided by Nicole,
    activities are stored in infotypes. Which infotype is used is depending on the category assignment to the activity type. The process(es) the activity type is assigned to does not matter.
    Infotype
    Database table
    Activity category Id
    Activity category description
    5135
    HRP5135
    01
    Simple Activity
    5136
    HRP5136
    02
    Simple Correspondence
    5137
    HRP5137
    03
    Qualifying Event
    5138
    HRP5138
    04
    Invitation
    5139
    HRP5139
    05
    Status Change
    5140
    HRP5140
    06
    Data Transfer
    5141
    HRP5141
    07
    Questionnaire
    5142
    HRP5142
    08
    Classification (=Ranking)
    5143
    HRP5143
    09
    Confirmation
    5144
    HRP5144
    10
    Background Check
    5145
    HRP5145
    11
    Parsing
    The information which activity type is assigned to which activity category can be taken from table T77RCF_ACT_TYPE.
    Kind Regards
    Roman

  • I want to delete the transactional record from database table

    Hai,
    I want to delete the transactional data from database table with out using the dialog programming is it there any trancation for this.
    for master data we have the transaction code for delete the records. The t.code is 'OBR2'.
    Plz help in that cse.
    Thanks and regards,
    P.Naganjana Reddy

    Hai,
    Plz help me urgent.
    I am asking i want to delete transactional data from database table without using the dialog programming.
    Thanks and Regards,
    P.Naganjana

  • Table for flag STLKZ in CS03 transaction

    Hi Guru,
    in the transaction CS03 for some materials I see in the column (ASM ASSEMBLY STLKZ field) who wants a flag to indicate that this material is related to a bom.
    In which table can I see the flag STLKZ?
    Thank for all !

    Hello Marco,
    This field is not a table field therefore it is not stored on any table that you can refer for a direct link. This field is filled in if an entry is found table MAST for that component. Table MAST is a table for material/Plant BOMs. The assembly indicator is set If the component was is found on the header material on a BOM. The system checks the table MAST to see if that material was ever assigned to a BOM number (STLNR). 
    In this case, materil A will be set assembly indicator in BOM B since it is a header material of a BOM. This indicator is set no matter what the usage the BOM has. You can find what BOM it is linked . You can then use MAST-STLNR to check tables STPO for components.
    There is also another field checked when setting this flag, There is a field in the table MARA for storing low-level code. This
    field is also considered for setting the flag.Low level flags are changed based on bom levels
    Hope this information helps.
    Thanks
    Amber

  • Table to check number of entries in an Infocube for a particular selection

    Hi All,
    Is there a table in BW system which would give a the number of entries in an infocube for a particular selection just like the flatR/3 table which has the button on top for checking the number of records?
    Any close work around to check the number of entries in an Infocube would be appreciated.I have tried to find out the number of entries from F & E table but in vain.

    Hello,
    You can try the following:
    1) Right click on cube display data, select all attributes and nav attributes yo are interested in
    2) Go to field selection for output, here select only the nav attribute you want the no of records against (dont select any KF) , hit execute
    3) In selection screen provide the selection you want to give
    4) Scroll down, uncheck do no use nay conversion and use mat aggregates, keep Max no of hits blank
    5) Check use DB aggregation and output no of hits
    This will give you the number of records for the nav attribute value u have selected.
    You can use sum function in the ALV GRID if you want to sum up multiple values.
    Regards,
    Shashank

  • Field in portal table for the text contained in an uploaded file

    I have uploaded a file of base item type file into release 2 of the portal.
    Does anyone know which table the clob field for the text contained in
    the uploaded file is stored?
    Thanks,
    Suzanne

    Hi,
    When you run the Search hep is it giving the description or not
    You have to create the serarch help with both the fieldname and its description field then we cna the values. Or
    Try to mantain the text table for this field and get the data.
    Get the valeusinto drop drown with this table Or create the SearchHelp for this text table
    Regards
    Lekha

  • FM of BAPI for the transactions VV12 , VV22 and VV32

    Hi All,
    My requirement is to update the condition records for different output types using the transactions VV12,VV22 and VV32.
    Is there any FM or BAPI to do that. I have searched but could not get any.

    Hi Naga Bhusan,
    Welcome to SDN.
    try below userexsits
    VCOM0001 - Fill Output Communication Areas - Application V6
    VCOM0002 - Fill Output Communication Areas - Application E1
    VCOM0003 - Fill Output Communication Areas - Application M1
    VCOM0004 - Fill Output Communication Areas - Application V7
    VN000001  - Customer exits in output determination
    Thanks and Regards,
    Syfulla

Maybe you are looking for

  • Can no longer see my Airport Extream

    Have successfully connected to the net, both through wlan and lan. Have also connected a server to Airpor Extream. When I now wanted to install a printer to Airport Extream, suddenly the Aiport Utility wont find neither the Aiport Extream, nore the 2

  • Saving an image as PNG to a specific location, and appending the document's existing name.

    Hello   I'm building a very complex action that references several scripts. One of the scripts needs to save the existing canvas as a .png file to a specific directory, and rename the .png with the document's existing name and adding "-SCREEN" to the

  • Single or Multiple FM area for multiple company codes ?

    Hi All, I have two company codes assigned with two different chart of accounts and controlling areas. Now i have to implement Funds Management in our company. In this scenario does i need to create single or two FM areas. can any one guide through th

  • Why do many Typekit fonts look bad on publish of Muse website?

    I have published more than a dozen websites with Adobe Muse and Typekit fonts. I have really been drawn to Typekit and the beautifull fonts it brings into Muse. When I am in design mode on a Muse site the fonts look great. My problem is when I previe

  • CC subscription won't let me start CS Apps

    My subscription to CC ended a few days ago and I have since been unable to start any of my CS6 apps. I get a subscription box telling me that I need to renew my sub. I have uninstalled everything Adobe from my system and used their tool to clean the