Question ABAP : Reading a material and its components

Hi!
I want to make a report on a FERT and HAWA materials.  I want to specify the standard cost for the product and also the cost for raw material and  the fixed overhead specified separately.
Which tables do I involve in selection and what logic to retrieve the
costs for rawmaterial and fixed oh..
Report:
PLANT MATERIAL  TOTAL_COST   RAWMAT_COST FIXED_OH_COST
XXXX   0500-001         50                      40                         10
Very grateful for answers
Regards Lars Zinn

Hi Lars,
Tables involved are <b>keko</b>(Product Costing - Header Data) / <b>keph</b>(Product Costing: Cost Components for Cost of Goods Mfd).
Hope this helps,
erwan

Similar Messages

  • I tried to download the itunes update and at first it would say i was missing msvcr80.dl so I completely uninstalled itunes and its components, then reinstalled it. Now it says I'm missing"Applle Application Support" How do I fix this?

    I tried to download the itunes update and at first it would say i was missing msvcr80.dl so I completely uninstalled itunes and its components, then reinstalled it. Now it says I'm missing"Applle Application Support" How do I fix this?

    With the Error 2, let's try a standalone Apple Application Support install. It still might not install, but fingers crossed any error messages will give us a better idea of the underlying cause of the issue.
    Download and save a copy of the iTunesSetup.exe (or iTunes64setup.exe) installer file to your hard drive:
    http://www.apple.com/itunes/download/
    Download and install the free trial version of WinRAR:
    http://www.rarlab.com/
    Right-click the iTunesSetup.exe (or iTunes64Setup.exe), and select "Extract to iTunesSetup" (or "Extract to iTunes64Setup"). WinRAR will expand the contents of the file into a folder called "iTunesSetup" (or "iTunes64Setup").
    Go into the folder and doubleclick the AppleApplicationSupport.msi to do a standalone AAS install.
    Does it install properly for you?
    If instead you get an error message during the install, let us know what it says. (Precise text, please.)

  • HT1923 im trying to unistall itunes and its components and is not letting me/

    im trying to unistall itunes and its components and is not letting me?

    Do you get error messages when doing the uninstalls? If so, what do they say? (Precise text, please.)

  • Difference between the document total and its components in inventory transfer

    Hi Everyone!
    When I make Inventory Transfer, SAP notice error "There is difference between the document total and its components.".Everyone that knows this problem, Pls help to find way to solve it.
    Thanks & Best regards
    Ngoc Loan

    Hi,
    Please refer to the thread.
    There is a difference between the document total and its components
    Hope Helps!
    Regards,

  • Quickest way to clone a JPanel and its components?

    Is there a quick method to clone a JPanel and its components?

    This has been tried before and not work.
    JVM reports errors :
    clone() has protected access in java.lang.Object.

  • There is a difference between the document total and its components

    Hi!
    I have an error message "There is a difference between the document total and its components" when I want to create an InventoryGenEntry
    the problem arises from time to time and my customer must do the document two or three times before it is created.
    I have seen in this forum and in notes that this is probably being caused by a Rounding.
    I am using 2 digits for amounts, 4 digits for prices, 6 digits for rates and 3 digits for quantities.
    For information my customer use SAP 2005 and the patch level 46.
    This problem happened only in InventoryGenEntry. how can I modifiy parameters to resolve this problem?
    thank you for your help.
    Best Regards
    Séverine

    Hi Séverine,
    Do you find any additional code added to SBO_SP_Transaction stored procedure. A similar issue with stock transfer fixed in later patch. Please test in latest patch.
    Regards,
    Vijay kumar
    SAP Business One Forums Team

  • I want the Definitaion fo  Class and its Components  in ABAP . With Example

    Gowri

    <b>Classes</b>
    Classes are templates for objects. Conversely, you can say that the type of
    an object is the same as its class. A class is an abstract description of an object. You could say that it is a set of instructions for building an object. The attributes
    of objects are defined by the components of the class, which describe the
    state and behavior of objects.
    <b>
    Local and Global Classes</b>
    Classes in ABAP Objects can be declared either globally or locally. You define global classes and interfaces in the Class Builder (Transaction SE24) in the
    ABAP Workbench. They are stored centrally in class pools in the class library
    in the R/3 Repository. All of the ABAP programs in an R/3 System can access the global classes. Local classes are defined within an ABAP program. Local classes and interfaces can only be used in the program in which they are defined. When you use a class in an ABAP program, the system first searches for a local class with the specified name. If it does not find one, it then looks for a global class. Apart from the visibility question, there is no difference between using a global class and using a local class.
    There is, however, a significant difference in the way that local and global classes are designed. If you are defining a local class that is only used in a single program, it is usually sufficient to define the outwardly visible components so that it fits into that program. Global classes, on the other hand, must be able to be used anywhere. This means that certain restrictions apply when you define the interface of a global class, since the system must be able to guarantee that any program using an object of a global class can recognize the data type of each interface parameter.
    The following sections describe how to define local classes and interfaces in an ABAP program. For information about how to define local classes and interfaces, refer to the  Class Builder section of the ABAP Workbench Tools documentation.
    <b>Defining Local Classes</b>
    Local classes consist of ABAP source code, enclosed in the ABAP statements CLASS ... ENDCLASS. A complete class definition consists of a declaration part and, if required, an implementation part. The declaration part of a class <class> is a statement block:
    CLASS <class> DEFINITION.
    ENDCLASS.
    It contains the declaration for all components (attributes, methods, events) of the class. When you define local classes, the declaration part belongs to the global program data. You should therefore place it at the beginning of the program.
    If you declare methods in the declaration part of a class, you must also write an implementation part for it. This consists of a further statement block:
    CLASS <class> IMPLEMENTATION.
    ENDCLASS.
    The implementation part of a class contains the implementation of all methods of the class. The implementation part of a local class is a processing block. Subsequent coding that is not itself part of a processing block is therefore not accessible.
    <b>Structure of a Class</b>
    <u>The following statements define the structure of a class:</u>
    A class contains components
    Each component is assigned to a visibility section
    Classes implement methods
    The following sections describe the structure of classes in more detail.
    <b>Class Components</b>
    The components of a class make up its contents. All components are declared in the declaration part of the class. The components define the attributes of the objects in a class. When you define the class, each component is assigned to one of the three visibility sections, which define the external interface of the class. All of the components of a class are visible within the class. All components are in the same namespace. This means that all components of the class must have names that are unique within the class.
    There are two kinds of components in a class - those that exist separately for each object in the class, and those that exist only once for the whole class, regardless of the number of instances. Instance-specific components are known as instance components. Components that are not instance-specific are called static components.
    In ABAP Objects, classes can define the following components. Since all components that you can declare in classes can also be declared in interfaces, the following descriptions apply equally to interfaces.
    <b>Attributes</b>
    Attributes are internal data fields within a class that can have any ABAP data type. The state of an object is determined by the contents of its attributes. One kind of attribute is the reference variable. Reference variables allow you to create and address objects. Reference variables can be defined in classes, allowing you to access objects from within a class.
    <b>Instance Attributes</b>
    The contents of instance attributes define the instance-specific state of an object. You declare them using the DATA statement.
    <b>Static Attributes</b>
    The contents of static attributes define the state of the class that is valid for all instances of the class. Static attributes exist once for each class. You declare them using the CLASS-DATA statement. They are accessible for the entire runtime of the class.
    All of the objects in a class can access its static attributes. If you change a static attribute in an object, the change is visible in all other objects in the class.
    <b>Methods</b>
    Methods are internal procedures in a class that define the behavior of an object. They can access all of the attributes of a class. This allows them to change the data content of an object. They also have a parameter interface, with which users can supply them with values when calling them, and receive values back from them The private attributes of a class can only be changed by methods in the same class.
    The definition and parameter interface of a method is similar to that of function modules. You define a method <met> in the definition part of a class and implement it in the implementation part using the following processing block:
    METHOD <meth>.
    ENDMETHOD.
    You can declare local data types and objects in methods in the same way as in other ABAP procedures (subroutines and function modules). You call methods using the CALL METHOD statement.
    <b>Instance Methods</b>
    You declare instance methods using the METHODS statement. They can access all of the attributes of a class, and can trigger all of the events of the class.
    <b>Static Methods</b>
    You declare static methods using the CLASS-METHODS statement. They can only access static attributes and trigger static events.
    <b>Special Methods</b>
    As well as normal methods, which you call using CALL METHOD, there are two special methods called CONSTRUCTOR and CLASS_CONSTRUCTOR, which are automatically called when you create an object (CONSTRUCTOR) or when you first access the components of a class (CLASS_CONSTRUCTOR).
    <b>Events</b>
    Objects or classes can use events to trigger event handler methods in other objects or classes. In a normal method call, one method can be called by any number of users. When an event is triggered, any number of event handler methods can be called. The link between the trigger and the handler is not established until runtime. In a normal method call, the calling program determines the methods that it wants to call. These methods must exist. With events, the handler determines the events to which it wants to react. There does not have to be a handler method registered for every event.
    The events of a class can be triggered in the methods of the same class using the RAISE EVENT statement. You can declare a method of the same or a different class as an event handler method for the event <evt> of class <class> using the addition FOR EVENT <evt> OF <class>.
    Events have a similar parameter interface to methods, but only have output parameters. These parameters are passed by the trigger (RAISE EVENT statement) to the event handler method, which receives them as input parameters.
    The link between trigger and handler is established dynamically in a program using the SET HANDLER statement. The trigger and handlers can be objects or classes, depending on whether you have instance or static events and event handler methods. When an event is triggered, the corresponding event handler methods are executed in all registered handling classes.
    <b>Instance Events</b>
    You declare instance events using the EVENTS statement. An instance event can only be triggered in an instance method.
    <b>Static Events</b>
    You declare static events using the CLASS-EVENTS statement. All methods (instance and static methods) can trigger static events. Static events are the only type of event that can be triggered in a static method.
    <u>See also Triggering and Handling Events.</u>
    <b>Types</b>
    You can define your own ABAP data types within a class using the TYPES statement. Types are not instance-specific, and exist once only for all of the objects in a class.
    <b>Constants</b>
    Constants are special static attributes. You set their values when you declare them, and they can then no longer be changed. You declare them using the CONSTANTS statement. Constants are not instance-specific, and exist once only for all of the objects in a class.
    <b>Visibility Sections</b>
    You can divide the declaration part of a class into up to three visibility areas:
    CLASS <class> DEFINITION.
      PUBLIC SECTION.
      PROTECTED SECTION.
      PRIVATE SECTION.
    ENDCLASS.
    These areas define the external visibility of the class components, that is, the interface between the class and its users. Each component of a class must be assigned to one of the visibility sections.
    <b>Public Section</b>
    All of the components declared in the public section are accessible to all users of the class, and to the methods of the class and any classes that inherit from it. The public components of the class form the interface between the class and its users.
    <b>
    Protected Section</b>
    All of the components declared in the protected section are accessible to all methods of the class and of classes that inherit from it. Protected components form a special interface between a class and its subclasses. Since inheritance is not active in Release 4.5B, the protected section currently has the same effect as the private section.
    <b>Private Section</b>
    Components that you declare in the private section are only visible in the methods of the same class. The private components are not part of the external interface of the class.
    <b>Encapsulation</b>
    The three visibility areas are the basis for one of the important features of object orientation - encapsulation. When you define a class, you should take great care in designing the public components, and try to declare as few public components as possible. The public components of global classes may not be changed once you have released the class.
    For example, public attributes are visible externally, and form a part of the interface between an object and its users. If you want to encapsulate the state of an object fully, you cannot declare any public attributes. As well as defining the visibility of an attribute, you can also protect it from changes using the READ-ONLY addition.
    "Example  :
    CLASS C_COUNTER DEFINITION.
      PUBLIC SECTION.
        METHODS: SET_COUNTER IMPORTING VALUE(SET_VALUE) TYPE I,
                 INCREMENT_COUNTER,
                 GET_COUNTER EXPORTING VALUE(GET_VALUE) TYPE I.
      PRIVATE SECTION.
        DATA COUNT TYPE I.
    ENDCLASS.
    CLASS C_COUNTER IMPLEMENTATION.
      METHOD SET_COUNTER.
        COUNT = SET_VALUE.
      ENDMETHOD.
      METHOD INCREMENT_COUNTER.
        ADD 1 TO COUNT.
      ENDMETHOD.
      METHOD GET_COUNTER.
        GET_VALUE = COUNT.
      ENDMETHOD.
    ENDCLASS.
    The class C_COUNTER contains three public methods - SET_COUNTER, INCREMENT_COUNTER, and GET_COUNTER. Each of these works with the private integer field COUNT. Two of the methods have input and output parameters. These form the data interface of the class. The field COUNT is not outwardly visible.
    Reward   points  if it is usefull...
    Girish

  • Enlarge JFrame and its components properties  proportionally

    Hi,
    We have a simple JFrame � Container - uses Flow Layout and has got Buttons, Text Fields� All of them are using Java�s default fonts, sizes..�
    And we want to increase or enlarge all of the JFrame and its sub components properties proportionally (especially Font�.) like in for example MS-Word.
    In the Ms-Word, there is ZOOM option in the Standard tool bar menu. If you set zoom to 150%, the font is automatically increases. And if you set it to 100% the font sets back to normal. And if the window is not enough to fit, it adds the scroll bars.
    For example, if we increase the Labels Font, the height of that component also should increase proportionally. So the Frame also should increase.
    How could we achieve this sort of functionality ( i.e. Proportionally increasing the component�s properties ) in Swing?
    I believe it is hard to set/adjust the all of the Frame�s components properties (I.e. Height, Font�) proportionally by using the Component listeners.
    (Another example, you might have noticed that the Frame�s Font, hight,width �sizes are proportionally bigger in Systems screen�s 800 by 600 pixels mode compare with 1024 by 768 pixels mode. May be this is windows feature. But we are looking at achieving the same sort of feature)
    Any help or thoughts would be appreciated.
    Thanks in advance.
    Vally.

    Here is a working sample:
    package ui_graphics;
    import java.awt.BorderLayout;
    import java.awt.Color;
    import java.awt.Dimension;
    import java.awt.FlowLayout;
    import java.awt.Graphics;
    import java.awt.Graphics2D;
    import java.awt.LayoutManager;
    import java.util.Arrays;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JPanel;
    import javax.swing.JSpinner;
    import javax.swing.SpinnerListModel;
    import javax.swing.SpinnerModel;
    import javax.swing.event.ChangeEvent;
    import javax.swing.event.ChangeListener;
    public class ZoomableFrameTest {
       private ZoomablePanel zoomPanel;
       private JLabel label;
       public ZoomableFrameTest() {
          label = new JLabel("Essai pour le zoom");
          label.setBounds(0,0,200,16);
          zoomPanel = new ZoomablePanel();
          zoomPanel.add(label);
          JFrame frame= new JFrame("Zoom test");
          frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
          frame.getContentPane().add(getZoomSpinner(), BorderLayout.NORTH);
          frame.getContentPane().add(zoomPanel, BorderLayout.CENTER);
          frame.pack();
          frame.setVisible(true);
       public static void main(String[] args) {
          new ZoomableFrameTest();
       public JSpinner getZoomSpinner() {
          String[] zoomValues = { "50", "100", "150" };
          SpinnerModel model = new SpinnerListModel(Arrays.asList(zoomValues));
          final JSpinner spZoom = new JSpinner(model);
          Dimension dim = new Dimension(60, 22);
          spZoom.setMinimumSize(dim);
          spZoom.setPreferredSize(dim);
          spZoom.setMaximumSize(dim);
          spZoom.setFocusable(false);
          spZoom.addChangeListener(new ChangeListener() {
             public void stateChanged(ChangeEvent e) {
                // R�cup�re le facteur d'�chelle
                int factor = Integer.parseInt((String)spZoom.getValue());
                setScaleFactor(factor);
          spZoom.setValue("100");
          return spZoom;
       private void setScaleFactor(int factor) {
          zoomPanel.setZoomFactor(factor);
    class ZoomablePanel extends JPanel {
       private int zoomFactor;
       public ZoomablePanel() {
          super(null);
       public void setZoomFactor(int factor) {
          this.zoomFactor = factor;
          if (this.isShowing()) this.repaint();
       public void paint(Graphics g) {
          super.paintComponent(g);
          double d = zoomFactor / 100d;
          Graphics2D g2 =(Graphics2D)g;
          g2.scale(d, d);
          super.paint(g2);
    }

  • Deploy an Application and its components

    I am using Weblogic 6.1, sp1, with Win2k.
    I am trying to deploy my application (myapp.ear) which has 3 components,
    2 webapp comp and an ejb component.
    I have the Myapp.ear file in <weblogic home>/config/baiju/application
    directory
    and the components are listed in the config.xml file as follows :
    <Application Deployed="true" Name="Baiju-WebLogic"
    Path=".\config\mydomain\applications\Baiju-WebLogic.ear">
    <WebAppComponent Name="Baiju-WebLogic-Backoffice"
    Targets="Baiju" URI="Baiju-WebLogic-Backoffice.war"/>
    <EJBComponent Name="Baiju-WebLogic-Ejb"
    Targets="Baiju" URI="Baiju-WebLogic-Ejb.jar"/>
    <WebAppComponent Name="Baiju-WebLogic-Store"
    Targets="Baiju" URI="Baiju-WebLogic-Store.war"/>
    </Application>
    The problem is, when I start the Server it does not deploy the application
    "Baiju", if I go to admin console
    I can see the application as deployed ("its checked") and also its 3
    components, but I am not able to access the pages.
    Also this problem is not consistent, it sometimes work, with absolutely no
    change made to anything, I just re-start the server.
    I have my server running in Production Mode.
    (-Dweblogic.ProductionModeEnabled=true)
    Any help is appreciated,
    Thanks.
    Baiju.

    have a very similar situation in which an ear file deployed thru' the
    console is NOT getting picked up on restart. The file has been copied to
    config/mydomain/applications but does NOT show up in the .wlnotdelete
    directory when I restart the server. When I deployed the ear file initially,
    it was all ok. The home interfaces showed up in the JNDI treee but on
    restart, everything disappeared. It is running in the production mode.
    BTW everything works fine when I deploy using a JAR.
    "Baiju Gajjar" <[email protected]> wrote in message
    news:[email protected]...
    Hi Mihir,
    I am not deloying the application through the console, I have an ear file
    which I have in
    <Weblogic home>\config\<myapp>\applications
    folder as Baiju-WebLogic.ear file. If I start the server in developmentmode
    it is able to deploy
    it properly. It should be able to deploy even in production mode as it is
    listed in the config.xml
    file. Also this deployment is not consistent, it some does deploy it and
    some times it doesn't.
    Thanks,
    Baiju.
    "Mihir Kulkarni" <[email protected]> wrote in message
    news:[email protected]...
    Please set the Loggin level to the highest value ie,StdoutSeverityLevel="64".
    This will give you detailed information about the individual components
    in
    the
    ear being deployed. The config.xml entries look fine to me.
    Are you deploying the applications through the console ? As you arerunning
    with the productionMode=enabled, the server would not pick up anythingfrom
    the applications dir unless you have deployed it through the console. Doyou
    face the same problem when you are running in the dev mode ?
    Baiju Gajjar wrote:
    I am using Weblogic 6.1, sp1, with Win2k.
    I am trying to deploy my application (myapp.ear) which has 3
    components,
    2 webapp comp and an ejb component.
    I have the Myapp.ear file in <weblogic home>/config/baiju/application
    directory
    and the components are listed in the config.xml file as follows :
    <Application Deployed="true" Name="Baiju-WebLogic"
    Path=".\config\mydomain\applications\Baiju-WebLogic.ear">
    <WebAppComponent Name="Baiju-WebLogic-Backoffice"
    Targets="Baiju" URI="Baiju-WebLogic-Backoffice.war"/>
    <EJBComponent Name="Baiju-WebLogic-Ejb"
    Targets="Baiju" URI="Baiju-WebLogic-Ejb.jar"/>
    <WebAppComponent Name="Baiju-WebLogic-Store"
    Targets="Baiju" URI="Baiju-WebLogic-Store.war"/>
    </Application>
    The problem is, when I start the Server it does not deploy theapplication
    "Baiju", if I go to admin console
    I can see the application as deployed ("its checked") and also its 3
    components, but I am not able to access the pages.
    Also this problem is not consistent, it sometimes work, with
    absolutely
    no
    change made to anything, I just re-start the server.
    I have my server running in Production Mode.
    (-Dweblogic.ProductionModeEnabled=true)
    Any help is appreciated,
    Thanks.
    Baiju.

  • Receiving of Packing material and its valuation

    Dear All,
    We have the following scenario:-
    We are into steel industry and packing material which comes along with the raw material is required to recieve. which is NOT required to send back to the supplier and we uses it in further  processing.
    We include this material in BOM of some semifinished product.
    Now my concern is how to do Good reciept of this material and on what basis , as from the vendor is comes as free and being used as BOM item of semifinished good, so how the valuation of this material will takes place.
    Kindly suggest, how this scenario will be handelled in SAP
    Thanks & Regards
    Nitin

    if you get the material for free, then you must not add any value for the stock.
    so you create a material master of type VERP with price  of 0,01 if it is a quantity and value managed material in your plant. Or you create a UNBW material which is not value managed.
    you receive the material with 501 movement.

  • OIM and its components

    Hello,
    I have configured OIM and SOA in the admin server of a domain : base_domain
    If I want to install OID, OVD and other identity manager components, should I need to configure them in a new domain...or Can I configure in the same domain : base_domain, where OIM was installed.
    Thanks,
    Krish.

    I read the document and started OID server and tried to access: http://<hostname>:port/odsm - as well.
    It threw me an exception of Error 404 - not found on the browser
    Error 404--Not Found
    From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
    10.4.5 404 Not Found
    The server has not found anything matching the Request-URI. No indication is given of whether the condition is temporary or permanent.
    If the server does not wish to make this information available to the client, the status code 403 (Forbidden) can be used instead. The 410 (Gone) status code SHOULD be used if the server knows, through some internally configurable mechanism, that an old resource is permanently unavailable and has no forwarding address.
    Thanks,
    Krish.

  • My computer is not reading my ipod and its not showing in itunes

    my computer is not reading my ipod and it does not appear in itunes

    What have you tried so far in terms of troubleshooting this issue?  Are you plugging the iPod into a high powered USB 2.0 port on the back of your PC? Have you tried a different USB cable?
    What shows on the iPod's display when it is connected? Does it still charge?
    What happens if you try to reset the device with it still connected to the PC?
    How to reset iPod
    Have you carefully worked through each and every single suggestion in this Apple support document?
    iPod not recognized in 'My Computer' and in iTunes for Windows
    B-rock

  • Sales Order Material and its MOQ mass change

    *The issue is related to our Spare parts Ordering process in our company.*
    We have a concept of having 65 days of back orders. Hence there will be
    lot many open orders in the system.
    The Material code will be changed from (for eg) M01 to M02. Hence forth the Material (M01) ordered will
    automatically changed to M02 through Material determination logic. But
    for the 65 days back orders, it is very difficult to change the
    material one by one in sales order. There may be more than 100 orders
    for a material. Even if the MASS change option in Transaction VA05
    doesn't address because of the following reasons;
    1. The changed new material (M02) may have new price with new validity
    periods, whereas the back orders will have old pricing dates. Its
    difficult to change individually in the open orders.
    2. Some materials may have partially delivered.
    Similar to ECM changes, there will be MOQ changes which also needs to
    be changed individually the order quantity in the old Open orders.
    For example,
    Initially the MOQ for a material in 10. Order inflow has happened based
    on this MOQ.
    Now if the MOQ is changed to 20, future orders are addressed. But for
    the 65 day back orders, we need to manually open the individual sales
    order and change the order quantity.
    Hence we require a mass change option for the open orders as below:
    1. For Material Changes (M01 to M02), I will give the list of orders and
    the line items and Qty for M01. The program should reject the existing
    line item for M01. An additional line item should be created with M02.
    Also the pricing date should be changed.
    2. For MOQ changes, I will give the list of orders and the line items
    and Qty. The program should reject the existing line item for those
    materials. An additional line item should be created with new Qty.
    If the material is partially delivered, the the existing qty should be
    updated to the extent it is delivered and the remaining qty should be
    updated with new material or New MOQ.

    You can use BAPI_SALESORDER_CHANGE.
    1. Get the SO detail using BAPISDORDER_GETDETAILEDLIST.
    2. MODIFY the ORDER_CFGS_* internal tables and  update.
            CALL FUNCTION 'BAPISDORDER_GETDETAILEDLIST'
              TABLES
                order_cfgs_value   = gt_char
                order_cfgs_ref       = gt_char_ref
                order_cfgs_inst      = gt_char_ins.
            MODIFY gt_cfgs_*.
            CALL FUNCTION 'BAPI_SALESORDER_CHANGE'
             TABLES
                order_cfgs_value   = gt_char
                order_cfgs_ref       = gt_char_ref
                order_cfgs_inst      = gt_char_ins.
    Refer SAP note 549563.

  • REM profile for finished material and its raw material

    Dear Experts
    My question is ,for a repetitive manufacturing scenario
    1) We are maintaining REM profile finished material . Is it necessary to maintain REM profile for its raw materials ?
    2)For raw materials do we need to create the seperate REM profile which is having seperate stock determination rule ?
    Regards ,
    Vishwas.K

    Dear Vishwas,
    1.REM profile assignment is required only for the materials for which production confirmation will be made through T code MFBF or
    MF42N.
    2.For stock determination rule check in control data 2 in the REM profile itself. This setting is linked to the REM profile and further to
    the goods movements posting for the raw materials.(check this setting in T code OSP2).
    Regards
    Mangalraj.S

  • Itunes does not read id3 tags and its a problem

    Ok I have 60 gig of music and all of it is labeled correctly in id3 tags. But when i add them all to itunes some of the songs are blank with no information at all but if i go into "show in explorer" the information in the id3 tags instantly pops up. I'v searched google and found nothing so i hope someone can tell me a fix or another program to use that will organise my music like itunes does and also can put music on my ipod. So please help me with the problem.
    Thanks

    It doesn't work. I'v already tried that. I'v even tried converting the id3 tags and then removing them from the libray and adding them again. Still nothing. It might help if someone could tell me where itunes gets it information for its tags when you add music to its libray seeing as it doesn't use id3 tags for the information like any smart program does.

Maybe you are looking for

  • How do I movie an iphoto album onto a memory card.

    I need step by step instructions on how to put an iphoto album or pic's from my library onto a memory card for a digital picture frame. Also how to make sure the pics are all the same size and will fit the full frame. I need this asap please, It's fo

  • Windows Server 2008 R2 - When svchost.exe memory-leaks Outlook does not load properly

    Hi all, We have a server which runs Windows Server 2008 R2, fully updated, and acts as a Terminal Server (Citrix XenApp 6.5). In the past couple months we have had problems with svchost.exe leaking memory, growing to 2-3GB of RAM usage. Sometimes is

  • Software 2.2 issues

    Have anybody that upgraded to the 2.2 notice that their text now show who text instead of just showing new text message. I like it when it only showed new text message

  • Excellent custom icon editor

    Hello All, Just thought I would share this little tool with the rest of the forum. It is a custom icon editor with a load of nifty features such as dragging template icons in and also storing pre-set icon layouts. I can't really describe it properly,

  • Why is FlashUtil64_17_0_0_169_ActiveX.exe running on my computer?

    Can anyone tell me why Adobe Flash Player behaves like Malware No this is not one of those fake immitators, I have scanned my PC and installed from Adobe.com What I am talking about is the way that Adobe launches an update process DESPITE the fact th