Hi, can any body solve my issue

Hi friends,
When we create sales order,
as we know using backword scheduling first system checks stock. If stock doesnt exist, forward sceduling is carried out to find out the next material availability date & Delivery date.
Could somebody explain in detail from where these dates are determined.? Eg. Delivery date
Goods issue date
Loading date
Material avail.date
Transportation Plan. Date
What are configuration setting required from SD sides?
Please share your knowledge on above scenario.
THEN I WNAT TO KNOW ABOUT ONE THING IN THE ABOVE QUESTION
SPECIFICALLY
THAT IS
1).CAN I HAVE SALES ORDER DATE, DELIVERY DATE AND BILLING DATE AND PRICING DATE AS SAME DAY
I KNOW THAT IT IS POSSIBLE.
BUT WHERE IN CUSTOMIZING SETTINGS IN R/3.
IF ANY BODY KNOW HELP ME PLZ.
2.
MY SECOND QUESTION IS
VERY SIMPLE.
IF MATERIAL ORDERED IS AVAILABLE BUT ONLY HALF IS AVAILABLE.
THEN FROM SALES ORDER SCREEN IT HAS TO GO TO AVAILABILITY CHECK OVER VIEW SCREEN THAT THE MATERIAL ORDERED BY YOU WILL BE AVAILABLE WITH IN THIS DATE.
3.
IF MATERIAL ORDERED IS AVAILABLE BUT ONLY HALF IS AVAILABLE.
IT HAS TO SHOW THE LIST OF PLANTS IN WHICH STOCK IS AVAILBLE FOR DELIVERY FROM AVAILABILITY CHECK OVER VIEW SCREEN.
PLZ I AM AVAILABLE IN
[email protected]
REGARDS,
BALAJI.T
09990019711.

Hi Balaji,
Backward scheduling or Forward scheduling is done based on your the requested deliery date in the sales order. you can configure requested delivery date from VOV8. (it can also be manually changed while creating an order.)
Therefore when you create an order giving the requested delivery date, system takes into account the following times –
a.     Transit Time +
b.     Loading Time +
c.     Pick/Pack Time +
d.     Transportation Lead/Planning Time.
The loading time and pick/pack time come from the shipping point whereas the transit time and transportation lead time come from the route.
These timings are configured in Logistics Execution. Depending on these times.........the system gives you an expected delivery date. That is it does backward scheduling if the material is available or Forward scheduling in case the material cannot be delivered on the requested delivery date.
Your sales order date, delivery date, billing date and pricing date can be the same only in the case of CASH SALES or RUSH ORDER SALES. in any normal business scenario, you cannot have all four dates as same as there will be a delivery involved from the warehouse to the customer, in other words there will be a transit time involved.
Question 2
if you configure ATP logic, the system will take you to the future stock availability screen.
Question 3
There is no automatic way of transferring displaying stocks in all the plants during sales order creation if the material is not available in one plant.
The only way is to manually check the stocks for that particular material through T-code: MMBE in all the available plants and manually change the delivery plant at the order level during creation.
REWARD PONTS IF HELPFUL
Regards
Sai

Similar Messages

  • Please iam getting index out of bound exception can any body solve my probl

    Dear all
    iam doing aproject in swing in that one class iam using the below method. Iam getting index out of bound exception. Actually iam trying to access the more that 50mb file at that time its giving out of memory exception after that iam using this method now its giving index out of bound exception, when it is going second time in the while loop. can any body solve my problem. Please give me the solution . Ill be very thankful to you.
    public Vector getFileContent(File fileObj){
    FileInputStream fis = null;
    DataInputStream dis = null;
    Vector v = new Vector();
    byte[] data = null;
    int pos = 0;
    int chunk = 10000;
    int sizePos = 0;
    try{
    fis = new FileInputStream(fileObj);
    int size = (int)fileObj.length();
    dis = new DataInputStream(fis);
    int k = 1;
    if(size <10000){
    data = new byte[size];
    //v.addElement(dis.readFully(data));
    dis.readFully(data);
    v.addElement(data);
    else {
    while(pos < size){
    sizePos = size - chunk*k;
    if(sizePos > 10000){
    chunk = 10000;
    else{
    chunk = sizePos;
    data = new byte[chunk];
    dis.read(data, pos, chunk);
    v.addElement(data);
    System.gc();
    pos = pos + chunk + 1;
    regards,
    surya

    pos = pos + chunk + 1;Why the +1??

  • CAN ANY BODY SOLVE THIS.

    Hi ,
    TILL NOW ANY BODY HAS RUN APPLICATION ( calling flex
    application in url) WHICH INVOKES A SERVLET PERFORMS
    REQUEST/RESPONCE . IF YES PLEASE SOLVE MY CODE.
    ELSE
    PLEASE HELP ME WITH A SAMPLE CODE/Example.
    currently i have a login.jsp in which i am calling
    source="./login.mxml"
    code for login.jsp
    <%@ taglib uri="FlexTagLib" prefix="mm" %>
    <html>
    <head>
    <title>This is calling HelloServlet</title>
    </head>
    <body>
    <form action=./HelloServlet method=POST>
    <mm:mxml source="./Login.mxml">
    </mm:mxml>
    </form>
    </body>
    </html>
    and code in login.mxml
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    layout="absolute" >
    <mx:Panel width="382" height="315" layout="absolute"
    horizontalCenter="4" verticalCenter="2.5" fontFamily="Verdana"
    title="eCTDViewer-Login">
    <mx:Label x="25" y="49" text="UserName "/>
    <mx:TextInput x="115" y="47"/>
    <mx:Text x="25" y="98" text="Password"/>
    <mx:TextInput x="115" y="96" displayAsPassword="true"/>
    <mx:Button label="Login" horizontalCenter="-80"
    verticalCenter="42.5" textRollOverColor="#408080" />
    <mx:Button x="186" y="169" label="Cancel"
    textRollOverColor="#408080"/>
    <mx:Label x="10" y="-26" text="eCTDViewer-Login"
    width="310" height="23" enabled="true"/>
    </mx:Panel>
    </mx:Application>
    and in now i am calling login.jsp in IE 7.0 as url=
    http://localhost:8080/flex/login.jsp
    it is displaying login page exactly what i want, but after
    entering username,password when i click submit button it should go
    to HelloServlet, there in servlet i am just printing a message,
    but it is not going to HelloServlet, Please guide me how to
    do this. and what need s to be configured in web.xml,
    /**********************HelloServlet**************/
    import java.io.*;
    import javax.servlet.*;
    import javax.servlet.http.HttpServlet;
    public class HelloServlet extends GenericServlet {
    public void service(ServletRequest req, ServletResponse res)
    throws ServletException, IOException
    res.setContentType("text/html");
    PrintWriter pw=res.getWriter();
    System.out.println("I can into HelloServlet");
    pw.println("<B>Hello!");
    pw.println("<B>Hi!");
    pw.close();
    /***********************web.xml**************/
    <?xml version="1.0" encoding="utf-8"?>
    <web-app id="WebApp_ID" version="2.4" xmlns="
    http://java.sun.com/xml/ns/j2ee"
    xmlns:xsi="
    http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="
    http://java.sun.com/xml/ns/j2ee
    http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
    <servlet>
    <servlet-name>login</servlet-name>
    <servlet-class>HelloServlet</servlet-class>
    </servlet>
    <servlet-mapping>
    <servlet-name>login</servlet-name>
    <url-pattern>/login</url-pattern>
    </servlet-mapping>
    </web-app>
    waiting for reply.

    there is already reply to your request in FlexBulder
    category(even though not sure what flex builder has to do with it )
    anyways, you cant get servlet to run unless you invoke it and you
    are definitely not invoking it from flex .look at reply in
    flexbuilder category.
    it gives good example.

  • Some Photos in the Facebook not displayed, can any one solve the issue?

    Some photos not displayed in the Facebook, can anyone help?

    Restart your Mac then try Facebook.
    If that doesn't help, empty your browser cache then try again.

  • I'm trying to sync a new i phone to i tunes.  I get message that says cannot be used because the apple mobile device service is not started.  Any idea what I can do to solve this issue?

    I'm trying to sync a new iphone into i tunes.  I'm getting a message that says that this iphone cannot be used because the apple mobile device service is not started.  Any idea what I can do to solve this issue?

    See Here...
    AMDS for Windows
    http://support.apple.com/kb/TS1567
    AMDS for Mac
    http://support.apple.com/kb/ht1747

  • Can any body send me some issues about mail sending .

    can any body send me some issues about mail sending .
    thanks alot !
    mail to :<i><b>[email protected]</b></i>

    HI
    GOOD
    GO THROUGH THIS CODE
    REPORT ZTSAPMAIL.
    DATA: X_OBJECT_TYPE LIKE SOOD-OBJTP.
    DATA: BEGIN OF X_OBJECT_HD_CHANGE.
    INCLUDE STRUCTURE SOOD1.
    DATA: END OF X_OBJECT_HD_CHANGE.
    DATA: BEGIN OF X_OBJCONT OCCURS 10.
    INCLUDE STRUCTURE SOLI.
    DATA: END OF X_OBJCONT.
    DATA: BEGIN OF X_OBJHEAD OCCURS 0.
    INCLUDE STRUCTURE SOLI.
    DATA: END OF X_OBJHEAD.
    DATA: BEGIN OF RAW_HEAD.
    INCLUDE STRUCTURE SORH.
    DATA: END OF RAW_HEAD.
    DATA: BEGIN OF X_RECEIVERS OCCURS 0.
    INCLUDE STRUCTURE SOOS1.
    DATA: END OF X_RECEIVERS.
    PARAMETERS: RECEIVER LIKE X_RECEIVERS-RECNAM. " Name
    *BUILD MESSAGE HEADER
    MOVE 'Sort field goes here' TO X_OBJECT_HD_CHANGE-OBJSRT. " Sort field
    MOVE 'Name of the object goes here' TO X_OBJECT_HD_CHANGE-OBJNAM. " Name
    MOVE 'Document title goes here' TO X_OBJECT_HD_CHANGE-OBJDES. " Title
    MOVE 'F' TO X_OBJECT_HD_CHANGE-OBJSNS. " Functional OBJECT
    MOVE 'E' TO X_OBJECT_HD_CHANGE-OBJLA. " Language
    Object type of the new document
    MOVE 'RAW' TO X_OBJECT_TYPE.
    CLEAR X_OBJCONT.
    MOVE 'Contents of mail' TO X_OBJCONT-LINE.
    APPEND X_OBJCONT.
    CLEAR X_OBJCONT-LINE. APPEND X_OBJCONT.
    MOVE 'More contents' TO X_OBJCONT-LINE.
    APPEND X_OBJCONT.
    MOVE 'Still more contents'
    to x_objcont-line.
    APPEND X_OBJCONT.
    MOVE ' ' TO X_OBJCONT-LINE.
    APPEND X_OBJCONT.
    Specific header (Dependent on the object type, here RAW)
    REFRESH X_OBJHEAD.
    DESCRIBE TABLE X_OBJCONT LINES RAW_HEAD-RAWSIZ.
    MOVE RAW_HEAD TO X_OBJHEAD.
    APPEND X_OBJHEAD.
    *RECEIVERS table
    CLEAR X_RECEIVERS.
    REFRESH X_RECEIVERS.
    MOVE RECEIVER TO X_RECEIVERS-RECNAM. " Name
    MOVE 'B' TO X_RECEIVERS-RECESC. " Receiver type
    MOVE 'X' TO X_RECEIVERS-SNDCP. " Send as a copy
    MOVE 'X' TO X_RECEIVERS-SNDEX. " EXPRESS DOCUMENT
    APPEND X_RECEIVERS.
    CALL FUNCTION 'SO_OBJECT_SEND'
    EXPORTING
    folder_id = 'OUTBOX'
    forwarder = x_forwarder
    object_fl_change = x_object_fl_change
    OBJECT_HD_CHANGE = X_OBJECT_HD_CHANGE
    object_id = x_object_id
    OBJECT_TYPE = X_OBJECT_TYPE
    OUTBOX_FLAG = 'X'
    OWNER = SY-UNAME
    store_flag = x_store_flag
    importing
    object_id_new = x_object_id_new
    sent_to_all = x_sent_to_all "May need to use
    TABLES
    OBJCONT = X_OBJCONT
    OBJHEAD = X_OBJHEAD
    objpara = x_objpara
    objparb = x_objparb
    RECEIVERS = X_RECEIVERS.
    Firstly SAP Mail
    A SAP mail is a mail internal to the SAP system. It is a very good forum to exchange information with other users. Using a SAP mail in ABAP code facilitates exchange of automatic messages at various stages of the business process. It is easy to use and saves many hassles involved in using workflows for exchanging messages.
    The ABAP code to send a sap mail is built around the FM SO_OBJECT_SEND which has the following pattern.
    call function 'SO_OBJECT_SEND'
    exporting
    EXTERN_ADDRESS = ' '
    FOLDER_ID = ' '
    FORWARDER = ' '
    OBJECT_FL_CHANGE = ' '
    OBJECT_HD_CHANGE = ' '
    OBJECT_ID = ' '
    OBJECT_TYPE = ' '
    OUTBOX_FLAG = ' '
    OWNER = ' '
    STORE_FLAG = ' '
    DELETE_FLAG = ' '
    SENDER = ' '
    CHECK_ALREADY_SENT = ' '
    importing
    object_id_new =
    sent_to_all =
    tables
    OBJCONT =
    OBJHEAD =
    OBJPARA =
    OBJPARB =
    receivers =
    PACKING_LIST =
    ATT_CONT =
    ATT_HEAD =
    NOTE_TEXT =
    exceptions
    active_user_not_exist = 1
    communication_failure = 2
    component_not_available = 3
    folder_not_exist = 4
    folder_no_authorization = 5
    forwarder_not_exist = 6
    note_not_exist = 7
    object_not_exist = 8
    object_not_sent = 9
    object_no_authorization = 10
    object_type_not_exist = 11
    operation_no_authorization = 12
    owner_not_exist = 13
    parameter_error = 14
    substitute_not_active = 15
    substitute_not_defined = 16
    system_failure = 17
    too_much_receivers = 18
    user_not_exist = 19
    x_error = 20
    others = 21.
    THANKS
    MRUTYUN

  • Can any body tell me the general tickets.

    Hi all,
       Can any body tell me the general tickets received by users in production support.means the issues which we have to solve.

    Hi
    General tickets
    1) SID missings
    2) ODS activation failed
    3) Delta failures from ODS to Cube
    4) Authorizations to Co Codes for the reports
    5) Error records in PSA
    6) Special characters or Invalid characters
    7)Timestamp error
    Etc
    Hope it helps
    regards
    AK
    Assign Points if usefull

  • CAN ANY BODY EXPLAIN THESE QUESTIONS, VERY URGENT

    WHAT IS THE USE OF CHAPTER ID, IN CHAPTER ID RATES    WILL  BE   DETERMINES.
    HOW MANY TAX CODES NEED CST, LST.
    WHERE CAN I SEE EXCISE REGISTER
    WHAT IS MEANT BY RG1 CAN ANY BODY EXPLAIN BRIEFLY, WHAT IS THE USE OF RG1
    HOW DO I GET OPENING BALANCE FOR EVERY MONTH.
    IN DEPOT SALES, IF CREATING  EXCISE INVOICE A CERTIFICATED WILL ISSUE, IN A CERTIFICATE WHICH FIELDS WILL BE THERE.
    WHAT IS MEANT BY JURISDICTION CODE & COUNTY CODE.
    IN SD FACTORY SALES WHICH A/C ENTERIES GENERATED.
    CAN ANY BODY EXPLAIN THESE FORMS, WHICH SITUATION THESE FORMS WE ARE USING.  I NEED VERY URGENT.
    a) A form
    b) D form
    c) C form
    d) H form
    e) DDP form
    f) TR6 form
    g) D3 form.
    H) ARE.
    I) ARE 1
    j) ARE 2
    IN DEPOT SALES PRICING PROCEDURE JFACT, WHICH CONDITION TYPES  WILL COME,
    IN FACTORY SALES PRICING PROCEDURE JFACT, WHICH CONDITION TYPES WILL COME
    NOW WHAT IS THE VAT TAX.
    what is the use of common distribution channel and common divisions
    PLS FORWARD ANSWERS TO THIS MAIL ID.
    i hope that definitely people will help
    thanks every body.

    Dear vara prasad
    You can take it for granted if you post so much questions in one thread like this, nobody will answer / clarify you.
    So please make one thread per question.
    Meanwhile, just I would like to clarify for few questions
    1)  The most important feature of chapter id is that based on this chapter id which you maintain in "Excise Tax Rate",  all your excise tax rates will be flowing into your sale order / billing
    2) If the rate of tax differs, then you need to maintain a separate tax code.  For example, the LST / VAT in some state is 4%, and in some state it is 12%.  So in this case, you need to maintain two tax codes
    thanks
    G. Lakshmipathi

  • Can any body help me in creating a jar using Weblogic server tool

    I have created the class files of the container manged bean successfully.I want to create the jar file using the weblogic tool.
    I have created a new jar file and now I have to add a bean class file and a home class file to it.In the tool I choose a the path using the choose button.When I say next it complaints that it cannot locate the bean files.
    Can any body please help me soon..
    waiting for your reply.

    I had similar problems with the WLS deploy tool. I think they were solved by making sure that I started the tool from the directory that contained the root package of my EJBs.
    It might work...

  • Hi Experts can any body help in Batch management

    Hi friends i created a batch and it is working fine... now the issue comes in sales order...
    i have one product with two batches say batch no 150 units and batch no 2100 units  customer  places an order for 30 units and i issued 30 units with batch no 1 and saved the sales order. now the remaining balance of batch no 1 is 20 units and batch no 2 100 units. fine....
    now got second order for 50 units system is issuing from batch no 2 where the balance is 100. from that batch system is allocating 50 units .. if this is the case then what happens to the remaining balance in batch no 1 how can i utilize the remaining balance in batch no 1 can any body suggest me the customization steps... pls......  advance thanks
    rag sam

    dear sam,
    Check Automatic batch determination in MM02 of that material
    This indicator allows the system to carryout batch determination automatically for a line item in the sales order.
    siva

  • Hi,  can any body explain the concept of UTILIZATION IN EXCISE

    hi,
    sap gurus,
    can any body explain the concept of Utilization in excise,  if possible send me the documentation
    part of that please.
    please explain me on this also
    in direct factory sales from direct factory to customer how utilisation works
    in depot sales: first material has to reach from factory to depot and then it has to be passed to
    customer then in this situation  how utilisation works in SAP.
    regards,
    balaji.t

    Dear balaji
    Export under Rebate is the procedure in which the exporters first pay the central excise duty before clearing the goods from the factory and subsequently get it back by applying for rebate after the goods are exported.  They have to apply to the Division or to the Maritime Commissioner (designated exclusively to look after all Export related issues) as the case may be, along with the required documents (usually the Export Promotion copy of the Shipping Bill and Bill of Lading) to prove that their goods had actually been exported.  
    Rebate can be claimed for both the inputs (purchased from indigenous markets and used in the manufacture of exported goods) as well as for the final products.  Normally, rebate is being widely opted by non-excise assessees (for example garment exporters) who procure raw materials locally, manufacture their final products and export them.   It is similar to Drawback of Customs duties in respect of Imported raw materials. 
    From SD side, you have to make settings in Logistics-General --> Tax on Goods Movements --> India --> Business Transactions --> Outgoing Excise Invoices --> Maintain Default Excise Groups and Series Groups.
    Here for the combination of sales area, shipping point, plant, excise group and series group, you have to maintain Export type [N under the tab Export]
    thanks
    G. Lakshmipathi

  • Can any body tell me what is the need of creating shipping Instruction

    Hi Everybody,
    Can any body tell me what is the need of creating shipping Instruction in Material Management & where it is used.
    Menu path -> IMG -> Material Management -> Purchasing - > Material Master - > Define Shipping instruction.
    2. What is the use of Manufacturer Part Profile & how it is used in the SAP system.
    Menu path -> IMG -> Material Management -> Purchasing - > Material Master - > Define Manufacturer Part Profile.
    Thanks & Regds.....
    Rashmi

    This characteristic describes the packaging and shipping requirements that have to be fulfilled by the vendor
    The instructions issued to a vendor regarding the shipment or packing of ordered goods.
    o     CO coil
    o     NE unpacked
    o     NT nylon net
    A manufacturer part profile contains indicators and control parameters, which define the conditions for using (inventory-managed or non-inventory-managed) manufacturer parts in the procurement process.
    The manufacturer part profile specifies how manufacturer parts (MPN materials) can be used in the procurement process.
    The manufacturer part profile is assigned to the master record for a firm's own inventory-managed material.
    Among other things, it determines whether:
    u2022     The MPN material or the inventory-managed material is to be entered in a purchase order
    u2022     Info records can be created for the MPN material or the firm's own material
    u2022     The MPN material can be changed during the procurement process

  • Can any body explain the STO Process

    hi,
    sap gurus,
    good morning to all,
    can any body explain the PLANT to STORAGE LOCATION stock transfer single and two
    stepProcess in detail.
    regards,
    balaji.t
    09990019711.

    Hi,
    Stock Transfer Between Plants in One Step
    Use
    This type of stock transfer can only be carried out in Inventory Management. Neither Shipping in the issuing plant nor Purchasing in the receiving plant is involved in the process.
    Transferring stock in one step has the following characteristics:
    The stock transfer is entered as a transfer posting in Inventory Management.
    The transfer posting can be planned by creating a reservation.
    The quantity of the stock transferred is posted immediately from the unrestricted-use stock of the issuing plant to the unrestricted-use stock of the receiving plant
    The transfer posting is valuated at the valuation price of the material in the issuing plant.
    If the plants involved belong to different company codes, the transfer between plants is also a transfer between company codes. In this case, the system creates two accounting documents for the transfer posting. The stock posting is offset against a company code clearing account.
    Stock Transfer Between Plants in Two Steps
    Use
    This type of stock transfer can only be carried out in Inventory Management. Neither Shipping in the issuing plant nor Purchasing in the receiving plant is involved in the process.
    The stock transfer includes the following processes:
    A goods issue in the issuing plant
    A goods receipt in the receiving plant
    Transferring stock in two steps has the following characteristics:
    The transfer posting cannot be planned by creating a reservation.
    The quantity posted from stock is first of all managed as stock in transfer in the receiving plant. Only once the goods receipt has been posted is the quantity posted to the unrestricted-use stock of the receiving plant.
    This enables the quantity "on the road" to be monitored.
    The transfer posting is valuated at the valuation price of the material
    pl check for more info [STO|http://help.sap.com/saphelp_47x200/helpdata/en/4d/2b90dc43ad11d189410000e829fbbd/content.htm]
    regards
    sadhu kishore

  • I have interview in ibm , can any body tell queistion ask by ibm

    hi all
    iam sap fico consultantant i have interview in ibm , can any body tell queistion ask by ibm,if any way to getting interview quiestions please.......
    thank u
    chinna

    Hi,
    Dude, I dont think any one will have questions asked by IBM as such. Try the links below which might help you in your interview. You can also search in this forum for more FAQ's. Get some real time issues from this forum
    http://www.sap-img.com/financial/fi-faq.htm
    http://www.erpgenie.com/sapfunc/fi.htm
    http://www.sapprofessionals.org/?q=125_fi_questions_for_certification
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/home/sap+solutions&
    All the best
    Regards
    Genie

  • HT4061 I can not connect to ITunes Store to download updates. I have no trouble connecting to the internet. It worked OK up to about a last month. can any body help.

    I can not connect to ITunes Store to download updates. I have no trouble connecting to the internet. It worked OK up to about a last month. can any body help.

    Hi there bigyellowdigger!
    I have an article here that can help you troubleshoot this issue with your connection to the iTunes Store. That article can be found right here:
    Can't connect to the iTunes Store
    http://support.apple.com/kb/ts1368
    Take care, and thanks for visiting the Apple Support Communities.
    -Braden

Maybe you are looking for