Item Category: The specified category assignment is not found for this item

HI All,
I am loading Item category Assignment for Purchasing category Set, the standard prg fails and gives the error "The specified category assignment is not found for this item".
Where as for the inventory category set its working fine and the assignment is through.
Are there any changes required for this.
Thanks
Basaw

As the error indicates, your servlet does not support GET method calls. Override doGet() method to do what you are doing in doPost to avoid this error. If you want your servlet to serve GET as well as POST methods, override service method instead.

Similar Messages

  • Message no. V1321 - Item category ALES is not defined for this item

    Hi,
    I am trying to use ALES - Item Category for creation of the Sales Order. But i am getting this eerror message as Item category ALES is not defined for this item. Please let me know the config changes that i need to do to use this Item Category.
    Thanks in Advance !!

    To maintain the item category for a sales order type first you have to assign the item category in SPRO.
    SPRO>Sales & Distribution>Sales>Sales Documents>Sales Document Item>Assign item categories.
    In the screen Change view Item category assignement:overview screen
    select your sales document type + ItemcategorygroupUsageHigherLevel Item category
    Then you have to maintain Default item category and Manual item category.
    Default item category will be proposed by the system when you enter a material in sales order. You can change the item category to any one of the manual item category maintained above.
    For e.g.: You are creating a thrid party sales order. Default item category is TAN, if manual item category is maintained as TAS for this combination of sales document type + ItemcategorygroupUsageHigherLevel Item category and then system will allow you to change item category to TAS. If this is not maintained then system will give you an error as"Item category TAS is not defined for this item".
    Again depending the item category further acitivites will be carried in SAP, like in third party item (TAS) PR screen will be displayed.
    Thanks,
    Sarvesh Desai
    Edited by: Sarvesh DeSai on Jan 11, 2012 7:08 AM

  • 'Item category SUBC is not defined for this item'

    Hi,
    When i tried to create an SO with item category SUBC, the system pop-up this error msg: 'Item cateogry SUBC is not defined for this item'
    Please let me know what should i do?  Thank you.
    I've maintained the item category assignment with same item category group maintained in material master data..But it still not work...

    Dear Laa,
    This is due to not done the itemcategory definition and determination.So
    First you define the itemcategory  SUBC through VOV7 transaction (By copying standard TAN)
    Then do the itemcategory determination through VOV4 transaction for this combination
    Sales document type+Itemcategory group--->Itemcategory
    Itemcategory group is different from itemcategory.
    Itemcategory group maintained in the Material master data
    The item categroy will get determine in the sales order based on Sales document type+Itemcategory group
    I hope this will help you,
    Regards,
    Murali.

  • Item category RENN is not defined for this item

    Hey SD experts,
    I've created a sales order with free of charge and standard items.
    Now, I'm trying to create a return order with reference to this sales order.
    I got this error message: Item category RENN is not defined for this item.
    I've checked in VOV4 : the combination Sales document type + Itemcategory group =>Itemcategory seems to be correct.
    Why am I getting this error message then ?
    Regards,
    Bahia.

    Dear Bahia,
    Check item level copy control settings between Sales order free of charge and Return sales order i.e copy control settings between free of charge order item category and returns order itemcategory.
    Once again check item category determination through VOV4 transaction for the combination of
    Your returns order document type+Itemcategory group-->RENN.
    I hope this will help you,
    Regards,
    Murali.

  • 'BAPI_PO_CREATE1'  Multiple account assignment is not possible for AFS item

    'BAPI_PO_CREATE1'  -> This BAPI works perfectly without the  'account assignment' option . But  for purchase requisitions which have account assignments  BAPI returns the error  - E|8W |185   |Multiple account assignment is not possible for AFS items.
    Can somebody please help me to get this error resoleve .
    My coding I have done like below.
    DATA: pohead  TYPE bapimepoheader.
    DATA: poheadx TYPE bapimepoheaderx.
    CONSTANTS : c_x VALUE 'X'.
    DATA: exp_head TYPE bapimepoheader.
    DATA: return  TYPE TABLE OF bapiret2 WITH HEADER LINE.
    DATA: poitem  TYPE TABLE OF bapimepoitem WITH HEADER LINE.
    DATA: poitemx TYPE TABLE OF bapimepoitemx WITH HEADER LINE.
    DATA: posched  TYPE TABLE OF bapimeposchedule WITH HEADER LINE.
    DATA: poschedx TYPE TABLE OF bapimeposchedulx WITH HEADER LINE.
    DATA: POACCOUNT  TYPE TABLE OF BAPIMEPOACCOUNT WITH HEADER LINE.
    DATA: POACCOUNTX TYPE TABLE OF BAPIMEPOACCOUNTx WITH HEADER LINE.
      pohead-comp_code = '1000'.   "IEQ1 plant. "'1000'.
      pohead-doc_type   = 'NB'     .
      pohead-creat_date = sy-datum   .
      pohead-vendor = EKKO-LIFNR. "'0000500004'.
      pohead-purch_org = purch_org.
      pohead-pur_group = purch_grp.
      pohead-langu      = sy-langu   .
      pohead-doc_date   = sy-datum.
      poheadx-comp_code  = c_x.
      poheadx-doc_type   = c_x.
      poheadx-creat_date = c_x.
      poheadx-vendor     = c_x.
      poheadx-langu      = c_x.
      poheadx-purch_org  = c_x.
      poheadx-pur_group  = c_x.
      poheadx-doc_date   = c_x.
      poitem-po_item    = iLineItem.      "1.
      poitem-material   = req_item-MATERIAL.   " '000000000040000234'.
      poitem-plant      = req_item-PLANT.
      poitem-quantity   = req_item-QUANTITY.
      poitem-net_price  = NET_PRICE.
      poitem-price_unit = PRICE_UNIT.
      poitem-shipping   = 'Z1'.
      poitem-preq_no    = req_item-PREQ_NO.
      poitem-preq_item  = req_item-PREQ_ITEM.
      poitem-acctasscat = 'K'.
      APPEND poitem.
      poitemx-po_item    = iLineItem. "1.
      poitemx-po_itemx   = c_x.
      poitemx-material   = c_x.
      poitemx-plant      = c_x .
      poitemx-quantity   = c_x .
      poitemx-tax_code   = c_x .
      poitemx-item_cat   = c_x .
      poitemx-acctasscat = c_x .
      poitemx-net_price  = c_x.
      poitemx-price_unit = c_x.
      poitemx-shipping   = c_x.
      poitemx-preq_no    = c_x.
      poitemx-preq_item  = c_x.
      poitemx-acctasscat = c_x.
      APPEND poitemx.
      POACCOUNT-PO_ITEM = iLineItem.
      POACCOUNT-SERIAL_NO = iLineItem.
      POACCOUNT-GL_ACCOUNT = '0000211010'.
      POACCOUNT-SD_DOC = '0001001056'.       
      POACCOUNT-ITM_NUMBER = '000100'.       
      POACCOUNT-CO_AREA = '1000'.
      APPEND POACCOUNT.
      POACCOUNTX-PO_ITEM = '00001'.
      POACCOUNTX-SERIAL_NO = '01'." '01'.
      POACCOUNTX-PO_ITEMX = 'X'.
      POACCOUNTX-SERIAL_NOX = 'X'.
      POACCOUNTX-GL_ACCOUNT = 'X'.
      POACCOUNTX-SD_DOC = 'X'.
      POACCOUNTX-ITM_NUMBER = 'X'.
      APPEND POACCOUNTX.
      CALL FUNCTION 'BAPI_PO_CREATE1'
        EXPORTING
          poheader  = pohead
          poheaderx = poheadx
        IMPORTING
        exppurchaseorder = ex_po_number
        expheader        = exp_head
        TABLES
          return    = return
          poitem    = poitem
          poitemx   = poitemx
          POACCOUNT = POACCOUNT
          POACCOUNTX = POACCOUNTX.

    I  found the answer

  • Error:"The specified tag name was not found"

    Hello:
    My problem is the FieldPoint error message in LabWindows/CVI v6.0.
    When hook up with Ethernet module(FP-1600), NO Problem on the source code, specially item Name "All". See the actual code.
    if(status = FP_CreateTagIOPoint (ServerHandle, resourceName, deviceName, "All",&IOPointHandle))
    But When hook up with RS-232C Module(FP-1000), occured error. The error code is 32812, that means "The Specified tag name was not found."
    What makes this error? Why item name "All" makes the error when using FP-1000?
    Please help me.
    Thank You.

    Make sure the resourceName and deviceName match what is in FieldPoint Explorer. See the following KB:
    http://digital.ni.com/public.nsf/websearch/02EB73D02715981A8625682B00774F8F?OpenDocument
    Also, I have seen this error when targetting serial modules with FieldPoint Explorer open. Make sure FP Explorer is closed.

  • Re: The specified topic [0] was not found

    I get this error when I click on a link in an email on my iPhone to a thread that I'm monitoring.
    I don't get the error when I click on the same link from my PC.
    Does anyone have a workaround?
    Specifically, it looks like this:
    Apple Discussions
    Apple.com>Support>Discussions
    Error
    The specified topic [0] was not found.
    Useful links:
    Forum Home - browse the forums here.
    Search Forums - visit the search page to query all forum content
    Apple.com>Support>Discussions
    Thanks in advance for any response :o)

    Hello everettwolf,
    As Don Archibald posted, the Login Error message is a know issue, that the Hosts / Sysops are aware of, and that hopefully, will soon be resolved.
    And here is a more comprehensive list, of the other Topics in this Forum, concerning this issue, that have been previously posted.
    You'll find additional info, comments by a Host, and other temporary work-arounds.
    Such as, if you do not quit your browser, there is no need to login each time you return to Discussions.
    After Log-in, " An Error Has Occurred"....
    Fourm redirection error after login
    Old Login page
    What Gives With The Login?
    An error has occurred. We apologize for the inconvenience
    Error no matter browser I use
    More forum unreadable also user unfriendly
    i know this has been discussed but the login error...
    Log in errors
    Every time I log in and try to post I get error message
    Still receiving "Error" message while trying to login?
    Error after login
    Error when logging into Apple/Support/Discussions
    Login for Discussion Forum Problems
    Error logging in
    How come?
    Error after login
    Error message on successful logo
    Problems logging in
    Each time I sign on it says "Sorry error"
    C'mon, Enough Already with the Error Message Upon Logging In
    ali b

  • Pricing at time of goods receipt not possible for this item

    We're receiving error Message no. 06634 Pricing at time of goods receipt not possible for this item when trying to change the PO Pricing Date Category from No Control to 5 GR Date.
    The error message is clear and reads:
    Pricing at time of goods receipt not possible for this item
    Message no. 06634
    Diagnosis
    For this purchasing document item, you wish to specify that a new price determination process is to be carried out at the time of goods receipt.
    System Response
    Pricing cannot be carried out for the item at the time of goods receipt because the price was either entered manually or copied from the last purchasing document.
    The scenario is that we have a contract reference on a PO and the contract condition records are to be maintained as a new price is valid each day.  The problem without this is that the new pricing will not be reflected in the GR.
    What is the solution to overcome this issue?
    NOTE:  the Info Record conditions are not being read during GR as the PO references a contract.

    For further clarification the PO is referencing a contract and as such not pulling the pricing information from the info record and instead pulling the price from the conditions on the contract. 
    I want to change the pricing date category from " No Control" to "5 GR Date" however I'm receiving the error message stated and unsure of how to make this change.
    The intent is not to create a new PO each day the condition record is created and instead we are utilizing one PO referencing one contract with multiple date delimited condition records containing the daily pricing.

  • I have just updated to Lion and now my folders no longer show number of items on the bottom. Is there a fix for this?

    I have just updated to Lion and now my folders no longer show number of items on the bottom. Is there a fix for this? I allways found that handy. Now I have to click on an icon on the top, This is a backward step if that is now the only way to see the number of items. Am I missing something obvious?

    Parrotcat wrote:
    I have just updated to Lion and now my folders no longer show number of items on the bottom...    
    In the good old days of Snow Leopard, an open Finder folder had a border along the bottom of the window which could show the number of items in that window and the total available space on the hard disk or partition that folder resides on. That bottom border is gone in Lion and those two bits of information are gone with it. Is that what you're talking about? If so, I'd like to learn how to get it back too and "Show Item Info" is not the way.

  • Error in RFx : Item type 'Service' not allowed for this Item

    hi , experts,
      We use SRM7.0 in Standalone scenario .
      i get an error when i transfer SC to RFx :     Line 0001: Item type 'Service' not allowed for this Item .
    if someone kindly tell me how to correct this Error.
      another question is ,in the Standalone scenario , can we create Service Master with multiple level(hierarchy) use Tcode 'COMMPR01 ' ?
       reagrds
               claud

    Hi Claud,
    SRM does not support hierarchy in service for operational documents like PO, contract, confirmation and invoice in SRM 7. It does support hierarchy in service only for RFx doucments. You need to activate the hierarchy template for SRM for that.
    Thanks and regards,
    Ranjan

  • This action is not valid for this item

    Hi all,
    I am facing with "This action is not valid for this item" error, if I submit the items by using "Submit Decisions" button on UWL. Please find the uwl, below;
        <ItemType name="uwl.task.webflow.decision.TS90100027" connector="WebFlowConnector" defaultView="DevamDevamsizlik" defaultAction="viewDetail" executionMode="pessimistic">
          <ItemTypeCriteria externalType="TS90100027" connector="WebFlowConnector"/>
          <CustomAttributes>
            <CustomAttributeSource id="WEBFLOW_CONTAINER" objectIdHolder="externalId" objectType="WebflowContainer" cacheValidity="session">
              <Attribute name="Personel" type="string" displayName="Personel Ad&#305;"/>
              <Attribute name="AttAbsText" type="string" displayName="Devam/Devams&#305;zl&#305;k Tipi"/>
              <Attribute name="BaslangicTarihi" type="date" displayName="Ba&#351;lang&#305;&#231; Tarihi"/>
              <Attribute name="BaslangicSaati" type="time" displayName="Ba&#351;lang&#305;&#231; Saati"/>
              <Attribute name="BitisSaati" type="time" displayName="Biti&#351; Saati"/>
              <Attribute name="BitisTarihi" type="date" displayName="Biti&#351; Tarihi"/>
            </CustomAttributeSource>
          </CustomAttributes>
          <Actions>
            <Action name="Onayla" groupAction="yes" handler="UserDecisionHandler" returnToDetailViewAllowed="yes" launchInNewWindow="no">
              <Properties>
                <Property name="decisionKey" value="0001"/>
                <Property name="UserDecisionTitle" value="Onayla"/>
              </Properties>
              <Descriptions default="Onayla"/>
            </Action>
            <Action name="Reddet" groupAction="" handler="SAPBSPLauncher" returnToDetailViewAllowed="yes" launchInNewWindow="no">
              <Properties>
                <Property name="decisionKey" value="0002"/>
                <Property name="UserDecisionTitle" value="Reddet"/>
                <Property name="Application" value="zh12j010"/>
                <Property name="PageId" value="rejectreason.htm"/>
                <Property name="workitemId" value="${item.externalId}"/>
              </Properties>
              <Descriptions default="Reddet"/>
            </Action>
            <Action name="Detay" groupAction="" handler="SAPBSPLauncher" returnToDetailViewAllowed="yes" launchInNewWindow="no">
              <Properties>
                <Property name="Application" value="zh12j010"/>
                <Property name="PageId" value="detail.htm"/>
              </Properties>
              <Descriptions default="Detay"/>
            </Action>
            <Action name="Yazdir" groupAction="" handler="SAPBSPLauncher" returnToDetailViewAllowed="yes" launchInNewWindow="no">
              <Properties>
                <Property name="Application" value="zh12j010"/>
                <Property name="PageId" value="print.htm"/>
              </Properties>
              <Descriptions default="Yazd&#305;r"/>
            </Action>
            <Action name="submitUserDecisions" groupAction="yes" handler="UIActionHandler" referenceBundle="submit" returnToDetailViewAllowed="no" launchInNewWindow="no"/>
          </Actions>
        </ItemType>
        <View name="DevamDevamsizlik" selectionMode="MULTISELECT" width="98%" supportedItemTypes="uwl.task.webflow.decision.TS90100027" columnOrder="createdDate, Personel, AttAbsText, BaslangicTarihi, BitisTarihi, BaslangicSaati, BitisSaati, redCol, onayCol" sortby="createdDate" tableDesign="STANDARD" visibleRowCount="10" headerVisible="yes" queryRange="undefined" tableNavigationFooterVisible="yes" tableNavigationType="CUSTOMNAV" refresh="-1" dueDateSevere="0" dueDateWarning="0" emphasizedItems="new" displayOnlyDefinedAttributes="no" dynamicCreationAllowed="yes" actionPosition="bottom">
          <Descriptions default="Devam/Devams&#305;zl&#305;k Talepleri">
            <ShortDescriptions>
              <Description Language="en" Description="Devam/Devams&#305;zl&#305;k Talebi Onay"/>
            </ShortDescriptions>
          </Descriptions>
          <DisplayAttributes>
            <DisplayAttribute name="onayCol" type="checkbox" width="" sortable="no" format="default" actionRef="0001" hAlign="CENTER" vAlign="TOP" maxTextWidth="0" headerVisible="yes">
              <Descriptions default="Onayla">
                <ShortDescriptions>
                  <Description Language="en" Description="Onayla"/>
                </ShortDescriptions>
              </Descriptions>
            </DisplayAttribute>
            <DisplayAttribute name="Personel" type="string" width="30" sortable="yes" format="default" hAlign="LEFT" vAlign="BASELINE" maxTextWidth="0" headerVisible="yes">
              <Descriptions default="Personel"/>
            </DisplayAttribute>
            <DisplayAttribute name="AttAbsText" type="string" width="15" sortable="yes" format="default" hAlign="LEFT" vAlign="BASELINE" maxTextWidth="0" headerVisible="yes">
              <Descriptions default="Devam/Devams&#305;zl&#305;k Tipi"/>
            </DisplayAttribute>
            <DisplayAttribute name="BaslangicTarihi" type="date" width="" sortable="yes" format="medium" hAlign="LEFT" vAlign="BASELINE" maxTextWidth="0" headerVisible="yes">
              <Descriptions default="Ba&#351;lang&#305;&#231; Tarihi"/>
            </DisplayAttribute>
            <DisplayAttribute name="BaslangicSaati" type="time" width="" sortable="no" format="medium" hAlign="LEFT" vAlign="BASELINE" maxTextWidth="0" headerVisible="yes">
              <Descriptions default="Ba&#351;lang&#305;&#231; Saati"/>
            </DisplayAttribute>
            <DisplayAttribute name="redCol" type="link" width="20" sortable="no" format="default" actionRef="Reddet" hAlign="CENTER" vAlign="BASELINE" maxTextWidth="0" headerVisible="yes">
              <Descriptions default="Reddet">
                <ShortDescriptions>
                  <Description Language="en" Description="Reddet"/>
                </ShortDescriptions>
              </Descriptions>
            </DisplayAttribute>
            <DisplayAttribute name="BitisSaati" type="time" width="" sortable="no" format="medium" hAlign="LEFT" vAlign="BASELINE" maxTextWidth="0" headerVisible="yes">
              <Descriptions default="Biti&#351; Saati"/>
            </DisplayAttribute>
            <DisplayAttribute name="BitisTarihi" type="date" width="" sortable="yes" format="medium" hAlign="LEFT" vAlign="BASELINE" maxTextWidth="0" headerVisible="yes">
              <Descriptions default="Biti&#351; Tarihi"/>
            </DisplayAttribute>
          </DisplayAttributes>
          <Actions>
            <Action reference="submitUserDecisions"/>
            <Action reference="refresh"/>
            <Action reference="forward"/>
          </Actions>
        </View>
    Can anyone give a suggestion about it?
    Thank you

    Hi all,
    I had the exact same error using a user decision configuration.  Issue was that I was using a VIEW that did not exist:
    ItemType name="uwl.task.webflow.TS90300005" connector="WebFlowConnector" defaultView="DefaultApprovalView">
    DefaultApprovalView was not defined as a custom view.
    SOLUTION: changed it to standard SAP com.sap.pct.erp.srvconfig.approvaloverview view and it worked!
    ItemType name="uwl.task.webflow.TS90300005" connector="WebFlowConnector" defaultView="com.sap.pct.erp.srvconfig.approvaloverview">
    This is normally by default defined in a standard portal system.
    Edited by: David Pierre on Jan 13, 2010 3:15 PM
    Edited by: David Pierre on Jan 13, 2010 3:16 PM
    Edited by: David Pierre on Jan 13, 2010 3:19 PM

  • The requested URL /mahjongtrails/ was not found on this server.

    Not Found
    The requested URL /mahjongtrails/ was not found on this server.
    Apache/2.2.9 (Debian) mod_jk/1.2.26 PHP/5.2.6-1+lenny4 with Suhosin-Patch mod_python/3.3.1 Python/2.5.2 mod_ruby/1.2.6 Ruby/1.8.7(2008-08-11) mod_ssl/2.2.9 OpenSSL/0.9.8g Server at megazebra-facebook-trails.mega-zebra.com Port 80

    Adding to it,
    First thing need to modify the server.xml and default-web-site.xml file as mentioned . Even after it doesn't work check for the security settings in the browser.
    For IE, Goto Tools-> Internet Options -> Security tab -> Custom level.
    Try enabling the security settings.

  • My friend has an apple iphone 4s, He could not make the ID on icloud, becase at the end of ID creation procedure, the message displayed, " the free icloud ID is not eligible for this device"  what is the solution, thanx

    My friend has an apple iphone 4s, He could not make the ID on icloud, becase at the end of ID creation procedure, the message displayed, " the free icloud ID is not eligible for this device"  what is the solution, thanx

    Your friend will have to create his iCloud account on a different iOS device.  His device has already created the maximum number of iCloud accounts and cannot create another one.

  • Profile Manager - Not Found  The requested URL /wiki was not found on this server.

    I have installed Lion Server with Web and Profile Manager services. When I log into the profile manager web page I receive the message "Not Found  The requested URL /wiki was not found on this server."  I followed the guide here for install http://krypted.com/iphone/setting-up-profile-manager-in-lion-server/.

    This was the fixed I found
    Fixing profile manager has been solved by someone else:
    1.  Turn off all services under Server app.
    2.  Under Hardware, settings, change SSL certificate to "none"
    3.  Under Hardware, network, reset host name again.
    4.  Under Hardware, settings, change SSL certificate back to correct one
    5.  Turn Web service ON.
    It may still say /var/empty.
    6.  Turn Wiki service ON
    7.  Recheck Web service.  It should be changed to /Library/Server/Web/Data/Sites/Default.

  • URGENT!!!! get the same message "serial number not valid for this product" and I am RE installing on the same computer that crashed last week...

    I am attempting to RE install PSElements 11 on a computer where it WAS last week but had a hard drive crash. The message is wrong and the serial number is correct. URGENT as I am at the apple store trying to get help from apple people, and they DON'T want me to install a new version of Yosemite as it will make computer slower...

    Error "The serial number is not valid for this product" | Creative Suite
    http://helpx.adobe.com/creative-suite/kb/error-serial-number-valid-product.html

Maybe you are looking for