Multiple times Issue of material against same Sub. con. PO

Hi,
       I have one issue,  we have created one Sub contract PO, and we have done MB1B ref. to PO and Challan is created by one user,  and when another user comes he has also issue the material in MB1B against same PO and created Challan  even thpugh  the full PO qty. is transfer in first MB1B and challan,  so How to set error message for this onece the full qty. of material issue against one order next time when user try to issue material gainst same PO user should get the error message.
regards,
  zafar

It can be restricted to some extent  if child materials in BOM is batch activated.
or
Restrict p.o authorizatin to single user,he should lock p.o line items once materials are issued using challan.
Since there is no control in MB1B/Challan creation until material is goods receipted.

Similar Messages

  • Excess Issue of Material against Production Order

    Hi
    For Goods Issue of Material against Production order , i want the system to control excess issue of material against Production order.  How can it be controlled.
    Regards
    Madhesh Kumar

    Hi Madhesh,
    there are many loop holes to issue excess stock against production order
    so better you use user exit so that when ever any material issued against production order and it is in excess then throw error
    Thanks
    Bala

  • Process request method executing multiple times issue

    Hi ALL,
    In my controller code , process request method is executing multiple times and inserting multiple data into the table, can any body help me how to resolve this issue.
    I have the below code in my process request:
    OAApplicationModule am = (OAApplicationModule) pageContext.getApplicationModule(webBean);
         am.invokeMethod("InsertRecord",null);
         OAMessageLovInputBean oalovinputbean=(OAMessageLovInputBean)webBean.findIndexedChildRecursive("ccustatus") ;
         oalovinputbean.setValue(pageContext,"INPROGRESS");
         String userName = pageContext.getUserName();
          System.out.println("User NAme is :" + userName);
          OAMessageTextInputBean pUserId = (OAMessageTextInputBean)webBean.findChildRecursive("item32");
          pUserId.setValue(pageContext,userName);
          OAMessageTextInputBean pchangedby =  (OAMessageTextInputBean)webBean.findChildRecursive("item34");
          pchangedby.setValue(pageContext,userName);
          if((("on").equals(pageContext.getParameter("rrchkbox"))))
                  String whereclause1=(String)pageContext.getTransactionValue("whereclause");
                  String workordnum=(String)pageContext.getTransactionValue("workordnum");
                  String rrnum =(String)pageContext.getTransactionValue("rrnum");
                  String ponum =(String)pageContext.getTransactionValue("ponum");
                  System.out.println("whereclause test1"+whereclause1);
                  String status=pageContext.getParameter("ccustatus");
                  System.out.println("DEBENDRA LINE STATUS:" + status);
                  Serializable param[] = {whereclause1,workordnum,rrnum,ponum};        
                           // am.invokeMethod("getSearchData1",param);
                           // am.invokeMethod("checkSelectedrow",param);       
                 Serializable vcnt =  am.invokeMethod("processPOData",param);  
    Below code written in AM:
    public void InsertRecord()
            XXDPECONTAINERVOImpl vo = getXXDPECONTAINERVO1();
            vo.setMaxFetchSize(0);
            XXDPECONTAINERVORowImpl row = (XXDPECONTAINERVORowImpl)vo.createRow();
            oracle.jbo.domain.Number empNum = (oracle.jbo.domain.Number)getOADBTransaction().getSequenceValue("XXDPE_CONTAIN_SEQ");
            row.setContainerizationId(empNum);
            vo.insertRow(row);
            row.setNewRowState(row.STATUS_INITIALIZED);
    Please help me out.

    hi,
    PR() will be called whenever your page will load, so the number of times you will load your page all the time your PR will be called and it will call the AM method.
    otherwise put some condition and call the insert method from your PR.
    Regards
    Mahesh

  • Additional Issuance of material against same order

    Gurus,
    I have faced a situation for which our client need additional(unplanned) raw material on process order. the solution is that we can simply add the line item on process order by cor2 the system will automatically create the reservation against that particular line item which is a ROH. on screen of MIGO u can easilly post the goods against movement type 261 i have tried to remove tht movement type from OMJJ and other from shop floor node but failed. so i assumed as soon as i pick goods issue against order the system automatically assigns it the movement type of 261. the problem is this the client needs a report where he needs to identify additional (unplanned) issue seperately one solution is this if i can activate my reason for issuance than it will be easy to seperate both issues from same movement type i.e. 261.
    What input i need from you guys is that is this scnario is good one or any one can suggest any other work around from any transaction or can recommand any settings in spro. i m open to test new things as well.
    Points are guranted even things didn't work for me.....

    I was able to do it ..........

  • My firefox is the most updated version but on certain sites like youtube and live mail, it keeps detecting an older brower. i have reinstalled firefox multiple times but still face the same problem. is there anyway to solve this?

    it's currently on version 3.6.13 but I have been facing this problem for months. I tried completely removing firefox from my applications (on my macbook) and reinstalling but the same problem persists, with websites detecting firefox version 2.0 instead of 3.6.

    You need to reset your user agent string, for details see [[Websites or add-ons incorrectly report incompatible browser]].

  • Trying to remove firefox, it tells me to restart pc. I have multiple times and nothing, still get same message,,close the pc.. I am plenty old but very green with computers

    windows xp

    Hi,
    Please see [http://helpx.adobe.com/flash-player/kb/installation-problems-flash-player-windows.html this].
    [http://forums.adobe.com/community/flashplayer Adobe Flash Forum]

  • ActionListener invoked multiple times Issue

    Hi,
    I have defined a CommandLink with ActionListener and ShowPopupBehaviour (onclick)
    Inline Popup box has a Editable Table.
    I would like to perform the ExecuteQuery() on the VO with ViewObject.QUERY_MODE_SCAN_DATABASE_TABLES when CommandLink is pressed to refresh the data in the table that is shown in popup.
    When I click on the CommandLink VO query is executed as expected.
    I can see the results on the Popup refreshed from the database tables.
    When I try to change the value in the popup table the ActionListener of CommandLink is executed again. (I have ran this project in Debug Mode. I have set a breakpoint in ActionListener method).
    What could be the Reason. Any ideas how to go over this.
    Thanks,
    Satya
    code snippet:
    <af:commandLink id="UpdateWIPCL"
    partialSubmit="true"
    text="Edit WIP"
    rendered="#{pageFlowScope.pRevenueProjectId !=null }"
    actionListener="#{ProjectSelection.EditWIPLink}">
    <af:image source="/adf/images/update_ena.png"
    shortDesc="Edit Work In Progress for all Sellers"
    id="UpdateWIPImg"/>
    <af:showPopupBehavior popupId="WIPUpdatePopup"
    triggerType="click"/>
    <af:popup id="WIPUpdatePopup"
    contentDelivery="lazyUncached"
    binding="#{ProjectSelection.wiPUpdatePopup}">

    I have pasted part of it.
    Now pasted complete commandLink
    <af:commandLink id="UpdateWIPCL"
    partialSubmit="true"
    text="Edit WIP"
    rendered="#{pageFlowScope.pRevenueProjectId !=null }">
    <af:image source="/adf/images/update_ena.png"
    shortDesc="Edit Work In Progress for all Sellers"
    id="UpdateWIPImg"/>
    <af:showPopupBehavior popupId="WIPUpdatePopup"
    triggerType="click"/>
    <af:popup id="WIPUpdatePopup"
    contentDelivery="lazyUncached"
    binding="#{ProjectSelection.wiPUpdatePopup}">
    <af:dialog id="dialog2"
    closeIconVisible="false"
    title="Edit Work In Progress"
    dialogListener="#{ProjectSelection.EditWIPDialogListener}"
    clientComponent="true"
    resize="on"
    stretchChildren="first"
    contentWidth="650"
    contentHeight="250">
    <af:table value="#{bindings.SellersWIPVO1.collectionModel}"
    var="row"
    rows="#{bindings.SellersWIPVO1.rangeSize}"
    emptyText="#{bindings.SellersWIPVO1.viewable ? 'No data to display.' : 'Access Denied.'}"
    fetchSize="#{bindings.SellersWIPVO1.rangeSize}"
    rowBandingInterval="0"
    id="t7"
    columnStretching="column:c35">
    <af:column sortProperty="SellingRegionName"
    sortable="false"
    headerText="Seller"
    id="c36"
    rowHeader="true"
    align="center">
    <af:outputFormatted value="#{row.bindings.SellingRegionName.inputValue}"
    id="of6"
    inlineStyle="text-align:right;"/>
    </af:column>
    <af:column sortProperty="Elm"
    sortable="false"
    headerText="ELM"
    id="c35"
    align="right">
    <af:outputFormatted value="#{row.bindings.Elm.inputValue}"
    id="of5"
    inlineStyle="text-align:right;">
    <af:convertNumber groupingUsed="false"
    pattern="#{bindings.SellersWIPVO1.hints.Elm.format}"
    minFractionDigits="4"
    maxFractionDigits="4"/>
    </af:outputFormatted>
    </af:column>
    <af:column sortProperty="Revenue"
    sortable="false"
    headerText="#{bindings.SellersWIPVO1.hints.Revenue.label}"
    id="c39"
    align="right">
    <af:outputFormatted value="#{row.bindings.Revenue.inputValue}"
    id="of7"
    inlineStyle="text-align:right;">
    <af:convertNumber groupingUsed="true"
    pattern="#{bindings.SellersWIPVO1.hints.Revenue.format}"
    minFractionDigits="0"
    maxFractionDigits="0"
    integerOnly="true"/>
    </af:outputFormatted>
    </af:column>
    <af:column sortProperty="Labor"
    sortable="false"
    headerText="#{bindings.SellersWIPVO1.hints.Labor.label}"
    id="c38"
    align="right">
    <af:inputText value="#{row.bindings.Labor.inputValue}"
    label="#{bindings.SellersWIPVO1.hints.Labor.label}"
    required="#{bindings.SellersWIPVO1.hints.Labor.mandatory}"
    columns="#{bindings.SellersWIPVO1.hints.Labor.displayWidth}"
    maximumLength="#{bindings.SellersWIPVO1.hints.Labor.precision}"
    shortDesc="#{bindings.SellersWIPVO1.hints.Labor.tooltip}"
    id="it28"
    contentStyle="text-align:right;">
    <f:validator binding="#{row.bindings.Labor.validator}"/>
    <af:convertNumber
    pattern="#{bindings.SellersWIPVO1.hints.Labor.format}"
    integerOnly="true"
    minFractionDigits="0"
    maxFractionDigits="0"/>
    </af:inputText>
    </af:column>
    <af:column sortProperty="Odc"
    sortable="false"
    headerText="Other Direct Costs"
    id="c37"
    align="right">
    <af:inputText value="#{row.bindings.Odc.inputValue}"
    label="#{bindings.SellersWIPVO1.hints.Odc.label}"
    required="#{bindings.SellersWIPVO1.hints.Odc.mandatory}"
    columns="#{bindings.SellersWIPVO1.hints.Odc.displayWidth}"
    maximumLength="#{bindings.SellersWIPVO1.hints.Odc.precision}"
    shortDesc="#{bindings.SellersWIPVO1.hints.Odc.tooltip}"
    id="it30"
    contentStyle="text-align:right;">
    <f:validator binding="#{row.bindings.Odc.validator}"/>
    <af:convertNumber
    pattern="#{bindings.SellersWIPVO1.hints.Odc.format}"
    integerOnly="true"
    minFractionDigits="0"
    maxFractionDigits="0"/>
    </af:inputText>
    </af:column>
    <af:column sortProperty="Ops"
    sortable="false"
    headerText="Outside Professionals"
    id="c40"
    align="right">
    <af:inputText value="#{row.bindings.Ops.inputValue}"
    label="#{bindings.SellersWIPVO1.hints.Ops.label}"
    required="#{bindings.SellersWIPVO1.hints.Ops.mandatory}"
    columns="#{bindings.SellersWIPVO1.hints.Ops.displayWidth}"
    maximumLength="#{bindings.SellersWIPVO1.hints.Ops.precision}"
    shortDesc="#{bindings.SellersWIPVO1.hints.Ops.tooltip}"
    id="it18"
    contentStyle="text-align:right;">
    <f:validator binding="#{row.bindings.Ops.validator}"/>
    <af:convertNumber
    pattern="#{bindings.SellersWIPVO1.hints.Ops.format}"
    integerOnly="true"
    minFractionDigits="0"
    maxFractionDigits="0"/>
    </af:inputText>
    </af:column>
    </af:table>
    </af:dialog>
    </af:popup>
    </af:commandLink>

  • TS2755 keep receiving the same text message multiple times, at the same time of the night. How can I stop this?Thabnks

    Hi
    I keep on receiving the same text message multiple times and at around the same time each night. Any idea how I can stop this happening? The text messages are originating from to separate Saudi Arabian mobile numbers. Both these people are listed in my contacts so do you think if I delete their names it might stop the texts coming htrough each night?
    Cheers

    Deleting the people from your contacts will not stop the messages. Have you tried talking to the people and finding out if they're sending you messages? You could try contacting your carrier and finding out what blocking services they offer. However, theat would block all messages from those people.

  • Error while Issuing material against STO

    Dear All,
                 I made a STO.but while issuing the material Against STO,the error "                                                               
    the system has not found any order items in the purchase order " come.no release stragaey on STO & also No purchase order history in P.O.,I m doing Thru MM by MVT 351.
    It's urgent.
    Thanking you.

    How are you trying to issue material? Via MM transaction?
    if yes, please check if the set up is for using SD delivery.
    Let me know how it goes. We can take it from there.
    Lakshman

  • Error while issue material against production order

    Hi,
      In our development server recently we have created on ecompnay code and plant by copying the one existing company code and plant,  now for this new plant I have created new profit center with KE51  and after that I have create done cost ceneter in that this new profit center is assign   now while goods movment with MB1A with movmen type 201, 202  it works OK system is not giving any error  but while issue the material against production order in MB1A with movement type 261 system is giving error message
    No postings can be made to profit center DUMMYBAOPC in company code MT50
    Message no. KM183
    Diagnosis
    Profit center DUMMYBAOPC cannot receive postings in company code MT50.
    this profit center DUMMYBAOPC we use in old compnay code and for this new company code is not activated  for new we have new profit center  then it is  linking to that  what can be the solution.
    regards,
    zafar

    Hi,
      After asigning new profit center in the Production order problem solve.
    regards,
    zafar

  • Multiple OS issues with Email set up; "People" ; Synching phone not working as advertised

    Nokia Lumia 822
    Purchased yesterday (2/10/13)
    So far I have spent 14 hours attempting to resolve what feel like endless errors and bugs. If I can;t get these resolved in the next 48 hours the phone goes back. I am so disappointed  I waited especially for this phone - heard great stuff. My experience is it sucks. Worst phone ever.
    1) POP3 email accounts are non functional. I have attempted to set up and delete and re-set up now multiple times. Each time presents a fresh new nightmare.
    Issue 1 - Email account  receives email but will not send. Error message goes something like  <" Problem sending message. Message failed to send. Problem with Files or Data on your device." >
    Issue 2 - Tapping email + accounts sends me back to start screen cannot even set up account
    Issue 3 - I  get to add email account I enter my information but no account is created
    Issue 4 - I set up an account and I get an error message stating my information cannot be found.
    Issue 5 - trying to open email from start screen just resets to start screen  over and over and over NEVER opens the account.
    These are deal breaker issues. I have multiple email accounts on different platforms. If I cannot access my various emails AND send from those accounts this is NOT the phone for me.
    2) PEOPLE does not function. ALSO multiple various issues and never the same one twice.
    Issue 1 - I tap on a contact and get sent to the start screen over and over and over  and over again.
    Issue 2 I tap on a contact and the phone freezes and wont respond unless I pull the battery
    Issue 3 I open a contact and make an edit, save the contact but the change is never reflected in the list
    Issue 4 I try and search for a contact and the search freezes - only option is to return to start screen
    3) Scrolling thru any APP randomly takes me back to start screen.
    I dread attempting to synch Outlook calendar and contacts on my PC to hotmail - especially if I can't even set up email. And it seems like even holding it will jettison me out of anything I'm doing and back to start screen.
    If I can't get these issues resolved.  look like I'll be going  back to my 3 year old Blackberry Bold which performed flawlessly. It may not be the most impressive phone out there but it did what I needed it to do with out any issues.

    Interesting Twitter conversation VZWSupport on Twitter.  It was suggested to try a HARD reset - and if that doesn't work take the phone back.
    Since I don;t have anything set up yet  that's my solution.
    I see a BlackBerry Z10 in my future

  • TS2972 Apple TV (2) works great with everything BUT iTunes on my computer, AND I can turn Home Sharing Off and On multiple times and NOTHING show up under "shared" and NOTHING shows up under Computers on Apple TV???

    My Apple TV (2) works fine with my iPad and iPhone.
    My iTunes syncs with my iPad and iPhone.
    I have turned "Home Sharing" off and on multiple times - of course using the same AppleID - and NOTHING shows up under Shared (and then Shared goes away) and NOTHING shows up under "Computers" on Apple TV?
    Why aren't Apple TV and iTunes smart enought to work with each other on the same network?  This should not be this difficult...

    I think I am having the same problem.
    My issue: since updating the software on ATV, I get an issue where shortly after starting a movie or video of some sort streaming from iTunes on my iMac the vid stops and Apple TV tells me that I need to connect to my Home Sharing account.  Sometimes I can fix it by turning Home Sharing off and back on in my settings.  Sometimes I need to completely reboot the AppleTV!
    Any suggestions???

  • PDF, with electronic signature, will not save. In Finder it's nowhere, tried multiple times..

    Started in Preview to save...but PDF, with electronic signature, will not save. In Finder it's nowhere, tried multiple times.

    I am having the same problem with signatures.  I am including a form in a pdf portfolio to collect signatures from different users who have Reader.  I make sure that features have been extended for reader. Most of the time they are okay.  But every once in a while (at least one every two weeks) I get a user telling me they can't sign.  No message or error of any kind, just a quick blink but no signature.  As a work-around I've had to save a copy and re-extend features.  This can be time consuming when there are a few documents I need to circulate.  Please advise.

  • Reg:Consumable material in Sub con scenario

    Hi experts,
       I have an issue in sub-con scenario.For consumable material we are not maintained in  BOM .For this how to map in sap for inventory purpose or how to knock of the consumables stock at sub- con place.Kindly suggest me .
    Thanks in advance
    vichu

    Hi Experts,
       For finished goods i maintained BOM,for consumable item not maintained in BOM,now i want to issue the consumable item to sub -con & it should be accountable or it should show that has been consumed in that finh goods .For this pls suggest me & i am in a urgency.
    Thanks in advance
    vichu

  • Challans against Sub con PO

    Dear All ,
    i need the reports for :
    against the sub con PO  how many sub con challans we have made /
    Regards,
    Edited by: venky  shree on Jan 30, 2009 8:35 AM

    J1IFR is the trasaction code
    regards
    prasad

Maybe you are looking for