How do I find only materials with BOM in CS_BOM_EXPLOSION?

Dear experts,
In a BOM I try to find only BOM materials .
I use CS_BOM_EXPLOSION.Is there a parameter that only explodes materials with bom underneath?
is it brems?
Thank you in advance.
Roxani

Hi Roxani,
Please try this.
CALL FUNCTION 'CS_BOM_EXPLOSION’
  EXPORTING
    MTNRV = wa_marc-stdpd
    CUOBJ = wa_marc-cuobj
    WERKS = I_PLANT
<b>    MEHRS = ' '</b>
  IMPORTING
    TOPMAT = TOPMAT
  TABLES
    STBD = IT_STBD
    STBP = IT_STBP.
Regards,
Ferry Lianto
Please reward points if helpful.

Similar Messages

  • HT4061 How can i find my ipad with the serial number

    How can I find my iPad with serial number

    I had FindMyPhone installed and activated on MY Lost iPad (now with a new "owner") and it NEVER worked EVER!
    There is/was no such thing as FindMyiPad...ONLY FindMyPhone. It WAS installed (I dont own an iPhone) AND activated! I suspect that unless you have 4G device it is worthless. Actually I  know this for a fact!
    AND, I knew that the new "Owner" had gone online (despite FindMyPhone telling me otherwise and NEVER locking my iPad) because Dropbox on my laptop suddenly had new photos that were taken by the new "owner".
    I am now of the mind that Apple does not want us to find our lost or stolen gadgets. They make money off  us when we replace them. Do what I am going to do: BUY USED!
    So sorry, I feel your pain.

  • HT5824 i lost my phone and it is switched off now...how can i find my phone with find my iphone app active thru icloud?? pls help me.

    i lost my phone and it is switched off now...how can i find my phone with find my iphone app active thru icloud?? pls help me.

    Welcome to the Apple Community.
    You can only locate your device when it is logged into iCloud and 'Find My Phone' is enabled, additionally the device will need to be switched on and connected to a wifi or cellular network.
    Unfortunately, you cannot activate iCloud or 'Find My Phone' remotely.

  • How do I find the screen with my personal iPod (my name's iPod) so I can download from my purchased or free songs/pods from my computer? My iPod has opened to that for 3 years and this week I can't find it: not on purchased page or on Apple store page.

    QUESTION from an American in India:
    How do I find the screen with my personal iPod (my name's iPod) so I can download from my purchased or free songs/pods from my computer? My iPod has opened to that for 3 years and this week I can't find it: not on purchased page or on Apple store page.

    See:
    Recovering your iTunes library from your iPod or iOS device: Apple Support Communities

  • TS1424 there are 43 available apps' update  which couldn't be made with my current account. How i can find the account with which i bought them in order to update them

    there are 43 available apps' update  which couldn't be made with my current account. How i can find the account with which i bought them in order to update them

    Use get info in iTunes on your Mac.

  • How can i find my iphone with my macbook?

    How cn i find my iPhone with my macbook pro?

    https://www.icloud.com/
    Sign in with your Apple ID and password
    Click:
    You would have had to enable "Find my iPhone" in General > Settings before you lost it.

  • HT5625 How can i find my id with only email?

    I've got the old id but cannot remember any thing except email address, how can i find the apple id with only email?

    CCC

  • How do I find all pictures with no (empty) keyword ?

    I have decided to import all my pictures into LightRoom.
    A lot of my older pictures are not registered with any keywords :(
    - only with IPTC location information.
    My plan is to systematic go through all my pictures and add relevant keywords to all pictures - so my old pictures become as searchable as my newest pictures.
    Some of my old pictures has keywords some has not.
    How do I in Lightroom - find all pictures with no keywords?
    I have tried to use the Find tool - but don't see any options to search for "Empty/missing" keywords.
    Also I would like to find all pictures with few keywords and in step II add additional keywords to these pictures.
    Any ideas on how to make a find all pictures where number of keywords is less than X inside or outside LightRoom.
    Henrik Bach
    Denmark

    > I also did think of the SQL idea.
    > If I find a way of doing this I will repost my findings.
    Well, being a tech geek, I found this challenge kind of irresistible,
    and I'm happy to report I have a solution for you.
    STEP 1
    First, make a copy of your "Lightroom Database.lrdb" file (we'll work
    off the copy to be safe)
    STEP 2
    Next, you need to be able to browse the database. The database is in
    SQLite3 format. I tried installiing an SQLite3 ODBC driver and accessing
    it through MS Access 2003. While Access was able to see all of the
    tables in the database, every time I tried to link to one I got:
    "Reserved error (-7748); there is no message for this error"
    I found a few tips for this but wasn't able to work around it and get it
    to work. Which is a shame, since Access would be the easiest way for
    browsing and querying tables.
    Instead I found an open source tool called SQLite Database Browser.
    http://sourceforge.net/project/showfiles.php?group_id=87946&package_id=91778&release_id=41 4746
    I used the Windows version. There appears to be a version for MacOSX on
    PowerPC. It doesn't look like there is a version for Intel based Macs
    (though if you know how, you could always try downloading the source and
    compiling it yourself).
    STEP 3
    After you install the browser, open it up, choose "Open Database" and
    select the COPY of the lightroom database we made in step 1
    STEP 4
    go to the Execute SQL tab and issue the following command
    SELECT A.idx_filename, count(C.name)
    FROM Adobe_imageFiles A, AGLibraryTagImage B, AGLibraryTag C
    WHERE A.image=B.image AND B.tag=C.id_local AND C.kindName='AgKeywordTagKind'
    GROUP BY A.idx_filename
    HAVING count(C.name) <= 3
    That will give you all images with 3 or fewer keywords applied.
    Of course, theres no guarantee that this wont break in future versions.
    Now an explanation of the data.
    Adobe_imageFiles - contains data about image files:
    1) idx_filename is the filename
    2) absolutePath is the full file path
    3) image is a unique ID for the image which you can cross reference in
    other image related tables
    AGLibraryTag - contains info about "tags" applied to images:
    1) id_local is a unique ID for this "tag", which you can use to cross
    reference in other tag tables
    2) kindName is the kind of tag you are looking at. Available values
    appear to be:
    AgCaptionTagKind
    AgCollectionTagKind
    AgCopyrightTagKind
    AgEnumeratedMetadataTagKind
    AgFolderTagKind
    AgImportTagKind
    AgKeywordTagKind
    AgMissingFileTagKind
    AgQuickCollectionTagKind
    AgSpecialContentOwningTagKind
    AgTempImagesTagKind
    3) name is the value for that tag (the collection name, the keyword, etc)
    AGLibraryTagImage - Use this to connect the images and tags tables

  • HT4061 How can i find my phone with iphone 4 with ime number

    How can you find my iphone 4 with my IME number?

    The only way to locate/disable/erase any lost/stolen iPhone is through Find My Phone or a similar app. However, this requires that Find My Phone be setup/activated, on your phone, before it was lost/stolen. You would then login at iCloud.com & try to locate it. This requires the phone be turned on & have an Internet connection. There is no other way to locate a lost/stolen iPhone. Apple can't/won't help you, nor will your carrier. Report the loss to the Police, your carrier & Insurance company. Change all of your passwords.
    If your carrier offers Blacklisting & they Blacklist the phone, it will be unusable as a phone.
    If locked with a passcode, all a thief or whoever finds it has to do is force the phone into recovery mode & restore it. While this deletes all data on the phone, it also removes the passcode so the phone can then be used as a phone or touch.

  • How can i find my ipod with the serial no

    How can i find my ipod if i did not use icloud?

    You can't. The SN will only identify the iPod as yours if it is recovered.
    - If you previously turned on FIndMyiPod on the iPod in Settings>iCloud and wifi is on and connected go to iCloud: Find My iPhone, sign in and go to FIndMyiPhone. If the iPod has been restored it will never show up.
    - You can also wipe/erase the iPod and have the iPod play a sound via iCloud.
    - If not shown, then you will have to use the old fashioned way, like if you lost a wallet or purse.
    - Change the passwords for all accounts used on the iPod and report to police
    - There is no way to prevent someone from restoring the iPod (it erases it) using it unless you had iOS 7 on the device. With iOS 7, one has to enter the Apple ID and password to restore the device.
    - Apple will do nothing without a court order                                                        
    Reporting a lost or stolen Apple product                                               
    - iOS: How to find the serial number, IMEI, MEID, CDN, and ICCID number

  • HT204382 I purchased icloud on my iPhone but i don't know how to coordinate with my macbook pro or add info like music.  Does all of my activity show up on both of the devices? Also how do I find the iphone with the macbook or ipad that I plan on purchasi

    I dont know how to use icloud on the mac book when I bought it on the phone..I need to know how to find the iphone with my mac book

    http://www.apple.com/iphone/icloud/

  • HT201365 How to use Find my Phone with secondary iCloud account in iOS 7

    The ability to use Find my Phone with a secondary iCloud account has been removed in iOS 7.  I want to be able to track my children's phones, but don't want to share an iCloud account with them.  They know I am tracking their phones, and this worked fine for us prior to iOS 7.  On their phones, I had Find my Phone turned off under their iCloud, and then added my iCloud to their phone as a secondary account, and turned Find my Phone on under my iCloud account.  When I would launch Find my Phone on my phone, it would show me the location of all of my devices and of their phones. 
    In iOS 7, Find my Phone is not listed under the secondary account.  What is the workaround for this?  I know that I can go to a PC and log into their iCloud account and see Find my Phone that way, but I can't do that from my iPhone because it is linked to my iCloud account.
    Can I link two or more iCloud accounts in the Find my Phone app on my phone? 

    Just ignore any prompts you get. Don't click the move to iCloud button and don't visit me.com/move. Just keep using mobileme as you have been.
    The ONLY clickable button is "Open iCloud.com".  I have NO other options. (Using Mac OS on a MacPro)
    ( somehow my reply was marked as a correct answer, I did not do this, and I can find a way to remove it.)

  • How can I find the element with the closest value to a calculated "target value" in a 1D array?

    Hello all,
    may be the following question is very simple, but I am relatively new in labview and it would be great if somebody could help me:
    I have a acquaried 1D array of data-points. Now, I have to find the element in this array which value is the closest to a calculated "target value".
    After finding the element with the value close to the "target value", I have to get the position of this element (i.e. the index) in the 1D array.
    Now, I have to use this index to find and extract the element at this position in an other 1D array.
    It would be very nice if somebody could help me with this problem.
    Thank you,
    beam

    Find attached a sample vi that you can modify.
    Attachments:
    select_target_value.vi ‏22 KB

  • XML FORM  -  How to save read-only controls with a default value

    Hello everybody,
    I have a 3 xml forms, each one to create one type of news. I need to use 3 because each of this forms has their own controls. But the control which indicates the type of news (asociated with a KM Predefined Property) must be common in the 3 forms, in order to use it on searches.
    The question is, how can I include in this forms a control:
      - Visible for the user
      - With a default value defined in the control properties (each form has a different value, corresponding with the type of news)
      - Read-only mode
      - The value showed in the control must be saved in the associated KM Predefined Property when the user clicks the Save button. 
    Anyone knows how to do this?
    What control can I use?
    I was thinking of trying with text boxes, but I don't find the way to make them unwritable (Read only mode).
    It is posible using labels?
    Thanks.
    Kind regards

    Hello Jose,
    I know you responded with a question... I see it in the email, but I don't see it here!  Very odd... but in response:
    The first thing I do when I open the Edit.xsl file is do a 'find' for the name of the text field that I want to be read-only (in my test case, it's 'location').  Repeat the find until you see something like:
    [code]<!--
    field location
    -->[/code]
    Below there is where I put the new code.  Mine looks like this:
    [code]- <xsl:choose>
    - <xsl:when test="location='' and ($editmode='create')">
    - <xsl:choose>
    - <xsl:when test="./xf:ValidationError/@tagname='location'">
    - <input name="location" size="30" type="text" class="urEdfiTxtEnbl" id="field_1157467268006">
    - <xsl:attribute name="tabindex">
    - <xsl:choose>
      <xsl:when test="$accessibilitymode='true'">21</xsl:when>
      <xsl:otherwise>3792</xsl:otherwise>
      </xsl:choose>
      </xsl:attribute>
    - <xsl:attribute name="value">
      <xsl:value-of select="''" />
      </xsl:attribute>
    - <xsl:attribute name="readonly">true</xsl:attribute>
      </input>
      </xsl:when>
    - <xsl:otherwise>
    - <input name="location" size="30" type="text" tabindex="3792" class="urEdfTxtEnbl" id="field_1157467268006">
    - <xsl:attribute name="value">
      <xsl:value-of select="''" />
      </xsl:attribute>
    - <xsl:attribute name="readonly">true</xsl:attribute>
      </input>
      </xsl:otherwise>
      </xsl:choose>[/code]
    I put the <xsl:attribute name="readonly"> in both places (when test, and when not test).  I'm not entirely sure if that's necessary, but that worked for me.
    Hope this helps,
    Fallon

  • Finder SEARCH help... how do I find only a certain file extension?

    I have a big back up of my fonts, with layers and layers of nested folders, and I want to select all .otf, and then all .ttf fonts... only I'm having trouble getting FIND to do that.
    I tried just putting ".otf" in the search field, but no results.
    So, leaving the search field BLANK and selecting the correct FOLDER:
    I chose "font format" from the "other" menu, and tried ".otf" and "open type", but again, nothing.
    I even chose "extension is" from the "other" menu, and typed in ".otf".
    And, well, I'm out of ideas. This wouldn't take me forever to do it manually, but I just need to FIGURE OUT HOW TO DO THIS!!
    What am I doing wrong?

    Well, I may be stupid. I forgot to say that this is an internal HD, but not my main HD, and I had it EXLUDED from Spotlight in sysprefs because it's 1T, and I didn't want it mucking up my day-to-day Spotlight searches.
    To that end, I knew it wouldn't be searhed if I used Spotlight, but I assumed if I used COMMAND-F, and targeted the exact folder, it WOULD search it. Is that not right? I mean, COMMAND-F finds stuff on DVDs and Flash Drives and stuff. Because I'm not getting ANY results for this one folder...
    Apologies if this is a wild goose chase.

Maybe you are looking for

  • How to store movies & TV shows in a different location

    Hi there! I've seen many of you asking (unfortunatelly with no clear answer) how to store movies & TV shows into another location away from the iTunes Music folder. This idea is to store videos on an AirDisk drive and keep music on the MacBook for ex

  • Mini Display to Mini Display cable

    Hello. I have a 27inch mid 2010 iMac and I'm soon to buy the new 27inch 2012 iMac. Is there a reason the apple store does not carry a mini displayport to mini displayport (male to male) cable to connect the older iMac as a 2nd monitor?  Has Apple dee

  • Case Statement in Where Condition

    Dear All, In my table Fields are EmpId TranYear TranMonth ApprovedBy ApprovedYear ApprovedMonth My Input parameters are 1. TranYear 2. TranMonth 3. Tag1 4. Tag2 My requirement is Tag1 Input are 0,1,2 Tag2 Inputs are 0,1,2 If Tag1 is 0 then checking T

  • T-code for sales order

    Hi friends, Can any body tell me the t-code for creating sales order in CRM. Thanks in Advance

  • Add PayPal Button to basic form on submit?

    I have a page at http://www.canlaw.com/domains/post.html which permits people to pay by paypal But I do not see how to combine paypal with a simple submit button when filling out a form Suggestions? Thanks Kirby