Want to propose Alternative Route in Order

Hi friends,
I would like to know what configuration settings I should be doing for to propose Alternative Route in Order.
Condition is as below.
Rec Zone(X)Shipping Zone(Y)SH Cond(02)+ Trans Grp(0001) = Route( ABC) .Here I want to propose (popup) laternative routes.
Please reply soon.Waiting for your kind reply.

hello again. 
also look into IMG > SD > Basic Functions > Routes > Route Determination > Maintain Route Determination.
if you are just defining a combination of departure zone and receiving zone, click 'New Entries'.  if you are adding alternative routes, select a combination and click Route Determination without weight group.  in the next screen, you can make your assignments based on Shipping conditions + Transport group + proposed route.
if weight group is relevant, then click on Route Determination with weight group.  in the next screen, the weight group and actual (alternative) route can be assigned together with the transport group and shipping conditions.
regards.

Similar Messages

  • MFBF and Alternative Routing Sequence

    Hi;
    We are using REM in PP.We confirm via MFBF. And we create routings via ca01. I want to use alternative routing sequence during confirmation.
    What should I do? or Is it possible for REM?
    Thanks.

    Hi;
    Thanks for your answers. I dont want to create new production versions. But routing informations are change.
    Ex: I have two machines in a production line, lets say it A and B. This line has a work center code in SAP ( lets says Line1)
    When I use only machine A I produce 100 pieces in 5 minutes with 2 worker. But when I use A & B at the same time I produce 100 pieces in 3 minutes with 3 worker.
    Machine A and B are connected to the same conveyor belt, so I put the pieces in the same palette. And during confirmation I use Line1 as workcenter.
    What should I do to post the exact activities ?
    Thanks for your information.

  • BAPI For listing alternative  routing with sequence details.

    Dear all,
    I want to use BAPI For listing alternative  routing with sequence details.
    Pl' tell BAPI function Module for routing .
    Thanks.

    I am not sure ,but check with     BAPI_ROUTING_CREATE

  • Want to create a multiple Purchase Order using one file source

    I'm want to create a multiple purchase order using one source file. I want to read the file source create LINES in a purchase order and when the Vendor code changes I want to Add the purchase order and then create a new purchase order and Add LINES and so on.
    Right now I get  Item.no is missing [POR1.ItemCode][Line 2]

    Here is a code sample
        Private Sub testcode()
            Dim strOrdplanFile As String
            Dim oLineRec As SAPbobsCOM.Recordset
            Dim strLine As String = ""
            Dim ItemName As String
            Dim Quantity As String
            Dim RequiredDate As String
            Dim SupplierType As String
            Dim ShipTo As String
            Dim Vendor As String
            Dim oPurchaseOrder As SAPbobsCOM.Documents
            Dim bAddPOrder As Boolean = True
            Dim bPurchase As Boolean = False
            Dim sSQL As String
            Dim iReads As Integer = 1
            Dim iCurrentPurchaseNumber As Integer = 0
            Dim bErrors As Boolean = False
            Dim retCode As Double
            oPurchaseOrder = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oPurchaseOrders)
            strOrdplanFile = strFolderLocation & "ORDPLAN.TXT"
            If File.Exists(strOrdplanFile) And FileLen(strOrdplanFile) > 0 Then
                Dim sr As New StreamReader(strOrdplanFile)
                strLine = sr.ReadLine()
                txtPurRec.String = "0"
                oFormStatus.Update()
                Try
                    Do
                        Vendor = strLine.Substring(0, 8).Trim()
                        ShipTo = strLine.Substring(12, 8).Trim()
                        SupplierType = strLine.Substring(26, 1)
                        ItemName = strLine.Substring(27, 20).Trim()
                        Quantity = strLine.Substring(94, 8)
                        RequiredDate = strLine.Substring(206, 9)
                        oLineRec = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.BoRecordset)
                        sSQL = "SELECT PrcrmntMtd, CardCode FROM OITM WHERE ItemCode = '" & ItemName & "'"
                        oLineRec.DoQuery(sSQL)
                        If oLineRec.RecordCount() > 0 Then ' if it exists add the record
                            If oLineRec.Fields.Item(0).Value.ToString = "B" Then
                                If (bAddPOrder) Then
                                    oPurchaseOrder.CardCode = Vendor
                                    oPurchaseOrder.DocDueDate = RequiredDate
                                    'Add first item to the purchase order
                                    oPurchaseOrder.Lines.ItemCode = ItemName
                                    oPurchaseOrder.Lines.WarehouseCode = ShipTo
                                    oPurchaseOrder.Lines.Quantity = CDbl(Quantity)
                                    oPurchaseOrder.Lines.Add()
                                    bAddPOrder = False
                                    bPurchase = True
                                    iCurrentPurchaseNumber = iCurrentPurchaseNumber + 1
                                    txtPurRec.String = "R: " & iReads & " W: " & iCurrentPurchaseNumber.ToString
                                    oFormStatus.Update()
                                Else
                                    'compare CardCode to make sure Vendor hasn't change
                                    If (oPurchaseOrder.CardCode.CompareTo(Vendor) = 0) Then
                                        'Add item to the purchase order
                                        oPurchaseOrder.Lines.ItemCode = ItemName
                                        oPurchaseOrder.Lines.WarehouseCode = ShipTo
                                        oPurchaseOrder.Lines.Quantity = CDbl(Quantity)
                                        oPurchaseOrder.Lines.Add()
                                    Else
                                        'vender code changed
                                        retCode = oPurchaseOrder.Add()
                                        If (retCode <> 0) Then
                                            SBO_Application.MessageBox(oCompany.GetLastErrorDescription(), 1, "OK", "", "")
                                        End If
                                        oPurchaseOrder.CardCode = Vendor
                                        oPurchaseOrder.DocDueDate = RequiredDate
                                        'Add first item to the purchase order
                                        oPurchaseOrder.Lines.ItemCode = ItemName
                                        oPurchaseOrder.Lines.WarehouseCode = ShipTo
                                        oPurchaseOrder.Lines.Quantity = CDbl(Quantity)
                                        oPurchaseOrder.Lines.Add()
                                        bAddPOrder = False
                                        bPurchase = True
                                        iCurrentPurchaseNumber = iCurrentPurchaseNumber + 1
                                        txtPurRec.String = "R: " & iReads & " W: " & iCurrentPurchaseNumber.ToString
                                        oFormStatus.Update()
                                    End If
                                    iReads = iReads + 1
                                End If 'new
                                strLine = sr.ReadLine()
                            End If
                        End If
                    Loop Until sr.EndOfStream
                Catch ex As Exception
                    MsgBox(ex.Message, MsgBoxStyle.Information)
                End Try
                If (bPurchase) Then
                    lRetCode = oPurchaseOrder.Add()
                End If
                sr.Close()
                swLogFile.WriteLine("Purchase orders stored : " & iCurrentPurchaseNumber)
                oPurchaseOrder = Nothing
            End If
        End Sub

  • In creating a playlist in iTunes of two different versions of a classical string quartet, can the movements be alternated in play order. In other words, Movement 1 by group A, followed by Movement 1 by group B?

    In creating a playlist in iTunes of two different versions of a classical string quartet, can the movements be alternated in play order. In other words, Movement 1 by group A, followed by Movement 1 by group B? 

    In creating a playlist in iTunes of two different versions of a classical string quartet, can the movements be alternated in play order. In other words, Movement 1 by group A, followed by Movement 1 by group B? 

  • Using ipad2 and airplay with appleTV; can I have the ipad2 on wifi and the AppleTV on a wired port of the same router in order to use airplay?

    can I have the ipad2 on wifi and the AppleTV on a wired port of the same router in order to use airplay?

    I belive you can, I think my friends Apple TV is connected to their internet via an Ethernet cable, and we use Airplay sometimes using our iPads that are connected to the same network via WiFi. It should work as long as they are both connected to the same network. However, I don't have an Apple TV of my own, so don't take this as a solid answer.

  • I have $0.52 Credit in my app store. I want to make it zero in order to change the country.

    I have $0.52 Credit in my app store. I want to make it zero in order to change the country.
    I have $0.52 Credit in my app store. I want to make it zero in order to change the country.
    I have $0.52 Credit in my app store. I want to make it zero in order to change the country.
    PLZ HELP.. Delete it

    Contact Mac App Store support and request that they zero out your account.
    Mac App Store Support -
    http://www.apple.com/support/mac/app-store/

  • I want to change the top level order of itunes playlists

    This is rather odd problem.  There is a lot of information available regarding organising tracks within playlists but I want o change the top level order of the playlist themselves.
    I have an ipod to car CD player adaptor that can select itunes playlists as if they were  single CDs.  The problem is that the adaptors works through the list of itune playlists in order i.e. the first "CD" is the "classical music smart playlist" followed by the other default smart playlists and then by my own playlists.  What I want is force the smart playlists to the bottom of the top level list so that the adaptor finds my playlists first.  I am considering deleting all smart playlists but I see some value in keeping them.  I think the answer is no it can't be done but I be interested to hear if anyone has some ideas on this.
    N.B. I am using itunes 12.01.26 on my Macbook to manage my itunes library.

    Hey guys m I got the answer for the below question.
    Oracle have few Restriction and limitation on such Advanced table in sorting the data,
    Few of them are as mentioned below ...
    1. Sorting is not allowed for tables that allow inserts.
    2. Sorting is not supported for tables containing updateable columns
    3. Sorting is disabled when the Select column is checked for a row in a table or when Hide/Show is present in a table.
    Because of the above limitations , we cannot sort or override the existing alphabetical name sort order to Date applied sort order on the View Applicant advanced table.
    You can observe that , View Applicant page is having an option called "Update Status" which allow us to update applicant’s status or rating in the Advanced table.
    On such updatable advanced tables, oracle does not allow us to override the sort order on any of the table columns.
    Keeping it in a nutshell , I can say it's does not allow us to change the sort order of the view applicant advanced table ( which is having updateable columns ) to sort them in Date applied instead of Name( which is default ).

  • Sharepoint 2010 under Library created folder , under this folder we have added so many folder, wants to keep them in ascending order,how to save as ascending order folder

    have created folder in library Cost , and under
    Cost created so many folder for different model, wants to keep them in ascending order,
    I found the option I can sort it as ascending order, when I close this screen than it goes back to way it was,
     is there a way to save it in ascending order all the folder screen, so when I open cost library , it stays in same order,
    2nd question :   we have approved column ,  when the person approved the cost , is there a way to keep that person the name,
    right now when the next time some other users open that file that users name comes in the approved column,
    can some one please help,
    any advise will be helpful.

    Hi Bitia,
    To create workflow in SharePoint, I recommend to use SharePoint Designer to achieve this goal.
    Firstly, we need to allow the site to be edited in SharePoint Designer, please refer to the "SharePoint Designer settings page" part in the article below:
    https://support.office.com/en-ca/article/Managing-SharePoint-Designer-2010-e12d76ce-83f7-4dde-864c-6c1e210399b6#__toc254689397
    Secondly, we can install SharePoint Designer from the site or just download and install it.
    https://kb.pachosting.hk/article/how-to-install-sharepoint-designer-to-edit-site-content-9333.html
    http://www.microsoft.com/en-us/download/details.aspx?id=16573
    After that, we can use SharePoint Designer to create workflow:
    https://support.office.com/en-ie/article/Introduction-to-designing-and-customizing-workflows-32c9c0bf-5e20-4f74-8b9c-d3ea79f2962b
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • Alternative router settings to replace hh4

    Hi all
    I have recently purchased a Cisco rv220w router to replace my home hub 4. I have tried and tried but can't seem to get the router to receive an internet signal. I have used pppoe and changed the user name to that of my home hub.. I think one issue might be that my new router is asking me for a password and the hh4 doesn't have one?
    Any one on here had any luck or can share some advice about using an alternative router? Would a call to bt help?
    James

    Just to confirm, are you on Infinity or adsl broadband. If on adsl broadband your new router does not have an adsl modem it is only a router and that would be the reason it won't work.
    If you are on Infinity I presume you are connecting through the Openreach modem as your router does not have a VDSL modem built in and would not work with out the Openreach one.

  • Want to Create batch in process order at a time of Operation release.

    HI,
    We are going to release operation one by one for process order. There are 4 operations in my process order. I want to create batch in process order header when i release first operation.
    Is there  way i can set the Production Scheduler Profile  to PREL to create batch at header level.
    Thanks in advance!

    Thanks for the Information,
    to my understanding, all the Operation controls are in Operation control key.
    There is No Batch creation functionlaity assiciated with Operation control key.
    Look for a user exit to create the Batch with the PREL of the Header or REL of the 1st operation.
    Regards
    Ratan

  • Want to copy an entire sales order item and add it as a new item to same SO

    Hi,
      I want to copy an entire sales order item and add it to the same sales order with a different quantity. When I use the regular BDC and add it gets me only the default values for fields like Forwarding Agent etc. But doesnt actually copy any changes. Is there some standard SAP function module or some other mechanism I can use to exactly copy the original item along with all the changes values e.g pricing conditions, forwarding agent etc.
    Thank you for reading.

    How will this help me for copying an item? This function module is only useful for the following
    1. Delete the whole order
    2. Delete order items
    3. Change the order
    4. Change the configuration
    In order to change the order items I first need to know the items.
    Is there any function module which can read all the values in a sales order item, then I can pass them to BAPI_SALESORDER_CHANGE probably

  • Alternative router to hh3

    ok so the hh3 is an ok router for standard use BUT not ideal for advanced use, NAT loopback and dyndns being the main issues, so what is a good alternative router to use that does a proper routing job,
    guess the main requirements are
    it needs to support connection to infinity
    needs to support dyndns
    needs to allow NAT loop back
    802.11n

    A quick check of the TP Link forum for the TP-Link TL-WR1043ND seems to indicate that it does.
    11-15-2012 04:33 #8
    Taylor
    Junior Member
    Join Date
    Sep 2012
    Posts
    4
    I'm pretty sure TP-LINK wired routers support NAT Loopback, I have test it with my IP camera, it works.
    There are some useful help pages here, for BT Broadband customers only, on my personal website.
    BT Broadband customers - help with broadband, WiFi, networking, e-mail and phones.

  • Navigation App with alternative routes Lumia 1020

    Has anyone found a good navigation app that will give an alternative route?
    With my android phone I've used Google maps and Scout.  I can't find one for the Windows phone.

    Hi @ewand ,
    There must be an option to make the Audi completely forget the phone, as well as removing the car from the list of known bluetooth devices on the phone, then start the pairing again. It is unclear from your previous post if this has been tried already? (Re-pairing can be interpreted in different ways).
    I am puzzled why it would work on one phone and not the other similar phone.
    Hans

  • Scheduling of Parallel Sequence in Routing & Production Order

    Hello Friends,
    I have gone through sap library & many other threads related to maintaining & scheduling of parallel sequence in Routing as well as Production Order.
    For the example, I have 3 operations : 0010,0020 & 0030.
    I want to maintain 0020 & 0030 as Parallel Operations ( Parallel Sequence) i.e. for both operations I have maintained same lead times so that both should start & end at same time parallely.
    First of all, I have maintained all operations in standard sequence 0 all 0010,0020 & 0030 operations and also maintained tick in Required splitting check box.
    Same way , I have maintained operations 0020 & 0030 in Parallel sequence with branching operation as 0020 & Return operation as 0030. Ref. sequence i have maintained as 0 (Std. Sequence).
    Now when I am checking in Graphic it is not showing both operation 0020 & 0030 as parallely scheduled and hence same is not reflected in Production ORder as well.
    Kindly share your valuable views reg. what may be other settings for parallel sequence which I may be missing.
    Thanks in advance.
    Regards,
    Tejas

    Hi Abhijt,
    Thanks for your reply. I went through your thread & I followed same steps as mentioned by you in your suggested threads.
    I have removed Parallel sequence fully & maintained Required Overlapping for all my 3 operations : 0010,0020 & 0030
    I have maintained workcenters as below :
    0010 A  Set up 2.0 Hrs   Machine 5.0 Hrs   Labour 1.0 Hr
    0020 B  Set up 2.0 Hrs   Machine 5.0 Hrs   Labour 1.0 Hr
    0030 A  Set up 2.0 Hrs   Machine 5.0 Hrs   Labour 1.0 Hr
    I checked scheduling in routing itself same way you suggested with start date today's date & forward scheduling it gives following results :
    0010 start time 07:00:00
    0020 start time 07:13:42
    0030 start time 09:14:39
    My concern is with mainly start time of operations 0010 & 0020 since for both of these are processed on different workcenters A & B respectively then why not starting exactly on same time on 07:00:00 AM only instead another operation is starting on 07:13:42AM. I am unable to find how this difference of 13mins 42 seconds is coming.
    Kindly provide your feedback. Also let me know if you need any more details.
    Regards,
    Tejas

Maybe you are looking for