Trade Promotion (Trade promotion type does not allow structured products)

Hi Friends,
In TPM when we try to remove a product from promotion and when we are entering a new product we are getting the error"Trade promotion type doesnot allow structured products".
Please tell me how do we solve this issue.
Regards,
JAN.

Hi friend,
    To my understanding we should flag the required products for promotion in product data tab of marketing planner and we see a product in different colour which we r not flaged.
    Secondly for entering new product we should make changes in back end.
Regards
subbaraju

Similar Messages

  • SSI Validation Error: doc type does not allow styles element in body of page

    When I validate my index page with wc.org, I get 2 errors regarding having styles elements h1-h6 in the body vs the head of the page.  My Nav and Footer are SSIs and I have used styles h1-h6 on them.
    Q.  Should I delete the h1-h6 styles from the beginning code of the Nav.htm and Footer.htm?
    Q.  If I delete that code, will they use the styles.css inserted in the head code of each pate?
    Thanks.

    The problem is this block of code belongs in the Head of yoru page, not in a TD  in the Body!  And you also have it below in the Footer.  So now I understand better yoru 2 original quesitons.  Yes, but htis code only in the Head of the page and it will work for the entire page, even for html inserted via Includes.  So remove this style block from all yoru Includes unless some fo them are designed to write into the Head of the page only.
    <style type="text/css">
    <!--
    h1 {
         font-family: Arial, Helvetica, sans-serif;
         font-size: 16px;
         font-weight: bold;
         color: #008000;
    h2 {
         font-family: Arial, Helvetica, sans-serif;
         font-size: 16px;
         font-style: italic;
         font-weight: bold;
         color: #E3372E;
    h3 {
         font-family: Arial, Helvetica, sans-serif;
         font-size: 16px;
         font-weight: bold;
         color: #AB003C;
    h4 {
         font-family: Arial, Helvetica, sans-serif;
         font-size: 16px;
         font-style: italic;
         font-weight: bold;
         color: #E62B86;
    h5 {
         font-family: Arial, Helvetica, sans-serif;
         font-size: 14px;
         font-style: italic;
         font-weight: bolder;
         color: #E3372E;
    h6 {
         font-family: Arial, Helvetica, sans-serif;
         font-size: 18px;
         font-weight: bold;
         color: #AB003C;
    -->
    </style>
    Or even better would be to put this into an external style sheet that
    all your pages can call (not the Includes, just the "real" pages!
    E. Michael Brandt
    www.divahtml.com
    www.divahtml.com/products/scripts_dreamweaver_extensions.php
    Standards-compliant scripts and Dreamweaver Extensions
    www.valleywebdesigns.com/vwd_Vdw.asp
    JustSo PictureWindow
    JustSo PhotoAlbum, et alia

  • Document type ZD does not allow you to assign to object MARA

    hi ppl,
             I have created a Z document type.but its not allowing me to assign in mm02.what might be the problem..? its throwing an error message Document type ZD does not allow you to assign to object MARA.

    You need to enable object linking to mara on your new document type. Go to Tcode DC10, select the document type and then go to the object links area. Create a new object link for your document type.

  • Value Misc. Allowance for the flexfield segment Expense Type does not exist

    Dear All,
    can any budy help me out in Internet Expense modulee
    Error:- Value Misc. Allowance for the flexfield segment Expense Type does not exist in the value set OIE_EXPENSE_TYPES.
    Problem details:- we have define one expense templates " Relocation Expnse" under this we have define number of expense items ,in which Misc. Allowance is one
    Prevously it was end dated but now end date is removed , now when we are trying to claim expense against this item we are getting the above error.
    can you please tell me why this is happining and what is the solution.
    Regard
    Ajay Sharma

    Check these things
    1. you have enable PerPeriodOfService DFF to this set.
    2. you are setting Context Variable like (AttributeCategory) with requried value.
    Thanks

  • WARN  [SchemaTypeCreator] JAX-RPC does not allow collection types skipping:

    hi
    I am trying web service,where it returns collection.
    following is the code snippet,
         @WebMethod()
         public Collection<CustomerInfo> getAccountList()
              Query query=em.createQuery("from CustomerInfo c");
              return query.getResultList();
    the problem is at the time of deploying i am getting following warning,
    WARN [SchemaTypeCreator] JAX-RPC does not allow collection types skipping: customer.__JBossWS_CustomerRegisteration_EndpointInterfacePort_getAccountListResponse.result
    i am using JBoss 4.0.5,it supporting JAX-WS RI 2.0_03-b24-fcs version.
    could anybody tell me why this warning?
    is JAX WS not able to resolve the collection type?
    i tested my web service with webservice explorer provided myeclipse5.5 IDE,there web service returns null
    please help me in this?

    Hi,
    I have a serious problem when i deploy a web service in JBoss 4.0.5
    when i invoke the service i can't access to SSSSS222 beacuse in my client don't be created that class SSSSS2222....
    I mapped schemas to java with jaxb2.0.5.
    I'm using:
    JAXB 2.0 .5
    JSR181
    My schema is:
    <xs:schema......>
         <xs:element name="PPPPPP">
              <xs:complexType>
                   <xs:all>
                        <xs:element ref="AAAAAAA"/>
                        <xs:element ref="SSSSS111"/>
                   </xs:all>
              </xs:complexType>
         </xs:element>
         <xs:element name="SSSSS111">
              <xs:complexType>
                   <xs:sequence>
                        <xs:element ref="SSSSS222" maxOccurs="unbounded"/>
                   </xs:sequence>
              </xs:complexType>
         </xs:element>
         <xs:element name="SSSSS222">
              <xs:complexType>
                   <xs:all>
                        <xs:element ref="DDDDDD"/>
                        <xs:element ref="DEDEDEDE" minOccurs="0"/>
                   </xs:all>
              </xs:complexType>
         </xs:element>
    </xs:schema>Error:
    13:24:23,271 WARN [SchemaTypeCreator] JAX-RPC does not allow collection types skipping: com.java.SSSSS111.SSSSS222
    A part of wsdl generated is:
    <complexType name="SSSSS111">
    <sequence/> *****error comparing with schema
    </complexType>My web service is:
         @WebMethod(operationName="WS1")
         @WebResult(name = "Resp",
              targetNamespace = "http://www.example.com/resp")
        @RequestWrapper(localName = "validacionWS",
            targetNamespace = "http://www.example.com/pet",
            className = "com.java.ValidacionWS")
        @ResponseWrapper(localName = "validacionFWSResponse",
            targetNamespace = "http://www.example.com/resp",
            className = "com.java.Respuesta")     
         public Respuesta validacionPeticion(@WebParam(name = "peticion",
                   targetNamespace = "http://www.example.com/pet")
                   Peticion peticion)throws MyException,Please, help me...

  • With 10.7.2 update iCal does not allow you to set "Reminders" by draging events from "All Day Events" into "Reminders" is there another way to do this instead of having to type out the entire reminder with date, time, and type?

    With 10.7.2 update iCal does not allow you to set "Reminders" by draging events from "All Day Events" into "Reminders" is there another way to do this instead of having to type out the entire reminder with date, time, and type?
    With Lion 10.7.1. you where able to drag events from "All Day Events" into the "Reminders" bar to create upcoming reminders.

    Exactly the same question I was about to post!
    Great being able to sync reminders (well overdue) however if I have to re-type a calener envent into reminders it's a waste of time!! 
    Come on Apple!!
    Just need an option for the calender event to add to reminder or the old drag to add to reminder functionality back, Please???

  • I have a full Team subscription to Creative Cloud, but type kit does not allow me to use some fonts. Do I have to pay extra to have more fonts available to me?

    I have a full Team subscription to Creative Cloud, but type kit does not allow me to use some fonts. Do I have to pay extra to have more fonts available to me?

    Hi drewacg,
    I'm sorry that you ran into trouble with this.  Are you the administrative contact on your Creative Cloud team subscription?  The admin user doesn't receive the same set of services as a full seat, so you will have a Typekit Trial plan instead of the Portfolio plan.
    You have the option of upgrading to the Portfolio level, though. If you would like to do that:
    1) sign in at https://typekit.com/login with your Adobe ID and password
    2) visit typekit.com/plans, and select the "upgrade" option underneath Portfolio
    Your Typekit plan upgrade will be billed separately from your Creative Cloud payments. The Portfolio plan is $49.99/year.
    I hope that this helps!  If you have any questions, please feel free to send your Adobe ID information to [email protected] and we can look into it further for you. Best,
    -- liz

  • Caption Does Not Allow Me to Type a Message

    How can I write a message in the caption boxes of the different templates within iPhoto when I click email to share a photo as it does not allow any text to be placed or typed into the caption boxes?
    Can someone suggest something to make this part of the iphoto programme work please?
    Thanks

    Restart the phone

  • When i am typing in a browser window, my browser page shifts slightly, highlights in blue, and does not allow me to keep typing.  i have to keep clicking on the page to continue to type letter by letter...is there some function on that i don't know about?

    When I am typing in a browser window, my browser page shifts slightly, highlights in blue, and does not allow me to continue typing...i have to click in the browser to allow typing to continue...is there a function running that I don't know about?

    Please read this whole message before doing anything.
    This procedure is a test, not a solution. Don’t be disappointed when you find that nothing has changed after you complete it.
    Step 1
    The purpose of this step is to determine whether the problem is localized to your user account.
    Enable guest logins and log in as Guest. For instructions, launch the System Preferences application, select Help from the menu bar, and enter “Set up a guest account” (without the quotes) in the search box.
    While logged in as Guest, you won’t have access to any of your personal files or settings. Applications will behave as if you were running them for the first time. Don’t be alarmed by this; it’s normal. If you need any passwords or other personal data in order to complete the test, memorize, print, or write them down before you begin.
    Test while logged in as Guest. Same problem(s)?
    After testing, log out of the guest account and, in your own account, disable it if you wish. Any files you created in the guest account will be deleted automatically when you log out of it.
    Note: If you’ve activated “Find My Mac” or FileVault in Mac OS X 10.7 or later, then you can’t enable the Guest account. Create a new account in which to test, and delete it, including its home folder, after testing.
    Step 2
    The purpose of this step is to determine whether the problem is caused by third-party system modifications that load automatically at startup or login.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards. Boot in safe mode and log in to the account with the problem. The instructions provided by Apple are as follows:
    Be sure your Mac is shut down.
    Press the power button.
    Immediately after you hear the startup tone, hold the Shift key. The Shift key should be held as soon as possible after the startup tone, but not before the tone.
    Release the Shift key when you see the gray Apple icon and the progress indicator (looks like a spinning gear).
    Safe mode is much slower to boot and run than normal, and some things won’t work at all, including wireless networking on certain Macs.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. Same problem(s)?
    After testing, reboot as usual (i.e., not in safe mode) and verify that you still have the problem. Post the results of steps 1 and 2.

  • Received unexpected message type does not match expected type

    1.Two Biztalk Applications A,B  one for sending the request(A) and other application will send the response to A.
    2.I have two schema  Request and Response in Aplication A which i have exposed as webservice.
    3. Application B share the same response schema .
    I am using WSBasicHTTP sysnchronous ports to send and receive the message.
    WHen Application B send the response , i get the error  "unexpected message type does not match expected type "
    but i dont know why i get such error when the schemas are share by both application. Please advice
    Regards
    Suresh

    Hi Suresh,
    Whenever you are doing request-response like calling web service etc, i would suggest to use Passthrough pipeline while sending and use XML receive for receiving the message.
    Because when you are sending the message out it doesn't needs any promoted properties so you can use Passthrough this will avoid extra Assembling/Validation etc tasks performed by XMLSend pipeline.
    But when you are receiving response that time it expects MessageType property to be promoted because normally you will have receive shape configured to some Typed Schema. So you will have to use XML Receive pipeline.
    Thanks,
    Prashant
    Please mark this post accordingly if it answers your query or is helpful.

  • Error while posting in accounts: Condition type does not exist in COPA

    Hi,
    I'm trying to post an invoice into accounts but I'm constantly encountering a Error message as : Assign condition type in COPA.
    This error is appearing whenever I'm assigning the pricing procedure and KOFK account entries to a new sales organization.
    The error does not appear for my previous Sales org. Also I check with the COPA settings, it does not allow us to enter the condition type mentioned in the error.
    Could anyone suggest a solution
    Regards
    Rasheed

    Dear Customer,
    To solve error KE391, the corresponding value field assignment          
    must be done in transaction KE4IM.                                                                               
    Currently, the value field assignment is available for this             
    condition type in transaction KE4I (SD conditions assignment).                                                                               
    In this case you have to maintain the assignment to a value field in    
    transaction KE4IM. After including the corresponding assignment in      
    KE4IM, the error KE391 should not come anymore.                                                                               
    Please, check this.
    I hope that the information are helpful.
    With best regards
    Claudia Neudeck

  • Sales order does not allow make-to-order production

    Dear Friends,
    I am trying to do do planned order for sales order in MD50 it was showing the error message as
    "Sales order does not allow make-to-order production"
    Can any one solve this
    Shakthi

    Hi Shakthi,
    It is also possible to set the priority for Requirement Type determination like
    0 Material master strategy, then item category and MRP type
    1 Item Category and MRP Type
    2 as 1, with check for allowed requirement type.
    The transaction for this is same as "Requirement Type Determination :
    Sales and Distribution --> Basic Functions --> Availability Check and Transfer of Requirements --> Transfer of Requirements --> Determination Of Requirement Types Using Transaction
    Look for "Source".
    In this transaction, Please, check "Requirements".
    Please, make sure of the following 2 things :
    1. If you do not set an indicator for maintaining the requirements class: Transfer of requirements is not carried out, irrespective of the specification you make at schedule line level for the transaction.
    So it is necessary to mantain the setting first at the Requirements Class. As mentioned in my earlier posts, the requirement class for the material can be found out from Planning Strategy / MRP3 view --> Main strategy (defined in the strategy group) --> Requirement Class for Customer Requirements.
    The IMG path for "Define Strategy" is Production --> Production Planning --> Demand Management --> Planned Independent Requirements --> Planning Strategy --> Define Strategy.
    2. Once the "Requirements" indicator is set in Requirement Class, the requirements indicator at the Schedule Line decides whether or not you require transfer of requirments for the relevant transaction.
    I hope this should solve your problem.
    Regards,
    Sandeep

  • How to block a payment in F110, when the system does not allow us to block

    Hi all
    Blocking of a payment happens in the following areas :
    1.  In a single document Fb02 transaction we can block a document by giving A as option for not paying for that document before going to F110.
    2.  We can also block a vendor through Vendor master area
    3.  We can block a Vendor from paying through Xk05.
    Now my doubt is that.... i had saved a proposal in F110, after saving it, now i want to block a payment for a vendor.  But the system does not allow me to block it.  Why the system does not allow the block.  Or is there any type of error like this, that system does not allow the block after setting up the proposal for payment.
    Can anyone help me out in this...
    thanks and regards
    SL

    Dear,
    Even you set payment block after saving the proposal system will execute that payment. So better you delete this proposal and then set payment block in the vendor line item. Thereafter system will pick that bill for payment.
    Regards,
    Chintan Joshi

  • BAPI_DOCUMENT_CHECKIN2-Status does not allow you to change certain data

    Hi Gurus,
    I am uploading the DIR attached files for the Documents in PLM. We have a custom program written to upload the attached files. When I tried to upload the file I am getting the BAPI Return error as "Status does not allow you to change certain data". The status of all the documents is "RL"
    File format is
    Doc type  Document No   Rev           File Name
    JPS          0021581PS,     X,       /in/PLM/JAPAN/Files/0021581PS.xls
    Please help me I need to upload the data.
    Thanks,
    Deepthi

    Check the status network for your doc type in config. You may find that the current status may not allow you to make changes. You may need to change the current status to another status before you can make the changes you would like.
    The config settings will tell you the status you may set in order to make your changes, if they are allowed.

  • Field VBUND does not allow changes to the document ?

    If you post the trading partner, the trading partner(Field VBUND)does not allow changes to the document.
    I can't change trading partner.
    Thanks!!
    Message was edited by: Rico Wang

    Rico,
    Using trn code SM30, modify table V_TBAER and insert the entry
    BSEG-VBUND for account type S, D, K, A
    and see the effect.
    Thanks
    Mohit
    ps: you may want to check OSS notes as well.

Maybe you are looking for

  • Help....my daughter has an ipod, iphone and ipad and face time will not work

    My daughter has an iphone, ipod and we have a family ipad. for some reason face time will not work. it rings in but the connection is never made. I even had her phone into verizon and they couldn't figure out why facetime wouldn't work. Anyone have a

  • Can Not Get 7.2 Version Downloaded

    I have Tried & Left PC Running to Download the Latest update but Keep getting: "The iTunes application could not be opened. An unknown error occurred (0x666D743F)." What Should I do? I have Done The Troubleshooting It Never Downloaded? Why?

  • Cant get into Itunes, receiving error message

    Can't get into Itunes Store- receiving error message - help

  • I CANT SEE PICTURES THAT I TAKE WITH MY N900

    I have use my N900 for about 5 months and everything was fine..but recently if I take a picture and do not save it immediately, I can not find it later in ALL IMAGES. Can someone please help me. Taking a picture and save it manually waste time..

  • Not reading disc-not even showing disc in drive

    Last night I spent about two hours loading cd's onto itunes. Half way through one of them, it stopped importing it. I had to force quit. I notice that the machine was getting really hot, so I shut down. The book went into to sleep mode, it didn't shu