CJ20N-Reservation no. to be passed to PR during material component creation

Hi,
In CJ20N when the user creates a material component, PR is created automatically. In this PR, the Reservation no. should also be passed.
I tried using enhancement COZF0002 and passed the reservation no. as under:
EBAN_IMP-rsnum = RESBD_IMP-rsnum.
But while saving the project, the Reservation no. is not getting stored in the PR.
Can anybody tell me how can I pass the reservation no. to PR?
Thanks in advance.

-

Similar Messages

  • Not reserve incoming puchase order quantity to SO during GATP

    Hi,
    We are using APO GATP - I have a customer requirement wherein, Purchase order & ASN should form part of the sales orders "scope of check" for visibility of delivery dates & quantities during sales order creation but the incoming Purchase order quantities shouldn't be reserved by the sales order. Currently, GATP during sales order creation looks at the incoming PO dates/ quantities and assigns the quantity to sales line item based on the future PO date/ quantity.
    The customer requirement is to "ONLY" look at the PO delivery date & quantities but not assign them to any SO because we have a subsequent BOP (Backorder processing) run to assign all available quantities to open sales orders based on customer priority and order creation dates.
    Thanks in advance for your help!

    Hi Dogboy,
    Thanks for your response.
    To make my requirement clear, let me explain it in a slightly different way - in the current GATP setup, when I create sales orders and execute availability check, if stock is not available or short then ATP looks at future incoming purchase orders and assigns incoming PO quantities to the sales order line item.
    My customer is happy that the GATP check looks at future POs for determining quantities and dates "BUT" they are not happy with sales line items reserving quantities from incoming POs as they want all available stocks in the system to be allocated to sales orders based on maintained BOP priorities only. Its a customer priority oriented business (Pharmaceutical).
    Hence I need a solution which can see the incoming PO quantities and dates during sales order creation but doesn't reserve that PO stock for that sales line item!?

  • How we may by pass quality inspection during PO creation

    Hi Guru,
    How we may by pass quality inspection via selecting document type in the PO. User create dummy PO in multi level marketing indsutry in order to achieve points & awards during month end. Since all the materials subject to quality inspection, material in dummy PO also falls under quality inspection. For your kind information there is no physical movement or GR for this dummy PO. It's just created in the system as I mentioned the purpose the above. I already created seperate document type to diffrentiate this scenario but looking forward how we may by pass quality inspection for this document type. Or is that any t/code which can by pass quality inspection during PO creation. Please advice. Thank you.
    rgds,
    nantha

    Dear Netto,
    As I said before user need to create dummy PO & must do GR in order to get the rewards & bonuses. User do GR in the system but it doesn't involve material movement. My question is how we may by pass the quality inspection for said GR since physically no goods involved.
    Dear JS,
    For your kind information this material subject to quality inspection & it has been set in material master. I tried one more as per your advice. System post this GR to quality inspection eventhough I change to unrestricted use in PO & GR as well before posting maid. Quality Inspection is auto defaulted for said material. Quality inspection is requirement to most of the goods so I can't change that. I'm wondering how we may by pass this just for dummy PO & GR.
    I believe this clarifies your queries. Thank you.
    rgds,
    nantha

  • Passing arguments to a custom component in the constructor

    I would like to know if it is possible to pass arguments to a
    custom component in the constructor when I'm instantiating it
    within Actionscript. I've not seen anyone do this, so at the moment
    I have a couple of public properties defined on the custom
    component and then do the following:
    var myComponent:TestComponent = new TestComponent();
    myComponent.propertyOne = true;
    myComponent.propertyTwo = 12;
    etc.
    Whereas I'd like to do something like:
    var myComponent:TestComponent = new TestComponent( true, 12
    Any ideas if this is possible?

    Another approach as opposed to creating init function is to link symbol with autogenerated class (just assign it a class but do not create *.as file for it) and use it just as graphical view with no functionality (well only MovieClip's functionality).
    ViewClip.as
    public class ViewClip extends MovieClip {
        public var view:MovieClip;
        public function ViewClip(){
            this.view = instantiateView();
            this.addChild(view);
        protected function instantiateView():MovieClip {
            return new MovieClip();
    Circle.as
    public class Circle extends ViewClip {
        public function Circle(scaleX:Number, scaleY:Number) {
            super();
        override protected function instantiateView():MovieClip {
            return new ClassView();

  • Passing value from Portal Development component to Webdynpro component

    Hi experts
    how to pass a value from portal component to a webdynpro component , is it possible, i have both portal and webdynpro --- development components on diffrent tracks,
    Regards
    Govardan

    page 8.
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/c2fad86f-0401-0010-91ac-bdb38595a735?QuickLink=events&overridelayout=true&5003637509947
    any event you named.

  • How do I pass an event up the component hierarchy?

    I have a child component which has a mouse listener and a parent component with a mouse listener. However the child component consumes all the mouse events so the parent doesn't get them.
    Is there a way for a child component to receive mouse events, then decided to pass them back up the component hierarchy so the parent can still receive them too?
    I've spent the last two hours on Google and can't seem to find anything relevant.
    Cheers, Eric

    Unfortunately, you cannot
    override this method since it ispackage-private.
    That was wrong of mine. Package-private members are
    visible to subclasses too (the package access is a
    complete superset of protected access). So you CAN
    override dispatchEventImpl and do your stuff there.
    When I try that the compiler gives me the following warning
    The method SheetElementPlacementComponent.dispatchEventImpl(AWTEvent) does not override the inherited method from Container since it is private to a different package.
    It lets me define the method, but does not let me override it.
    I just wonder why they made dispatchEvent() final,
    when it just calls dispatchEventImpl(), and it is
    not final...
    Another useful method is Component.enableEvents()
    and disableEvents() (which are both protected). You
    can use them to modify the so called event mask of a
    component, which is used to signify which events a
    Component is interested in. Disabled events (= not
    on the event mask) are not delivered to the
    component and the dispatcher skips it, looking for
    parent components which have enabled the event. For
    example, if you have a JButton in a scroll pane and
    you scroll the mouse wheel on the button, the event
    is dispatched to the scroll pane, even though it
    occurs over the surface of the button. That's
    because a button is not interested in mouse wheel
    events.
    You can use that hack the following way: In the
    mouse listener for your child component, after you
    have done your work, disable mouse events for the
    component and then post the event again (invoke
    dispatchEvent(theEvent)). That way, the event should
    be delivered to the closest parent that is
    interested in mouse events. This is done
    synchronously, so after all listeners for the parent
    components have finished, the dispatchEvent() method
    returns in your listener for the child component.
    Then you re-enable mouse events on the child
    component in order to receive the next mouse event.
    I don't know if this works or if it has any side
    effects, but it's worth a try...I can't call dispatchEvent() because it creates an infinite loop resulting in a stack overflow. It tried calling((JComponent) getParent()).dispatchEvent(e); but this does not help either, the parent never gets the event.
    Hope this helps you more :).
    Greets,
    MikeSorry, I still can't find a way around it other than to redesign my UI.
    FYI I created a bug report and Sun have assigned it Bug Id: 6571453. Everyone please vote on this if you think it's a cool feature request.
    http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6571453
    Cheers, Eric

  • Passing Arrays to the DataGrid Component

    How's it going my peoples? I'm having some difficulties
    passing Arrays into a DataGrid Component. It just doesnt seem to
    work for me. Anyone have any ideas on the best way of doing this?
    Thank you in advance.

    We have Our site build using odp.net but suddenly it stoped working on the production server. MS Provider is working fine in that case. so we want to have one copy of solution with MS provider as backup copy so in future if any failure occurs to odp.net we can use this copy. So for that I need to know how to pass arrays to oracle using MS Provider.
    Regards,
    Suresh

  • Error during material reservation in MB21

    Dear all
    During material reservation getting below error
    Date   1831 cannot be converted (please correct) Message no. AG011
    Regards
    Arun

    Dear Arun,
    Please let me know the process by which you have resolved the issue, since i am also getting same kind of error in production server.
    Regards,
    Piyush

  • Pass kernel arguments during install to force sata detection

    Is it possible to pass kernel arguments during install of the 0.7.1 noodle base iso? I want the installer to detect my harddisc (with is a pata drive but I have a sata controller in my laptop) as sata. (Needed because of this problem http://bbs.archlinux.org/viewtopic.php?t=17696)
    Update
    I managed to pass the kernel argument (just typed arch hdc=noprobe) but I have to do hdd=noprobe as well because otherwise my harddisc is not recognized at all. But as a result, I'm unable to get my dvd-drive working and for that I'm unable to use the reiserfs to format my root disc. Also my ethernet module can't be loaded so I'm still unable to install
    Solved
    Problem solved, I managed to chroot into my install with the install cd (after doing the install but not having installed bootloader) and with passing kernel arguments hdc=noprobe hdd=noprobe I was able to install lilo on sda. I edited fstab and the kernel 2.6.15 handles the disc and the dvd-station very well. So I'm happy

    Hmm, I saw that klibc before I installed to the pata drive.  I just ran pacman -Rd klibc before upgrading and had no problems.  Though, since klibc is a dependency of mkinitcpio, I should try removing the symlink rather than the package itself.

  • Passing variable to an outside component

    I intent to create a web site of products. Since there will
    be too many lines of code to work only with one file, I decided to
    create component for each state. Those component are simply VBox
    component including everything necessary to display the nature of
    the state. For an example, calling the state local:stateContactComp
    will show the state for contact (equivalent to a page of contact
    from the web 1.0 philosophy if I can say it in that way).
    Now, the problem I encounter at this moment is the current
    product. The home page is designed to navigate through the products
    available and once the user click on one product, he/she will be
    redirected to the state of product where the system will call the
    stateProductComp.mxml based on a VBox (but followed by many
    component inside to show the details of the product). This is basic
    but what I don't know yet is how to pass the current product (the
    one that the user clicked on) to the component which is called. At
    the beginning I sort of though that the component called was
    automatically binded to the main component but it seems to not. I
    alreay declared a public var currentProduct:Product in my
    stateProductComp.mxml but I still searching how to transfer the
    information.
    Preferably, I would prefer to use the main variable which
    have a similar line (public var currentProduct:Product) associated
    to a class to define the Product. I would prefer to use the main
    variable for memory worry but maybe there is no way to take care of
    the memory in this case (which I doubt!).
    Anyway, what I need to know is the best practice to work with
    separate files (for lenght of code source issue) while we are
    working with states.
    I hope I was enough clear to understand my problem, if not,
    please let me know.
    Keywords should be: passing a variable to a component in
    another file.

    I knew it was possible to do it and I found how!!!
    Simply by adding the value through the call of the component.
    In my case, I was calling the component while changing state
    so the line of code was as follow:
    1) <mx:State name="stateProduct">
    2) <mx:RemoveChild target="{menu2Items}"/>
    3) <mx:AddChild relativeTo="{pageContent}"
    position="lastChild" creationPolicy="all">
    4) <mx:VBox id="pageContent2" width="100%"
    height="100%">
    5) <local:stateLampeComp
    currentProduct="{vCurrentProduct}"/>
    6) </mx:VBox>
    7) </mx:AddChild>
    8) </mx:State>
    So the line 5 show my call to the component containing all
    the layout to display the details of the product pre-clicked and by
    indicate currentProduct (variable from the stateLampeComp
    component) = {vCurrentProduct} (variable from the caller
    component), the system can now inter-connecting the values from one
    component to the other.
    Voilà!

  • Can you pass parameters from one application component to another?

    I want to have a page of portlets showing applications components (small forms, reports etc) with co-ordinated information.
    That is, I want the user to enter a single criterion in a portlet and then I want all the portlets to respond by querying the results for that single criterion.
    I'm building an interface for a system based on normalized tables with many-to-many relationships and therefore intersecting-entities.
    (I looked at master-detail forms under webdb, so I don't think they'll do the job. I have data from about 6 tables that I want co-ordinated.)
    Links also don't seem to be what I want, because I don't want extra clicks or one portlet to be replaced by another.
    I've seen the Parameter Passing example, and that is the sort of coordination I'd like. In fact that's what gave me the idea. But that is based on custom database portlets, whereas I really want to use Portal forms and reports.
    Is this possible?
    null

    The general Oracle9iAS Portal forum is your best bet for this question.

  • Passing Parameters to a Report Component

    How can I prompt for From and To dates and pass these parameters to a report component to limit the number of detail set records retrieved

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Sunil:
    Stephen is right.
    The problem may be having a default value for your bind variable.
    <HR></BLOCKQUOTE>
    I have the same problem. How do I dynamically allocate the default value for a bind variable? I'm making a drill down report in which I want to restrict the query based on the unique key of the selected link.
    Any help is appreciated.
    Thanks.
    null

  • Passing function to a custom component

    Hey so I have button that is in a custom component, say:
    <mx:HBox width="200" height="72" xmlns:mx="http://www.adobe.com/2006/mxml">
        <mx:Button width="72" height="72"  styleName="{buttonStyleName}"/>              
        <mx:Text text="{description}" width="100%" height="100%" textAlign="justify"/>
    </mx:HBox>
    And on another file i use it simply like this:
    <local:LabelComponent buttonStyleName="componentRssButton"  />                          
    However, I want the button on my custom component draggable, so I would like to pass a mouseMove handler but i could not find  a way to do that. Of course that easiest way is to have my whole custom component draggable like so:
    <local:LabelComponent mouseMove="componentRssButton"  />                
    but i want the button in the custom component the only one draggable.
    Thanks.

    it's wired to pass a function.
    EventListener should be the way to go.
    give your button an id, say btn1
    <mx:Button id='btn1' width="72" height="72"  styleName="{buttonStyleName}"/>
    and in your code
    <local:LabelComponent id='myComp' creationComplete='makeButtonDraggable()' buttonStyleName="componentRssButton"  />  
    <script>
    function makeButtonDraggable():vd
         myComp.btn1.addEventListener(mouseMove, componentRssButton);

  • 'Reserved'  qty from Tcode MMBE in zreport for (Material, Plant & SLoc)

    HI,
    In MMBE for combination of Material, Plant & SLoc -->
      We have column displayed as "Reserved".
    I want to display this Qty in z report.
    I searched in all Stock related tables - like MARC, MARD, MBEW, S032...etc.
    But unable to find the total of Reserved Qty.
    Shall I use RESB for this?
    But it has thousand of records (for same Mat, Plant & sloc  combination)...
    Which "WHERE"  conditions will work?

    try with the field bdmng in rseg.
    Edited by: Keshav.T on Jun 29, 2010 12:20 PM

  • How to pass the KeyEvent from one component to other

    I am able to get a key event for a scroll bar from that scroll bars key listener. Now i want to pass this key event to another components key listener. How can i do this.

    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class KeyCommunication
        public static void main(String[] args)
            final JScrollBar
                left  = new JScrollBar(JScrollBar.VERTICAL),
                right = new JScrollBar(JScrollBar.VERTICAL);
             * if KeyEvent originates with left, forwards KeyEvent to right
            left.addKeyListener(new KeyAdapter()
                public void keyPressed(KeyEvent e)
                    int keyCode = e.getKeyCode();
                    int direction = 0;
                    if(keyCode == KeyEvent.VK_UP)
                        direction = -1;
                    if(keyCode == KeyEvent.VK_DOWN)
                        direction = 1;
                    left.setValue(left.getValue() +
                                  left.getBlockIncrement(direction) * direction);
                    if(e.getSource() == left)
                        right.dispatchEvent(e);
             * forwards KeyEvent to left scrollbar if KeyEvent originates here
            right.addKeyListener(new KeyAdapter()
                public void keyPressed(KeyEvent e)
                    int keyCode = e.getKeyCode();
                    int direction = 0;
                    if(keyCode == KeyEvent.VK_UP)
                        direction = -1;
                    if(keyCode == KeyEvent.VK_DOWN)
                        direction = 1;
                    right.setValue(right.getValue() +
                                   right.getBlockIncrement(direction) * direction);
                    if(e.getSource() == right)
                        left.dispatchEvent(e);
             * paints track of focused scrollbar blue
             * use tab key for navigation between scrollbars
            FocusListener l = new FocusListener()
                Color bgColor = UIManager.getColor("ScrollBar.background");
                public void focusLost(FocusEvent e)
                    JScrollBar scrollBar = (JScrollBar)e.getSource();
                    scrollBar.setBackground(bgColor);
                    scrollBar.repaint();
                public void focusGained(FocusEvent e)
                    JScrollBar scrollBar = (JScrollBar)e.getSource();
                    scrollBar.setBackground(Color.blue);
                    scrollBar.repaint();
            left.addFocusListener(l);
            right.addFocusListener(l);
            JPanel panel = new JPanel(new GridBagLayout());
            GridBagConstraints gbc = new GridBagConstraints();
            gbc.insets = new Insets(10,0,10,0);
            gbc.weightx = 1.0;
            gbc.weighty = 1.0;
            gbc.fill = gbc.VERTICAL;
            panel.add(left, gbc);
            panel.add(right, gbc);
            JFrame f = new JFrame();
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            f.getContentPane().add(panel);
            f.setSize(400,400);
            f.setLocation(200,200);
            f.setVisible(true);
    }

Maybe you are looking for

  • JRockit 1.4.2_04 released

    An update release for the JRockit 1.4.2_04 JVM has been released and is now available from the BEA download site (http://commerce.bea.com). This is a maintenance update to the JRockit 1.4.2_04 JVM release that was previously released in April '04. So

  • Music from iTunes on MAC not syncing with iPAD2.

    I have had an IPAD2 for 18 months and have had no problem synchronising with iTunes until recently. I'm not if the problem started when I moved from using a PC to a MacBook Pro Retina for iTunes, or when I did the last iOS upgrade on my IPAD. Here's

  • Strange slowness in creating new folders.

    I have not noticed any troubles with my mac in general. But for some reason when I go into a certain folder in my documents and create a new subfolder I get a spinning ball and it takes about a mintue (no joke) for the ball to stop so I can name it.

  • Duplicate set of backups on ipad

    Hi, I bought a new ipad air recently and restored from my backup on the icloud (nameed XYZ's ipad") which was from my old ipad 2. I have reset my old ipad 2 to factory default prior to restoring to my new ipad air. However, after the restoration comp

  • Older model Airport Express won't work with Mountain Lion Airport Utility

    just upgraded to Mountain Lion and noticed that of my network of three airport expresses connected to various stereo speaker systems throughout the house, one of the older models won't work with the supplied version of Airport Utility (v 6.1). Here i