Issue of multiple delivery created from VL10D

Hi,
  I am creating deliveries using VL10D for multiple PO's with same customer and need one delivery to be created but its creating multiple delivery.
  Please let me know what setting is causing the creation of multiple delivery.
Thanks.

Hi,
Process the purchase orders through VL04 transaction to create a single delivery for multiple PO's.
Regards,
Bharat

Similar Messages

  • Delivery date getting calculated wrongly in delivery created via VL10D

    Hi Gurus,
    We have a strange issue, where in delivery date is getting calculated wrongly for replenishment delivery created via VL10D.
    When we are creating via VL10D , delivery date is getting the additional 30 days from MaxDlvCrteDate . With initial investigation i see that VL10D has delivery creation profile 0101 for which no of days maintained in max delv creation date is 30 .
    I assume that the delivery date is getting the additional days from delivery creation profile felid no of max delv creation date .
    I have created the delivery on 24.03.2011, as per the route no of TL time is 9 days , So Ideally the delivery date should be 04.04.2011 , however system has calculated it as 23.04.2011
    Delivery no             No of days in MaxDlvCrteDate                        Delivery  date
    213443158                           30                                                       23.04.2011
    If I create the delivery for the same PO using t-code VL10B, then delivery date is calculating correctly.
    Not sure why system behavior is strange.
    Please help me with your inputs to resolve the issue..
    Thanks in advance

    Please request one Abaper  to solve this problem.
    You cannot due nothing as the problem is in Code.
    Regards
    William

  • BAPI needed for goods receipt for delivery created from sales order

    Hi experts,
    I need help.
    I want to post goods receipt for the delivery created from sales order. I have tried out BAPI BAPI_GOODSMVT_CREATE but I am not able to post it.
    Is there any way to post this? I need BAPI and not FM MB_*....
    Thanks & REgards,
    Bhavin A. Shah

    Hi,
    Please refer to link,
    https://wiki.sdn.sap.com/wiki/display/Snippets/BAPI_GOODSMVT_CREATE-ABAP
    Regards
    Shree

  • Issues to Production Orders created from Sales Order

    We have multiline Sales Orders that create a Production order for each sales order line (can be up to 70 or 80 per SO). We normally backflush these via multiple MB1A transactions after the SO has been completed. It is a lot of work doing the required issues to reduce stock levels and consequently they are always "late" being done and the stock is always out of date until the movements (type 261) are processed - generally monthly!!
    As a result, an Access Database has been created that reduces stock in that by entering the SO number and this is used for Stock enquiries. I would like to get rid of this Access database so as I'm sure other people have hit this same problem, is there a way of doing the same in SAP i.e. enter SO number and then relevant stocks are reduced accordingly.
    Any help would be appreciated.
    Thanks in advance
    Jim

    Hi,
    I am not clear why you are manually doing the process? When the production order is confirmed for each operation (CO11) the goods movement should be posted then, backflush selected in work centre or in the production order.
    Any failures can be processed via COGI rather than a database.
    Thanks.

  • Gross weight not picked in delivery created by vl10d.

    Hi All,
      I am creating background delivery for STO by tcode vl10d. For a particular material gross weight is maintained in material master but it is not geting displayed in gross weight field after creating delivery in loading tab. wat may the cause of this problem & how it can be removed???
    urgent help reqd....
    Thanx
    Deepak Kumar

    Hi Deepak
    It is flowing in sales order??
    Thanks
    G. Lakshmipathi

  • Error in Planned GI Date when delivery created from APO TP/VS

    Hi All,
    The problem being faced here is that the Planned GI date & Planned pick up date in delivery is changing to the date on which the shipment ends, when generated through 'OLTP Generation of Deliveries'.
    I will explain the problem more in details
    I created the Sales order for a customer today i.e. on 21/11/07. The system calculated the MAD & RDD correctly in Sales Order. Shipment formed against this Sales order in TP/VS. TP/VS suggested correct shipment activities such as Goods Issue, Loading & Shipment end considering transit Time of 24 Hrs. I then
    generated deliveries through 'OLTP Generation of Deliveries' & delivery also got created successfully in R/3. However the Planned GI date in the delivery is shifted by one day & falling on next day i.e. on 22/11/07 (the date on which the shipment is completing). Also the material availability date also gets shifted accordingly.
    This is not matching with TP/VS results where the Goods Issue as per TP/VS is 21/11/07. Hence the Planned GI date in delivery should be 21/11/07 & not 22/11/07.
    I have checked the Time Zone consistency in APO & R/3 & both match with each other.
    For your information the system used are SCM 4.1 SP10 & ECC 5.0
    Can any one suggest how to resolve this issue ?
    Thanks
    V Vasudevan

    I hope by this time you must have resolve this issue or your query. If possible, Please share your observations

  • Issue in deploying webservice created from a JWS file.

    Hi,
    I tried deploying the helloworld sample webservice. Here are the files that i used.
    h1. HelloWorldImpl .java
    package com.agile.ws.helloworld.v1;
    import java.security.Principal;
    import javax.annotation.Resource;
    import javax.jws.WebMethod;
    import javax.jws.WebParam;
    import javax.jws.WebResult;
    import javax.jws.WebService;
    import javax.jws.soap.SOAPBinding;
    import javax.xml.ws.WebServiceContext;
    import weblogic.jws.Policy;
    @WebService(name="HelloWorld", serviceName="HelloWorldService", targetNamespace="http://xmlns.oracle.com/AgileServices/Core/HelloWorld/V1")
    @Policy(uri="policy:Wssp1.2-2007-Saml2.0-Bearer-Https.xml")
    @SOAPBinding(style=SOAPBinding.Style.DOCUMENT, use=SOAPBinding.Use.LITERAL, parameterStyle=SOAPBinding.ParameterStyle.WRAPPED)
    public class HelloWorldImpl {
    @Resource private WebServiceContext ctx;
    @WebResult(name="response", targetNamespace="http://xmlns.oracle.com/AgileServices/Core/HelloWorld/V1")
    @WebMethod()
    public HelloWorldVO sayHello(@WebParam(name="IntegerInput", targetNamespace="http://xmlns.oracle.com/AgileServices/Core/HelloWorld/V1") HelloWorldVO request) {
    Principal prp = ctx.getUserPrincipal();
    String username = prp.getName();
    String message = "User Name:" + username + "\tMessage:" + request.getMessage();
    HelloWorldVO response = new HelloWorldVO();
    response.setMessage(message);
    System.out.println(message);
    return response;
    h1. HelloWorldVO .java
    package com.agile.ws.helloworld.v1;
    public class HelloWorldVO {
    private String message;
    public void setMessage(String message) {
    this.message = message;
    public String getMessage() {
    return message;
    h1. build.xml
    <project default="generateFromWsdl">
         <taskdef name="wsdlc" classname="weblogic.wsee.tools.anttasks.WsdlcTask"/>
         <taskdef name="jwsc" classname="weblogic.wsee.tools.anttasks.JwscTask" />
         <target name="generateFromWsdl">
              <wsdlc srcWsdl="wsdl_files/HelloWorldService.wsdl" destJwsDir="output/compiledWsdl"
                        destImplDir="output/impl_output" packageName="com.agile.ws.hello.v1" type="JAXWS" />
         </target>
         <target name="buildService">
              <jwsc srcdir="src" destdir="output/wsdlcEar">
                   <jws file="com/agile/ws/helloworld/v1/HelloWorldImpl.java" type="JAXWS"/>
              </jwsc>
         </target>
    </project>
    h1. Issue
    I am able to run both the targets and the war gets generated. I copied the contents of application.xml (given below) to the existing application's application.xml file and also copied the war to the appropriate location.
    h3. application.xml contents
    <module id="WebModule_helloworld">
    <web>
    <web-uri>HelloWorldPort.war</web-uri>
    <context-root>core/services/saml</context-root>
    </web>
    </module>
    When i start the weblogic server i am getting the following exception
    <Dec 1, 2011 11:56:13 PM IST> <Error> <HTTP> <BEA-101216> <Servlet: "HelloWorldServiceServlethttp" failed to preload on startup in Web application: "core/services/saml".
    weblogic.wsee.server.ServerURLNotFoundException: Cannot resolve URL for protocol http/https
    at weblogic.wsee.server.ServerUtil.getHTTPServerURL(ServerUtil.java:204)
    at weblogic.wsee.jaxws.HttpServletAdapter.checkEndpointPolicy(HttpServletAdapter.java:129)
    at weblogic.wsee.jaxws.HttpServletAdapter.<init>(HttpServletAdapter.java:105)
    at weblogic.wsee.jaxws.HttpServletAdapter.<init>(HttpServletAdapter.java:80)
    at weblogic.wsee.jaxws.JAXWSServlet.registerEndpoint(JAXWSServlet.java:139)
    Truncated. see log file for complete stacktrace
    <Dec 1, 2011 11:56:13 PM IST> <Error> <Deployer> <BEA-149231> <Unable to set the activation state to true for the application 'AgilePLM'.
    weblogic.application.ModuleException: [HTTP:101216]Servlet: "HelloWorldServiceServlethttp" failed to preload on startup in Web application: "core/services/saml".
    weblogic.wsee.server.ServerURLNotFoundException: Cannot resolve URL for protocol http/https
    at weblogic.wsee.server.ServerUtil.getHTTPServerURL(ServerUtil.java:204)
    at weblogic.wsee.jaxws.HttpServletAdapter.checkEndpointPolicy(HttpServletAdapter.java:129)
    at weblogic.wsee.jaxws.HttpServletAdapter.<init>(HttpServletAdapter.java:105)
    at weblogic.wsee.jaxws.HttpServletAdapter.<init>(HttpServletAdapter.java:80)
    at weblogic.wsee.jaxws.JAXWSServlet.registerEndpoint(JAXWSServlet.java:139)
    at weblogic.wsee.jaxws.JAXWSServlet.init(JAXWSServlet.java:64)
    at weblogic.wsee.jaxws.JAXWSDeployedServlet.init(JAXWSDeployedServlet.java:54)
    at javax.servlet.GenericServlet.init(GenericServlet.java:241)
    at weblogic.servlet.internal.StubSecurityHelper$ServletInitAction.run(StubSecurityHelper.java:283)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
    at weblogic.servlet.internal.StubSecurityHelper.createServlet(StubSecurityHelper.java:64)
    at weblogic.servlet.internal.StubLifecycleHelper.createOneInstance(StubLifecycleHelper.java:58)
    at weblogic.servlet.internal.StubLifecycleHelper.<init>(StubLifecycleHelper.java:48)
    at weblogic.servlet.internal.ServletStubImpl.prepareServlet(ServletStubImpl.java:539)
    at weblogic.servlet.internal.WebAppServletContext.preloadServlet(WebAppServletContext.java:1985)
    at weblogic.servlet.internal.WebAppServletContext.loadServletsOnStartup(WebAppServletContext.java:1959)
    at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1878)
    at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3153)
    at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1508)
    at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:482)
    at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
    at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:200)
    at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:247)
    at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
    at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:27)
    at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:636)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
    at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:205)
    at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:58)
    at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)
    at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)
    at weblogic.deploy.internal.targetserver.BasicDeployment.activate(BasicDeployment.java:184)
    at weblogic.deploy.internal.targetserver.BasicDeployment.activateFromServerLifecycle(BasicDeployment.java:361)
    at weblogic.management.deploy.internal.DeploymentAdapter$1.doActivate(DeploymentAdapter.java:51)
    at weblogic.management.deploy.internal.DeploymentAdapter.activate(DeploymentAdapter.java:200)
    at weblogic.management.deploy.internal.AppTransition$2.transitionApp(AppTransition.java:30)
    at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:240)
    at weblogic.management.deploy.internal.ConfiguredDeployments.activate(ConfiguredDeployments.java:169)
    at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:123)
    at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:180)
    at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:96)
    at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1510)
    at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:482)
    at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
    Truncated. see log file for complete stacktrace
    Caused By: weblogic.wsee.server.ServerURLNotFoundException: Cannot resolve URL for protocol http/https
    at weblogic.wsee.server.ServerUtil.getHTTPServerURL(ServerUtil.java:204)
    at weblogic.wsee.jaxws.HttpServletAdapter.checkEndpointPolicy(HttpServletAdapter.java:129)
    at weblogic.wsee.jaxws.HttpServletAdapter.<init>(HttpServletAdapter.java:105)
    at weblogic.wsee.jaxws.HttpServletAdapter.<init>(HttpServletAdapter.java:80)
    at weblogic.wsee.jaxws.JAXWSServlet.registerEndpoint(JAXWSServlet.java:139)
    I am trying with Weblogic 10.3.5 version. Any pointers to solve the issue would be of great help.
    Thanks,
    Arul

    Hi,
    I believe that the problem you are having is that you have a delimited file, of which you want to pick columns from position 2,3,5. In this case, ODI will pick the first 3 columns of a delimited file regardless of position.
    For example, if you a tab delimited file with c1,c2,c3,c4,c5 columns, and you want only columns c2,c3,c5 - when mapping these in an ODI interface, and executing, you will actually pick up the data from c1,c2,c3 as these are the first three columns in the file (reading from left to right). You can ignore "columns" on the right hand side of a file, but not the left. E.g delimited file with c1,c2,c3,c4,c5. Only pick columns c1,c2 will give you data for the first 2 columns
    Create a temporary table to load all the data from the file, and use you temp table to extract the data you require. Or you could get the file created with the first three columns as the columns you require.
    Cheers
    Bos
    Edited by: Bos on Jan 18, 2011 1:06 PM

  • Goods Issue against outbound delivery from blocked stock

    Dear All
    I want to do goods issue against outbound delivery created without any reference from blocked stock of my storage location. Is there any way I can achieve this? I know normally SAP allows goods issue from unrestricted stock but my business scenario requires goods issue to be done from blocked stock against outbound delivery.
    Please let me know any solution for this.
    Thanks and Regards
    Satish Kumar

    Hi
    Check this link where similar issue has discussed and its resolved as well. Please try this and update the findings. If possible could you share the background of this strange requirement.
    http://scn.sap.com/thread/1541911
    Thank$

  • Multiple delivery into One invoice

    Dear All
    Issue regarding multiple delivery into one invoice
    1 When i am creating multiple delivery doc into one invoice, its possible for domestic[local sales] but when i am creating multiple delivery doc into one invoice for export it is not possible.
    I have checked with the threads and tried it out with copy control with VBRK/VBRP [001/003/004]
    Is there any specific customization for exports?
    Regards
    Sandeep Bhowmick

    Dear Lakshmipati
    As per your instruction i have done the split analysis:
    split analysis:
    Split due to different header data
    Field Name                           :$00000001           $00000002
    Number of foreign trade data      : 0000000266         0000000267
    The invoice is generating against one delv document, it could not be combined. In copy control any changes i have to make
    Regards
    Sandeep Bhowmick
    Edited by: Sandeep Bhowmick on Jan 17, 2009 7:33 AM
    Edited by: Sandeep Bhowmick on Jan 17, 2009 7:34 AM

  • Serial number issue in Network delivery

    Hi
    when I am doing PGI from  a delivery created from network through CNS0 for serialised material there is no automatic check for the serial number if the particular sl no is already delivered.
    For example I am doing PGI for MAT1 and entering sl no 01 in one delivery through VL02N and again do the PGI from another delivery with same same sl no system is showing no warning message.
    But if I do the PGI from delivery created from a sales order the system is giving warning message if i enter serial number for the second time.
    Please suggest.
    Thanks

    Hi
    Check OIS2 transaction for the serial No profile attachedwith the material master - whether stockcheck validation is there or not.
    And for the procedures like MMSL and SDSL you have serial number check activated or not.
    It would be appropriate if you have given the waring message/ alsocheck its attributes in OVA2 transaction on shopping end.

  • Can we create multiple billing document from delivery with single line item

    can we create multiple billing document from delivery with single line item

    Hi
    Please check the link
    [can v create multiple billing document from delivery with single line item]
    and as Lakshmi said, check the forum before posting an issue.
    Regards
    AA

  • Can v create multiple billing document from delivery with single line item

    can v create multiple billing document from delivery with single line item

    Dear Sandesh
    Go to VOV7, select your item category.  In this maintain K  for Billing Relevance
    Now go to VF01, give the delivery number and do not press Enter.  Instead click on Selection list on the next screen, select the items you want to bill and click copy and continue if necessary
    thanks
    G. Lakshmipathi

  • Single performa invoice from multiple delivery

    Dear sir,
    my client requirement is they are doing one delivery and creating one performa invoice in export scnario while selling from plant and while doing export issue they have to take refrence performaa invoive .
    so they want to create as ingle performa invoice from multiple delivery for which already respective performa invoices have been created.so i want a single performa invoice from multiple delivery so tell me how to do it?
    thanks
    Debesh

    Go to VTFL and maintain as follows:-
    At Header
    Copying requirements:::::::::009
    At Item
    Copying requirements:::::::010
    Data VBRK/VBRP::::::::::::003
    thanks
    G. Lakshmipathi

  • Can't create multiple dependent LOVs from the same bind variable

    Hi all,
    I'm having difficulty creating multiple dependent LOVs from queries based on the same bind variable in my JSF application (JDev 10.1.3.1). Basically I have a static LOV in a af:selectOneChoice component from which users select a value which then becomes the bind variable value for two separate queries that generate two different dependent LOV. Having developed the code along the lines of Steve Muench 's blog (http://radio.weblogs.com/0118231/2006/04/03.html#a685), the first dependent LOV works really well. The first dynamic LOV gets refreshed whenever the list from the static LOV changes, and I can execute other queries based on the values selected.
    The problem arises when I want to create the second dynamic/dependent LOV that has the same bind variable based on the same selected value from the static LOV. Here I would also like the functionality whereby the second dynamic LOV is also refreshed after the selected value in the static LOV changes. Thinking that all I had to do was replicate the methodology used in creating the first dependent LOV, I created the second iterator, invokeAction and other binding components in the PageDef. The executable section now looks like the following:
    <iterator id="SelectStaticQueryViewObjIterator"
                  Binds="SelectStaticQueryViewObj" RangeSize="-1"
                  DataControl="DMSApplicationModule1DataControl"/>
    <invokeAction id="refreshDynamicQuery1BindParameter"
                  Binds="ExecuteWithParams1" Refresh="prepareModel"
                  RefreshCondition="#{empty requestScope.VariableChanged}"/>
    <iterator id="SelectDynamicQuery1ViewObjIterator"
                  Binds="SelectDynamicQuery1ViewObj" RangeSize="-1"
                  DataControl="DMSApplicationModule1DataControl"/>
    <invokeAction id="refreshDynamicQuery2BindParameter"
                  Binds="ExecuteWithParams2" Refresh="prepareModel"
                  RefreshCondition="#{empty requestScope.VariableChanged}"/>
    <iterator id="SelectDynamicQuery2ViewObjIterator"
                  Binds="SelectDynamicQuery2ViewObj" RangeSize="-1"
                  DataControl="DMSApplicationModule1DataControl"/>I now have a problem whereby everytime I change the value of the static LOV, multiple HTML components for the same ADF component are being generated (the LOVs are refreshed via PPR). The surprising thing is that this duplicating behaviour applies to all ADF components listed after the first dynamic LOV in the *.jspx source. For example, I have a <af:outputText="Test Text"/> component created after the first dynamic LOV. Each time the value in the static LOV changes, a duplicate HTML component is created. This also applies to the 'related' second dynamic LOV which is bound to a af:selectOneChoice component - multiple dropdown lists are created. I've checked with the browser's Page Source and there are actually multiple html components being generated with their own unique ADF-generated IDs. I've tried all different options for the Referesh and RefreshCondition attibutes in the second invokeAction element but nothing seems to eliminate this issue.
    Any suggestions about how I might create multiple dependent LOVs from the same bind variable that get refreshed when the selected value changes would be greatly appreciated.
    Thanks
    George

    Hi all,
    Just updating the thread on how I've overcome this issue. As it stood the manner in which I was trying to solve my use case, as described above, was creating an absolute mess. Then with a blank sheet of paper I quickly realised that a much simpler solution would be to create a whole series of master-detail VOs and build my components around them. Thankfully I haven't had any issues going down this path as yet.
    Cheers
    George

  • Multiple POu2019s were created from same requirement

    Issue: multiple POu2019s were created from same requirement (i.e. requirement had quantity of 100.  60 was put on one PO and 40 was put on another PO), BBP_GET_STATUS_2 program returns an error
    -Please let me know some tips/ pointers to investgate this issue.
    -How to investgate this issue? I really appreciate a thought process to investigate,

    Hi Rick,
    The splitting of a requirement into mulitple PO's will happen due to some criteria checks. Please see my note 1380879, where it states the following:
    There are a number of criteria that are taken into account when creating    
    the follow-on document:                                                                               
    proc_org    Purchasing Org                                                  
    proc_group    Purchasing Group                                              
    co_code     Company Code                                                    
    Pcins       Procurement card company                                        
    Pcnum       Procurement card number                                         
    ext_quote_id  External Quotation                                            
    logsys_fi     Logical Financial System                                      
    ext_dem_logsys  Logical System from where an External Re-quirement Comes                                                                               
    ext_dem_posid External Requirement Item Number                              
    Subtype     Item Subtype (Extended, local scenario)                         
    guid_ven    Vendor Guid                                                     
    guid_prpven   Desired vendor Guid                                           
    suppl_addr.   Ship to address fields                                        
    Doc_type    Process Type                                                                               
    Additional splits:                                                          
    Always split extended limit items                                           
    Always split if there is a missing vendor                                   
    Items grouped by hierarchies are split to separate PO s                                                                               
    The split criteria can be found within the code of Class                    
    CL_BBP_SC_TRANSFER. From this class there are a method's depending on       
    the follow-on document type:                                                                               
    SPLIT_BACKEND_OBJECTS                                                       
    SPLIT_BACKEND_PO                                                            
    SPLIT_BID                                                                   
    SPLIT_LOCAL_AND_BACKEND_ITEMS                                               
    SPLIT_LOCAL_OBJECTS                                                         
    SPLIT_LOCAL_PO                                                              
    SPLIT_LOCAL_PO_DO                                                           
    SPLIT_PO_BE_MAP_CRITERIA                                                    
    SPLIT_PO_LOC_CHK_LIMIT                                                      
    SPLIT_PO_LOC_CMP_CRITERIA                                                   
    SPLIT_PO_LOC_MAP_CRITERIA                                                   
    SPLIT_REQUISITION                                                           
    SPLIT_RESERVATION   
    So if all of the above criteria are the same then one PO should have been created but if the above critieria is different in each item then the system will split the items into different PO's
    I hope this helps
    Kind Regards,
    Lisa

Maybe you are looking for

  • Help needed in Customer exit variable

    Hi Experts, We have a scenario as below. User enters fiscal year period.Based on the fiscal year period,entire year will be selected. Row would contains 0fiscper3(Fiscal months from Jan to Dec) Column contains Amount(Actual or Forecast)--There is a r

  • OIM: Error after running in patch_oimapp.sh

    Hi All, I have OIM11gR2 installed and I am trying to configure the LDAP Synch with OID via OVD. As per the documentation, after running the patch_oimapp.sh, I am getting below error: explode-archived-apps-was: seed-ootb-jobs: seed-ootb-jobs: +[echo]

  • Alt+Right Click Panel not working - gnome

    Hi, I'm using the lastest gnome with gnome-extra (3.2.1-1) and stock wm, no fallback mode or anything. Alt+RightClick on the top panel doesn't produce a context menu. However, clicking my user name in the top right and then pressing Alt changes "Susp

  • Issue with HD .MOV's

    I'm having some problems playing H.264 encoded HD videos. They will start playing, and then stop at random points. It's not the buffering, I've already eliminated that, and it's also not the player (originally had it in a flash player, and now we rev

  • Does pages for IPad convert to e pub format?

    I read in a google search that Pages can  convert to E Pub format without knowing HTML is this correct?