Abapreports

WHAT IS BILL OF MATERIAL(BOM)?

Bill of materials ..it's kind of materials list.
Assume that u want to manufacture a computer.
computer contains lot of components..
so under computer this all component materials comes..
again among them if u take CPU part...it further drill down to some more materials...
This is called ..Bill of Materials...
In SAP this wud maintained in tables about this part materials info for a particular material.
u can check MAST table for some clarification.
Hope u r clear about this term
bill of materials (BOM) describes the structure of an assembly. Each BOM object represents a part or subassembly
MAST Material to BOM Link (MM related)
PP related tables
STKO BOM Header
STPO BOM Positions (detail)
PM related tables
EQST Equipment to BOM Link
STKO BOM Header
STPO BOM Details
Hope these links would be of some help
http://help.sap.com/saphelp_erp2005/helpdata/en/ea/e9b7234c7211d189520000e829fbbd/frameset.htm
http://help.sap.com/saphelp_erp2005/helpdata/en/d1/2e4114a61711d2b423006094b9d648/frameset.htm
http://www.sap-img.com/sap-sd/sales-bom-implementation.htm
http://www.sap-basis-abap.com/sappp007.htm

Similar Messages

  • How to port a ABAP report into ITS? Please help!

    Hi Experts,
              I have a ABAP report that contains a selection screen with 3 select-option elements and a search button. On pressing search button an ALV grid opens with data from a SAP table based on selection screen criteria.
    I want to web enable it so that it can be accessed from Enterprise Portal. i will be using IAC iview in Portal.
    Now the IAC iview needs my ABAP report to be ported to ITS?
    1.How to port it to ITS? What are the steps?
    2.In order to port in to ITS do I need to change my ABAP code?
    3.Are there any known limitations of porting ABAP reports in ITS? For example Performance, ALV not supported, Table control not supported etc.
    4. Does it handle dynamic programming?
    5. Are there any documentation for porting report to ITS?
    6. How much time effort it will be for porting ABAP reportys to ITS?
    To add some more points. SAP transaction iview is not allowed in my organization. Webdynpro/BSP is also not supported. Thats why I am using IAC iview which needs ITS.
    Please help
    Thanks
    Gopal
    Message was edited by: gopalkrishna baliga

    hi,
      step1.create a transaction for ABAPreport in SE93.
      step2.Go to transaction SICF and create a service in the following path sap/bc/gui/sap/its.
    Check the following Url to create a service.
    /people/durairaj.athavanraja/blog/2005/08/21/running-your-first-its-webgui-application-in-sap-netweaver-04-abap-edition--nsp
      step3. create a system object setting the following property categories.
       1.Connector
       2.Usermanagement
       3.ITS
       4.WAS
    In the usermanagement do the user mapping.
    step4. While creating  an IAC iview, in the third step for the <b>Internet Application Component (IAC)</b> property give the service name you have created in SICF.
    you need not change the abap code. The only limitation while porting abap report in ITS is you cannot view the icons in the tool bar, instead you view the buttons.
    ALV is supported. Functionality wise nothing will change except the appearance mainly with the icons.
    Regards,
    Gopi

  • Program for Sales Order cretaion using BAPI BAPI_SALESORDER_CREATEFROMDAT2

    Hi All,
    Can any one please give me one modal program which uses the BAPI 'BAPI_SALESORDER_CREATEFROMDAT2' to create Sales Orders...
    Thank You very much in advance.....................

    Hi Krishna ,
    Please check the below links .
    [http://www.sap-basis-abap.com/abap/bapi-sample-to-upload-data-from-flat-file-to-va01.htm]
    [http://abapreports.blogspot.com/2008/06/bapi-sample-code-for.html] -- > Select and Copy from this one.

  • Material tracking report

    Hi Experts,
             Could any one please help me for writing material tracking report By using tables mseg,objk,kna1,afko,afpo,makt,ser05,ser03.
                The selection screen should be production order no, parent material no, parent material serian no, component material no, component serial no.
            This report should be used by pp and sd consultants.
    The out putshould be
    customer name, prod order no, pro date, prod matno, material description, Parent serial no, component matno ,comp material description, Component tracking no
    i Will give you maximum points.
                                                                                    Thanks & Regards,
                                                                                    Satyendra.

    Hi
    Go through the link given below , in which you will find all the stardard report related to materials.
    http://abapreports.blogspot.com/2008/06/standard-abap-reports-in-sd-and-mm.html
    Rewards if useful.
    With Regards
    Nikunj Shah

  • How to learn Report development techniques

    Hi experts,
                   I am a beginner to ABAP.
                   I want to enhance  my Report developing techniques.
                   How can i develop it.
                   Is there any site which will help.
                   I want to if there are any books available.
                   plz help me.
    good answers will be rewarded for sure.
    Thanks and regards,
    shilpa.

    Hi shilpa.
    I would like to suggest you some references,
    Hi shilpa.
    I would like to suggest you some references,
    You can use SDN search.
    [SDN Wiki - Reference for ABAP Reports Development|https://www.sdn.sap.com/irj/sdn/wiki?path=/display/abap/abap%2bbasics]
    [SDN - Reference for reports - classical|RELATED TO  CLASSICAL REPORT;
    [SDN - Reference for Classical Reports|https://www.sdn.sap.com/irj/sdn/advancedsearch?cat=sdn_all&query=classical+reports&adv=false&sortby=cm_rnd_rankvalue]
    [Reference - ABAP reports PDFs.|http://www.esnips.com/_t_/ABAPreports?q=ABAPreports]
    Hope that's usefull.
    Good Luck & Regards.
    Harsh Dave
    Edited by: Harsh Dave on Jul 14, 2008 7:35 PM

  • Need to display grand total text in OOPS ABAP ALV report

    Hi
    I am using OOPS for alv display and need to display grand "total text" in any column in th eoutput display.
    I know the procedure to display in ALV display. but dont have idea in OOPS. Please help.
    Thanks
    Amminesh.

    hi,
    follow this link for alv's with oop's oncept.
    http://abapreports.blogspot.com/2008/06/alv-grid-display-with-oops.html
    for calculating total  to the specific field.....
    while creating the fieldcatalog pass the value 'X' to field do_sum of lvc_t_fcat( field catalog).
    data: fcat type lvc_t_fcat.
    fcat-fieldname = <field-name>.
    fcat-ref_table = <ref-tablename>.
    fcat-ref_field = <ref-fieldname>.
    fcat-do_sum = 'X'.
    regards,
    Ashok

  • Is there any userexit OR BADI  for MIR7 WHEN change number of PO

    I know I can use badi  NVOICE_UPDATE- CHANGE_BEFORE_UPDATE method. to check PO's number when
    I save .
    I want to find an exit or badi to implement when I change number of PO, and  type enter  to  check the number .How can I do ??

    Hi,
    Please check this thread for the procedure to find the BADI for a transaction
    http://searchsap.techtarget.com/tip/0,289483,sid21_gci1276392,00.html#
    Or
    You goto se24 and specify the class CL_EXITHANDLER and in that double click on GET_INSTANCE method in that put a break point on the line 
    CALL METHOD cl_exithandler=>get_class_name_by_interface
    and run you transaction... for almost every action you will get this method trigger and in that check the exit name... And that's the BADI for the interaction made in that transactation.
    Please go through this link for Finding BADI using class CL_EXITHANDLER in detail.
    [Finding BADI|http://abapreports.blogspot.com/2008/06/badi-finding-in-abap.html]
    Hope this would help you.
    Good luck
    Narin
    Edited by: Narin Nandivada on Aug 19, 2008 5:30 PM

  • Any userexit or badi for Me51n or me52n

    Any  user exist  or badis for  Me51n or me52n if
    Material Profit center ,v/s Plant profit center  or v/s WBS profit
    center not matched then PR should not saved.
    Moderator message: please do some own research before asking.
    [Asking Good Questions in the Forums to get Good Answers|/people/rob.burbank/blog/2010/05/12/asking-good-questions-in-the-forums-to-get-good-answers]
    Edited by: Thomas Zloch on Feb 21, 2011 2:01 PM

    Hi,
    Please check this thread for the procedure to find the BADI for a transaction
    http://searchsap.techtarget.com/tip/0,289483,sid21_gci1276392,00.html#
    Or
    You goto se24 and specify the class CL_EXITHANDLER and in that double click on GET_INSTANCE method in that put a break point on the line 
    CALL METHOD cl_exithandler=>get_class_name_by_interface
    and run you transaction... for almost every action you will get this method trigger and in that check the exit name... And that's the BADI for the interaction made in that transactation.
    Please go through this link for Finding BADI using class CL_EXITHANDLER in detail.
    [Finding BADI|http://abapreports.blogspot.com/2008/06/badi-finding-in-abap.html]
    Hope this would help you.
    Good luck
    Narin
    Edited by: Narin Nandivada on Aug 19, 2008 5:30 PM

  • BDC Program for Sales order and Enquiry

    Hi All,
    Pls can you help me.
    To create sales order and enquiry I have bapis .
    BAPI_SALESORDER_CREATEFROMDAT2
    BAPI_INQUIRY_CREATEFROMDATA2
    but i want BDC Programs for that bapis
    pls can you help me
    thanks
    mars

    Hi Krishna ,
    Please check the below links .
    [http://www.sap-basis-abap.com/abap/bapi-sample-to-upload-data-from-flat-file-to-va01.htm]
    [http://abapreports.blogspot.com/2008/06/bapi-sample-code-for.html] -- > Select and Copy from this one.

  • BAPI_OUTB_DELIVERY_CHANGE : order parameter

    hi,
    in bapi : BAPI_OUTB_DELIVERY_CHANGE , which parameter should i pass to set the order of the items which would come as an output.
    regards
    rahul

    Check the sample code ...
    http://abapreports.blogspot.com/2008/06/bapi-code-for-outbound-delivery-change.html

  • Function module to read xml files from application server

    Hi experts,
            I need to read  xml files from application server to sap. Is the any siutable function moldule for that?

    Hi Cenosure,
    Donno about FM which will upload data directly to SAP, I think you have to do some mapping for it so that it will suit the SAP format. Again it depends on your requirement..
    Please elaborate more about your requirement.
    Please have a look on below FM
    TEXT_CONVERT_XML_TO_SAP
    Also search on SCN there are many threads on the same topic available.
    http://abapreports.blogspot.com/2008/09/upload-xml-file-from-application-server.html
    This is the link which will give you the Code
    http://www.geocities.com/rmtiwari/Resources/MySolutions/Dev/Codes/Report/Z_RMTIWARI_XML_TO_ABAP_46C.html
    Use this XML file to Upload the same, this Program will work for your XML file also,
    http://www.geocities.com/rmtiwari/Resources/MySolutions/Dev/Codes/Report/input_xml.xml
    See the below thread also
    Upload XML to internal table and vice versa in SAP 4.6C
    Hope it will solve your problem..
    Thanks & Regards
    ilesh 24x7
    ilesh Nandaniya

  • Is Possible to Merge Some Infotypes (10 infotypes) into One Infoprovider?

    Hi All
    I'm really confused with HR Model Data Design. Right now, I need to create report like this (using Bex Analyzer)
    (PA0000,PA0001,PA0002)
    Name:
    Age:
    Job Title:
    Division:
    Section
    Date Joined (dd/mm/yyyy)
    (another infotype)
    Education
    Lever | Start Date | End Date
    Junior School | 1992 | 1998
    Middle School | 1998 | 2001
    (another infotype)
    Career History
    Prev Comp | Start Date | End Date
    PT ABC | 2002 | 2003
    PT XYZ | 2003 | 2004
    My plan, first is to combine all of them into 0EMPLOYEE (become attribute of 0EMPLOYEE).
    But this plan is fail because there was an error time overlap dependency.
    Because of this, I separate them into DSOs (one DSO for one infotype). Now one thing that I confused is how to combine them into one InfoProvider (InfoCube/Multiprovider/InfoSet), because the key (Begin Date and End Date) are not sync one another.
    The simple logic is build like this
    Employee Id | Begin Date (PA0001) | End Date (PA0001) | Begin Date (education) | End Date (education) | Begin Date (contract) | End Date (contract) but the combination will be bombastic (the performance will be drop).
    Could you anyone help me to solve this? Thank you
    Regards,
    Satria

    Hi satria
    I would try using expertroutine with ABAP code 'perform'
    here an example:
    http://abapreports.blogspot.com/2009/10/sap-programming-syntax-for-provide-in.html
    gregards
    Tom

Maybe you are looking for

  • Dropdown not working

    Hi Every one..., In my Machine dropdown function is not working. example is in T.code like MM01 (Creation of Material Master) I could not able to select Industrial sector, material type, now values are displaying. If with same user ID, I could able t

  • Internal table to node

    Hi all, Can somebody helpme with the following problem : I have 3 in my repport 3 internal tables : itab1 , itab2 ad itab3. Now i want to give the result as a tree with 3 nodes  as follows : Resultaat Node1 Node2 Node3 And if the user klicks on a nod

  • Oracle Application Server 10g R2: Administration I

    Can anyone comment on this class? http://education.oracle.com/pls/web_prod-plq-dad/show_desc.redirect?dc=D18771 We probably should have someone on staff that understands the install & maintenance of the Application Server. I presume that just because

  • Since downloading and installing Lion, have been having trouble with internet connection. Are there settings that I need to adjust?

    Just installed Lion 10.7 ... having problems opening Safari and connectivity.  Have to reset modem, restart computer, etc.  It will be stable for awhile, then next time I log on, have to go through same things.  Is there a setting that I need to adju

  • A fix for many problems

    I needed songs off my iPod, looked on here for answers, tried some sugestions, allways had problems...CRC and "parameters.." errors were the biggest, then found that when opening the "Safely Remove Harware" icon in the system tray, then click "Proper