List of codes under various catalog types

Hi All,
I want an illustrative / sample list of various codes under following catalog types applicable for QM notifications which is relevent for a industry involved in trading and servicing of medical equipment.
Can anybody please provide me the same ?
1) Coding
2) Defect location
3) Defects
4) Causes
5) Tasks
6) Activities
Regards,
MHP

1) Coding -
If you are measuring color of the material then you can create "COLOR" as code group and under this code gp you can create diff code as required, example;
001 - white
002 - black
003 - red
004 - yellow etc...Same way you can create diff code grp and code combination.
2) Defect location -
If you are inspecting material at diff location then you can create diff code for each location
001 - QC lab
002 - QA lab
003 - Electrical lab...etc..
3) Defects -
Here for each defect you Crete one new code..
001 - Color is not good
002 - Cert missing
003 - Out of spec...etc..
To create all different codes for diff activity first you need understand you business process and try to map those business process steps with creating code and map to process.
hope this helps to understand.

Similar Messages

  • User defined Catalog type u0093Su0094  - Valuation code field missing

    Hi Quality Experts,
    I have created a user defined catalog type in customization coping the catalog type 3.
    This is required for authorization purposes.
    Transaction Code : QS51.
    For system defined catalog type 3, in QS51 all fields are visible.
    Hence selection set can be created.
    For user defined catalog type S which is a copy of 3,
    for the same transaction code QS51 many field are hidden.
    Hence selection set can not be created.
    15 Columns are existing.
    S.No     System defined Catalog Type "3".     User defined Catalog Type "S".     Remarks
    1     Code Grouop     Code Grouop     OK
    2     Code                      Code                      OK
    3     Short Text for Code     Short Text for Code     OK
    4     Long Text for Code     Long Text for Code     OK
    5     Valuation Code     MISSING                     THIS FIELD IS MISSING
    6     Quality Score     MISSING                     THIS FIELD IS MISSING
    7     Posting Propasal UD     MISSING                     THIS FIELD IS MISSING
    8     Long Term Char.     MISSING                     THIS FIELD IS MISSING
    9     Stock Screen
                    Backgr.                    MISSING                     THIS FIELD IS MISSING
    10     Follow up action     MISSING                      THIS FIELD IS MISSING
    11     Short Text      MISSING                     THIS FIELD IS MISSING
    12     Changed By     Changed By     OK
    13     Changed On     Changed On     OK
    14     Created By     Created By     OK
    15     Created On     Created On     OK
    ===========================================================
    Total  7 fields are missing.
    SAP Version : SAP ECC 6.0
    Please guide.
    With Best Regards,
    Raghu Sharma.

    Hi
    when you have created new Catalog type by copying 3, did you check whether Selected Sets is flagged in the configuration?
    regards
    Srinivas

  • Downloading the data of catalog types / catalog / codes

    Hi Friends,
    We have the catalog types, code groups, codes, selected sets defined in SAP.
    How can I download them directly from SAP.
    Kindly help.
    Regards,
    Naren

    You can load these directly from the tables using SE16.
    QPAC                           Inspection catalog codes for selected sets
    QPAM                           Inspection catalog selected sets         
    QPCD                           Inspection catalog codes                 
    QPCT                           Code texts                               
    QPGR                           Inspection catalog code groups           
    QPGT                           Code group texts                         
    Craig

  • Place InfoObjects under  InfoObject  Catalog

    Hi Guys,
    I have few InfoObjects (IO) under unassigned infoarea and want to place under particular infoarea. I am telling IO name, IO Catalog name etc. reading a tab delimited text file which are already exists in server. Here is the structure:
    IO_CAT        IO_NAME  IO CAT_TEXT     IO CAT_TYPE     IO CAT IAREA
    ZTEST_AS  ZIO_DM1         ZTEST AS     CHA              ZEA_PLAY_AREA
    ZTEST_AS  ZIO_DM2         ZTEST AS     CHA              ZEA_PLAY_AREA
    File reading is ok but when I call FM 'BAPI_IOBC_CHANGE', it's throwing an error.
    Here are the code - can some one help me please where I am doing wrong:
    REPORT  ZAS_BAPI_TEST2.
          Declaring Internal table for creating InfoObject
    DATA: p_file TYPE string.
    Data: BEGIN OF bapi_cat OCCURS 0,
            io_cat(30) TYPE C,
            io_name(30) TYPE C,
            io_cattxt(60) TYPE C,
            io_cattype(3) TYPE C,
            io_infoarea(30) TYPE C,
         END OF bapi_cat.
    DATA ibapi LIKE STANDARD TABLE OF bapi_cat.
    DATA: WS_BAPI LIKE ibapi.
    DATA: lt_return type BAPIRET2 occurs 0 with header line.
    PARAMETERS: sel_file(1500) TYPE c default ' ' OBLIGATORY LOWER CASE.
          PUT THE TEXT FILE PATH TO P_FILE
    p_file = sel_file.
    **Copy the file from the workstation to the server/ internal table**
    CALL FUNCTION 'GUI_UPLOAD'
         EXPORTING
           filename                = p_file
           FILETYPE                = 'ASC'
           HAS_FIELD_SEPARATOR     = 'X'
                   HEADER_LENGTH           = 0
                   DAT_MODE                = SPACE
                   CODEPAGE                = SPACE
                   IGNORE_CERR             = ABAP_TRUE
                   REPLACEMENT             = '#'
                   READ_BY_LINE            = 'X'
                 IMPORTING
                   FILELENGTH              =
                   HEADER                  =
        TABLES
            data_tab                = bapi_cat[]
        EXCEPTIONS
            file_open_error         = 1
            file_read_error         = 2
            no_batch                = 3
            gui_refuse_filetransfer = 4
            invalid_type            = 5
            no_authority            = 6
            unknown_error           = 7
            bad_data_format         = 8
            header_not_allowed      = 9
            separator_not_allowed   = 10
            header_too_long         = 11
            unknown_dp_error        = 12
            access_denied           = 13
            dp_out_of_memory        = 14
            disk_full               = 15
            dp_timeout              = 16
            not_supported_by_gui    = 17
            error_no_gui            = 18
            OTHERS                  = 19.
        IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
               WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
         MESSAGE e012(zea_spms) WITH 'Method' 'GUI_UPLOAD' sy-subrc.
       ENDIF.
    *Place all IOs under InfoObject Catalog through BAPI Function
    CALL FUNCTION 'BAPI_IOBC_CHANGE'
      EXPORTING
        INFOOBJCAT  = bapi_cat-io_cat
        DETAILS     = bapi_cat
      TABLES
        INFOOBJECTS = bapi_cat
        RETURN      = lt_return.
    loop at lt_return.
      if lt_return-type = 'E'.
       MESSAGE ID lt_return-ID TYPE lt_return-TYPE NUMBER
       lt_return-NUMBER
        WITH lt_return-MESSAGE_V1 lt_return-MESSAGE_V2
        lt_return-MESSAGE_V3 lt_return-MESSAGE_V4.
      endif.
    endloop.
    *ENDLOOP.
          SELECT THE LOCATION FOR TEXT FILE
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR sel_file.
      CALL FUNCTION 'WS_FILENAME_GET'
        EXPORTING
          def_filename     = ''
          def_path         = 'C:\'
          mask             = ',Documentos de texto (*.txt), *.txt.'
          mode             = ''
        IMPORTING
          filename         = p_file
        EXCEPTIONS
          inv_winsys       = 1
          no_batch         = 2
          selection_cancel = 3
          selection_error  = 4
          OTHERS           = 5.
      find '.txt' IN p_file.
      if sy-subrc <> 0.
        concatenate p_file '.txt' into sel_file.
      else.
        sel_file = p_file.
      endif.
    Thanks,
    Mau

    To assign your Infoobject you must use a separate BAPI:
    BAPI_IOBC_CHANGE
    This function module changes an existing InfoObject catalog. Enter all the InfoObject catalog properties in the DETAILS parameter
    If the Catalog doesn't exist you have another BAPI:
    BAPI_IOBC_CREATE
    This function module creates a new InfoObject catalog. You have to give all the InfoObject catalog properties in the DETAILS parameter
    Regards,
    Sergio

  • Block Sales document if License is missing under any license type

    Hi,
    We have a scenario where we using multiple license types for a legal regulation. If any license is missing for any license type that determined while screening, the order should be blocked.
    For example, For Legal Regulation EAR, we have two License types LTYP1 and LTYP2 and we maintain only License for EAR with LTYP1. During the sales order creation, system screens and found that 2 license types determined. Since 1 license is missing for Legal Regualtion EAR with LTYP2, the order should blocked. But at this moment, system found 1 license with combination EAR with LTYP21 hence it is released.
    But when we see the Log, system shows RED indicator against EAR with LTYP2, it means it could not found license for this combination, but the order is released. Our requirement is NOT to release this order and it should determine all the licenses determined for license types
    How should we achieved this scenario? Pls help
    Regards,
    Pradeep

    I finally managed to find my way through with this issue so for others who might have the same requirement:
    1) Check the check box Check multiple license types under Global Trade Services > Compliance Management > Legal Control > Control Settings for Legal Control
    2) Create an entry for the legal regulation and Code List Object PAPOF under Global Trade Services > Customs Management > Customs Code Lists > Assign Customs Code Lists Procedure to Legal Regulation
    3) Create the issuing authority for the legal regulation under Global Trade Services > Customs Management > Customs Code Lists > Maintain Customs Code Lists for Legal Regulation
    4) Assign the issuing authority to one license type out of two as I've noticed that it won't work if the two license types have the same issuing authority (one created license will release the order).
    under Global Trade Services > Compliance Management > Legal Control > Define License Types
    Config done on GTS 10.0

  • Restrict UD code group for Inspection type

    Hi,
    I want to restrict UD code groups for each inspection type.
    Let say : for 01 Inspection type - system has to show only 01 code group.It should not display the remaning code groups(02,03....)
    sridhar.R

    Hi,
    To achieve this you need to create separate Selected Sets.
    Run QS51----> Create a Selected set with Catalog type "3 - Usage decisions"  E.g. Z01 is created for Inspection type 01.
    Here you assign only Code 01 (Don't assign the un necessary codes)
    Now Follow the Customizing path....
    SPRO->Quality Management->Quality Inspection->Inspection Lot Creation->Maintain Inspection Types Execute========>
    Select inspection type 01 and assign the previously created selected set (Z01) here at the field "UD selected set"
    Now system will populate only those codes that are covered under the selected set Z01.
    Do the same for rest of all inspection types.
    Regards,
    Shyamal

  • Crm 7.0 webchannel ,define catalog type query

    Hi all,
    m facing a problem in webchannel (crm),if any of you can guide me in this regard, i would greatly appriciate it..the problem is :
    While performing "define catalog type" ,under the "Folder Template" tab when m trying to assign my newly created AREA & ITEM m getting the message "no values selected, maintain entries" & when i click yes m getting a window "choose customizing project". There is a button stating "continue w/o specifying project", if i click on that its taking me to "Define template for forlder" under basic functions in spro crm.I have already maintained folder for area & item which are saved then why are they not showing when m pressing f4.
    regards,
    Nitin

    I am assuming that your requirement is to create a new catalog type
    Normally, the CRM system comes with few standard catalog types - such as, AUTO and MANU. These catalog types usually have the respective "Areas" and "Items" predefined. For example, the Catalog type MANU has MANU-AREA and MANU-ITEM. The message here is, the standard system does come with several values predefined for these configuration tasks.
    Now, coming to your requirement, if you don't see any standard values in your configuration steps, then there is some issue you should look into.
    In your case, since no standard values are available for the "For Areas" and "For Items" - which actually should be in CRMD_KW_TEMPL table, I think you have to check if everything has been done correctly as far as the upgrade transport or installation transport goes.
    What is the version of CRM are you in? Though the following note is old, it is worth investigating.
    [Note 751751 - Content Management: Error TK295 in Customizing|https://service.sap.com/sap/support/notes/751751]

  • How do I add a link to the list of links under the "My Account Link"

    Q) How do I add a link to the list of links under the "My Account Link"?
    A) Edit any of your portlet web services and go to the "Advanced URL Settings" and then "User Configuration URL". If you type a path in this box, a link displays on the My Account page.
    You need to restart your portal web server to see results immediately because the display page is cached.

    What To Do If Your iDevice or Computer Is Lost Or Stolen
    If your Mac, iPhone, iPod, iPod Touch, or iPad is lost or stolen what do you do? There are things you should do in advance - before you lose it or it's stolen - and some things to do after the fact. Here are some suggestions:
    Reporting a lost or stolen Apple product
    AT&T, Sprint, and Verizon can block stolen phones/tablets
    What-To-Do-When-Iphone-Is-Stolen
    Lost or Stolen iPhone? Here’s What to do.
    6 Ways to Track and Recover Your Lost/Stolen iPhone
    Find My iPhone
    It pays to be proactive by following the advice on using Find My Phone before you lose your device:
    Find My iPhone
    Setup your iDevice on MobileMe
    OS X Lion- About Find My Mac
    How To Set Up Free Find Your iPhone (Even on Unsupported Devices)
    Third-party solutions for computers:
    VUWER 1.5.4
    Sneaky ******* 0.2.0
    Undercover 4.7
    LoJack for Laptops Premium Mac
    STEM 2.1
    MacPhoneHome 3.5

  • SharePoint Designer 2013 (2010 Platform Workflow) - How can I create a new list item with a SPECIFIC content type?

    In SharePoint 2010 I created workflows that used the 'Create list Item' Action, which then set the Content Type ID (so I could create documents of various types in a document library). 
    We just switched to the SharePoint 2013 platform, and now the drop down for Content Type ID is blank in all of the workflows that are still using the SharePoint 2010 platform.  Is there any way to create a list item with specific content
    type?  Even if I could just input a string into that field instead of using this blank drop-down.  Please help! 

    Hi Sarah,
    According to your description, my understanding is that you cannot create a new list item with a specific content type using SharePoint 2010 Platform Workflow.
    I tested the same scenario in my environment, and the Create List Item worked fine with the specific content type.
    How did you create the content type?
    Please check if the content type is added to the list/library the workflow associated with.
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • Need to find out the list of objects under a Transport

    Hi ,
    My requriement is to programatically find the list of objects under the Transport.
    I tried using the table E071 but no luck is there any FM or table which gives me the list of objects assigned to the transport request
    Regards,
    kk

    TYPES: BEGIN OF ty_tasks,
            trkorr TYPE trkorr,
            trstatus TYPE trstatus,
            strkorr TYPE strkorr,
            as4user  TYPE tr_as4user,
           END OF ty_tasks,
           BEGIN OF ty_object,
            trkorr TYPE trkorr,
            as4pos TYPE ddposition,
            pgmid TYPE pgmid,
            object TYPE trobjtype,
            obj_name TYPE TROBJ_NAME,
            lang TYPE spras,
           END OF ty_object,
    SELECT-OPTIONS : so_trans FOR e070-trkorr
    *selection from table e070.
      SELECT trkorr
             trstatus
             strkorr
             as4user
             FROM e070 INTO TABLE it_tasks
             WHERE strkorr IN so_trans or
                   trkorr in so_trans.
    IF SY-SUBRC = 0.
    *selection from table e071 to get all the objects
    *under the respective task/request.
    data: g_trans type e070-trkorr,
          g_strkorr type e070-strkorr.
      SELECT trkorr
             as4pos
             pgmid
             object
             obj_name
             lang FROM e071 INTO TABLE it_object
             FOR ALL ENTRIES IN it_tasks
             WHERE trkorr = it_tasks-strkorr.
    hope it might be helpfull.
    regards ,
    aby

  • Inventory count for Various Stock types

    What is Inventory count for Various Stock types?
    i have to upload data to this.
    can anyone explain this and give the tcode for this.
    Regards,
    Vimal

    Hi,
    While taking up physical inventory you have the option of doing it for different stock types being maintained .Like Quality stock,unrestricted stock ,blocked stock.If you are doing this activity in sessions in MI31 ,you need to check against the stock types which are to be counted.This will include the stock of the items as selected and leave aside the stock types not selected.In MI01 also you can select these stock types which are donated by 1,2,3 & 4 stock type.After creating the document the stock counted is to be entered in MI04 .Than get the difference list in MI20.The difference will be posted in MI07 which will complete the activity and stock will be adjusted after posting tyhe difference.
    Dhruba

  • TCode to see List of Plant + MRP Areas + MRP Type

    Hi,
    Can anyone tell whether any TCode exists which gives List of Plant + MRP Areas + MRP Type for the List of Material Number Input.
    For eg:  MM60 will give list of materials with Plant and its MRP Type.
    But it wont give detailes of other MRP Areas under which the Material is maintained.
    Regards,
    Prathap

    Hi,
    MC47 will give the list only if some requirement is loaded for the material.
    Vishal - Table serves the purpose but i need Tcode only.
    Does anyone has idea on other possible TCodes.???
    Regards,
    Prathap

  • How to create a sub head(code) in a catalog- for service notification

    Hi everyone,
    How to create a sub head(code) in a catalog- for service notification?
    Please guide with your valuable comments.
    Please guide its very urgent.
    Thanks and Regards
    Edited by: MPVash Vash on Oct 24, 2008 8:14 AM
    Edited by: MPVash Vash on Oct 30, 2008 7:38 AM

    Hi,
    Go to T-code QS41, give the catalog and code group and enter.
    U can click on the code after selecting the code group and create new  codes.
    In SPRO u should see which type of catalog is assigned to the notification type. This u can see in the overview of the notification type by selecting the notification type in SPRO.
    Regards
    Haricharan

  • Catalog type in QM

    Hi All,
    In qs41 transaction i have created some code groups, and inside it i have defined codes. Now, i want to delete some code and code group. When i am trying to delete it, it is showing error.
    In SPRO Setting for catalog type i can click the check box "deactivate", then it will allow me to delete.
    My query is by checking the box "deactivate", what can be it's affect later. Should i go ahead and check the box deactivate, as this is the requirement from user.
    Please help me.
    Regards,
    SATYAJIT
    Edited by: Satyajit Kumar on May 16, 2008 7:31 PM

    Issue is resolved.

  • Values Under CUP Request type Available Actions

    Hi Experts,
    Please let me know the concept of option avaiable actions under option Request Type.How CUP perform the mentioned action exactly under request type?From where i can configure these actions?are these default?
    Thank you,
    Mukesh

    Hello Mukesh,
      Actions are basically activities that you can perform using a request during provisioning. You have the following actions available in requests to use:
    1.Create User u2013 create the user record during provisioning
    2 Change User u2013 change the user record during provisioning
    3 Delete User u2013 delete the user from the target system during provisioning
    4 Lock User u2013 lock the user in the target system during provisioning
    5 Unlock User u2013 unlock the user in the target system during provisioning
    6 Assign Roles u2013 assign roles to the user during provisioning
    7 Superuser Access u2013 give superuser access to the user during provisioning
    8 User Defaults u2013 action to apply user defaults to the user during provisioning
    You can configure them by going into CUP configuration -> Request configuration -> configuring request types. Here when you select a request for eg. "Change" you click on edit. When the request opens up on next screen, there are 2 panels available on the bottom of the screen. One lists the available actions and other one lists the assigned ones. Click on the Go button available on the available actions panel and you should be able to see the above mentioned actions. You select any one of them and move that one to assigned actions panel. Once you save, then in that request type you would be able to perform that particular selected action during provisioning.
    Please refer to the configuration guide available on SAP Service Market Place for more information about this. You can find this documentation from the below location on SMP:
    Logon to service.sap.com -> Software Download -> Release & Upgrade info
    -> Installation & Upgrade Guides -> SAP BusinessObjects ->SAP BusinessObjects Governance, Risk, Compliance (GRC) -> Access Control -> SAP GRC Access Control 5.3.
    Regards,
    Varun

Maybe you are looking for

  • Event Notes

    I am trying to have the event notes show on my own calendar so that I can print out the calendar with the notes. I don't want to publish this calendar on mobile me, Just have the notes visible for my own use. Any ideas on how to achieve this? I am tr

  • How do I convert a String to a DateTime in SQL ??

    I have retreived the current date and time and place into String data type. but my table colmun is in datetime data type. How do I convert ?? Thanks in advance.

  • Indesign getting "serious error"

    Hi everyone, I'm hoping someone can help me! Of course this problems happens on deadline of my 144pg. magazine. We're using InDesign/InCopy to go back and forth with the designers (us) and the editors. Yesterday, we were updating assignments and havi

  • I want to change to local carrier sim card when traveling. Do I need to get an unlocked iphone 5?

    I live in the US, and want to buy iphone 5. I am having a hard time to figure out which iphone 5 I should get. I will use the phone in the US most of the time. Therefore, I will purchase a plan from a US carrier. I also want to use the phone when tra

  • Recommended size of photos

    Just started using iM 8 on my 1.8 Dual G5 (Yes, it installed and works although it appears a little slowly)! Question: What is the size that photos need to be to insure they will import and display properly? I dragged a couple of photos from an exter