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.

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>" );

  • R11i set up impacting use of new functionality in R12

    Client has asked if there is any fixed setup in 11i that will prevent the use of new functionality in R12. I can't see anything in the upgrade manual, but if anyone has any information they could share

    The Accounting Setup Manager Pre-Update Diagnosis Report should show any problems. It is documented in the Upgrade Guide: Release 11i to Release 12, Under GL, page 2-8

  • 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

  • How to setup a forms function in R12 to launch an URL?

    Hi All,
    In 11i we could create a forms function of the type "SSWA plsql function" to launch a html page from the menu.
    How is that supposed to work in R12?
    So my question is, how to setup a forms function to launch an URL like www.oracle.com in R12?
    thanks,
    thierry

    Hi, first set the Profile 'Restricted Text Input' to 'No' for your User.
    Then create a form function like below:
    Functional Administrator > Core Services > Function > Create (button)
    Name: XX_GOOGLE
    Code: XX_GOOGLE
    Type: SSWA jsp function
    Maintenance Mode Support : none
    Context Dependance: Responsibility
    (press continue button)
    HTML Call: javascript:void window.open("http://www.google.com")
    Leave other fields blank
    Add to HR_EMPLOYEE_DIRECT_ACCESS_V4.0 menu:
    500 XX Google XX_GOOGLE
    This will pop up your external webpage in a new window.
    The issue is that it only works from the Navigator framework page (not from within Core Forms)
    Regards,
    Mike

  • 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

Maybe you are looking for

  • Windows XP client needs to authenticate and not being logged on as guest

    Hello! I've got a problem with Leopards File Sharing: My father has a Windows XP notebook with installed Bonjour and when he connects to my MacBook Pro with OS X 10.5.3 he will be logged in as guest but my collegue has to type in a user name and a pa

  • Flashing Question Mark Folder on Start-up

    I recently starting having administration issues with my Mac Mini. I went to update to OS 10.5.7 and when the administrator box came up asking for my password, my name was missing. After putting in the correct information, was unable to update, but r

  • "Backup My Contacts" is reversing "Mobile Number 1" and "Mobile Number 2"

    I'm trying to use the "Backup My Contacts" to upload several new contacts to my cell phone. First, I downloaded a sample contact using the "save my cloud contact to my computer". Then I used the labels in the first row of the resulting csv file to cr

  • BC4J UIX How To set the cursor in a field

    Hi, when i display an bc4j uix edit form, i would like to set the cursor in a field and highlight the entry. how con i do that Thanks Achim

  • Mail received should be in pdf format or word format

    Hi Experts , I am working on a scenario in which , I need to send mails to the supplier.I have used a mail adapter.  The user should receive the mail as a pdf document , word document or text document. The mails which I am sending now are being recei