How to retrieve Parent product category based on Product name selection.

Is it possible to retrieve Parent Product category based on the Product name of the Product.
Our Product catalog is set up as follows
Product:
Product name Product category
TA30 TA30
TA300 TA30
Product categories
Category Name Parent Category
TA30 Lawn Mower.
I would like to retrieve the Parent category "lawn Mower" when I select the product TA30 from the product list on the custom object 9. Any ideas or suggestions?
Thanks,
SKJ

Hi Akila,
I am assuming you query runs on a cube that loads data from the source system. In that case cube will contain only valid cobminations of Product Family & Product Line.
In order to make sure that if a cetain Product Family is chosen you want to see only the relevant Product Line as available in the cube do the following:
Go to Query Designer Filter
Pick Product Family > Properties> Advanced. Under the Tab Filter Value Selection during Query Execution choose 'Only Values in InfoProvider'
Do the same setting for Product Line as well.
Hope this helps.
Regards,
Amrita
Edited by: Amrita Goswami on Jun 23, 2009 7:26 AM

Similar Messages

  • How can I default Product name in a custom field in SR

    While creating a Service Request, I am trying to save the Product name in a custom field using defaulting options. For some reason it is not working, when i tried product id, it works!! I am trying to pass [<Product>] to that custom field. Any suggestions how I get the product name?

    Arvindh, this is indeed a join field problem. Product is joined to SR through Product Id. Unless the product id exists, the SR has no knowledge of any other fields of that product record. We are aware of this issue and we are investigating a solution.

  • In a child opportunity, How to retrieve parent opportunity ID

    Hello,
    I know that in account object, there is a way to retrieve parent account id.
    Now, I would like to know if it is possible to retrieve the Parent Opportunity ID, while being in the chilf opportunity.
    I tried many syntax which all brings me a syntax error :
    JoinFieldValue('<Opportunity>',[<OpportunityId>],'<ParentoptyIntegrationId>')
    JoinFieldValue('<Opportunity>',[<OpportunityId>],'<ParentOpportunityId>')
    JoinFieldValue('<Opportunity>',[<OpportunityId>],'<ParentoptyExternalSystemId>')
    Thanks a lot for your help.
    Best regards,
    Julien

    Hi Julien,
    We cannot get the Row Id of the parent opportunity in the child object. However if you can convey what the requirement is, there could be another way of fulfilling the requirement.
    Regards,
    Paul

  • How to Read DAQmx Product name in cvi

    How do I read the USB product names in CVI. I need to know which DAQmx instruments I have connected. If its a USB-6009 and/or USB-6221.  Any help would be appreciated.
    Thanks

    Device product type can be obtained with
       DAQmxGetDeviceAttribute ("DeviceName", DAQmx_Dev_ProductType, msg, 4096);
    There is a whole series of properties that you can retrieve on installed devices: I suggest you study the list of attributes available for this function in order to detect if some of them can be of some help for you.
    The list of all devices present in the system (regardless they are simulated or actual devices) can be obtained with
          DAQmxGetSystemInfoAttribute (DAQmx_Sys_DevNames, msg, 4096);
    Proud to use LW/CVI from 3.1 on.
    My contributions to the Developer Zone Community
    If I have helped you, why not giving me a kudos?

  • How to retrieve material document no. based on production confirmation no.

    Hi Friends,
    I am retreiving the production confirmation number(PRTNR) thru bapi BAPI_REPMANCONF_CREATE_MTS. Based on that confirmation number I need to retrieve material document number (MBLNR)
    Because multiple users can post finished goods from different locations at same time, I have to complusory retrieve the material document number based on confirmation number only. Tables MKPF and MSEG doesn't have confirmation number fields in them.
    I would appreciate if anyone could suggest me good ideas.
    Thanks in Advance.

    Hi Melih,
    Thank you for your valuable response.
    My BLPP table gets updated with material document as well as confirmation number.
    When I test my FM directly, I get a confirmation number in my export. I don't get a material document number in my export parameter. But, BLPP gets updated with material document number as well as confirmation number.
    But, if I debugg the FM with the same data I get the material document number as well as conf. no. populated in my export parameters.
    This is what I have done:
    Export parameters
    MAT_DOC type BELNR_D
    CONF type PRTNR
    DATA: GS_BLPP               LIKE BLPP,
                          GV_MAT_DOC      TYPE BELNR_D.
    CLEAR: GV_MAT_DOC, GS_BLPP.
        SELECT SINGLE *  INTO GS_BLPP
                         FROM BLPP
                        WHERE PRTNR = CONF
                          AND PRTPS = '0001'.
        GV_MAT_DOC = L_BLPP-BELNR.
        MAT_DOC              = GV_MAT_DOC.
    Please let me know if I have done something wrong.
    Thanks.

  • How to load one filter values based on another filter selection

    Hi,
    I have a Query/Report that contains the following filters
    Product Family
    Product Line
    Product
    all the above InfoObjects are independent, now i need a functionality where in if i select a Product Family then all the Product Line belonging to that Product Family should get loaded in the filter selection, same way when a Product Line is selected the all the Products under that Product Line should get loaded ni Products filter.
    Please let me know how this functionality can be achived.
    Thanks
    Akila. R

    Hi Akila,
    I am assuming you query runs on a cube that loads data from the source system. In that case cube will contain only valid cobminations of Product Family & Product Line.
    In order to make sure that if a cetain Product Family is chosen you want to see only the relevant Product Line as available in the cube do the following:
    Go to Query Designer Filter
    Pick Product Family > Properties> Advanced. Under the Tab Filter Value Selection during Query Execution choose 'Only Values in InfoProvider'
    Do the same setting for Product Line as well.
    Hope this helps.
    Regards,
    Amrita
    Edited by: Amrita Goswami on Jun 23, 2009 7:26 AM

  • How to make some fields mandatory based on radio button selected

    Hi,
    As per requirement i have two radio buttons in my screen.
    1.update
    2.Display.
    When the user clicks update then certain fields of selection screen should be made mandatory.
    And if the user cliks the Display Radio Button then certain fields should be made mandatory.
    How to code for it.
    Thanks and Regards,
    Smriti

    Hi ,
    use this code ,
    now according to your requirement you make changes to your parameters.
    parameters: r1 as radiobutton group g1, " this id you update button
                r2 as radiobutton group g1.         " this is for display
    PARAMETERS: TEST1(10) MODIF ID SC1, " assume these are the fields as parameters.
    TEST2(10) MODIF ID SC2,
    TEST3(10) MODIF ID SC1,
    TEST4(10) MODIF ID SC2.
    AT SELECTION-SCREEN OUTPUT.
    if g1 = 'X'.
    LOOP AT SCREEN.
      IF SCREEN-GROUP1 = 'SC1'.
        SCREEN-INTENSIFIED = '1'.
        MODIFY SCREEN.
        CONTINUE.
      ENDIF.
      IF SCREEN-GROUP1 = 'SC2'.
        SCREEN-INTENSIFIED = '0'.
        MODIFY SCREEN.
      ENDIF.
    ENDLOOP.
    elseif g2 = 'X'.
    LOOP AT SCREEN.
      IF SCREEN-GROUP1 = 'SC1'.
        SCREEN-INTENSIFIED = '1'.
        MODIFY SCREEN.
        CONTINUE.
      ENDIF.
      IF SCREEN-GROUP1 = 'SC2'.
        SCREEN-INTENSIFIED = '0'.
        MODIFY SCREEN.
      ENDIF.
    ENDLOOP.
    Please let me know if you still need any help.
    Thanks and regards,
    Rajeshwar

  • How to put Dynamic Query description based on the Input selections?

    Hi All,
    I have a requirement wherien there will be 4 input selections for a report namely A, B, C & D alongwith Fiscal year period. wherin Fiscal Year period will be mandatory field
    Now, the output of the report should show the description of the report as follows:
    For E.g: if Fiscal year Period = 011/2011
    When User Enters input value for 'A', then report nameshould be displayed as A 011/2011
    When User Enters input value for 'B', then report nameshould be displayed as B 011/2011
    When User Enters input value for 'C', then report nameshould be displayed as C 011/2011
    When User Enters input value for 'D', then report nameshould be displayed as  D 011/2011
    Please advice if this requirement is possible and if yes, please guide me how?
    Thanks& Regards
    Sneha Santhanakrishnan

    change the code as below and see
    WHEN 'ZREP_DESC'.
    data: wa_data TYPE rrrangesid.
          CLEAR : wa_var_range.
          READ TABLE i_t_var_range INTO wa_var_range WITH KEY vnam = 'ZVALUE'.   "ZVALUE is variable for A,B,C,D field
          l_no = wa_var_range-low.
          CLEAR wa_var_range.
          READ TABLE i_t_var_range INTO wa_var_range WITH KEY vnam = 'ZFISCPER' iobjnm = '0FISCPER'.
          IF wa_var_range-low IS NOT INITIAL.
            gv_var  =  wa_var_range-low.
    concatenate l_no  gv_var into wa_data-low
          ENDIF.
          wa_data-sign = 'I'.
          wa_data-opt = 'BT'.
          APPEND wa_data TO e_t_range.
      ENDCASE.

  • How to make buttons as disable based on radio button selection in .htm

    Hi
    I have two radio buttons. So i want that when i select one radio button other buttons should become disable in
    .htm in crm webui.
    Thanx,
    Nawal kishore.

    I am not sure why u need this .. but if you disable the radio button, user won't be able to change the radio buttons any more!!!
    You can do it in this way.
    1. go to the radio button attribute of the context node ..
    if get_p_xxxx method is present then modify that to include the below code. If not present create the method. see any standard method
    CASE iv_property.
       WHEN if_bsp_wd_model_setter_getter=>fp_server_event.
          rv_value = 'selected'. "remember case
    endcase.
    2. create a event with the name 'selected'. "" case is important
    3. check in do_handle_event if the event is created or not..." if there is not event added in that method, you need to add your method name there...
    4. set some flag in the event method which you have to access from the get_i_XXX method(XXX is the radio button attribute).
    depending on the flag you make it disable.

  • Parent Product and pruduct category

    I know how to use product category, but i don't know how to use Parent Product.when i created a server request ,they gave the answer
    is:+Parent Product is a System Defined read-only picklist which shows all the Products listed for your company. You can create additonalProducts and select any existing product as the Parent product.However, it is not mandatory that each newly created products should have a Parent Product associated.+ but this answer doesn't help me. what i want to know is when i need to add a Parent Product field and what is the different between Parent Product and Product Category?

    Hello Jamal,
    In txn:COMMPR01,you can see the Item Category Group under Sales and Distribution tab,under Sales:Control Fields,Quantities.
    With the help of the item category group, you review the various products from a business view for item category determination. Enter the item category group for each product in the product master.
    During business transaction processing, the system creates the item category from the item category group for the product, and from the business transaction category, and proposes it in the document. You can assign item categories to business transaction types and item category groups in the process Maintain item category determination.
    So for a product you need to assign it during the product creation and then only this product would be available for selection in transaction depending upon the item category determination.
    Hope this helps!
    Best Regards,
    Shanthala Kudva

  • How to query the Product short code of EBS products?

    I need to get all the Product short code of all EBS products. Is there any table record such kinds of short codes? thanks!

    Hi,
    However, these product codes are not associated with corresponding products and product families.
    do you know how to query the product name , product short codes and product familiy together?Script to get Codelevels Summary in R12 and 11i
    Re: Script to get Codelevels Summary in R12 and 11i
    PS: all these tables are public to query or just allow oracle internal usage?As Apps user, you should be able to query these tables. For other database users, you need to check if the users have select privilege to access the tables or not.
    Regards,
    Hussein

  • My hard drive crashed - I need to upgrade to Adobe Elements 13 but I cannot retrieve my Product Key.  How can I find it?

    How can I retrieve my product key so that I can UPGRADE to Adobe Photoshop elements 13?
    My hard drive crashed and I cannot access my information.

    Sorry, Time has caught up with me and I must address it in person.  I will try to get back before end of business today.

  • Bapi or FM or tabel or any standard transaction code for Production order linking to get child production orders based on parent production order

    Dear Guru's,
    we have a requirement i.e. user can convert planned orders in to production orders (CO41) based on those production orders we can get Route card( Z Smart form)  presently we are using manual input for that Route card. recently we got requirement for this i.e. make to automatic generation of route card for this requirement we need to get the list of child's production orders based on parent production order
    so as per my requirement i need to get all child part numbers production orders based on parent production order number and quantity i tried in MD4C and CO46 but those transactions codes are picking multiple lines also so for this requirement please give your valuable suggestions
    Regards,
    Venkat 

    Dear Friends,
    Thanks for your reply,
    My business process is MTS purely strategy 10, for route card all components with production orders we can give input as like bellow these production orders are converted from planned orders,between few components are don't have production orders those are F-30 materials,because of this reason i need link for production order to child components orders
    01
    IND1
    IND1
    A1CE2003520103-005
    55685815
    02
    IND1
    IND1
    A1CE2003520103-010
    55685814
    03
    IND1
    IND1
    A1CE2003520103-015
    55685813
    04
    IND1
    IND1
    A1CE2003520103-020
    55685812
    05
    IND1
    IND1
    A1CE2003520103-025
    55685811
    06
    IND1
    IND1
    A1CE2003520103-030
    07
    IND1
    IND1
    A1CE2003520103-035
    55685810

  • How to retrieve Task Lists from All Subsites to the Parent Site and display in Grid view using CAML Query

    How to retrieve Task Lists from All Subsites to the Parent Site and display in  Grid view using CAML Query + object model

    do u just want task list or items under task list for all subsites
    for items use spsitedataquery ref
    http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.spsitedataquery.aspx use recursive to get it from alll subsite under site collection
    for tasklist only u can a simply use a for loop to find in all subsite
    Manish Sati

  • How retrieving the product key for a SQL Server 2005 installation

    Hi,
    is it possible to retrieve the product key associated to a SQL Server 2005 installation?
    If yes, how?
    Many thanks

    Hello,
    The following tool may provide you the product key for SQL Server 2005 and SQL Server 2008 instances.
    http://www.nirsoft.net/utils/product_cd_key_viewer.html
    Hope this helps.
    Regards,
    Alberto Morillo
    SQLCoffee.com

Maybe you are looking for

  • Taking long time to execute views

    Hi All, my query is taking long time to execute(i am using standard views in my query) XLA_INV_AEL_GL_V , XLA_WIP_AEL_GL_V -----these standard views itself taking long time to execute ,but i need the info from this views WHERE gjh.je_batch_id = gjb.j

  • What is the best/most effective way to dynamicall​y build a timed loop in LabView?

    I am relatively new to labview (not to code in general) and am looking for the "LabVIEW" way to dynamically build a timed loop. This is what I am trying to accomplish: I have several heaters controlled through labview using Labview's PID toolkit. Thi

  • Lync on iPhone often doesnt disconnect correctly

    We are seeing an issue where users will log out of Lync on their iPhones, but will continue to get alerts from Lync. I ran get-csconnections.ps1 and sure enough, while my user reporting the issue was definitley logged out of Lync on his device, get-c

  • How to see OSS Notes?

    HI ,         i got my certification recently.I have some OSS notes numbers.But i don't know how to see them.Can any body tell me how to see them? RamaChandra

  • Load Every Day 2LIS_03_BX (Full Load landscape) BI 7.0

    Hi, We want a simple landscape of material stocks from an SAP R/3 system to SAP BW.  We would like to transfer the complete current material stock for a calendar day (u201CSnapshotsu201D), every day. We think that the correct datasource for taht is 2