Branch operation and return operation for routing in alternative sequence

Hi all experts.
I would like to ask which table and field store the value of branch operation and return operation for routing in the alternative sequence. I can only find them in structure (PLFLD-VORNR1 and PLFLD-VORNR2) but I want the table field of them. Would anyone please suggest a solution? Thank you.

Hi,
look in table AFFL, here the BKNT1 and BKNT2 refer to those vornr1 and vornr2 of the operation. For example in user-exit ZXCO1U01 you will find the values (BKNT1/2) in the sequence table, and when, for example, filling the LOIPRO01-Idoc, you can use the found VORNR for the E1AFFLL-segment.
See coding for example on determining VORNR1/2 (sequence_table/operation_table as in user exit EXIT_SAPLCOBT_001):
SORT operation_table BY vornr.
  LOOP AT sequence_table INTO l_sequence.
    MOVE-CORRESPONDING l_sequence TO l_affl.
* Read the operation table to determine the vornr1 and vornr2
*via the value of field BKNT1/2
    IF NOT l_sequence-bknt1 IS INITIAL.
      READ TABLE operation_table INTO l_operation
      WITH KEY aufpl = l_sequence-aufpl
               aplzl = l_sequence-bknt1.
      IF sy-subrc = 0.
        l_affl-vornr1 = l_operation-vornr.
      ENDIF.
    ENDIF.
    IF NOT l_sequence-bknt2 IS INITIAL.
      READ TABLE operation_table INTO l_operation
      WITH KEY aufpl = l_sequence-aufpl
               aplzl = l_sequence-bknt2.
      IF sy-subrc = 0.
        l_affl-vornr2 = l_operation-vornr.
      ENDIF.
    ENDIF.
Cheers,
S.

Similar Messages

  • Routing number of operations and reference operation  in the order

    Hi experts,
    If anyone knows about Routing number of operations and reference operation  in Maintenance order , please explain.
    is it used for maintenance order? if yes, please mention the path from which I can see or note the number generated by the system as Routing number of operations or operation task list no. or reference operation
    Regards,

    Hello,
    Routing number of operations in the order"(field-->AUFPL) of the order at table AFKO, using order number. Find the Operation counter number of the operation at table AFVC using "Routing number of operations in the order".
    From above we can fetch the Operation Level data of Order by using the Routing number of operations in the order"(field>AUFPL)  .Routing number of operations in the order>which solely identity of the Operation for your order after creation of order it is created this number.
    Regards,
    Rakesh
    Edited by: RAKESH ASHOK MANE on Sep 23, 2010 2:47 PM

  • Operation and Sub operation link in routing -reg

    Hi,
    In one of our report development we have to seggregate the operation number wise suboperations
    which table and fields we have to use ?
    we have to down load all the operations and sub operations for a given routing from the system and should be able to display for this operation these  are all the sub operations and display their operation timings
    please guide
    regards,
    Madhu Kiran

    Hi,
    If i go to some operation and add one sub operation for it , i am not getting in the tables both operation and sub operation
    i think both are getting stored in the same field
    can some one give some logic of fields connection to fetch the sub operatiosn of an operation ?
    PLPH table has no entries at all in our system
    i try to use PLPO and PLAS
    i require basic logic of flow
    how to get the suboperations of an operation
    pl help
    regards,
    madhu kiran

  • 1.     Defining dependencies between Work order operations and Isolation Operation Steps

    Hi All
    Will you please let me know how i can define dependencies between Work order operations and
    Isolation Operation Steps? Suppoose I want to have WAP--->WCA-->WCD at operation level, is it possible? Can we have the Switching of Status & allowing that perticular operation for releads. e.g. I have operation 1 in Maintenance WO Which needs machine where only operational control panel to be Locked & tagged. No Need to Tag total machine. So once i complete complete the taging for it & once give permits for it, system should permits only that much operation. Not all operation which may have some other permits which needs to be issued.
    Regards
    Makarand      

    Hi All
    Will you please let me know how i can define dependencies between Work order operations and
    Isolation Operation Steps? Suppoose I want to have WAP--->WCA-->WCD at operation level, is it possible? Can we have the Switching of Status & allowing that perticular operation for releads. e.g. I have operation 1 in Maintenance WO Which needs machine where only operational control panel to be Locked & tagged. No Need to Tag total machine. So once i complete complete the taging for it & once give permits for it, system should permits only that much operation. Not all operation which may have some other permits which needs to be issued.
    Regards
    Makarand      

  • HT2693 I'm trying to do a restore on a my IPhone 3Gs and I get and error code 1, here is my situation. I sold this phone on Ebay the person tried to jail break it then stated the phone was broke and returned it for a refund I lost my money and my phone! H

    I'm trying to do a restore on a my IPhone 3Gs and I get and error code 1. The iPhone "iPhone" could not be restored. An unknowen error occured (-1).
    Here is my situation. I sold this phone on eBay the person tried to jail break it then stated the phone was broke and returned it for a refund. I lost my money and my phone! How can I fix my phone?
    I get the error when trying to restore the firmware!
    Help Please!

    if I were you I would try to ask it in the iphone forum
    https://discussions.apple.com/community/iphone/iphone_hardware
    this is the appletv forum where people may not know much about iphones

  • Defining Widening Operator And Narrowing Operator

    Here is documentation for Widening and Narrowing Operators.
    There is confusion.
    Which operator should I create for converting one class to another or one structure to other or structure to class or class to structure.
    Any proper example that should explain.
    Allow time to reverse.

    =
    With value types
    Module Module1
    Sub Main()
    Dim x As Short = 1
    Dim y As Integer = x
    Console.WriteLine(y)
    Console.ReadLine()
    End Sub
    End Module
    And with classes
    Module Module1
    Sub Main()
    Dim x As New Dog With {.Head = "Blue"}
    Dim y as Mamal = x
    Console.WriteLine(y.Head)
    Console.ReadLine()
    End Sub
    End Module
    Public Class Mamal
    Public Property Head As String
    End Class
    Public Class Dog
    Inherits Mamal
    End Class
    Success
    Cor
    Am I using right operator here:
    Public Module Main
    Sub Main()
    Dim Someone As Person = "Someone"
    Dim Name As String = Someone
    Console.WriteLine(Name)
    Console.ReadKey()
    End Sub
    End Module
    Public Class Person
    Private _Name As String
    Public ReadOnly Property Name As String
    Get
    Return _Name
    End Get
    End Property
    Public Shared Narrowing Operator CType(Person As Person) As String
    Return Person._Name
    End Operator
    Public Shared Narrowing Operator CType(Person As String) As Person
    Return New Person(Person)
    End Operator
    Sub New(Name As String)
    Me._Name = Name
    End Sub
    End Class
    Allow time to reverse.

  • Mappings between table operator and joiner operator

    HI all,
    I am new to owb. I am trying to create a mapping in the OWB Mapping Editor where the scenario looks like :
    table1 operator ---------> joiner file operator
    i am looking at earlier mappings' sql code and found that there is a where clause condition that governing the above such scenario such as:
    where table1.column value = "something" then load into joiner file operator.
    But in the mapping editor, i cannot find any way to add this condition by clicking on the column name of table1. Please help.
    thank you.

    Hi
    A joiner will make one output from 2 or more inputs. A joiner has a join condition which if you select the operator (not a group or an attribute with operator) the property inspector will have a join condition for detailing the 'where' clause.
    If you want to filter a single input then use a filter operator. Again like condition the filter operator has a filter condition which if you select the operator (not a group or an attribute with operator) the property inspector will have a filter condition for detailing the 'where' clause.
    Cheers
    David

  • Group By Operator and statistics operation

    Hi all,
    in my model from the data service I obtain these fields
    sold_to (T)
    delivery_date (D)
    quantity (N)
    zdiff_date (N)
    zindex (N)
    I have to present a table where I have a row for each SOLD_TO and in the columns I'd like to show the average values.
    So the situation should be:
    sold_to | quantity (AVG) | zdiff_date (AVG) | zindex (AVG).
    For this I use the Group by operator where on SOLD_TO field I apply the Group1 and for the others fields I use the average operation.
    My problem .... I don't see the results..... all the average fields are empty but if I apply the sum (for instance) I obtain the right results.
    Where is the problem? Have you ever seen or tested this kind of situation?
    Regards, Roberto

    Hi,
    I applied your suggestion but doesn't work for the AVG. Only for the total (SUM).
    I have these records in input:
    SOLD_TO        |  DELIVERY_DATE | QTY      | DIFF_DAYS   | INDEX
    0000102004    |  02.01.2008           | 1500     | 7                    | 0,00467
    0000102004    |  05.02.2008           | 1500     | 91                  | 0,06067
    0000102004    |  05.29.2008           | 17,010  | 27                  | 0,00159
    Group By Operator:
    SOLD_TO (GROUP1)
    DELIVERY_DATE (NONE)
    QTY (AVG)
    DIFF_DAYS (AVG)
    INDEX (AVG OR STDDEV)
    The results is
    SOLD_TO        |  QTY      | DIFF_DAYS   | INDEX
    0000102004    |               |                       |
    But if apply the following Sigma for the Group by operator
    Group By Operator:
    SOLD_TO (GROUP1)
    DELIVERY_DATE (NONE)
    QTY (SUM)
    DIFF_DAYS (SUM)
    INDEX (SUM)
    The results is
    SOLD_TO        |  QTY      | DIFF_DAYS   | INDEX
    0000102004    |  20,010  |      125           |  0,06693
    Only with the total it seems to work.
    Regards, Roberto

  • Point operations and Neighbourhood operations ???

    Hi everyone, I am currently doing an assignment which is as follow
    *1) Building a program to open a video stream and play it.*
    *2) Perform the same 3 point and 3 neighbourhood operations on the video streams. Consider the object-oriented approach here.*
    I don't understand how can I perform the Point and Neighbourhood operations on video. I have no idea about this. I looked on the Internet, but there are only the codes for point and neighbourhood operations for image, not for video. Would you please give me any idea about how to do this (as detailed as possible) ? And if you don't mind, would you please give me a sample code for these operations ? Thanks so much.
    Also, I just wanna to know what is/are the differences between "+open a video stream+" and "+open a video+". I can write a code to open a video and add it to a frame or a panel, but I am not sure how it is different with the "+open a video stream+" ? Thank you very much for helping me.

    This forum is for help with the JMF framework, not for having your homework explained to you.
    If you have a specific question about how to implement some peice of your homework in JMF, then ask it here. If you have some other question about your homework, ask your professor.

  • Key Operation and Sub operation PM order

    Hi,
    What is the key (table - field) which determines the relationship between the main operation and the sub operation?
    I mean how can you detemrine that suboperation X is indeed a sub operation of this particular operation Y? You have AUFNR, AUFPL, but i'm missing somethin...
    regards,
    bert

    thanks,
    APLZL of main operation and SUMNR of suboperation

  • Separate sales and return transaction for POSDM interface to ECC

    Hi experts
    We have a requirement to separate sales and return transaction movement types (251 and 252) for even the same articles.
    Currently, we are using two-step process but the aggregation will combine both sales and return transactions together.
    (For example, if i sell 2 article A and return 1 article A, the system will aggregate to selling only 1 article A with movement type 251.
    But we want to have movement type 251 posting for 2 article A, and movement type 252 posting for 1 article A.)
    Would you have any recommendation in terms of configuration?
    Thanks a lot for that.
    BR
    Dom

    Hi Rashi Gaur,
    Yes, As already explained by Vikrant, You Can create a separate task group for sales and assign that to sales item type (2001) and Create separate task group for returns and assign that to return item type (2801). This can be performed in two-step agregation process. The sales records will be in and returns will be .
    Thanks and Regards,
    Ramesh D

  • Operating and Non-operating temperatures for iPhone 5s

    For all iPhones it is mentioned as below -
    Nonoperating temperature: −4° to 113° F (−20° to 45° C)
    Operating ambient temperature: 32° to 95° F (0° to 35° C)
    Above info is mis-leading.
    So which is  the temperature for optimal usage if all temperatures between −4° to 113° F are non-operating?

    Srikant Chakravorty wrote:
    For all iPhones it is mentioned as below -
    Nonoperating temperature: −4° to 113° F (−20° to 45° C)
    Operating ambient temperature: 32° to 95° F (0° to 35° C)
    Above info is mis-leading.
    No, it's not mis-leading. It is a standard way of marking product temp ranges.
    It can safely be stored (non-operating) in temps of −4° to 113° F (−20° to 45° C)
    If it is hotter or colder than this, it may get damaged.
    It will operate correctly in temps of 32° to 95° F (0° to 35° C).
    Hotter or colder than this and it may not operate.

  • My photoshop elements serial number is not working on my new mac. I had windows before and returned it for a mac but can't get my serial number to work

    my photoshop elements and Lightroom serial numbers won't work for my new mac. I bought these softwares via download on my windows laptop but returned that laptop because the quality was not great. I decided to buy a mac and now can't use my serial numbers to download the software.

    You might try here:
    (click on the Chat now button)
    Activation & Deactivation Help
    Whatever you do, don't post your serial here.
    Your entering the 24 digit serial for photoshop elements 12 starting with 1057-xxxx-xxxx-xxxx-xxxx-xxxx
    I agree with bearcatnat in that i don't know what adobe expects us to do about serials on the forums, since were just users such as yourself and don't work for adobe.

  • No Return Label for Router return

    I received a new router for my broken one.  I am suppose to return the old one with in 7 days.  Do not know where to send it, since you did not send me a prepaid return label.

    How old is your current router? Have you tried asking Verizon to send a return label, letting them know of the situation (in case they did say you will absolutely be billed for non-return)?
    ========
    The first to bring me 1Gbps Fiber for $30/m wins!

  • Difference between data logic operation and business operation

    hiii, DI core, main component of DI API, performs all <b>data logic operaton</b> where as OBServer.dll perform <b>bussiness logic operation</b> at database level...
    what is the difference between these operations????

    Hi Nirdesh,
    The DI API offers a number of objects/methods that allow you to access the information stored in the database (tables) by using objects.
    The DI API is represented by the SboBobCOM.dll, in your code you only add a reference to this COM dll. This dll offerst the objects/methods you can access.
    The SbobobCOM.dll is using the OBServer.dll, this dll contains all the business logic rules (like for example: you cannot delete a BusinessPartern if it has already some documents created) that will control all actions you are trying to do with the DI API methods/objects.
    You have a schema representing both dlls in the DI API help file -> Introduction -> DI API components section.
    Regards
    Trinidad.

Maybe you are looking for

  • FMBBC Express document " Update was terminated error"

    Hi , while saving data FMBBC i am getting saved message , after that if i come out of the Tcode i am getting message as Express document " update was terminated".I was debugging the standard code found that the error comes from SXOP table entry, This

  • Syncing issues with facebook

    I've synced my phone with my facebook account so my friends will be included in my contacts.  However, the profile pictures will not transfer.  What am I doing wrong/

  • How can i recover my deleted records

    Hello sir, I m from j.b.diamond,surat(india). I purchased your oracle 9i (9.0.2) version since last few month. Now a days I have one problem so please solve it.. I delete few records from my database and then commit it, is it possible to recover that

  • Interface Related

    How to create an interface(report) to Extract the data from SAP and send it to a third party system on a weekly basis, when the report which will be created for this particular interface is executed.

  • [SOLVED ]pacman -S R, but R does not work

    I installed R following this tutorial: https://wiki.archlinux.org/index.php/R But when I try to start R, I get: /usr/lib/R/bin/exec/R: error while loading shared libraries: liblzma.so.5: cannot open shared object file: No such file or directory I hav