How enable material class for Material Advance Search in MMnn transaction?

Hello,
Isn't possible to include material characteristics in Advance Search (via TREX) for every material fields in ECC? So I can enter material characteristics value in 'Full Text Search' field of material 'Advance Search for Material Using Search Engine' searchelp in order to find material that I want.
I tried to include BUS1088 in SES_ADMIN transaction and succesfully indexed it. But I still can't search with characteristic.
Would you all help me, please.... Thanks.
Regards,
Zam

Hi Colleague,
No. This function is not provided in the R/3 System. Only one record is taken into account during the free goods determination with the existence of several valid condition records. This record is the one with the largest minimum quantity. For this record the system only generates one free goods subitem.   
Free goods can only be supported on a 1:1 ratio. This means that an order item can lead to a free goods item. Agreements in the following form are not supported: #eWith material 1, material 2 and material 3 are free of charge#e or #eIf material 1 and material 2 are ordered at the same time, then material 3 is free of charge#e.                        
You can refer FAQ note 549963 which clarifies this point.
I hope it can be helpful.
Regards
Ruy Castro

Similar Messages

  • Material Type for Material Determination

    Hi Expert,
    Is there any spesific/standard material master type for material determination on SD ?
    Thanks,
    IB

    Is there any standard material type for 'Material Entered'
    Normal salable materials would be created with HALB or FERT and this is in no way related to material determination.  In fact, as everybody asked, if you can explain the business as to why you are comparing material type with material determination, may be you will get the right direction.
    G. Lakshmipathi

  • How to create MRP for material?

    Hello guys ,
    I want to create the MRP for my FTRM material?
    Thanks in advance.

    Hi,
    This is purely PP Configurations, Pls refer below link
    http://www.sap-img.com/sap-pp.htm
    http://www.sap-basis-abap.com/sappp01.htm
    Regards,
    Sankaran

  • How to Add extra feilds in Advance Search of Record Working Time

    Hi All,
    My requirement is in Standard RECORD WORKING TIME ESS application.
    under weekly view, when we press F4 it will display advanced search.
    in that advance search there are  *CO Area: Short ID: WBS Element: Description: * areas.
    abaper have created two more fields for search as per requirement.
    now i have to include those those fields in to that advance search view along with the other fields.
    please help me its very urgent.
    thanks in advance.

    i found that,
    We have to check the backend customisation and add those filelds as visible in the cats profile using cac2
    and check the exits.
    http://help.sap.com/erp2005_ehp_04/helpdata/EN/bd/53fa2fcc43594dbf9f406c18989a47/frameset.htm
    can anyone please tell me Step By Step process how to enable them using CAC2 .

  • How to get all Conditions in Advanced Search

    Hi All,
    I'm implementing the AdvancedSearch using Query bean.
    I have defined the Criteria row with one Item of Varchar2 Datatype.
    On Advance Search the poplist shows only two conditions (Lookup type=ICX_CONDITIONS) of "is" and "is not". How to get the complete list of conditions ("contains", "ends with", "starts with"....)
    Thanks,
    Satya

    What is the item type for which you get only the two conditions.
    If the item type is OAMessageChoiceBean or OAMessageLovInputBean the conditon poplist will contain only those two options. And if the datatype is Boolean the conditon poplist will again contain only those two options.

  • How can i manual create a "advance search"?

    There is a poplist in the page, and a named "Add" submitButton beside it.
    When I click the "Add" button.
    I need to create a Bean which is named from the text which is selected in the poplist.
    Now, I have two problems:
    1.I select a text from poplist, then click the "Add" button. At the first time, I use to setForwardURLToCurrentPage() to create a new Bean. But at the next time, no matter which I select any text from poplist, I only get the text which is selected at the first time. The poplist and "Add" button in one MessageCompontentLayout, and the other compontents (consist of creating new Bean) in the other MessageCompontentLayout.
    2.when I create a new Bean, how can I save the Bean which I have created it at previous time.
    This function just likes "Advance Search".
    waiting for your help. thank you in advance.

    Hello, 1st publish it to your Drive...
    http://www.iwebformusicians.com/iWeb/iWeb-Tips.html
    Other hints/workarounds...
    http://www.iwebformusicians.com/iWeb/mountain-lion.html

  • Changing material type for material with history

    We needed to change the material type for an existing item with purchasing, inventory and sales history from HAWA to UNBW.  We are trying to PGI the first receipt since the change, and are receiving an Account Determination error .
    When I look at the material master set-up, I still see records in the MBEW table.  UNBW items that are set-up that way from scratch do not have any records in this table.  Is this what is driving my error?
    I'm guessing that if it is not, there will be some discrepancy between the material, vendor, and capital asset order.
    Any insight is appreciated.

    even UNBW can have accounting views.
    The problem is probably that you just changed the material type and did not change the valuation class in the accounting view accordingly. remove it, and try again.

  • How to find class for object

    I'm trying to find the class for a given object. In Java, I
    could do something like:
    myObject.getClass().getName();
    but I can't find the equivalent in Flex. How do I find the
    class for a given Flex object? I don't know what it might be (other
    than Object), so I don't want to do trial-and-error with "is" or
    "instanceof."
    Thanks!

    Object introspection can be done through the "describeType"
    function.

  • How to use class for Translate..codepage/numer format

    In the Unicode context, TRANSLATE... CODEPAGE/NUMBER FORMAT is not allowed.

    this is the class to be used for  Translate…Codepage/number format.statement
    Unicode Error : In the Unicode context, TRANSLATE... CODEPAGE/NUMBER   FORMAT is not allowed.
    Before Unicode
      TRANSLATE T143T-TBTXT FROM CODE PAGE '1100' TO CODE PAGE '1105'.
    After Unicode
       Use class for Translate codepage to codepage.
         Data : g_codepage LIKE tcp0c-charco VALUE '1100'.
    CONSTANTS: c_unicodecp(4) VALUE '1105'.
    PERFORM translate_codepage USING g_codepage
                                     c_unicodecp
                               CHANGING T143T.
    FORM translate_codepage  USING    P_G_CODEPAGE
                                      P_C_UNICODECP
                             CHANGING P_T143T.
      DATA: converter  TYPE REF TO cl_abap_conv_obj.
      DATA: l_out      TYPE string.
      DATA: l_fromcode TYPE cpcodepage.
      DATA: l_tocode   TYPE cpcodepage.
      l_fromcode = P_G_CODEPAGE.
      l_tocode = P_C_UNICODECP.
      CREATE OBJECT converter
        EXPORTING
          incode  = l_fromcode
          miss     = '.'
          broken   = '.'
          use_f1   = 'X'
          outcode  = l_tocode
        EXCEPTIONS
          invalid_codepage = 1
          internal_error   = 2.
      IF sy-subrc <> 0.
        CASE sy-subrc.
          WHEN 1.
            MESSAGE ID 'FES' TYPE 'E' NUMBER '024' RAISING unknown_error.
          WHEN 2.
            MESSAGE ID 'FES' TYPE 'E' NUMBER '024' RAISING unknown_error.
        ENDCASE.
      ENDIF.
      CALL METHOD converter->convert
        EXPORTING
          inbuff         = P_T143T
          inbufflg       = 0
          outbufflg      = 0
        IMPORTING
          outbuff        = l_out
        EXCEPTIONS
          internal_error = 1
          OTHERS         = 2.
      IF sy-subrc <> 0.
        CASE sy-subrc.
          WHEN 1.
            MESSAGE ID 'FES' TYPE 'E' NUMBER '024' RAISING unknown_error.
          WHEN 2.
            MESSAGE ID 'FES' TYPE 'E' NUMBER '024' RAISING unknown_error.
        ENDCASE.
      ENDIF.
      P_T143T = l_out.
    ENDFORM.                    " translate_codepage

  • Enable Secure communication for RFC destinations by using sm59 transaction

    Dear friends,
    We would like to enable secure communications for RFC destinations by using the sm59 transaction in our systems.
    We need to do this manually, by changing  the internal communication settings in a way they can communicate securely.
    Any idea or advice on the way it can be done ?
    We need to take each RFC, manually check it and secure it.
    Thanks in advance,
    Jordan

    In SM59 open up a RFC destination and go to Logon & Security. There you can enable Trusted relashionship and activate status of secure protocol.
    And yes you have to do it manually for the desired RFC's

  • How do i Enable Active X for viewing ADVANCE CHARTS

    how do i do these steps--
    open internet explorer
    tools (select Internet Options)
    Click Security Tab
    Select Internet
    Click Custom Level
    Active x Control plugins --- Enable

    https://support.mozilla.com/en-US/kb/ActiveX
    ActiveX is the system Internet Explorer uses in place of the NPAPI system that all other browsers use to embed other applications inside themselves. Some sites explicitly specify the use of an ActiveX control (generally, for Windows Media Player) and will not render in a browser without ActiveX support.

  • How to determine target for links in search results

    I've created an autoquery custom search portlet.
    The search results are by default showed is this portlet.
    The text items which are found display a link to their content.
    When clicked, the content is showed in a style different from the page on which the portlet was placed, and at full screen.
    How can I force the content to display on a page of which I can determine the style and layout?
    Thanks,
    Ton

    Unfortunately there's no way to do this directly at the moment although this functionality is planned for a future release.
    However, its possible to acheive the same effect by using procedures associated with the Text item type.
    To learn more about this, navigate to the Shared Objects page group, click on "Item Types" and edit the "Text" item type. Click on the "Procedures" tab. The help on the screen has information about creating custom procedures to render information associated with the item.
    Also see a Body text in custom search results to this forum.

  • Material Exempt for Material

    Hi friends,
    We are in the trading business and donot have any tax on our purchases. We are using Vertex. All is fine in the sales side but in MIRO, I have to punch in I0 taxcode all the time for each purchase order line item. I tried changing the purchase info record and changing the purchasing view of the material with non taxable indicator. But still while doing MIRO, I have to say I0 on each item. Please let me know whay can I do.
    thanks in advance

    You can specify default values for tax codes in customizing transaction OMR2

  • How to declare class for library like function

    Hey guys I want to declare class Math and define method subtrction so that i can use it in other class like
    package p1
    public class Math
    Math( ){}
    int Subtration ( int a, int b)
    return (a-b)
    package p2
    import p1.*;
    Public Class Test
    Test()
    int somenumber=Math.Subtration(3,4);
    For some reason I cannot see any methods inside Math class. when i type
    somenumber = Math. it show me only one option and that is 'class' instead of mathods inside Math. any thoughts?
    thx

    Yes I am aware of Math class in java. The question is
    how do i declare a class and call it's method in some
    other class with out declaring an object of that
    class.
    Like I can just call Math.sqrt(4) with out
    specifically declaring Math as an object. I want to
    declare my own class which has some methods I wish to
    call in some other class.MyClass.someMethod(). Just make sure that the methos is actually declared static. I suggest looking up the static keyword to find out what it means.

  • HIDE ORDER AS DIRECT MATERIAL checkbox for material item in Shopping cart

    HI,
    We are on SRM 7.1 ECS.
    I need to hide the ORDER AS DIRECT MATERIAL checkbox under the ITEM DATA tab in the Shopping cart screen...How do I do it??Is there any config option or I need to implement a badi in SRM 7?

    Hi NIkhil,
    This BADI is not called in SRM 7!
    Experts,
    CA anyone help me as to how the ORDER AS DIRECT CHECKBOX in SC screen?

Maybe you are looking for

  • Massive Framerate Drop after 10.9.4 update

    I have just updated to the latest version of os x mavericks last night and this morning I discovered a massive framerate drop across the whole system. When i enter launchpad I can see the frames refreshing as I swipe, and all of my games are now unpl

  • Problem with Time Machine, running Snow Leopard

    Hi all, Last week I had a new hard drive fitted into my iMac 8,1, after which Snow Leopard was reloaded (10.6.3 from the disc, updated to 10.6.8), followed by the restoration of data via Time Machine from my external hard drive. Whilst my Mac is now

  • How to Recover Playlists when Transferring iTunes Library from External Drive to New Computer

    iTunes library copied to external drive and then loaded to new computer. All songs are there but all of the playlists that I had set up do not appear. I cannot figure out how to retrieve/recover them. The back-up was not done by me so I'm not sure of

  • ISE 802.1x EAP-TLS machine and smart card authentication

    I suspect I know the answer to this, but thought that I would throw it out there anway... With Cisco ISE 1.2 is it possible to enable 802.1x machine AND user smart card  authentication simultaneously for wired/wireless clients (specifically  Windows

  • Thunderbolt to Firewire adapter - does it exist yet?

    Has anyone actually made a Thunderbolt to Firewire adapter that you can purchase yet? I know it's early days, not complaining, just hoping hoping......