Where Used for Code groups or Selected Sets

Dear all,
can any body plz tell me how can i know which code group or selected set is used in what qualitative MICs.
either any report or transaction...
thanks in advance
zeeshan

Hi Zeeshan,
According to my information,,,
For Code Group
In QS41/42/43/44, reach up to the second screen "Change View: Codes" Overview. And then click on the "Used in Selected Set" Or short key "CntrlShiftF3"
For Selected Set.
I think no such std sap report is available. But what you can do is use the work bench CWBQM in display mode,,,,,
- CWBQM---> select the "Current Working Area" as "Q_OPR_000000000010".
- Apply the Basic Selection or Additional Selection Criteria" and then press Cntrl+F7.
- the list of the MIC data will be available here.
Or
You have to write done a query SQVI
Or
Develop a customized report.
Regards,
Shyamal

Similar Messages

  • Duplicate entries missing using for all entries in select query.

    Hi Gurus,
    Is there any way to avoid missing duplicate entries in an internal table if you use for all entries in select statement?
    Note : i am selecting two tables using non key fields and i have to aggregate the data. I want only 2 data fields and one amount field in my final internal table. I can add all the primary key fields into my internal table and collect my required fields in another table, but  I just want to know is there any other way to avoid missing duplicate entries without adding all the key fields?
    Regards,
    Raghavendra

    Hi,
    Just check what are the other possible fields in the table which may be having
    duplicate entries and make use of them in the selection accordingly.
    You may not miss any entries unless there is any restriction on them.
    You can better judge that in debugging mode while selecting data from that table.

  • Where-used for FM somethimes colors the program in red- why?

    Hello,
    Small question for something that i've noticed:
    When i do Where-used for FM somethimes the program is colored in red- anyone knows why?
    Thanks,
    Moshe

    Hi,
    In a where-used list for a function module the programs coloured in pale red are inactive.
    Regards,
    Nick

  • Where-used for Storage location

    Dear all,
    I have to delete a Storage location SL01 from system. Before I doing so, i need to perform below:
    1. I have to check SL01 is being used in what document. Can you advise what are tools that avaialble for me to perform where-used for SL01?
    2. If there are documents created and some of them are still open, do you advise to delete SL01?
    Please comment.

    Hi,
    Storage location comes into picture when you post a goods movement either a GR or GI.
    For this reason,When you create a Purchasing document a Po for example, it is not mandatory to define a storage location and the storage location defined at Po level canbe changed at GR level.
    So, before deleting the storage location you need to check whether there is available stock in the location.
    You can use the MB52 warehouse report to check the s.location stock .
    Hope it hepls.
    Regards,
    Bijoy Kumar

  • KKBC_ORD (or similar one) to be used for a group of PP-orders

    Hi,
    I want to create a production order variance report like this:
    Columns: variance categories
    Rows: the origin of each variance
    I can do this easily by defining a layout using T-Code KKBC_ORD which also allows me to select variances cumulated or per period.
    But this is only for one production order.
    Unfortunately KKBC_ORD does not allow to enter a production order group.
    The question is how to make this for ALL prod. orders for a given period (in the layout I am going to creata subtotals for the variance origin to see if there is a huge variance or not (if they donu2019t balance each otheru2026).
    Is there a standard report to cover this or a report painter library containing the required information? Also a logical database (to be used in a infoset query) would be sufficient.
    Best regards, Christian

    Hi
    Use KKBC_HOE... You need to define the summarization hierarchies for it....
    It works same as KKBC_ORD, with the exception that you can define the summarization levels in KKR0 which may pertain to a drilldown like Plant > Folllowed by Material > Followed by its Prod Orders
    Regards
    Ajay

  • How to find where used for PDF forms

    Hello Everyone,
    I have a small issue. I want to find the where used list for a PDF form SD_INVOICE_FORM01. Just want to see the driver program which is calling this PDF form.
    Can some one help me in this regard?
    Quick response would be appriciated. Thanks in Advance!!!

    Hi,
    You can see the driver program in Tnapr table.
    Give the FORM name in the selection criteria. You will get the driver program details.
    If you have the FM name generated,goto se37 and check where used list there.( It is useful only if  the FM is used by its name in the driver program.)
    Regards

  • F4 help for Code groups while creating a notification.

    Hi all,
    We are using Exit QQMA0015 to filter the code groups for object parts, Damage, Causes and Activities  based on the Z table.
    Our requirement is based on Object Parts, we want to restrict f4 help for Damage and then based on Object Parts and Damage we want to restrict f4 help for Causes and so on for Activities based on the Z table . And we are going to maintain multiple values for one Object Part.
    For e.g. If we have two entries for Damage code group in z table based on the Object Part, then both these code groups should be shown on f4 help of Damage. So  we want to pass multiple code groups from the Z table
    We are facing an issue like the export parameter E_codegruppe is an variable and hence we can pass only one value. So in the loop we are trying to pass both the values to the table T_RIWO020TAB and in the exit this table is getting filled with the values we want.
    But once we are out of exit the standard table G_RIWO020TAB in the FUNCTION'CATALOGUE_SELECTION' is having values as per standard configuration and we are not able to get the values we want.
    Please suggest on the above mentioned requirement. This will be really helpful for us.
    Thanks & Regards,
    Sonali Deshmukh

    done

  • Single row table with for-each group loop to set variable.

    Hi: There is probably a simple answer for this but I have not found it ...
    I have a single row table to loop through a group to set a variable holding a running amount. I am not displaying the amount within the table however when I preview the report I see that the table is expanding (adding rows) for each loop.
    The single row table has 3 columns.
    1st column
    <?for-each:AC_GROUP?>
    2nd column
    <?xdoxslt:set_variable($_XDOCTX,'xAmtVar',xdoxslt:get_variable($_XDOCTX,'xAmtVar')+CURRENT_AMOUNT)?>
    3rd column
    <?end for-each?>
    Should I be using <?for each-group?> or something else. My requirement is to set the value of the variable with the running total but because the loop is adding rows for each value it loops through (even though not displayed), it is moving other areas of the layout off the page.
    Hope this makes sense. Thanks in advance.

    you can do it many ways.
    No need to loop
    You can create a variable and put the sum amount directly in that.
    <?doxslt:get_variable($_XDOCTX,'xAmtVar',sum(/AC_GROUP/CURRENT_AMOUNT))?>or
    loop thru and add like you do.
    <?for-each@inlines:AC_GROUP?><?xdoxslt:set_variable($_XDOCTX,'xAmtVar',xdoxslt:get_variable($_XDOCTX,'xAmtVar')+CURRENT_AMOUNT)?><?end for-each?>do give any space or enter character in word between them, just put this in a single form-field will do
    But as i said, i would certainly go with first option.

  • Where Used for VIs and LabVIEW Project

    Is there a way in LabVIEW Project Manager to check the Where Used status on all the VIs at the same time? I am going through a project trying to weed out VIs that are not used in the project. I know I can check the "Find Callers" for each VI, but this feels slow and cumbersome. Is there a way I can generate a report to find the Where Used status on all VIs in a project?
    Thanks,
    Matt

    You also have the Find Items with No Callers Dialog Box as of LV 8.5
    Eric V
    National Instruments
    Applications Engineer
    Certified LabVIEW Associate Developer
    "I'm a Ramblin' Wreck from Georgia Tech and a helluva (NI Applications) Engineer!"

  • Where-used for a function module

    All,
       I have a function module used in several update and transfer rules.  I would like to know EVERY place it is used.  The 'Where-used' button returns not found, even though I know it is used in several places.  I am on 3.5,  Is there any way to tell where a function module is used?
       Thanks.
    Dave

    Hi
    Try this
    1). Goto Se16 and check the contents of table 'CROSS'.
    2). Enter 'F' in the type selection screen field
    3). In the NAME field enter the Function module name and execute.
    4). The list will give you where all the FM has been used.
    Kindly note this is almost the same as doing a where used list. The where used list will only work correctly if the 'Update Navigation Index' works correctly in your system. So just to ensure the result of your where used list you can follow the above steps. This does not require the Update Navigation Index.
    Hope this Helps
    Regards
    Shilpa

  • Where used for Smartforms

    Hi
    I want to find out what all programs are calling a smartform. If i pass the function module name, I get zero hits as the its the name of the smartform that is passed in the programs calling it. Is there a way to find out where the smartform is used
    Thank you

    I don't think we have any direct way to find it out.
    The workaround would be like this:
    Do "Where used list" for the FM SSF_FUNCTION_MODULE_NAME.
    Then from the list you need to find out which program calls your Smartform.
    Regards,
    Naimesh Patel

  • Where Used for a Quantity Conversion Type ?

    We had a problem with a quantity conversion type, and it's caused corruption on every query that used it. So I have to go in and fix 'em all. Except.... I'm not sure which queries used it !
    Metadata ? Nope. Quantity Conversion Types aren't there.
    Where used from RSUOM ? Nope. All it pulls is the conversion type itself and the associated infoobject.
    RSZELTXREF ? Nope. not in there.
    RSUOMTRT ? Well, yeah, the GUID for the conversion type is there. But.. it does not show up as an ELTUID anywhere else.
    I'm stumped ! Anyone have an idea ?

    I just manually went into every query that I had assigned as having an Alt UOM conversion and fixed it that way.

  • CS-5 Crashes when Edit / copy are used for pasting a new selection

    Good morning,
      I have downloaded CS5-Extended onto my PC as an upgrade to elements premiere 8.  I still have the entire elements suite on my PC and functioning.  The PC is a new Dell 4 core with windows 7, six G of RAM, and lots of HD space.
      CS-55 works fine but has one very serious problem that seems to be a regular (several tests produce the same result) occurrance.
      Selecting "edit" then "copy" when a selection is completely ready for copy/paste to a new layer freezes the entire program.  No controls will do anything to the program no matter how long or what buttons are pushed.  The PC stil works however with other programs which surprises me (I'm very computer literate).
      The only method that I can find to close and "fix" the problem with CS5 after a crash is to completely shut down the entire PC and force a shutdown at that time (to get the PC to log off and shut down).
      The real difficulty now occurs on re-starting the PC.  The system seems to completely fill RAM on a re-start which makes the entire PC slow and almost non-responsive.  This took some experimenting to "figure out."  Starting regular office programs (Word, excel, etc) takes very long, and I get an intermittent "program not responding" display during the program start.
      When started, the program(s) are extremely sluggish, and mouse pointers are not linear movement but "bounce" from place to place on the screen.
      I considered doing a system restore to place the system back to a state before CS5 installation, but did more experimenting before this (in order to preserve the downloaded trial version of CS5 before my (already purchased) box arrives in the mail.
      When starting CS-5 (after a crash and restart), it takes over a minute to start and does not respond well at all once started.  When trying to open the previous file then "closing all files" the system seems to "unlock" all RAM and places the entire PC back to normal function.
      This is a continuous problem affecting my system and all stems from an "edit / copy" set of commands.
      Please help with this one.  This problem is obviously a serious one and cannot continue with my set up.
      My e-mail address is [email protected].
    Thanks for the help;  any other information you need to help diagnose this situation for a repair.
    regards,
    Peter 1269

    Chris,
      Thanks for the fast response.  In answer to your questions, I’m using the 64 bit version of the CS-5 software.  I have not received any bad “news” or reports about “bad ram.”  This from IOLO system mechanic 10, and windows performance itself.
    Let me try task manager / performance both before any Photoshop use, and after a crash.  I’ll also get some information from system mechanic and any other sources that I can come up with.
      I’m not sure why this crash happens after an “edit / paste” sequence and (possibly) not anything else.  I just did however find the program crash under these circumstances:
    Photoshop running with a (7mg picture loaded).  Turn on elements organizer with a 35,000 picture catalog that I’ve been using in elements 7 and 8 (and premiere 8 ).  Turn off organizer and return to Photoshop only to find that Photoshop is now frozen with a dual vertical arrow instead of a mouse pointer.  No action will recover the program at this point.
    Question:
    Will my “preferences” in photoshop set to a very high ram allowance affect crashes in the program?  What other preferences settings might be causing a problem.
    I can talk to Dell tech support if need be as this PC is only 4 months old.
    Thanks for ongoing help,
    Peter1269

  • Data Type to use for Fiscal Year Period selection screen parameter

    I need to accept user input in the format
    YYYY.PP
    where YYYY is the Fiscal year and PP is the Period.
    Is there a data type ( element / domain ) for such a field ?

    date element you can use SPMON
    or
    parameter : p_spmon like MCS0-SPMON.
    regards
    shiba dutta

  • Where used for table fields

    I have list of 3600 fields , I need to get info related to these fields are used in which screens. Any easy way ?
    PS : Please donot suggest to use se11--> and make whereused list for field
    a®s
    Edited by: a®s on Jul 31, 2009 12:34 PM

    Hello,
    1. Get the table name in which all the data elements are stored.
    2. Write select for that table to find all the table names using required data elements for table field.
    Check if this helps,
    Thanks,
    Augustin.

Maybe you are looking for

  • Keynote and erratic beamer

    During a Keynote presentation using a beamer (state of the art, build in the ceiling, but I was the visitor and don't know the brand or type) the signal was flickering (seconds on and off), while the beamer worked normal when I changed to the finder.

  • How to install Adobe CS5.5 on a Macbook Air

    I bought Adobe Creative Suite 5.5 Design Premium back in 2011 and have been using it without any problems. I recently bought a Macbook Air that I would like to switch to. Without the CD drive, how would can I reinstall CS5.5? I can't download the tri

  • Elements crashing and so am I ;

    Hello.... I am new to this forum....I have adobe photoshop elements 9....it is installed on a mac book pro.  I was using it without problem all day yesterday and last night it crashed when i tried to save some photos.  I have continually tried to rep

  • Policy files for Browsers

    I've got an applet that I want to run in a browser, but I need to set up a policy file for it. I was wondering where this policy file should go and what it should be called so that the browser finds and uses it? Is there any difference between the lo

  • How many pushbuttons u can create in application toolbar in selection scree

    Hi How many pushbuttons u can create in application toolbar in selection screen?  Thank You