Supress componding attributes of characteristic

Hi,
I've characteristic which is compounding with two attributes. Hence in the query result this characterstic is going to be displayed with componding attributes.
Is there any way I can suppress the display of componding attributes for the characteristic in report result?
If I go with macro it is performance issue. I need to show only characteristic and suppress the display of componding attributes?

hi,
please go through the following link.
Eliminating compounding attribute in a query (URGENT PLEASE)
Regards,
Rk.

Similar Messages

  • Report problem when show attribute only Characteristic text master data

    I want to show the attribute only Characteristic in report. In report, it shows "Not assigned" for the Char row, but other data show properly. I checked the Char text master data. It looks fine. I don't what's problem?

    hi robert,
    some of your characteristics probably don't have the attribute assigned (meaning they have a blank value for that attribute). i don't know if this is configurable, but blank entries all display as '#' and the text 'Not Assigned'.
    (as an additional comment, if you take a look at the masterdata of the attribute you used (which i presume exists), there should be a blank entry there.)
    for example, in the case of the deletion flag of an article, not all articles are flagged for deletion. if you create a report that displays the article number and the deletion flag attribute, you'll see quite a bunch of 'not assigned'/'X' in your output.
    let me know if that helps.
    ryan.

  • How to add attribute to characteristic already in production system

    HI Guru's ,
                     How to add a attribute to characteristic which already exist in production system.
    thanks in advance

    Hi Venkat,
    We don't make any design changes in production box. Usually you make changes in Development box then transport that object with request to Quality box. You test the changed object there, if no inconsistancies found you will transport the object to Production box with same request.
    In development box, if you want to add the new attribute to the characterstic, you need to delete the complete data in the characterstic.
    Thanks
    Sreekanth

  • Q:  Supressing the attribute level error message ? Error appears twice

    Hi,
    Is there a way for my customer to supress the attribute level error message?
    In Internet Expenses,
    The error message :
    'Error
    Justification - a receipt with this expense type requires a justification.
    Please enter a justification for this receipt.'
    is appearing twice on the Cash and Other Expenses Details page
    It appears once at the top of the page and again underneath the Justification box/field.
    Thanks for your help,
    Vicky

    Vicky,
    I think its the AttrValException you are hitting. In that case it is the expected behaviour of the Exception.
    Thanks

  • Attributes of characteristic 0MATERIAL are locked by terminated change run

    Hi All,
               i am planning tod see the data in 0material.when i click on maintiain master data button then i am getting Attributes of characteristic 0MATERIAL are locked by terminated change run 384436434.how can i solve this issues.please help me .
    Thanks & Regards,
    chandra

    here you need to completed the terminated ACR first because Lock will never get released, until we repeat the
    terminated Change run(Change Run id should be same). Also when a Change Run get cancelled automatically ,we should check the Job Log. If it is a Terminated Change Run, then again we should repeat the Terminated Change Run, then only lock will get Released.
    For this......
    *Go to RSA1 >> In the top TOOLS tab >> Select Apply Hierarchy/Attribute Change >> Click on Monitor and Start terminated
    Change run >> there click on Start Change run with Set Filters.........it will restart the Terminated Change run.....*
    then you can repeat your process chain.
    Thanks,

  • ABAP: How to read attribute of characteristic

    Hello Folks.
    Imagine, I have a Characteristic called ABC, this Char in turns hat two attributes Z1 and Z2. While processing a ABAP-Class-based Planning Function, I want to read the value of these two attributes Z1 and Z2. How to achive this?
    Is there any Function Module to read the attribute values for a give characteristic? Or even better a ABAP-Class?!
    Thanks in advance

    see this document..for sample code..
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/biw/p-r/performance%20optimization%20in%20bw%20update%20rules.doc
    this code is used in BW update rules..
    i think u can use similar code for ur requirement too..
    cheers,
    Vishvesh

  • Error: No attribute for characteristic 0I_CALMO

    Hi All,
                          while running the dashboard which is integrated with Enterprise portal, we are getting the below error.These dashboards consumes data from the BEX query  directly using the SAP Netweaver connection Type.
      Error Desc:       
                         There is no attribute or presentation available for characteristic 0I_CALMO with the name TEXT
    Please find the more details in the attached sheet. Can any one help me out to resolve this issue

    Hi
    Check the dashboards consumes data from the BEX query working or not in the BW system. And check characteristic 0I_CALMO defined and working or not.

  • NetWeaver 2004s - Query Designer - Assign Attributes to characteristic

    Dear specialists,
    I try to find out, how I can restrict the attributes to the characteristics.
    I have only the opportunity to restrict values or value variables.
    This problem comes up with the new 2004s Release.
    Are there other ways to restrict the atrributes to their characteristics
    regards Osman Akuzun

    Hello Osman,
    To make a Characteristics a Navigational Attribute,
    - First identify the infoProvider for the Query, then
    - Logon to your BW Back-end system (Not Bex Analyzer), execute transaction code <b>RSA1</b>, click on InfoProvider under "<b>Modelling</b>", locate your query infoprovider and double click on it to change it or right-click to display context menu and click on "<b>Change</b>".
    - Open up the "<b>NavAttribute</b>", locate your characteristic and in the third column (i.e "<b>On/Off</b>" column), switch on the Navigational attribute by checking the box in front of the characteristic. Save your changes.
    You can then go back to Bex Analyzer.
    I hope this helps.
    Regards,
    Jacob

  • Supression of progam attribute title getting printed in the POP up screen

    Hi,
    I am calling a screen (module dialog box type) in the module pool progam and than on that screen i am generating a list out displaying messages.
    When the screen is getting called the main program attribute tittle is gettting displayed before printing the messages.
    Please provide your suggestions regarding how to supress that attribute title getting displayed on the pop up screen.
    The code in the PBO of the pop up screen is
    PROCESS BEFORE OUTPUT.
    MODULE status_9120.
    MODULE WRITE_LIST_9120.
    PROCESS AFTER INPUT.
    MODULE USER_COMMAND_9120.
    setting the PF status
    MODULE status_9120 OUTPUT.
      SET PF-STATUS 'Z9120'.
      SET TITLEBAR 'TITLE_9110'.
    ENDMODULE.                 " STATUS_9120  OUTPUT
    *&      Module  WRITE_LIST_9120  OUTPUT
    To display the error messages on the pop up screen
    MODULE WRITE_LIST_9120 output.
      SUPPRESS DIALOG.
    LEAVE TO LIST-PROCESSING." AND RETURN TO SCREEN 0.
       l_dynnr = SY-DYNNR.
       FORMAT COLOR COL_TOTAL INTENSIFIED OFF.
       LOOP AT t_result.
       WRITE:/ t_result-message.
       ENDLOOP.
    ENDMODULE.                 " WRITE_LIST_9120  OUTPUT
    MODULE USER_COMMAND_9120.
    As mentioned above before displaying the contents of the table t_result the code is displaying the progam attribute title.
    Also provide suggestion whether this can be done by any other method.
    Thanks,
    Mohit

    Hi
    Once you have set a title, it remains active within the transaction until the next SET TITLEBAR statement.
    Use SET TITLEBAR. (without any title. This will reset the title)
    Regards
    Raj

  • Characteristic relationship with Exit class is not applied correctly

    We are using a characteristic relationship (with derivation) type Exit class. For that we have created class ZCL_RSPLS_ARTICLE_FROM_PLMOD as a copy of the standard class CL_RSPLS_CR_EXIT_BASE.
    Target and source characteristics are members of the aggregation level.
    We want to generate a list of valid combinations of characteristics planning models and articles which should be planned in the planning query.
    For that we are using the method IF_RSPLS_CR_METHODS~CREATE:
    Source is characteristic Model ZMATMOD and we determine in the exit class all active articles ZMATART.
    We get a list of active (planning relevant) models and articles in our exit class (table e_th_chas).
    --> For instance 6 combinations
    Until here everything works fine.
    The problem is that in the query 8 combinations are displayed.
    We have no idea why more than the generated combinations are displayed.
    One reason could be that the characteristic article ZMATART is an attribute from characteristic model ZMATMOD.
    So from a master data point of view 8 combinations would be relevant.
    But we use the exit class in order to reduce the number of combinations to planning relevant items.
    If we use the method IF_RSPLS_CR_METHODS~CHECK we could flag the 2 combinations which are not planning relevant to not valid.
    But these are then displayed in the query. 6 combinations in change mode; 2 combinations in display mode. This would not help us.
    We would like to see only the planning relevant combinations  6 combinations
    Can anyone please help me urgently?
    Best regards
    Martin

    Hi,
    set a break-point in the factory method get_instance to check whether the class is called. In the planning modeler make sure that you  use an external break-point.
    Or use rsrt an change a cell value: Derivation is called in the delta buffer to derive from the fields contained in the aggregation level. So check also that the source fields are contained in the aggregation level or can be derived via a a chain of derivations.
    Also make sure that all source fields have to be non-initial. The system will not call derivation for initial source fields since in this case there is not unique target, cf. http://help.sap.com/saphelp_nw70/helpdata/en/43/1c3d0f31b70701e10000000a422035/frameset.htm
    Remark: The attached document of note 994853 is about the disaggregation feature but it also contains a section about the characteristic relationships. Observe also that the template exit classes are documented in SE24.
    Regards,
    Gregor

  • ODS attribute only Problem

    Hi,
    I have a ODS which had a infoobject with attribute only status. To be able use this in Bex this attribute only status has been disabled.
    Now while transporting the request I am getting the error - generate new SIDs for this characteristic in the ODS.
    Will I have to delete all the data and upload data back again?
    Points will be awarded.

    Hi Sapuser,
    Read the below :
    If you mark the characteristic as an exclusive attribute, it can only be used as a display attribute for another characteristic, but not as an navigation attribute.
    In addition, the characteristic cannot be transferred into InfoCubes.
    However, it can be used in ODS objects, InfoSets and characteristics as InfoProviders. In queries using these InfoProviders the characteristic can only be changed as a display attribute.
    For information about generating SIDs for characteristics see Table of Master Data IDs.
    Table of master data IDs
    Use
    In InfoCubes and in aggregates, so-called master data IDs (SIDs), rather than characteristic values, are saved directly. In the SID table, there is a master data ID for every characteristic value. The OLAP processor also works internally only with the SIDs and not with characteristic values.
    Dependencies
    Generation of SIDs for characteristic M1:
    In the following cases SIDs are generated for M1:
    Loading of master data for M1
    Loading of texts for M1
    Loading of master data for a characteristic that has M1 as a navigation attribute
    Activation of M1 as navigation attribute for a characteristic
    Addition of M1 as navigation attribute for a characteristic if M1 is compounded
    Loading of InfoCube data with the option of generating master data
    Deactivation of the property exclusive attribute for characteristic M1, if M1 is used in ODS Objects that are released for reporting
    In the following cases SIDs for M1 are only generated if M1 is not exclusive attribute):
    Activation of data of an ODS object that is released for reporting and contains M1
    Release of an ODS object that contains M1 for reporting
    Execution of a query on a characteristic as InfoProvider that contains M1 as an attribute
    Execution of a query on an InfoSet that contains M1 (via a characteristic or an ODS object)
    Example
    The content of the SID table for the characteristic Material could be as follows:
    MATERIAL       SID
                    0
    ABC            1
    10000          2
    DEF            3
    10100          4
    XYZ            5
    RTZE           6
    Assign points if it helps...
    Regards,
    ARK

  • Calculated Key Figures based on Attributes

    Hi
    In one of our queries we need to create a calculated key figure based on an attribute. Any suggestions on the best way to do this?
    I have looked at a Virtual Key Figure, but because our Cube name contains underscores (_) it shortdumps. Is there a way around this?
    Thanks in advance.
    Chami Herath

    Hi,
    what do you mean with calculated key figure based on an attribute? Is your attribute a characteristic in the cube or is it just a attribute of a characteristic? Let me know more details.
    regards
    Siggi

  • Attributes in CR

    Hello,
    I have 2 attributes of char in SAP Query.
    How I can see it in CR in 2 columns?
    I build SAP query, after it I build CR report on it.
    But CR can't see attributes, only characteristic.
    Regards,
    Roman

    Post your question to the Business Object Integration Kits forum

  • Display attributes tab in BEx Web

    Hi,
    I don't see <b>display attributes</b> tab after clicking context menu -> properties -> Characteristics(for perticular Char). I can see only one tab.
    There should be three tabs according to help.sap.com...
    http://help.sap.com/saphelp_nw04s/helpdata/en/d3/ea523ac1ea1d35e10000000a11402f/frameset.htm
    Iam a frontend(portal) consultant and i don't have any exp with query design or data modelling.. I don't see any option to display these tabs..is there any property i can set in WAD.
    according to help.sap.com..."Attributes tab page appears only when the characteristic has one or more attributes"...where to add attributes to characteristic.
    is there any SAP standard query working with similar functionality? Plese suggest or forward documentation links.
    Thanks,
    Krishna.

    Hi,
    We can see the tab and add the attributes to display in Bex analyzer  but attributes tab in not visible on Bex(context menu -> properties -> Char) .We are running on NW04s SPS10.
    Thanks,
    Krishna.

  • BAPI to upload marketing attributes to BP

    Hi Gurus,
    I have a requirement in which I need to create a BP first and then add marketing attributes to it.Right now I am using FM CRM_MKTBP_CHANGE_BP .But the performance is very poor and it is taking a lot of time.Is there any standard BAPI
    which has better performance.
    Regards,
    Raghu.

    Hi Rahul,
    To add the marketing attributes you can go to transaction CRMD_PROF_TEMPL  and add attributes there.
    Following tables are also related to Marketing Attibutes.
    Tables for marketing attributes
    CABNT - Characteristic Descriptions
    KLAH - Attribute Set Name & ID(CLINT)
    INOB - Object ID,BP Number
    KSSK - Object ID, Attribute set ID
    CABN - Attribute ID , Attribute name
    CAWN – Attribute name, possible values
    AUSP - BP GUID, Attribute Name ,Value ,Object ID
    Award points if find helpful.
    Regards
    Aashish Garg

Maybe you are looking for

  • How do I save an email as document/file?

    I need to save an email as a document/file for business.  When I right click the email, I am not given the option to do so.  I also tried to drag it into the finder, but didn't work.  I'm a recent convert to the Apple world.  Any suggestions are grea

  • Problems trying to install kdevelop

    Hi there, I thought i would take a look at kdevelop so i tried to install it using pacman -S kdevelop and everything seemed to go ok until it starts checking for file conflicts where i get the following errors checking for file conflicts... error: th

  • The central part of page booking form not all displayed

    when trying to book a coach on citylink not all the central part is dislplayed so cannot compleat form how do i change this wifs pc is ok same program xp updated firefox latest how do i alter the settings to change the central portion so it is wider

  • *Possible* SOD / High Pitch Sound

    i know i posted this in another post as a reply allready but i though maybe other people could find this thread better this wayif any mods see this as a double post or what not delete the other one... it may not be a fix so im not gonna shout it out

  • How to import a XFDF file into a PDF?

    I need to import a XFDF file into a PDF through javascript. Manually in Acrobat 8.0 we are doing through the following steps. Comments->import comments->browser window open(select the corresponding xfdf file and then click select button)->After that