How to find description for the bugs fixed in a CPU ( Critical patch alert)

Hi
I am having a hell of a time trying to figure out WHICH BUGS are fixed in the recent Critical patch alert
I looked into the README file of the patch ( in my case its 8534387 for Solaris SPARC ) - but even in the README file there is only the list of the bugs fixed:
+2.1 Bugs Fixed by This Patch+
This patch includes the following molecules:
+7155248 - DB-10.2.0.4-MOLECULE-001-CPUJUL2008+
+7155249 - DB-10.2.0.4-MOLECULE-002-CPUJUL2008+
+7155250 - DB-10.2.0.4-MOLECULE-003-CPUJUL2008+
+7155251 - DB-10.2.0.4-MOLECULE-004-CPUJUL2008+
+.....+
+.....+
But its impossible to even find them in metallink by the bug ID !
I tried the first one and you get multiple document where this patch is mentioned , but no clear place for the bug description .
Is there a convenient way to know exactly the DESCRIPTION of each bug that was fixed in a CPU ?
thanks in advance
Orna

>
But its impossible to even find them in metallink by the bug ID !
I tried the first one and you get multiple document where this patch is mentioned , but no clear place for the bug description .
Is there a convenient way to know exactly the DESCRIPTION of each bug that was fixed in a CPU ?
thanks in advance
OrnaDo a BUG search using the BUG ID rather than a Knowledge Base search. After that if you look closely at those multiple documents you mentioned that was returned, there should be only one for your Platform and for your product. Ignore the rest and click on only the one relevant to your Platform and Product.

Similar Messages

  • How to find BADI for the enterprise service?

    Hi Experts,
      We are enhancing an enterprise service for Businesspartner  creation by adding an additional field in the structure. But we are not able to find out the correct BADI for the enterprise service.  We are using the following enterprise service - 'BusinessPartnerERPCreateRequestConfirmation_In' . I could not find any BADI in ES workplace also .How to search for a BADI for this ES.
    Any help on this will be well appreciated.
    Thanks in advance
    Sanu

    Hi Sanu.
    Not all the services is an BAPI or BAPI, maybe this is an interface.
    To see the related object go to esworkplace and find the service.
    You will find in the page the label "Related Web Service Definition".
    Copy the related value(in your case ECC_BusinessPartnerCrtRC) it and go to SAP GUI. In transaction SE84, go to enterprise service and choice service definition.
    Paste the value copied in esworkplace in field Service Definition, then F8.
    In the next screen double click in the returned value.
    In the next screen you will see a Reference Object field. Double click in the value and you will see the related object.
    In this case is an interface. You can see in Provider Class.
    Hope that's help you.
    Marcos

  • How to find suborders for the given production orders?

    can any one give solution for finding the sub-orders for my given finished product,
    prodution order?
    my finished product may have the hierarchy as.....
    Finished Goods-> Semi-finished  goods ->  Semifinished-> up to n numbers
    > at last raw material.
    how to find the relation ship between production orders and corres ponding
    cost for this requirement?
    Thanks .
    <u><b>Solution Rewarded.</b></u>

    Hello Meeta
    If you are considering Reporting Manager as appraiser.
    First get pernr, find out position ID from the infotype 0001, check the relationship A002 maintained for the appraisee's position (HRP1001), and finally to find out Appraiser ID check the relationship A008 (HRP1001) of the appraiser's position.
    BR
    Reddy

  • How to find ObjectKey for the workflow, or Task for a ObjectKey

    Hi,
    I am developing a custom workflow for a customer request,
    I need to apply a condition like, If there is a open workflow request for this customer, then it should not start another workflow.
    how do I do that ?
    I tried to look into SWi6, it gives results till I keep the Object key Blank, if I use this with the object key then it gives no result.
    I have also tried function module SAP_WAPI_WORKITEMS_TO_OBJECT, but still no success.
    I have developed my own Business object for this with key fields.
    thanks
    Siddharth

    Hi,
    You can check in the table SWW_WI2OBJ, whether for the key and business object, there is workflow exist or not.
    Get the last workitem based on the timestamp and pass that work item in SWWWIHEAD and get the top work item.
    Now check whether the status is COMPLETED or INPROCESS or READY, based on which you can trigger or not.
    Regards,
    JMB

  • How to find Extract for the bank key/ bank account changed in vendor maste

    Hello Gurus,
    I need help in finding the extract for the bank details of vendors changed for a period of time. I tried using FK04 under multiple selection and ran the report for the selected vendors. It only shows  the "bank details created" or "bank details deleted" under Old Values and New Values but doe not actually shows the values for the field changed.
    Is there a way where i can get a report which shows a log of change in bank details with old and new values,
    Thank you,
    Prakash

    HI,
    Try using report RSSCD100 and give the selection condition
    Object id --> BANK
    and then you can limit the results by specifying the time and date range..

  • How to find entries for the particular month

    hi  all,
    I have a table ZTOS4 where i store the trips, trips created timestamp.
    in my selection screen , i give the month as parameter.
    now i need to select the trips created for the select month. how can i put the select query???
    select trips timestamp
    from ztos4
    where timestamp = month ??????? (as timestamp is date and time and month is 01,02,03,....12)
    how to put the where condition?????
    points will be rewarded
    thanks in advance

    Hi jayasree muthaiyan,
    USE LIKE keyword in where condition of your select query...
    However its better to provide the month and year both form the selection screen because there can be many years data in the table which r having same month ...
    eg .. 02 then it will give Feb months data for all years say 2004 2005 .... 2008 ...
    Also..
    Here is the "help" for the syntax of LIKE in SELECT statement.
    f NOT LIKE g
    Addition:
    ... ESCAPE h
    Effect
    The condition is met for a table entry if the statement "f (does not) equal the pattern in g" is true for the values of f and g. f must always be a field descriptor, and g an ABAP field. If f has the value NULL, then the result of the check for the statement is unknown. Within a pattern, there are two special characters:
    '_' (underscore) stands for any single character.
    '%' (percentage sign) stands for any sequence of characters, including an empty string.
    Examples
    Example to select all customers whose name begins with 'M':
    TABLES SCUSTOM.
    SELECT ID NAME FROM SCUSTOM
    INTO CORRESPONDING FIELDS OF SCUSTOM
    WHERE NAME LIKE 'M%'.
    WRITE: / SCUSTOM-ID, SCUSTOM-NAME.
    ENDSELECT.
    Example to select all customers whose name contains 'huber':
    TABLES SCUSTOM.
    SELECT ID NAME FROM SCUSTOM
    INTO CORRESPONDING FIELDS OF SCUSTOM
    WHERE NAME LIKE '%huber%'.
    WRITE: / SCUSTOM-ID, SCUSTOM-NAME.
    ENDSELECT.
    Example to select all customers whose name does not contain 'n' as the second character:
    TABLES SCUSTOM.
    SELECT ID NAME FROM SCUSTOM
    INTO CORRESPONDING FIELDS OF SCUSTOM
    WHERE NAME NOT LIKE '_n%'.
    WRITE: / SCUSTOM-ID, SCUSTOM-NAME.
    ENDSELECT.
    Notes
    LIKE can only be used for alphanumeric database fields. In other words, table field f must have Dictionary type ACCP, CHAR, CLNT, CUKY, LCHR, NUMC, UNIT, VARC, TIMS or DATS. The comparison field g must always have type C.
    The maximum length of the pattern is 2n - 1 characters, where n is the length of field f.
    Trailing spaces are ignored in comparison field g. If a pattern contains trailing spaces, you must enclose it in single inverted commas ('). If your pattern is enclosed in inverted commas and you also want to include inverted commas as part of the pattern, the inverted commas in the pattern must be doubled.
    You cannot use this variant in the ON addition to the FROM clause.
    Hope it will solve your problem
    Reward points if useful...
    Thanks & Regards
    ilesh 24x7

  • How to find links for the KM resource

    Hi,
    I would like to know the details about the links, which are created for the KM resource.
    I want to search how many links and where these links are created for some perticular resource in KM.
    Please let me know how to achieve this.
    Thanks

    Hello -
    For archive pls refer below
    THere is no standard archive functionality in KM. but you can use time based publishing where you can give validity of the documents. Once the time is expired then automatically it will not display to the end users who have read permissions.
    kept in your directory but it will not visible to enduser (those are having a read access) section.
    So Go to folder (Life time enable on folder level) ---> Details ---> Click on Lifetime --> Enable it
    Afterthat you can select the appropriate file and assign the life time .Here is the process....
    A(file name)-> Details-> Properties ---> lifetime.
    /thread/103302 [original link is broken]
    http://help.sap.com/saphelp_nw70/helpdata/en/8d/2813418366f023e10000000a155106/content.htm
    Regards
    satya

  • How to Find Vendor for the material  before posting  a PO

    Hi,
    I am using BAPI_PO_CREATE1 to post a PO(ME21N), in the order to fill header data I need to give Vendor information. I have filled that data with one ZTable and executed. When i executed the BAPI, it gave me result as "VENDOR is declared as some thing else for the material". Now my Query is how to know the vendor the particular material.
    Even MSEG is showing no vendor.

    Hello Krishna,
    I do not think there's any direct assignment between a material and a vendor. And I would be surprised if there's one. Let's say there are 4000 materials and 600 vendors in an R/3 System. Doesn't it sound needless to maintain for each material all the vendors ?
    Just go to the Purchasing tab for a material (MM03) and also refer to the Purchasing data for a Vendor (XK03). you will see that there's something called a <i>Purchasing Group</i>, which is common to them both. Now just read the F1 help for this field.
    Regards,
    Anand Mandalika.

  • Thanks for the bug fixes

    Dear AR Team,
    I would like to say thank you for taking the time to fix
    a number of bugs that I and others have posted
    to this forum (a partial list of which is given in your
    blog posting at http://blogs.adobe.com/acroread dated
    March 25, 2009).
    It just goes to show that end users are listened
    too, provided we moderate our language and post considered
    bug reports. It's also nice to see that you have now added
    names to the AR Team picture available from the About page,
    so that we can see who we are communicating with.
    Anyhow keep up the great work, and doubtless I'll be
    posting the odd bug report in the coming weeks as
    I get to grips with the exciting new functionality in AR9.1 .
    Best regards,
    James Quirk

    Try to reset the iPod by  pressing the home and sleep button for about 10sec, until the Apple logo comes back again. You will not lose data doing a reset, but it can clear some glitches after installing new software or apps.

  • How to find ClassID for the installed JDK/JRE?

    I am using JDK 1.6.24. I want to get the ClassID for that.. how to get that?

    http://www.oracle.com/technetwork/java/javase/deployment-policy-135751.html

  • How to find out the description for the given field?

    Hi All,
    How to find out the description for the given field?
    I mean ETTYP  Desription is VTEXT. This we can find in TVEPT  Table. So, How canwe find this?
    Thanks in Advance
    Sri...

    Hi  Avi,
    If i want to disply the  fields like   AUART and 'Description of AUART',
    Suppose based on my query i will take AUART from T184 table. And the description of AUART is available in TVAKT table.
    my question is if i have given T184-AUART  and how do u find out AUART Description ?(How do u know which table is having Description of AUART)?
    Thanks in Advance
    Sri...

  • I'm trying to find the plugin for camera raw, but all I can find is the page with the cameras that are supported. But I don't find how to find and install the actual plugin. The end name is ARW

    I'm trying to find the plugin for camera raw, but all I can find is the page with the cameras that are supported. But I don't find how to find and install the actual plugin. The end name is ARW, and all I need is to find WHERE I can download it. Thanks.

    cr is installed by updating your app.  use help>update, or update manually
    pre cc updates:  http://www.adobe.com/downloads/updates/
    cc updates:  http://prodesigntools.com/adobe-cc-updates-direct-links-windows.html
    cc 2104 updates:  http://prodesigntools.com/adobe-cc-2014-updates-links-windows.html

  • I can't find preferences for the notes app. and every once in awhile some of my notes just disappear at start up, I see the name and then it refreshes and they are gone, very annoying. Can anyone tell me why it does this and how to stop it? thanks

    I can't find preferences for the notes app. and every once in awhile some of my notes just disappear at start up, I see the name and then it refreshes and they are gone, very annoying. Can anyone tell me why it does this and how to stop it? thanks

    Hi again, I am on an iMac using OSX 10.7.5, I"ve taken screenshots to show you I think my settings are correct

  • My daughter tried cramming her charger inter her ipod touch and bent 3 of the prongs inside the ipodhas anyone had this problemand or know how much it is for apple to fix it?

    My daughter tried cramming her charger inter her ipod touch and bent 3 of the prongs inside the ipodhas anyone had this problemand or know how much it is for apple to fix it?

    Apple will exchange your iPod for a refurbished one for this price. They do not fix yours.
    Apple - iPod Repair price
    A third-party place like the following is less. Google for more.
    Simple and Affordable iPod Repair Services and parts from iResQ

  • How to ask Adobe team for a bug-fix/feature?

    How can I suggest an important bug-fix/feature be put in
    Fireworks?
    I'd like to request that Fireworks be made to use the monitor
    profile in Windows to adjust colors to match sRGB. With a properly
    profiled monitor I see corrected colors in Photoshop and
    Illustrator but Fireworks does not appear to use the monitor
    profile to display colors correctly.
    Anyone know how to get this request to the right person? It
    seems so obvious that a professional designer would need this -
    correct colors displayed.
    thanks

    http://www.adobe.com/cfusion/mmform/index.cfm?name=wishform
    Regards
    John Waller

Maybe you are looking for