Internally required memory is not available in SMQ2

Hi All,
In our XI Production server one message in SMQ2 (Inbound) has been stucked.
Error details "Internally required memory is not available ".
This IDOC is having a size of 552 MB, when I checked the sap fourms I found that there is one instance profile parameter which is req to process a large message.
icm/HTTP/max_request_size_KB
The parameter can also be used in the SAP Web Dispatcher.
The default is 102 400 (100MB).
Do we need to set this parameter in our instance profile???
Currently this parameter is not present in our Production enviornment.
Pls suggest.
Regards,
Prashant

I will suggest that if icm/HTTP/max_request_size_KB  is not set then set this up with a value higher than the size of the stuck IDOC and give it a try.
now icm/HTTP/max_request_size_KB is not dynamically switchable so you'll have to add the parameter via RZ10 and restart your system.
Also you can rad the XI tuning guide,
https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/70ada5ef-0201-0010-1f8b-c935e444b0ad
Regards
Juan

Similar Messages

  • Error in Inbound Queue : Internally required memory not available

    Hi,
         We are trying to send 110MB file from R/3 to Legacy thru XI. It is failing in XI inbound queue with error <b>Internally required memory not available</b>. When i saw memory usage in XI server it is using full 3GB of extended memory and entering in private mode. We dont have any problem upto 50MB files.
    Please any inputs.
    Regards,
    Ranjeeth.

    try to process the data by breaking the message into dependant segments

  • Error on extend an internal table, but the required space was not available

    Hi All,
    I am trying to retrieve cost data from COVP tables, as well as the quantity, cost centre, and price unit fields from MSEG / BSEG tables. Thing is, if the AWTYP value in COVP table = 'MKPF', i have to get the data from MSEG, otherwise, I need to get it from BSEG table.
    I kept getting this error message:
    <i>You attempted to extend an internal table, but the required space was not available.</i>
    Anyone have any idea how to make my codes more efficient?
    Please help. Thanks!
    Regards,
    Cecilia
    REPORT  ZMISCY004.
    TABLES : COVP, BSIS, BSEG, MSEG, MAKT, CSKU.
    PARAMETERS :
    P_FILE(300) DEFAULT '\sapdcdatasaprptoh.txt' LOWER CASE.
    DATA MSG_TEXT(50).
    DATA :
    XKOKRS LIKE COVP-KOKRS,
    XBELNR LIKE COVP-BELNR,
    XBUZEI LIKE COVP-BUZEI,
    XGJAHR LIKE COVP-GJAHR,
    XPERIO LIKE COVP-PERIO,
    XWKGBTR LIKE COVP-WKGBTR,
    XWTGBTR LIKE COVP-WTGBTR,
    XREFBN LIKE COVP-REFBN,
    XREFBZ LIKE COVP-REFBZ,
    XKSTAR LIKE COVP-KSTAR,
    XBEKNZ LIKE COVP-BEKNZ,
    XMATNR LIKE COVP-MATNR,
    XBUKRS LIKE COVP-BUKRS,
    XREFGJ LIKE COVP-REFGJ,
    XREFBK LIKE COVP-REFBK,
    XLTEXT LIKE CSKU-LTEXT,
    XMAKTX LIKE MAKT-MAKTX,
    XAWTYP LIKE COVP-AWTYP,
    XTWAER LIKE COVP-TWAER,
    XSGTXT LIKE COVP-SGTXT,
    BSEG_KOSTL LIKE BSEG-KOSTL,
    BSEG_MEINS LIKE BSEG-MEINS,
    BSEG_MENGE LIKE BSEG-MENGE,
    MSEG_KOSTL LIKE MSEG-KOSTL,
    MSEG_MENGE LIKE MSEG-MENGE,
    MSEG_MEINS LIKE MSEG-MEINS.
    DATA : BEGIN OF ITAB_COVP OCCURS 10,
    KOKRS LIKE COVP-KOKRS,
    BELNR LIKE COVP-BELNR,
    BUZEI LIKE COVP-BUZEI,
    GJAHR LIKE COVP-GJAHR,
    PERIO LIKE COVP-PERIO,
    WKGBTR(15) TYPE C,
    WTGBTR(15) TYPE C,
    REFBN LIKE COVP-REFBN,
    REFBZ(3) TYPE C,
    KSTAR LIKE COVP-KSTAR,
    BEKNZ LIKE COVP-BEKNZ,
    MATNR LIKE COVP-MATNR,
    BUKRS LIKE COVP-BUKRS,
    REFGJ LIKE COVP-REFGJ,
    REFBK LIKE COVP-REFBK,
    LTEXT LIKE CSKU-LTEXT,
    MAKTX LIKE MAKT-MAKTX,
    AWTYP LIKE COVP-AWTYP,
    TWAER LIKE COVP-TWAER,
    SGTXT LIKE COVP-SGTXT,
    BSIS_WRBTR(13) TYPE C,
    BSEG_KOSTL LIKE BSEG-KOSTL,
    BSEG_MEINS LIKE BSEG-MEINS,
    BSEG_MENGE LIKE BSEG-MENGE,
    MSEG_KOSTL LIKE MSEG-KOSTL,
    MSEG_MENGE LIKE MSEG-MENGE,
    MSEG_MEINS LIKE MSEG-MEINS.
    DATA : END OF ITAB_COVP.
    SELECT M1~KOKRS
           M1~BELNR
           M1~BUZEI
           M1~GJAHR
           M1~PERIO
           M1~WKGBTR
           M1~WTGBTR
           M1~REFBN
           M1~REFBZ
           M1~KSTAR
           M1~BEKNZ
           M1~MATNR
           M1~BUKRS
           M1~REFGJ
           M1~REFBK
           M1~AWTYP
           M1~TWAER
           M1~SGTXT
           M4~KOSTL
           M4~MENGE
           M4~MEINS
    INTO (XKOKRS,
          XBELNR,
          XBUZEI,
          XGJAHR,
          XPERIO,
          XWKGBTR,
          XWTGBTR,
          XREFBN,
          XREFBZ,
          XKSTAR,
          XBEKNZ,
          XMATNR,
          XBUKRS,
          XREFGJ,
          XREFBK,
          XAWTYP,
          XTWAER,
          XSGTXT,
          MSEG_KOSTL,
          MSEG_MENGE,
          MSEG_MEINS
    FROM COVP AS M1
    LEFT OUTER JOIN MSEG AS M4
    ON M1~REFBN = M4~MBLNR AND M1~REFBZ = M4~ZEILE AND M1~REFGJ = M4~MJAHR
    WHERE M1~SCOPE = 'OCOST' AND M1~AWTYP = 'BKPF'
      OR M1~SCOPE = 'OCOST' AND M1~AWTYP = 'MKPF'
      OR M1~KSTAR = '972022'.
    IF XAWTYP = 'BKPF'.
    SELECT KOSTL MENGE MEINS INTO (BSEG_KOSTL, BSEG_MENGE, BSEG_MEINS) FROM
    BSEG WHERE BELNR = XREFBN AND BUZEI = XREFBZ AND GJAHR = XREFGJ AND
    BUKRS = XREFBK.
    ENDSELECT.
    MOVE BSEG-KOSTL TO BSEG_KOSTL.
    MOVE BSEG-MEINS TO BSEG_MEINS.
    MOVE BSEG-MENGE TO BSEG_MENGE.
    ELSE.
    MOVE ' ' TO BSEG_KOSTL.
    MOVE ' ' TO BSEG_MEINS.
    MOVE ' ' TO BSEG_MENGE.
    ENDIF.
    *GET LTEST
    SELECT LTEXT INTO XLTEXT
    FROM CSKU
    WHERE KTOPL = 'COAA' AND SPRAS = 'EN'.
    *GET MAKTX
    IF XMATNR <> ' '.
    SELECT SINGLE * FROM MAKT WHERE MATNR = XMATNR.
    MOVE MAKT-MAKTX TO XMAKTX.
    ELSE.
    MOVE ' ' TO XMAKTX.
    ENDIF.
    MOVE : XKOKRS TO ITAB_COVP-KOKRS,
           XBELNR TO ITAB_COVP-BELNR,
           XBUZEI TO ITAB_COVP-BUZEI,
           XGJAHR TO ITAB_COVP-GJAHR,
           XPERIO TO ITAB_COVP-PERIO,
           XWKGBTR TO ITAB_COVP-WKGBTR,
           XWTGBTR TO ITAB_COVP-WTGBTR,
           XREFBN TO ITAB_COVP-REFBN,
           XREFBZ TO ITAB_COVP-REFBZ,
           XKSTAR TO ITAB_COVP-KSTAR,
           XBEKNZ TO ITAB_COVP-BEKNZ,
           XMATNR TO ITAB_COVP-MATNR,
           XBUKRS TO ITAB_COVP-BUKRS,
           XREFGJ TO ITAB_COVP-REFGJ,
           XREFBK TO ITAB_COVP-REFBK,
           XLTEXT TO ITAB_COVP-LTEXT,
           XMAKTX TO ITAB_COVP-MAKTX,
           XAWTYP TO ITAB_COVP-AWTYP,
           XTWAER TO ITAB_COVP-TWAER,
           XSGTXT TO ITAB_COVP-SGTXT,
           BSEG_KOSTL TO ITAB_COVP-BSEG_KOSTL,
           BSEG_MEINS TO ITAB_COVP-BSEG_MEINS,
           BSEG_MENGE TO ITAB_COVP-BSEG_MENGE,
           MSEG_KOSTL TO ITAB_COVP-MSEG_KOSTL,
           MSEG_MENGE TO ITAB_COVP-MSEG_MENGE,
           MSEG_MEINS TO ITAB_COVP-MSEG_MEINS.
    APPEND ITAB_COVP.
    CLEAR ITAB_COVP.
    ENDSELECT.
    ENDSELECT.
    OPEN DATASET P_FILE FOR OUTPUT IN TEXT MODE.
    IF SY-SUBRC NE 0.
       WRITE: 'File cannot be opened. Reason:', MSG_TEXT.
       EXIT.
    ENDIF.
    LOOP AT ITAB_COVP.
    TRANSFER ITAB_COVP TO P_FILE.
    ENDLOOP.
    CLOSE DATASET P_FILE.

    Cecilia - I think your problemn is a nested select:
    *GET LTEST
      SELECT ltext INTO xltext
      FROM csku
      WHERE ktopl = 'COAA' AND spras = 'EN'.
    *GET MAKTX
        IF xmatnr <> ' '.
          SELECT SINGLE * FROM makt WHERE matnr = xmatnr.
          MOVE makt-maktx TO xmaktx.
        ELSE.
          MOVE ' ' TO xmaktx.
        ENDIF.
        MOVE : xkokrs TO itab_covp-kokrs,
                     etc.
              mseg_meins TO itab_covp-mseg_meins.
        APPEND itab_covp.
        CLEAR itab_covp.
      ENDSELECT.
    Do you need to do the inner select for every cost element text?
    Rob

  • N81 8GB Phone memory is not available !!!

    I am using N81 8GB. So far I know brand new N81 8GB has 16MB of free internal memory and somewhat 8GB of free external memory (where internal memory in the phone memory and external memory is the memory card.
    Last three months it was asking me “Phone Memory” is out of space whereas I used only 2GB out of 8GB mass memory.  I installed everything in Mass memories. Recently it was asking me , Phone memory is not available. I used “OVI suite” with  cable and found 24MB already used 0(zero) space available. Then I deleted all programme, music, video and  and others from “Mass memory”  and formatted it. Even deleted everything except default program. Then I flashed the Mobile from OVI update suite. Version has changed but found 21MB is occupied out of 24MB. Now tell me what’s the solution to free the spaces?
    I can’t receive more than 3 or 4 music (small) files via Bluetooth. It asks me to free the inbox space. So far I had total 10 text message (SMS) in inbox. Why it should ask me whereas I have enough memory( 6GB) in “Mass Memory” ?
    Is there any solution?
    Solved!
    Go to Solution.

    At last my N81 8GB  Phone memory problem is solved by using the command
    First Step: Format phone (R E S 0 ?)>>>
    *#7370#        
    Second Step:    Factory Reset (R S T 0 ?)>>>
    *#7780#          
    After contact address sync from OVI.com , Now Phone memory is
    7.48MB used
    16.9MB free
    total = 24.4 MB
    Usefull help for N95 and N81 codes:
    *#06# ............ IMEI number (International Mobile Equipment Identity)
    *#0000# ......... Firmware version and date, Phone Model and Operator Variant
    *#92702689# ... Life timer (W A R 0 A N T Y) - Total time your phone has spent sending and receiving calls.
    *#62209526# ... Wireless MAC Address (M A C _ W L A N)
    *#2820# .......... Bluetooth MAC address (B T A 0?)
    *#7370# .......... Format phone (R E S 0 ?)
    *#7780# .......... Factory Reset (R S T 0 ?)
    Thanks for your help that's why I found that code form online.
    Keep Smiling

  • HT3775 bought Bushnell trail cam: worked,got 2nd cam: worked. Got 3rd cam which needed DIV X,so downloaded, now can't view 1st 2 cams. msg " required codec is not available" ***? worked for 2 years till downloaded DIV X now can't view old cams. Suggestion

    I bought a Bushnell trail cam. Worked well, each video presented on the screen with the opening frame of the 10 second video. I could tell at a glance what the video was.( I have to guess it used quicktime ). I bought a second cam, same results as first. I bought a 3rd cam ,( all bushnell ), which required me to download " DIV X ", which I did. Now, I can no longer view the first frame of the 10 sec video, it just has an icon that says "AVI XXX"   ( XXXbeing the number of the video ). I now have to click the icon, go to "Action" drop down "open with" and select DIV X , for each "anonymous" video, ( as I cant see what they are  any more , just a number).  Furthermore, I can no longer view my old videos. A message shows up saying " a required codec is not available"    ***????
    The 2 original cams worked for 2 years with no problem, but since downloading DIV X I cant play the older ones. I should point out that even if I select a (now) anonymous video, go to " Action", drop down "open with" and manually select quicktime,  the message still shows up about the codec.
    Suggestions??
    Thanks for any help

    hello sir,
    i want to your help
    i was installed fresh windows 7 via cd rom and then after installed all software.
    and now after 1 day customer complained me that cd rom not read any cd and i m also check when i insurt cd so its not read and when i am double click on cd rom icon its eject so what i do for that please reply on my email address.
    [text removed for privacy]
    VIMAL

  • How can I get Quicktime to open my WMA file- it says a required codec is not available

    How can I get Quicktime to open my WMA file- it says" a required codec is not available"?

    please jon, where I can find those "Flip4Mac" codec packages?
    Gp to http://www.telestream.net/flip4mac/ to see a comparison list of codec components available and what each set can do.

  • HT204382 Jfiles, still getting error message that required codec is not available -- Help!

    Just installed Telestream to open wmv files, but still getting error message that required codec is not available -- Help!

    I'm still getting that same message how did you fix it? i installed the wmv player or Flip4Mac (i'm unsure if thats the same program), but even after i am still getting the pop up saying " The movie ____.avi" can't be opened. What am i doing wrong?

  • Java.lang.InternalError: internal error: SHA-1 not available

    Hi All,
    When starting my j2ee & portal I get the following error:
    java.lang.InternalError: internal error: SHA-1 not available
    Does anybody have an idea about this error?
    Thanks
    Steven

    Hi All,
    When starting my j2ee & portal I get the following error:
    java.lang.InternalError: internal error: SHA-1 not available
    Does anybody have an idea about this error?
    Thanks
    Steven

  • TS1503 Have any of you gotten an error of required disk is not available when trying to sync you I phone 4 to a MAC?

    Has anyone received an error saying the required disk is not available when trying to sync their MAC with Iphone 4?

    See:
    iTunes Store: About authorization and deauthorization
    iTunes repeatedly prompts to authorize computer to play iTunes Store purchases
    Could the items be purchased by another account?

  • Backup job state pending resource availability   Deferred because  a required device is not available

    Hi
    I had OSB 10.4.0.1.0
    my backup job were running successfully for more than 3 months
    last week I started getting : backup job state: pending resource availability
    deferred because a required device is not available
    Job created.
    Dispatching job to run on administrative server.
    Drive or volume on which mount attempted is unusable.
    My obtool -ldev -g is :
    tape01-lib:
        Device type:            library
        Model:                  [none]
        Serial number:          [none]
        In service:             yes
        Debug mode:             no
        Barcode reader:         yes
        Barcodes required:      yes
        Auto clean:             no
        Clean interval:         (not set)
        Clean using emptiest:   no
        Unload required:        yes
        Ejection type:          auto
        Min writable volumes:   0
        UUID:                   252d62dc-d8ec-102b-bceb-001d092aeca1
        Attachment 1:
            Host:               server1
            Raw device:         /dev/sg3
        Connection type:        [unknown]
        Inquiry data:
            Vendor:             IBM
            Product:            3573-TL
            Firmware:           C.30
            Serial number:      00X2U78G7865_LL0
    opening handler: device is busy
    tape01-tape:
        Device type:            tape
        Model:                  [none]
        Serial number:          [none]
        In service:             yes
        Library:                tape01-lib
        DTE:                    1
        Automount:              yes
        Error rate:             [disabled]
        Query frequency:        [undetermined]
        Debug mode:             no
        Blocking factor:        (default)
        Max blocking factor:    (default)
        Current tape:           4
        Use list:               1-20
        Drive usage:            7 months, 3 weeks
        Cleaning required:      yes
        UUID:                   2dfadcfa-d8ec-102b-bceb-001d092aeca1
        Attachment 1:
            Host:               server1
            Raw device:         /dev/sg2
        Connection type:        [unknown]
        Inquiry data:
            Vendor:             IBM
            Product:            ULT3580-TD4
            Firmware:           C7QH
            Serial number:      1310113272
        Hardware compression:   not available
        Hardware encryption:    not available
    please I need help
    Thanks

    What does an lsvol on the library show? What about an lsj -l on the job ? We need to be able to see what tapes are available and what the job is looking for .
    Thanks
    Rich.

  • Urgent Requirement : Backend is not available - can a model be created ?

    Hi,
    Presently i am working in VC for BI 7.0. MY requirement is to create a model but the database model is under development and data is not available in backend this is the present situation but my client want's to have a demo of the UI.
    1. will it be possible to model with out backend?
    2. If possible how to store the dummy values in the model?
    Kindly answer me.
    With Thanks and Regards,
    Ganesh.

    That's difficult.
    The best is if you have access to the database or a copy of the database, even if there are no values available. Then at least you can create the dataservices and see the fields for your forms, tables etc.
    If you try any other form, like creating a fake database, then you basically have to remodel the complete application lateron.
    You can store dummy values always through formulas, or by using a different database (e.g. a copy) where you maintain dummy data.

  • ISE dashboard - CPU, memory - data not available for PSN

    Hi All,
    Has anyone seen the ISE dashboard not showing stats for CPU memory for PSN's ?  Admin node cpu and memory displays ok.
    How is this data shared between the nodes ? 
    I did have some firewall issues between admin and PSN but this is now solved.  I did note the same issue even when nodes were on same L2 network.

    Confirmed this issue was caused by syslog dropped by firewall.  Symptoms included dashboard wasn't updating for that node, and also no auth logs getting back to monitoring node.
    ASA was permitting UDP 514 (syslog) but not UDP 20514.
    I'm a bit confused on UDP 30514. In the guide it also says 30514 is syslog in one spot, and radius in another.

  • HT3775 what if I am trying to open an .avi video format file and, though, I am receiving the message that "QuickTime Player can't open this file because a required codec is not available"?

    Somebody can help?

    There are also other media players with the capabilty.
    Check the Mac App Store.  Some are free, some are not.
    They all have various features you may or may not need.
    Flip For Mac is a pretty basic (the free version) player
    for avi and other Wndows based video formats.

  • Internal error: SHA-1 not available

    The password encryption application works fine wherever we have tested it except this particular TRU64 box. We hava HP version of java 1.4.2-5 on this box, which is basically built on Sun's 1.4.2-11. I have been having this problem for a while and recently reinstalled J2SDK. Nothing seems to help other than getting a different exception.
    If I have below order of security.provider in java.security file, I get the exception mentioned in the Subject line.
    security.provider.1=com.sun.crypto.provider.SunJCE
    security.provider.2=sun.security.provider.Sun
    When I reverse the order, I am getting below exception:
    Java.security.InvalidKeyException: Missing password
    Any help in getting this resolved is greatly appreciated.

    I just got this resolved. I realized that password encryption is done on an IBM JVM, so the decryption should also be done with IBMJCE(not sure if this is true), I have changed below in java.security
    security.provider.1=com.ibm.crypto.provider.IBMJCE
    security.provider.2=sun.security.provider.Sun
    security.provider.3=com.sun.crypto.provider.SunJCE
    then, I got a ClassNotFoundException for Debug class in some ibm package. I had to include ibmpkcs.jar along with ibmjceprovider.jar in the classpath and it started working fine.
    Regards,
    Prashanth

  • Memory Controller not available - K8N NEO4 Platinum Ultra

    Hi Experts!
    I have typical problem in my PC.  I need reply only from experts.  Newbies please excuse.
    My system displays the following info in POST.
    VENDOR / DEVICE     CLASS      DESCRIPTION         IRQ
    ===================================
    10DE        005E        0580       Memory Controller     NA
    If anyone can correctly PIN POINTEDLY identify why this is displayed, it will be much helpful
    As such I face no difficulty with my system.  But this message very much annoys me.
    Thanks.
    My PSU Details:
    400W.  +12V 20Ampere.  (This is the maximum I could afford in our indian PC environment.)
    AMD 3000+ Winchester 90nm. CPU.
    K8N NEO4 Platinum Ultra Mother Board.
    512 MB Hynix PC3200 Memory.  (2*256)
    80GB Western Digital.
    Ordinary PCI VGA 2mb card.
    Samsung CDROM.

    There is no driver for memory controller with A64 (nforce3/4) as stated earlier .
    You see this in the memctrl.inf for UDP 5.10 , driver pack for nforce 3 and backwards down to nforce 1 .
    Memctrl is only added to the 5.10 package for backward support to nf2 and lower as this is a unified driver package and
    the memory controller is at chipset level on the motherboard that resides in the external northbridge on nf2 chipsets and lower .
    What you see is just a vendor/machine id description and is just as it should be .
    Code: [Select]
    ; nvmemctl.INF
    ; Copyright (c) 2001-2002, NVIDIA
    ; Version 1.00
    [Version]
    Signature="$WINDOWS NT$"
    Class=System
    ClassGuid={4D36E97D-E325-11CE-BFC1-08002BE10318}
    Provider=%NVIDIA%
    CatalogFile=nvmemctl.cat
    DriverVer = 04/27/2004, 4.4.0
    [ControlFlags]
    ExcludeFromSelect=*
    [Manufacturer]
    %NVIDIA_MFG%=NVIDIA_SYS
    [SourceDisksFiles]
    [NVIDIA_SYS]
    %PCI\VEN_10DE&DEV_01AA.DeviceDesc% = NO_DRV, PCI\VEN_10DE&DEV_01AA
    %PCI\VEN_10DE&DEV_01AB.DeviceDesc% = NO_DRV, PCI\VEN_10DE&DEV_01AB
    %PCI\VEN_10DE&DEV_01AC.DeviceDesc% = NO_DRV, PCI\VEN_10DE&DEV_01AC
    %PCI\VEN_10DE&DEV_01AD.DeviceDesc% = NO_DRV, PCI\VEN_10DE&DEV_01AD
    %PCI\VEN_10DE&DEV_01EA.DeviceDesc% = NO_DRV, PCI\VEN_10DE&DEV_01EA
    %PCI\VEN_10DE&DEV_01EA&REV_C1.DeviceDesc% = NO_DRV, PCI\VEN_10DE&DEV_01EA&REV_C1
    %PCI\VEN_10DE&DEV_01EB.DeviceDesc% = NO_DRV, PCI\VEN_10DE&DEV_01EB
    %PCI\VEN_10DE&DEV_01EB&REV_C1.DeviceDesc% = NO_DRV, PCI\VEN_10DE&DEV_01EB&REV_C1
    %PCI\VEN_10DE&DEV_01EB.DeviceDesc% = NO_DRV, PCI\VEN_10DE&DEV_01EC
    %PCI\VEN_10DE&DEV_01ED.DeviceDesc% = NO_DRV, PCI\VEN_10DE&DEV_01ED
    %PCI\VEN_10DE&DEV_01EE.DeviceDesc% = NO_DRV, PCI\VEN_10DE&DEV_01EE
    %PCI\VEN_10DE&DEV_01EF.DeviceDesc% = NO_DRV, PCI\VEN_10DE&DEV_01EF
    ; Do-nothing section used to avoid "Unknown hardware" installation prompts.
    [NO_DRV]
    Include=machine.inf
    Needs=NO_DRV
    [NO_DRV.Services]
    Include=machine.inf
    Needs=NO_DRV.Services
    [NO_DRV.HW]
    Include=machine.inf
    Needs=NO_DRV.HW
    [Strings]
    SystemClassName = "System devices"
    NVIDIA          = "NVIDIA"
    NVIDIA_MFG      = "NVIDIA"
    PCI\VEN_10DE&DEV_01AA.DeviceDesc="NVIDIA nForce 220/230 Memory Controller (DDR)"
    PCI\VEN_10DE&DEV_01AB.DeviceDesc="NVIDIA nForce 415/420/430 Memory Controller (DDR)"
    PCI\VEN_10DE&DEV_01AC.DeviceDesc="NVIDIA nForce 220/230/415/420/430 Memory Controller"
    PCI\VEN_10DE&DEV_01AD.DeviceDesc="NVIDIA nForce 220/230/415/420/430 Memory Controller"
    PCI\VEN_10DE&DEV_01EA.DeviceDesc="NVIDIA nForce2 Memory Controller"
    PCI\VEN_10DE&DEV_01EA&REV_C1.DeviceDesc="NVIDIA nForce2 400 Memory Controller"
    PCI\VEN_10DE&DEV_01EB.DeviceDesc="NVIDIA nForce2 Memory Controller"
    PCI\VEN_10DE&DEV_01EB&REV_C1.DeviceDesc="NVIDIA nForce2 Ultra 400 Memory Controller"
    PCI\VEN_10DE&DEV_01EC.DeviceDesc="NVIDIA nForce2 Memory Controller"
    PCI\VEN_10DE&DEV_01ED.DeviceDesc="NVIDIA nForce2 Memory Controller"
    PCI\VEN_10DE&DEV_01EE.DeviceDesc="NVIDIA nForce2 Memory Controller"
    PCI\VEN_10DE&DEV_01EF.DeviceDesc="NVIDIA nForce2 Memory Controller"

Maybe you are looking for