Default sloc determination in OBD which is created from STO

Hi,
In case of STO, if supplying plant has 2 sloc lets say 001 and 002. If we want picking should happen from 001 or sometime 002 then how we can make this sloc defaulted in OBD? Please note u2013 we are creating the OBD from STO
In short my question is, How to make desired sloc defaulted in OBD which is created from stock transport order?
Thanks,
Milind

Hi,
In SPRO>LE> Shipping>Picking>Determine Picking location>Assign Picking Locations> , you maintain the proper entries.
Enter the storage location that you want to be defaulted in OBD against Shipping Point/Shipping Conditions combination.
Wehn you create STO PO,  you can change the proposed shipping conditions or shipping points. You can aslo do it in ME22n befor generating delivery in VL10B.
In PO's Shipping Tab,  Shipping condition arrives from customer master.
Loading grroup arrives from Material master : sales view 2.
Shiping point will be determined from the config done in LE> Shipping>Basic Shipping Functions---> Assign shipping Points.(entered against SC/Lgrp/Plant Combination). 
Later, you enter picking storage location(To be defaulted in OBD)  in above given path for the correct combination of Shpt/Plnt/SC.  
If you maintain settings properly in above 2 SPRO path and Loading group in Material master (SD veiw) and Shipping conditions in customer master properly,   this results in proper determination of shipping point in shipping tab of ME21N and hence the OBD will be created with Default Storage location as you desired
Regards,
Shetty

Similar Messages

  • Enable to  run .exe file which is created from .air file  in windows 7?

    Enable to  open .exe file which is created from .air file which is created from adt command in windows 7 .
    for run .exe file ::
    The user must right click and select "Run as Administrator" for run successfully.
    so How to remove this above permission issue in Windows 7?
    Thanks
    Sunil

    Right-click on the exe file and choose Properties.
    Switch to the compatibility tab and uncheck the box next to "Run this program as an administrator". Click "ok".

  • Tax code determination when a PO is created from SRM

    Hi Experts
    I am using extended classic SRM 7.0
    When a PO is transferred to the SAP backend system, sometimes the TAX code is different from what was supplied in FM BBP_PO_INBOUND.
    It looks like; tax code determination in backend system determines a different code and does not use the tax code supplied when PO is created.
    Is there a way to override this tax determination in backend system so that it uses the Tax code supplied rather than determine a tax code that is different?
    This seems to be a problem when a new PO is created because when I change the PO and this sent again, the backend system is updated correctly with the Tax code supplied from SRM.
    I hope some has come across this type of situation and can suggest something.
    Regards

    I put your HTML page (TEST2.html) and CSS file (body_new.css) on my server and it looks OK.
    http://www.ossiningdesignguild.com/TEST2.html
    It's possible your web server is not properly configured and sends a Content-Type HTTP header that says text/plain instead of text/css for your style sheet file.
    If you're using Apache, have your server admin check the httpd.conf file for MIME type settings.
    Should they need assistance, send them here:
    http://httpd.apache.org/docs/2.2/configuring.html
    This is not a problem with your main site since the CSS is embedded, rather than remote.
    I'll call you after lunch.
    Ken

  • Can not insert/update data from table which is created from view

    Hi all
    I'm using Oracle database 11g
    I've created table from view as the following command:
    Create table table_new as select * from View_Old
    I can insert/update data into table_new by command line.
    But I can not Insert/update data of table_new by SI Oject Browser tool or Oracle SQL Developer tool .(read only)
    Anybody tell me, what's happend? cause?
    Thankyou
    thiensu
    Edited by: user8248216 on May 5, 2011 8:54 PM
    Edited by: user8248216 on May 5, 2011 8:55 PM

    I can insert/update data into table_new by command line.
    But I can not Insert/update data of table_new by SI Oject Browser tool or Oracle SQL Developer tool .(read only)so what is wrong with the GUI tools & why posting to DATABASE forum when that works OK?

  • How to bind UI component to a view object which is created from a SQL query

    I am using JDeveloper 11.1.1.2.
    I created a method in my ApplicationModule to create an instance of ViewObject dynamically based on a "voCode" passed in :
    public ViewObject loadVO(String voCode) {
    ViewObject viewObject = findViewObject(voCode);
    if (viewObject == null) {
    viewObject = createViewObject(programCode);
    return viewObject;
    I created a Client interface for this method and refreshed the data control of the ApplicationModule.
    From the "Oracle JDeveloper 11g Handbook", I should be able to create a tree binding and a methodIterator executable for the "loadVO" method via the data control of the AM.
    I tried to add the binding manually to the page definition of my jspx page as I like to see if I can replace an existing binding with this new binding.
    I was not able to add the binding as the "Create Tree Binding" required both the "Root Data Source" and "Tree Level Rules" to be specified.
    I could specify the "Root Data Source" to point to the "loadVO" and corresponding parameter but not able to add any rule.
    When I clicked on the "+" icon to add rule, nothing happened that allowed me to specify the rule (if I know what rule I need to add).
    How should I bind the application module method "loadVO" so that it can be exposed in the Data Control to provide the data for a UI component like dynamic table?
    On the other hand, I could create the "methodIterator" first for the AM method "loadVO" but I wasn't able to create a tree binding to reference the "methodIterator".
    Is it possible to invoke the loadVO method with specific parameter value via the "methodIterator" from a bean method?
    Edited by: pyin_amec on Jan 25, 2010 3:57 PM
    I corrected the subject line and change my question to better reflect the problem I tried to solve.
    Edited by: pyin_amec on Jan 26, 2010 7:41 AM

    Hi,
    This worked for me .. I created a inputtext area where I can enter a query and execute ..
    Hope it helps..
    AM Impl
         public void createVoWithQuery( String pQuery )
              ViewObjectImpl vo = null;
              if( findViewObject( "DemoVo" ) != null )
                   findViewObject( "DemoVo" ).remove();
              vo = ( ViewObjectImpl )createViewObjectFromQueryStmt( "DemoVo", pQuery );
              //  vo.setKeyAttributeDefs( new int[]{0} );
              vo.executeQuery();
         @Override
         protected void prepareSession( Session session )
              super.prepareSession( session );
              if( findViewObject( "DemoVo" ) == null )
                   createViewObjectFromQueryStmt( "DemoVo", "Select 1 from dual" );
         }Page Def
    <executables>
        <variableIterator id="variables">
          <variable Type="java.lang.String" Name="createVoWithQuery_pQuery" IsQueriable="false"/>
        </variableIterator>
        <iterator Binds="DemoVo" RangeSize="25" DataControl="AppModuleDataControl"
                  id="ViewObj1Iterator" Refresh="deferred"/>
      </executables>
      <bindings>
        <tree IterBinding="ViewObj1Iterator" id="ViewObj1">
          <nodeDefinition Name="Dummy">
          </nodeDefinition>
        </tree>
        <methodAction id="createVoWithQuery" RequiresUpdateModel="true" Action="invokeMethod"
                      MethodName="createVoWithQuery" IsViewObjectMethod="false"
                      DataControl="AppModuleDataControl"
                      InstanceName="AppModuleDataControl.dataProvider">
          <NamedData NDName="pQuery" NDType="java.lang.String"
                     NDValue="${bindings.createVoWithQuery_pQuery}"/>
        </methodAction>
        <attributeValues IterBinding="variables" id="pQuery">
          <AttrNames>
            <Item Value="createVoWithQuery_pQuery"/>
          </AttrNames>
        </attributeValues>
      </bindings>page
    <af:panelStretchLayout id="psl1" startWidth="0" topHeight="100px" bottomHeight="0">
              <f:facet name="center">
                <af:table rows="#{bindings.ViewObj1.rangeSize}"
                          fetchSize="#{bindings.ViewObj1.rangeSize}"
                          emptyText="#{bindings.ViewObj1.viewable ? 'No data to display.' : 'Access Denied.'}"
                          var="row" rowBandingInterval="0"
                          value="#{bindings.ViewObj1.collectionModel}"
                          selectedRowKeys="#{bindings.ViewObj1.collectionModel.selectedRow}"
                          selectionListener="#{bindings.ViewObj1.collectionModel.makeCurrent}"
                          rowSelection="single" id="t1" partialTriggers="::cbEx">
                  <af:forEach items="#{bindings.ViewObj1Iterator.attributeDefs}" var="def">
                    <af:column headerText="#{def.name}" sortable="true" sortProperty="#{def.name}"
                               id="c1">
                      <af:outputText value="#{row[def.name]}" id="ot1"/>
                    </af:column>
                  </af:forEach>
                </af:table>
              </f:facet>
              <f:facet name="bottom"/>
              <f:facet name="top">
                <af:panelFormLayout id="pfl1">
                  <af:inputText value="#{bindings.pQuery.inputValue}"
                                label="#{bindings.pQuery.hints.label}"
                                required="#{bindings.pQuery.hints.mandatory}"
                                columns="60"
                                maximumLength="#{bindings.pQuery.hints.precision}"
                                shortDesc="#{bindings.pQuery.hints.tooltip}" id="it1" rows="2">
                    <f:validator binding="#{bindings.pQuery.validator}"/>
                  </af:inputText>
                  <af:commandButton actionListener="#{bindings.createVoWithQuery.execute}"
                                    text="ExecuteQuery"
                                    disabled="#{!bindings.createVoWithQuery.enabled}" id="cbEx"/>
                </af:panelFormLayout>
              </f:facet>
            </af:panelStretchLayout>

  • Entity Instances created from backend inaccessible during interview session

    Hi,
    Is it possible to access entity instances which are created from back end, during an interview session?
    I am creating the entity instances and setting some of its attributes from the back end. But when I try to access these instances on screen to set the rest of its attributes, I get the following error -
    com.oracle.determinations.interview.engine.exceptions.InterviewEngineException: Entity Instance does not exist in model

    Yes it is possible to access the entity instances held in the session. However, in an interview session you should never change the state of the session directly, but rather use the setData methods provided by the Interview API or write a data adaptor plugin. The error message you are receiving is cause by the reason it states, namely the entity instance you're asking for does not exist in the session. If you are adding entity instances by modifying the session directly rather than using the Interview API, it's likely that those entities their associated attributes are being lost and hence the error.
    If you can provide more details on what it is that you are trying to do I can help point you in the right direction.
    Thanks,
    Kristy

  • Unable to mount ext4 filesystem (created from Ubuntu) in Solaris 11

    Hello everyone,
    I am trying to mount an ext4 filesystem which I created from Ubuntu. But mount command fails saying:
    prakhar@Solaris:~$ sudo mount /dev/dsk/c10t0d0p1 /mnt
    Password:
    mount: /dev/dsk/c10t0d0p1 is not this fstype
    And I also tried this:
    prakhar@Solaris:~$ fstyp /dev/dsk/c10t0d0p1
    unknown_fstyp (cannot open device)
    Can anybody tell me how can I mount a ext4 filesystem in Solaris 11?

    Thanks @Nik for your fast reply, but still its not solving my problem.
    I don't want any out of the box support.
    What I want is to access my ext4 filesystem.
    Any open source package will do.

  • Question about sloc determination in MFBF and backflush in REM

    Dear SAPper,
    I just try to read about Repetitive Manufacturing and i came with some confused item.
    1. I try to backflush MFBF and i don;t fill the planned order, but the backflush is succedd. Something
    strange is my planned order is not decrease:(, so do i have to fill planned order number every time i backflush. Can i backflush anonymous to planned order number and the system derease the planned order automatically in FIFO manner
    2. I configure the auto sloc determination and i have set maximum number of split unlimitted.
    for example in MFBF i need 50 PC Raw Material
    My stock in SLoc 1000 is 40 PCS
    My stock in SLoc 2000 is 200 PCS
    I configure the sloc determination like this
    1. F 1000
    2. F 2000
    Nut in MFBF component always withdraw from 2000 with 50 (full quantity) although i set maximum number of split maximum
    I tried batch determination before and it split.
    Did i miss something so the system can split the quantity along sloc automatically
    Please throw a light:D
    Best regards,
    Freddy Ha

    Hi,
    1)
    Normally in the rem for backflush just u have to enter the product and qty then system will automatically reduces the planned order.
    But in situation if planned order is not reducing then please check ur REM profile in the "control data2" tab
    In this which one u have select for the planned order reduction.
    2)
    Regarding stock determination, create stock determination rule thr' T CODE:OXPS.
    Here u have to create stock determination rule first from which storage location material should be picked, depending upon the priority.
    Assign this stock determination rule in the material master or in the REM profile "Control data2 " tab.
    Then system will automatically pick the material depending upon the stock determination rule.
    Regards
    Vijay

  • Is there a way to change the master text length in FCP? The default length is 10 seconds, which is too long. I can easily adjust the length but I don't want to do it each time, and I don't want to adjust one and then have to copy and paste this length.

    Is there a way to change the master text length in FCP? The default length is 10 seconds, which is too long. I can easily adjust the length but I don't want to do it each time, and I don't want to adjust a text clip and then have to copy and paste this each time. Ideally, there should be something in User Preferences but there is not. Thanks.

    Maybe some one else can pipe up with a solution, but this would literally take 2 seconds to do for a new project.  And you can create a "template project" that includes this "text" clip.  Save this project and then to a get info and check "stationary pad."  When you double click on this file, fcp will open with a copy of this project and you just need to do a save as. 
    I've been working with computer editing systems for longer than i can remember and at a certain point you just have to adapt your workflow to the limitations of the software.  

  • Can you please help me in creating a stored procedure which can create a tablesapce in a specified location ?

    Hello ...
    Can you please help me in writing a procedure which can create tablespace. like i have a requirement that
    through sql query i need to get the location of where the data file of the newly created tablespace need to be stored.
    I need to store the location of the datafiles in a variable and i need to use that variable for specifying the location of the data file in newly created data file.
    please help me writing this procedure.....
    Regards vinay raj.
    Thanks in advance..

    select distinct substr(file_name,1,instr(file_name,'/',-1)) from dba_data_files;
    Run this in a few of your databases and see how often you ONLY get one row returned.
    Normally there is no "default" file system for data files (read about the DB_CREATE_FILE_DEST parameter and Oracle Managed Files for the exception to that).
    You could pick the same file system as an existing tablespace, but even then there is no guarantee that the file system has sufficient space for the new tablespace - you have to check that OUTSIDE the database.
    Given the query at the top it is pretty simple to create a SQL script that generates a SQL script.  This can be run in any database via sqlplus, and then the generated script can be edited as needed and run immediately, under human control, avoiding surprises.
    set echo off
    set feedback off
    set heading off
    set lines 100
    spool myts.sql
    select distinct 'create tablespace MYTS DATAFILE '''||substr(file_name,1,instr(file_name,'/',-1))||'myts01.dbf'' size 40M ONLINE;' stmt
    from dba_data_files;
    spool off
    For example, if you find there are multiple filesystems to choose from, run this then delete the filesystems you don't want from the generated script.  If you find there is only one file system but it is too full, work with your SA or storage to to add space or allocate a new file system, then modify the generated script accordingly.
    This example assumes a traditional file system, on a UNIX-style OS, not using Oracle-Managed files.  ASM or RAW will have a different format for the data file location, of course.

  • Creating user defined pay items in a complex PO which will be created from an Approved requisition

    Hi,
    We want to create user defined pay items in a complex PO which will be created from an Approved Requisition.
    User will select the approved Req. through WebADI and update the pay Items which will be uploaded and a complex PO will be created with user defined Pay Items.
    Approach 1:
    The API po_interface_s.create_documents is running good but there is one issue with this API as below.
    When we add user defined pay items to the po_lines_locations interface table against a line they are also getting added to the complex PO correctly.
    But the issue is coming when the API is creating default shipment lines and distribution which we dont want.
    Is there any way to stop creating the default pay items and distributions?
    We only want the shipments we have entered in the po_lines_locations interface.
    We can delete the lines from the PO_line_locations and po_distributions base tables for the default lines but that will be the last option to do delete on base tables.
    Approach 2:
    We can also do the same with the open PO import interface but it is not linking the complex PO to the approved requisition from which it is created.
    Oracle mentioned that this is a future enhancement and this functionality is not available in standard PO import prog.
    We are trying for Approach 1 so any suggestions/solutions are appreciated to achieve the requirement.
    Regards,
    Sanket

    UDT cannot be created in sbo-common. You may create new db and work with table in this db (but it will be not UDT, but standard sql table), or create new company db only for this purposes and create UDT there.

  • SLOC Determination

    All,
    Here is my scenario: PLANT 1234 is assigned to SLOC 1 & SLOC 2.
    Goods receipt of PRODUCT ABC is received into SLOC 1. ABC is then transferred to SLOC 2. Outbound delivery PGI happens from SLOC2.
    Availability check is performed at plant level.
    I setup the picking location determination and it is working correctly.
    Here is an example of my test:
    My current stock situation:
    Product ABC has 20 EA in SLOC 1
    Product ABC has 0 EA in SLOC 2.
    Scenario 1: I create Sales Order for 10 EA. Availability check goes OK and I am allowed to create an outbound delivery. But in the Outbound Delivery, the Sloc is BLANK.
    Scenario 2: If I transfer 10 EA to SLOC 2, then the Outbound delivery gets created with SLOC 2 assigned to it (based on the picking location config).
    I have the following question. In scenario 1: If the system was not able to determine a storage location, I need to prevent the system from creating the delivery since physically there is no stock in Sloc 2.
    Any ideas?

    Hi,
    During Availability check system will check the Storage location also if the Storage location is determined in Shipping Tab of the order.
    Please try to use the S LOC determination for SLOC2 while doing the Order. Use The Exit  in program MV45AFZB 
    USEREXIT_SOURCE_DETERMINATION to determine the SLOC. Because There is no config for SLOC determination at Order Level
    Try to put the SLOC in shipping tab and try to check whether system is confirming the stock or not. It will not confirm . If u remove the SLOC in that then system will confirm the stock at plant level.
    Regards,
    Srinivas.
    Edited by: Srininas on Apr 14, 2010 3:00 PM
    Edited by: Srininas on Apr 14, 2010 3:02 PM

  • Accounts determination error is coming while create billing.

    Hi Experts,
    Accounts determination error is coming while create billing for Account Assignment Group A4 . In some cases only this error is appearing . I m a ABAPer I got this case and I  m debugging the code  . Can anyone  suggest me what all the things i need to check to know the root cause . This error is coming very  rarely but I want to find the reasons.  I saw some of scn post bt it was not clear .
    Please suggest briefly what w'd be the probable cause of this error and how to correct it.
    Thanks in advance

    Hi Dharmkrit,
    In one of your earlier posts, you have mentioned that you have assigned G/L accounts by selecting table 1. This is probably where you might be going wrong.
    Please follow the below steps to cross check your entries and you should hopefully have a solution.
    (1) First of all, start from the account determination procedure and check which procedure is assigned to the billing type.
    (2) Check the account determination type that is maintained in the procedure.
    (3) Check which access sequence assigned in that condition type
    (4) Check which table/tables have been maintained in the access sequence
    * In most probability, you would have maintained a different table in the access sequence while you are trying to assign your G/L accounts to some other table
    * Also, since you say that this error is only for a particular account determination type, check if you have maintained the correct combination of application/chart of account/Customer account assignment group/material account assignment group/G/L account in the correct table. However, this combination of fields depends on the table that you have used in the condition technique.
    I suggest that you write your entries down while checking the flow. This will give you a clear picture if a connection is missing somewhere in the condition technique.
    The customer/material account assignment groups are just keys (two digit codes) and their determination has nothing to do with Z1/Z2/A1 or any other code that you have defined in the system. The main determination is purely based on the condition technique and how correctly you have maintained the connections between the tables, access sequences, types and procedures. Just recheck these entries and you should be able to resolve the issue.
    Hope this helps
    Regards,
    Sumita Mittra

  • Default Sloc in MIGO

    HI,
    How to get default Sloc in MIGO at the time of GR?
    I created PO, there i did not mentioned Sloc.
    Now my client requirement is, when ever we do GR, by default it should take Main storage location as default.
    I tried option for create Sloc automatically in spro-mm-inventory-create sloc automatically.
    But it did not work.
    Pl help.
    Utsav

    Hi,
    I'm using standard system and it works.
    Please be aware that if you carry out the settings in your material master, it will be valid only for new POs. For old POs it will be not applied.
    So, the SLoc will be populated in the PO and only if it is OK in the PO it will appear in MIGO too.
    Regards,
    Csaba
    Edited by: Csaba Szommer on Mar 22, 2009 2:08 PM

  • Default source determination in PR creation

    Hi
    How can we make defualt check on source determination in manual PR creation process. Meaning everytime user opens PR screen vide ME51N, source determination should be checked by default.(without manual intervention)
    Thanks
    Dinabandhu

    HI,
    You can maintain the default source determination indicator in PR using the following settings.
    SPRO - MM - Purchasing - Environment Data - Define Default Values for Buyers
    You  can create a default value & In the source determination tab, you can maintain the source determination check for PR.
    After creating the default value, you can maintain the same in the user master (SU01) in Parameters tab against the parameter id - EVO.
    Thanks & Regards,

Maybe you are looking for

  • Network crashes on startup

    The Problem: Currently, my Open Directory master server seems to not be able to startup networking while booting from a restart. Network becomes at least partially available once the server has finished booting, but some services, such as login autho

  • Cannot  mount USB disk in SIngle-user mode (solaris 10)

    Hi all , I need some help please : I can read/write to my USB disks when i'm in muti-user mode but when to I swith to single-user mode ( init S ), I cannot mount it. in Single-user mode , i started volume management daemon : #/etc/init.d/volgmt start

  • IPod nano 2nd gen - what is this part?

    Hello iPoders, I've got one question - what is this round white part on the picture below and what's it's function? I've tried to google it but I didn't even know how to decribe it. I'll be grateful for your help!

  • Apple Script for deleting podcasts

    I subscribe to a lot of podcasts, but I don't want to keep them in my iTunes library after I'm done listening to them. Is there an Apple Script for automatically deleting podcasts? Thanks.

  • SoftMotion Straight Line Move Read/Write Targ Pos functional​ity

    I have been reading up/studying example code on the SoftMotion package from NI. I downloaded the "NI Week 2008 SoftMotion Development Module 2.1 & Compact RIO 6 Axes Coordinated Motion Demo" code to review how I might implement some homing routine on