Split functionality in FP05

Hello Experts,
I have a requirement like we will get two documents from billing with one account debit item and other account will have credit item. For example if first contract account having 100 , but the customer paid only 50 then i need to pay to franchise 50 only and remaining amount i had put lock. i tried different events 110,20,32 but it is not working.
I am not sure what parameters need to be send to acheive this requirement please help me to resolve it.
Here i am having requirement like user can give invoice reference number (XBLNR) , this reference number will be maintained same for both the contract accounts.
Thanks & Regards,
Murali.

Hi Murali,
I didn't get your requirement fully.Is it related to posting of a credit amount for partial payments?
Can you elaborate
Thanks,
Amlan

Similar Messages

  • Order split functionality with PP-PI

    Hello Forum,
    I am not sure whether we can use the order split functionality with process orders .  I had implemented it earlier for a client with discrete MFG production type but not aware whether we can do so in process industry (couldn't find the provision to do so in process order operation overview screen function menu path).
    Cheers
    Kaushik

    Hi Kaushik,
    Yes your right.
    Order split functionality is only applicable for Discrete manfg not for PI industry this is major difference between PI & DM.But you can achieve this at the time of process order confirmation.
    Example :-In the Goods Movement Overview of Process Order confirmation FG material is done Auto GR. This FG material Quantity needs to be splitted. Push button "Split" is provided in the bottom of the Goods Movement Overview screen of Process Order Confirmaton.
    Say FG quantity = 25 KG  which is to be confirmed. Client wants to split the FG quantity into 1 KG wise, for this he needs to split into 25 times.
    You can implement this by using below work order
    Please use the WORKORDER_GOODSMVT for splitting the GR in Confirmation
    This u can implement in PI.Also check Mr.Paulo reply that could be one possibility.
    check & revert.
    TnX

  • Problem in using Split function

    Hello,
    I have a problem using the Split function and I can't find any solution in internet.
    I'm trying to make a list of int but it seems that the Split function doesn't work.
    Can you help me please ?
    Here is my code :
    public class Dessin
            List<Forme> dessin = new List<Forme>();
            public void Ajouter(Forme forme)
                dessin.Add(forme);
            public void Lecture()
                StreamReader monStreamReader = new StreamReader("ExempleTout.csv");
                int ligne = int.Parse(monStreamReader.ReadLine());
                while (ligne != null)
                    int[] temp = ligne.Split(';');        // Error : 'int' doesn't contain a definition for 'Split'
                    if (temp[0].Equals("Cercle"))
                        Cercle cercle1 = new Cercle(temp[1], temp[2], temp[3], temp[4], temp[5], temp[6], temp[7], temp[8]);
                    ligne = int.Parse(monStreamReader.ReadLine());
                foreach (Cercle c in dessin)
                    Console.WriteLine(c.ToString());
                    Console.ReadKey();
                Console.ReadKey();
                monStreamReader.Close();
    Best regards,

    Split is a method of string, not int. You are looking for strings anyway, I don't know why you'd parse to an int to begin with. Try this:
    string ligne = monStreamReader.ReadLine();
    while (ligne != null)
    string[] temp = ligne.Split(';');
    if (temp[0].Equals("Cercle"))
    Cercle cercle1 = new Cercle(int.Parse(temp[1]), int.Parse(temp[2]), int.Parse(temp[3]), int.Parse(temp[4]), int.Parse(temp[5]), int.Parse(temp[6]), int.Parse(temp[7]), int.Parse(temp[8]));
    ligne = monStreamReader.ReadLine();
    ~~Bonnie DeWitt [C# MVP]
    http://geek-goddess-bonnie.blogspot.com

  • Can I use split function in PLD?

    Dear Experts,
    Can anyone show me if I have this value in a variable F_001 in PLD.
    012345-FAB
    How can I get the below output?  (Taking off the -FAB, by either using a split() function or equivalent)
    012345
    Much Thanks!
    Chinho

    Hi Chinho,
    ok, for example, IF you use add the last 4 Character only in CardCode(-FAB)
    F_001 -> CardCode = 012345-FAB
    or
    F_001 -> CardCode = 1000123456-FAB
    or
    F_001 -> CardCode = 987456814-ADM
    but you need to print the Value of CardCode is before last 4 Character Value .
    Output: 012345 or 1000123456 or 987456814
    Try this formula in PLD.
    Substring(F_001,0,(Length(F_001)-4))
    Regards,
    Madhan.

  • Split Function in Java 1.4

    Hi,
    I tried the new split function in the Java 1.4 and it works except with some characters like '|' and '[' .
    Please review the code below let me now the suggestions.
    /***********Program******************/
    class SplitCheck
         public static void main(String args[])
              String aSplit[];
              aSplit="ABC|1|a".split("|");
              for (int i=0;i<aSplit.length;i++)
                   System.out.println("String=" + aSplit);
    /***********Program******************/
    The out program is expected to be like this.
    String=ABC
    String=1
    String=a
    But I got it as
    String=
    String=A
    String=B
    String=C
    String=|
    String=1
    String=|
    String=a
    Is there any exception in using the split function.
    Waiting for your reply,
    Sham

    I think that was a bad idea to push a regex functionality
    into a java.lang.String directly...

  • Help needed on split function

    Hi All,
    i have a small code :-
    String selecteID = "QP|10009";
    String radioId []= selectedID.split("|");
    int i = 0 ;
    System.out.println("radioId[0] ="+radioId);
    System.out.println("radioId[1]= "+radioId[++i]);
    Its output is
    radioId[0]=
    radioId[1]=Q
    However i wanted the code to return ans as :--
    radioId[0]=QP
    radioId[1]=10009
    Why does the split function does not work for '|' ? Or we cannot use '|' in case of split functions.

    Personally I prefer split("[|]")coz I hate trying to read RE's full of those dang \\'s
    Keith

  • Problem with   split function

    The split function doesn't work.
    Following function:
    var s:String ="test (H) :) (L) (L)  :) (H) (H)(H)(H:):) "
    var myPattern:RegExp = /\([a-zA-z0-9]\)/g;
    trace(s.match(myPattern))
    trace(s.split(myPattern))
    this is the output:
    (H),(L),(L),(H),(H),(H)
    test , , ,  , ,,(H:):)
    The split function is deleting all the matches! Why is this happening?

    The split function works differently with Regular expressions
    For example look at this code
    var s:String ="test (H) :) (L) (L)  :) (H) (H)(H)(H:):) "
    var myPattern:RegExp = /\([a-zA-z0-9]\)/g;
    trace(s.match(myPattern))
    trace(s.split(myPattern))
    var myPattern2:RegExp = /(:[)|(pD*]|;[)(*])/g;
    trace(s.match(myPattern2))
    trace(s.split(myPattern2))
    Regular expression pattern 2 will find emoticons and split them into items in the array. For some reason this is not happening in the first regex pattern.
    this is the output of the above code (ignore the emoticons):
    first pattern: Notice (H) is removed
    (H),(L),(L),(H),(H),(H)
    test , , ,  , ,,(H:):)
    second pattern: Notice smiley not removed, but split a new array item. This is correct.
    test (H) ,:), (L) (L)  ,:), (H) (H)(H)(H,:),,:),

  • 'Add Edit' aka cut/slice/split function working differently in CC.  Can't add to tracks selected on left pane (v1, v2, etc).

    I've noticed that the 'Add edit' aka cut, slice, split function of PP CC no longer adds the edit to the clips selected in the left pane (v1, v2, etc).  Instead I have to highlight the actual clips on the timeline before cutting them.  This is inefficient and not how Premiere Pro has functioned since I started using it years ago.  Is there a workaround for this?  I tried locking the tracks I don't want cut and doing an 'Add Edit to all' but there is a half second to second delay using that method which slows down my editing.

    In version 7.2.2, the keyboard shortcut works on all targeted tracks when no clips are selected, and on selected clips without regard to targeting.  This gives the best of all possible scenarios.
    The tool (C) cuts on the clips you apply it to, without regard to targeting.

  • Split function failed with '&'

    Hi, I'm using the split function to retrieve some values, like this:
    String s_id = request.getParameter("id");
    String[] id_array=s_id.split("�");
    if (id_array != null){
         out.println(id_array[0]);
         out.println(id_array[1]);
    It works almost fine, except when the "id" field contains '&', then I got an error:
    java.lang.ArrayIndexOutOfBoundsException: 1
    Does anyone have any idea?!
    thanks..

    oops, my code was a bit messed up with the formatting...
    try one more time......
    if(s_code.equalsIgnoreCase("Participant1")){
                             while(i3.hasMoreElements()){
    final Participant1VO vo = (Participant1VO)i3.nextElement();
    out.println("<tr><td><a href=\"insert_code.jsp?id=" + StringUtil.escape(vo.getParticipant1()) + "�" + StringUtil.escape(s_code) + "\">"+ vo.getParticipant1() +" </a></td>" +
                   "</td><td> <input type='checkbox' name='checked' value= " + vo.getParticipant1() + "> " + "</td></tr>" );

  • Split Function unable to parse string correctly

    Hi,
    I'm using split function to split string into multiple rows using comma "," as delimiter. In a string I have following values which are not parsed correctly as they have comma inside the values. 
    American Dawn, Inc.
    Battalian USA, Inc.
    Fria USA, Inc.
    Lazer, Inc.
    Mexilink Inc.
    Is there any other approach to fix this issue?
    Here is the split function Im using:
    CREATE Function [dbo].[fnSplit] (
    @List varchar(MAX), 
    @Delimiter char(1)
    Returns @Temp1 Table (
    ItemId int Identity(1, 1) NOT NULL PRIMARY KEY , 
    Item varchar(MAX) NULL 
    As 
    Begin 
    Declare @item varchar(MAX), 
    @iPos int 
    Set @Delimiter = ISNULL(@Delimiter, ';' ) 
    Set @List = RTrim(LTrim(@List)) 
    -- check for final delimiter 
    If Right( @List, 1 ) <> @Delimiter -- append final
    delimiter 
    Select @List = @List + @Delimiter -- get position of
    first element 
    Select @iPos = Charindex( @Delimiter, @List, 1 ) 
    While @iPos > 0 
    Begin 
    -- get item 
    Select @item = LTrim( RTrim( Substring( @List, 1, @iPos
    -1 ) ) ) 
    If @@ERROR <> 0 Break -- remove item form list 
    Select @List = Substring( @List, @iPos + 1, Len(@List)
    - @iPos + 1 ) 
    If @@ERROR <> 0 Break -- insert item 
    Insert @Temp1 Values( @item ) If @@ERROR <> 0 Break 
    -- get position pf next item 
    Select @iPos = Charindex( @Delimiter, @List, 1 ) 
    If @@ERROR <> 0 Break 
    End 
    Return 
    End
    Another user in this forum posted a split function that
    he wrote:
    CREATE FUNCTION dbo.splitter(@string VARCHAR(MAX), @delim CHAR(1))
    RETURNS @result TABLE (id INT IDENTITY, value VARCHAR(MAX))
    AS
    BEGIN
    WHILE CHARINDEX(@delim,@string) > 0
    BEGIN
    INSERT INTO @result (value) VALUES (LEFT(@string,CHARINDEX(@delim,@string)-1))
    SET @string = RIGHT(@string,LEN(@string)-CHARINDEX(@delim,@string))
    END
    INSERT INTO @result (value) VALUES (@string)
    RETURN
    END
    GO
    Both of them are unable to parse above values incorrectly.
    FYI:  String is made of values that are selected
    by user in SSRS report. I think SSRS when combine values , put comma "," between multiple values.
    Any help or guidance would be appreciated.
    ZK

    duplicate of
    https://social.msdn.microsoft.com/Forums/sqlserver/en-US/820ac53c-ce25-4cc7-b828-5875a21d459d/split-function-unable-to-parse-string-correctly-in-ssrs-report?forum=sqlreportingservices
    please dont cross post
    Please Mark This As Answer if it solved your issue
    Please Vote This As Helpful if it helps to solve your issue
    Visakh
    My Wiki User Page
    My MSDN Page
    My Personal Blog
    My Facebook Page

  • Salary Split functionality in R12

    Hi there , Does any one used the new feature "Salary Split" functionality in R12

    I raised an OSS note , but got a reply that it is the way it works.

  • Message Mapping Split Function Problem

    Hi All,
    Could somebody plz help me on this problem of splitting the messege:
    Source Field:
    -MATMAS
      -Idoc
         -EMARAM
           -MTART: 1,
                            2,
                            3
    Target Required:
    Based on the occurrence of  Mtart, the target Idoc should be generated:
    -MATMAS
      -Idoc
         -EMARAM
           -MTART: 1
    -MATMAS
      -Idoc
         -EMARAM
           -MTART: 2
    -MATMAS
      -Idoc
         -EMARAM
           -MTART: 3.
    Should I use a User-def function for the same or a split by value is sufficient.
    I want to generate several idocs in my target if there are several Emaram segments in a single file in the source...!
    Thanks & Regards,

    Hi,
    You cannot use Multi Mapping as you have the Idoc adapter on the inbound side. There is a work around though.
    Use SAP note :  814393  and change the occurence of your IDOC from 1..1 to 0 to unbounded.
    Your mapping requirement is notvery clear though. Can you give some more detail?
    Regards,
    Bhavesh

  • Document Splitting Function in 6.0 dectvt & reactvt

    Dear All,
    At our client site, some user with access to customisation, deactivated the Document Splitting by checking the Inactive Tick for the Company Code.
    This came to light after some days. This directly affected out Business area balance sheet.
    Now client wants to reactivate Document Splitting.
    My question is -
    1) Can we do it now again?
    2) If yes, what problems we may face?
    We have started working on it.
    If anybody of you has any experience / suggestions, pl help.
    Thanks & regards,
    Gov

    Dear Gov,
    First you stop giving IMG authorization to users.
    u check for required fields in document splitting,
    and find when they de activated this function,
    if it is very period is very less or transactions are less u better to assign required fields in all those transactions before activating.
    If the splitting fields are not available system will not accept clearing transactions. and your statement of affairs also will show wrong information.
    you can activate at any point of time
    regards

  • Document Splitting Function in 6.0 deactivation & reactivation

    Dear All,
    At our client site, some user with access to customisation, deactivated the Document Splitting by checking the Inactive Tick for the Company Code.
    This came to light after some days. This directly affected out Business area balance sheet.
    Now client wants to reactivate Document Splitting.
    My question is -
    1) Can we do it now again?
    2) If yes, what problems we may face?
    We have started working on it.
    If anybody of you has any experience / suggestions, pl help.
    Thanks & regards,
    Gov

    Dear Gov,
    First you stop giving IMG authorization to users.
    u check for required fields in document splitting,
    and find when they de activated this function,
    if it is very period is very less or transactions are less u better to assign required fields in all those transactions before activating.
    If the splitting fields are not available system will not accept clearing transactions. and your statement of affairs also will show wrong information.
    you can activate at any point of time
    regards

  • Split Function in PM orders

    Dear All
    Can you provide information on this functionality in orders? How it is used ? when it is used?
    Regards

    I assume that by split you mean splitting the work of operation on an order between different persons.
    You assign individuals to WC (Mini HR master activated). Then create an operation with that WC with certain hours.
    Once you do that click on operation and go to internal tab. In this tab at the bottom you will see the details of assigning different persons and work to the same work center. You can also dispatch the work from here. For detailed analysis you can use CM25.
    This functionality is used, where your HR is in place and you want to assign a specific resource on a specific operation.
    Also search forum for this and you should get some posts around this.
    Thanks
    Sarang

Maybe you are looking for

  • My apple mac note book laptop

    my apple mac notebook  white in colour thicker looking than the newer laptops  which is running OS X Mavericks .  isnt starting up it goes from the apple logo to a blank grey screen it wont let me do anything at all with is what do i do? i really don

  • Upgrade of iPhone 5 failed 95% in with "AMRestoreErrorDomain error 6 - failed to fixup var"

    Hi, I am trying to upgrade my iPhone 5 to iOS 8 using itunes. I got about 95% through and then a pop up on my MBpro said something about "Failed with error: 6" The error log quotes "AMRestoreErrorDomain error 6 - failed to fixup var" Any ideas? Its b

  • Can't we add new dates automatically via MDIS- unmapped values- ADD

    Hi, I have a qualified table with non qualifier as Date(TYPE: Literal Date). and Qualifiers as Valid from and valid to. We have 4 dates currently in Date field. Our incoming file will have New dates init, So want these new dates to be added automatic

  • Editing workflow created tasks

    Using SharePoint Designer I have created a custom workflow. The workflow starts whenever a new document (from an infopath form) is added to my library. The workflow checks the value of a column, and based on that value creates a task and assigns it t

  • Problems downloading iPhoto on MacBook Pro

    My hard drive was replaced on my MacBook Pro by the Geek Squad and when I got it back, iPhoto was no longer on the hard drive. When I try to download it for $14.99 it says it can't be installed with my version of software. Even after a software updat