PSG Grouping only numeric??

Hi All..
We have a problem with PSG Grouping..We have used PSG Grouping up to 99 and we left with no more numeric PSG grouping..Is there any solution for this problem..Can we use charected code for PSG grouping by applying any patch..Your help is really appreciated..
Thanks adn regards
Thoufeek

Sorry, may I ask how can we use 2 digits for the PSG grouping? Isn't it only allow to define PSG grouping from 0 - 9? If we can use 2 digits for the PSG grouping, how can we specify the 2 digits PSG grouping in the IMG step 'Define Wage Type Permissibility for each PS and ESG'?

Similar Messages

  • How to right align a read only numeric field in a panel form layout

    Hi, does anyone know how to right align a read only numeric field in a panel form layout? I am using: Style Class = AFFieldNumberMarker, but it only seems to work if the field is disabled. Disabling the field gives it a difference appearance that does not look right on our forms. These are calculated fields, which cannot be modified, so read only is necessary.
    I have looked online for some answers, and it seems that others are having similar issues.
    I have tried different combinations for the properties, but so far I cannot get it to work.
    Thanks
    Judy
    I am using JDEV 11.1.1.5

    Sorry for the delay in my response. Here is the code
    <af:inputText value="#{bindings.TotalAirlineCostEst.inputValue}"
    label="#{bindings.TotalAirlineCostEst.hints.label}"
    required="#{bindings.TotalAirlineCostEst.hints.mandatory}"
    columns="#{bindings.TotalAirlineCostEst.hints.displayWidth}"
    maximumLength="#{bindings.TotalAirlineCostEst.hints.precision}"
    shortDesc="#{bindings.TotalAirlineCostEst.hints.tooltip}"
    id="it20" readOnly="false"
    disabled="true"
    styleClass="AFFieldNumberMarker">
    <f:validator binding="#{bindings.TotalAirlineCostEst.validator}"/>
    <af:convertNumber groupingUsed="true"
    pattern="#{bindings.TotalAirlineCostEst.format}"
    type="number"
    maxFractionDigits="0"/>
    </af:inputText>
    thank you,
    Judy

  • How to restrict the user to enter only numeric values in a input field

    How to restrict the user to enter only numeric values in a input field.
    For example,
    i have an input field in that i would like to enter
    only numeric values. no special characters,alphabets .
    reply ASAP

    Hi Venuthurupalli,
    As valery has said once you select the value to be of type integer,once you perform an action it will be validated and error message that non numeric characters are there will be shown. If you want to set additional constraints like max value, min value etc you can use simple types for it.
    On the project structure on left hand side under local dictionary ->datatypes->simple types create a simple type of type integer
    The attribute which you are binding to value property ;make its type as simple type which you made
    Hope this helps you
    Regards
    Rohit

  • Issue: PSG grouping for Work schedule

    Hi ,
    I want to create a work schedule with PSG grouping for workschedule as 70, I have tried to copy an existing-  none are available under the same grouping.
    I have tried using the create button though is creates a dws with grouping as 00, which shows as a non editable field.
    please advise on the issue
    Thanks and Regards,
    Prakash

    Hi,
    you want to create a workk schedule with grouping 70 ?
    then why are you copying the existing one where you can give all the entries by going new entries.... and do it..
    regards,
    mohammed

  • Output only numeric values

    CREATE TABLE XYZ( A1 VARCHAR2(10));
    Inserting value in table
    SELECT * FROM XYZ;
    A1
    1
    999
    45
    $
    ^
    +
    =
    How get output only numeric values ?

    Hmm..
    satyaki>
    satyaki>select * from v$version;
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Prod
    PL/SQL Release 10.2.0.1.0 - Production
    CORE    10.2.0.1.0      Production
    TNS for Linux: Version 10.2.0.1.0 - Production
    NLSRTL Version 10.2.0.1.0 - Production
    Elapsed: 00:00:00.01
    satyaki>
    satyaki>
    satyaki>CREATE TABLE XYZ( A1 VARCHAR2(10));
    Table created.
    Elapsed: 00:00:00.07
    satyaki>
    satyaki>insert into XYZ values('&val');
    Enter value for val: 1
    old   1: insert into XYZ values('&val')
    new   1: insert into XYZ values('1')
    1 row created.
    Elapsed: 00:00:00.00
    satyaki>/
    Enter value for val: 999
    old   1: insert into XYZ values('&val')
    new   1: insert into XYZ values('999')
    1 row created.
    Elapsed: 00:00:00.00
    satyaki>/
    Enter value for val: 45
    old   1: insert into XYZ values('&val')
    new   1: insert into XYZ values('45')
    1 row created.
    Elapsed: 00:00:00.00
    satyaki>/
    Enter value for val: !
    old   1: insert into XYZ values('&val')
    new   1: insert into XYZ values('!')
    1 row created.
    Elapsed: 00:00:00.00
    satyaki>/
    Enter value for val: @
    old   1: insert into XYZ values('&val')
    new   1: insert into XYZ values('@')
    1 row created.
    Elapsed: 00:00:00.00
    satyaki>/
    Enter value for val: $
    old   1: insert into XYZ values('&val')
    new   1: insert into XYZ values('$')
    1 row created.
    Elapsed: 00:00:00.00
    satyaki>/
    Enter value for val: #
    old   1: insert into XYZ values('&val')
    new   1: insert into XYZ values('#')
    1 row created.
    Elapsed: 00:00:00.00
    satyaki>/
    Enter value for val: ^
    old   1: insert into XYZ values('&val')
    new   1: insert into XYZ values('^')
    1 row created.
    Elapsed: 00:00:00.00
    satyaki>/
    Enter value for val: &
    old   1: insert into XYZ values('&val')
    new   1: insert into XYZ values('&')
    1 row created.
    Elapsed: 00:00:00.00
    satyaki>/
    Enter value for val: *
    old   1: insert into XYZ values('&val')
    new   1: insert into XYZ values('*')
    1 row created.
    Elapsed: 00:00:00.00
    satyaki>/
    Enter value for val: (
    old   1: insert into XYZ values('&val')
    new   1: insert into XYZ values('(')
    1 row created.
    Elapsed: 00:00:00.00
    satyaki>/
    Enter value for val: )
    old   1: insert into XYZ values('&val')
    new   1: insert into XYZ values(')')
    1 row created.
    Elapsed: 00:00:00.00
    satyaki>/
    Enter value for val: -
    old   1: insert into XYZ values('&val')
    new   1: insert into XYZ values('-')
    1 row created.
    Elapsed: 00:00:00.00
    satyaki>/
    Enter value for val: +
    old   1: insert into XYZ values('&val')
    new   1: insert into XYZ values('+')
    1 row created.
    Elapsed: 00:00:00.00
    satyaki>/
    Enter value for val: =
    old   1: insert into XYZ values('&val')
    new   1: insert into XYZ values('=')
    1 row created.
    Elapsed: 00:00:00.00
    satyaki>
    satyaki>commit;
    Commit complete.
    Elapsed: 00:00:00.00
    satyaki>
    satyaki>
    satyaki>select * from XYZ;
    A1
    1
    999
    45
    $
    ^
    A1
    +
    =
    15 rows selected.
    Elapsed: 00:00:00.01
    satyaki>
    satyaki>
    satyaki>
    satyaki>select * from XYZ
      2     where regexp_like(A1,'[[:digit:]]');
    A1
    1
    999
    45
    Elapsed: 00:00:00.00
    satyaki>
    satyaki>Regards.
    Satyaki De.

  • My configuration audio "output" is only numerique and I would like listen to audio by integrated loudspeaker. I can't use the keys "sound on my computer. If I click on I have a icon "forbiden".  Can you help me

    my configuration audio "output" is only numerique and I would like listen to audio by integrated loudspeaker. I can't use the keys "sound on my computer. If I click on I have a icon "forbiden".  Can you help me

    Si vous tappez sûr le cle <<option>> et cliquez vôtre souris de l'icon de haut-parleur
    de le haut partie de sa Desktop, vous pouvez voir les choix pour le son: les haut-parleurs internales, Line out et Digital Out. C'est tout ! Ou cliquez de la Pomme a gauche, choissisez Préferences, et Son, et voila..... le meme chose.....
    Merci d'avoir choisi Apple
    John B

  • Since selected groups only from iMac to iPhone

    why can't i select "selected groups" only when syncing contacts to iPhone. I am trying to transfer a particular group contact to my phone from "contacts on my iMac.

    Any chance your time zone is not set correctly on the iMac? As you are on the other side of the International Date Line it would be logical that changes would not register properly for 24 hours if either the computer or your phone was not set correctly. The phone should set itself but the computer's time zone is easily overlooked.

  • Can you force a value into a read-only numeric data member?

    I have code that will force a value into a numeric data member. Unfortunately the numeric data member in question is read-only. Can you force a value into a read-only numeric data member?

    Andre,
    I think you should get together with the other engineers there at NI. I spoke to one on the phone yesterday and he told me that the read-only aspect relates to writing between the database and PLC. I'm trying to write to the database and he told me that I could do it.

  • How do you send an email to a group in iCloud?  I can't find the group - only the individuals.

    How do you send an email to a group in iCloud?  I can't find the group - only the individuals.

    Shootist007, I think Cdf15 wants each recipient to see his/her own email address.
    Cdf15, you can't quite do what you asked with Mail alone, but you can come close with a slight variant of what Shootist007 recommended. Just put a dummy address (perhars the sender's) in the To field and all recipient addresses in the Bcc field. That way, no recipient sees either the other recipients' addresses or their own.

  • How to configure SCCM 2012 discover user group only?

    Hi,
    I'm wondering if there is a way to discover user group only (ignore computer group) in SCCM 2012?
    Jason

    Hi,
    Also note that by default, only security groups are discovered. However, you can discover the membership of distribution
    groups when you select the checkbox for the option Discover the membership of distribution groups on
    the Option tab
    in the Active Directory Group Discovery Properties dialog box.
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Testing an input box to see if its only numeric

    Hi,
    Does anyone know how to test a string to tell if only numeric characters were entered. I have an input field that I only want the user to enter numeric characters. I want to show an error if there are characters entered.
    Thanks

    Try this:
    try
       int number = Integer.parseInt(stringFromRequest);
    catch (NumberFormatException nfe)
       // it's not a number
    }

  • JTable cell only numerical

    Hello,
    it`s possible in cell of a JTabel th context only numerical or letters. Is there any function for this?
    Thanks for any answer or tip!!!

    JTable can use custom editors: see the tutorial, and particularly:
    + [url http://java.sun.com/docs/books/tutorial/uiswing/components/table.html]How to Use Tables
    |---...
    |--- [url http://java.sun.com/docs/books/tutorial/uiswing/components/table.html#validtext]Using an Editor to Validate User-Entered Text
    |---...
    |--- [url http://java.sun.com/docs/books/tutorial/uiswing/components/formattedtextfield.html]How to Use Formatted Text Fields
    |---...

  • I have 9 tabs, but when I try to make a tab group, only the current page shows up as a thumbnail, not all the tabs. I can't get them to work for me. All the tabs are listed on the right side of the tab groups box. What am I doing wrong?

    There's no thumbnails to drag around except one on the left side of the page (the one that's open). The right side of the page lists every tab I have created.

    Perhaps your problem is that '''you must save your browsing history''' in order to use app-tabs that would apply to groups as well but I did not test.
    * http://img232.imageshack.us/img232/4928/clearcachew.png
    I would suggest that if you do not save that stuff in bookmarks, that you will probably have a serious problem soon and lose your tabs, so if you count on them you could lose them. They should stand up to repeated restarts but I would not count of them as app-tabs myself, for one thing it is new, the other is I have to frequently wipe them out and restart, because I actively open new content into them and go back to the beginning of the tab history, and sometimes I can't, and sometimes I lose them by accidentally closing them -- and I must be able to close them in all manners that I close other tabs or I wouldn't be using them.
    There are people who keep 200 tabs open through restarting, that is not for me, I try to clear out the tabs frequently.
    That is what app-tabs are for as opposed to home pages, but I did have a problem when I tested with 120 since as app-tabs only about 65 can be seen at once even though I did reduce the width of app-tabs to about 2/3 the size that they were.. Problem I had when I restarted was that the window enlarged a bit beyond the screen, and my tab counter disappeared until I reduced the count to about 65. I do not allow tabs to scroll so you probably wouldn't have that problem.
    I forgot to test home page with 60 tabs. I do have something set to 75 though have to check that. I tested with 60 pages as home page. Brought firefox down and backup with the 1 app-tab and 60 home pages the app-tab is the same size as the 60 normal tabs from home page.
    Never used group-tabs by choice, since they messed me up I stay clear of them, I don't like them or anything large panoramic type of large thumbnails.

  • To more specific class: Cant find strict numeric, only numeric

    Im trying to read a control property by reference from some controls that are in a cluster.
    I want to cast the property's reference to a more specific class: strict numeric, but I can only find 'Numeric' which leaves me with variant data.
    Any help?
    Solved!
    Go to Solution.

    Hello,
    I think you can't (not fully sure though). What you can do is get the "Representation" property, that tells you if it's I32 or DBL or else (as an enum) and with this information you can get the value from the variant.
    See :
    Hope this helps
    EDIT :
    Oh... I see now that there IS a way, thanks for that pincpanther :-o
    When my feet touch the ground each morning the devil thinks "bloody hell... He's up again!"

  • Restricting People Picker of "Person or Group" column to Site Groups only

    Hi,
    I am working on SharePoint Online 2013 and I have created a column - DocOwner with "Person or Group" type in document library. In the site collection there are 4 groups lets say - A,B,C,D. When user creates a new item (document set), in newform.aspx,
    I want to restrict the people picker of "Docowner" column to only Site groups, as currently it is showing all users who are there in SharePoint online.
    I read this article - http://office.microsoft.com/en-in/sharepoint-server-help/site-column-types-and-options-HA010302196.aspx#_Toc277149829.........where they are saying that we can limit the people picker to site users only.
    How this can be achieved using OOTB in SharePoint 2013 Online ? 
    Vipul Jain

    You can create a workflow to execute CSOM which will verify group membership details and update it to choice column 
    http://stackoverflow.com/questions/23432665/sharepoint-online-csom-associated-site-groups-associatedmembergroup-associatedow
    http://sundarnarasiman.net/?p=497
    namespace GetUsersInGroupCSOM
    class Program
    static void Main(string[] args)
    //Replace it with the url of your tenant or your site-collection
    string SiteUrl = "https://yoursite.sharepoint.com";
    System.Uri oUri = new System.Uri(SiteUrl);
    using (ClientContext oClientContext = new ClientContext(SiteUrl))
    //Replace it with your user id for SharePoint Online
    string UserName = "[email protected]";
    //Replace it with your password
    string Password = "yourpassword";
    //Create a SecureString object from password string, needed for SharePointOnlineCredentials class
    SecureString SecurePassword = GetSecureString(Password);
    oClientContext.Credentials = new SharePointOnlineCredentials(UserName, SecurePassword);
    //Load the site-collection groups using CSOM
    oClientContext.Load(oClientContext.Web.SiteGroups);
    oClientContext.ExecuteQuery();
    GroupCollection oSiteCollectionGroups= oClientContext.Web.SiteGroups;
    Console.WriteLine("List of groups in the site collection");
    Console.WriteLine("-------------------------------------");
    foreach (Group oGroup in oSiteCollectionGroups)
    Console.WriteLine(oGroup.Title);
    Console.WriteLine("\n");
    //Load the users collection in the Group 1
    oClientContext.Load(oSiteCollectionGroups[1].Users);
    oClientContext.ExecuteQuery();
    Console.WriteLine("List of users in the first group of site-collection");
    Console.WriteLine("-------------------------------------");
    foreach(User oUser in oSiteCollectionGroups[1].Users)
    Console.WriteLine(oUser.Title);
    Console.WriteLine("\n");
    Console.ReadLine();
    private static SecureString GetSecureString(String Password)
    SecureString oSecurePassword = new SecureString();
    foreach (Char c in Password.ToCharArray())
    oSecurePassword.AppendChar(c);
    return oSecurePassword;
    http://the-north.com/sharepoint/post/Update-Choice-Field-using-CSOM-%28Client-side-Object-Model%29
    using (ClientContext
    ctx = new ClientContext("http://MyServer/MySite"))
    Field genericField = ctx.Web.Lists.GetById(listID).Fields.GetById(fieldGuid);
    FieldChoice fldChoice = ctx.CastTo<FieldChoice>(genericField);
                    ctx.Load(genericField);
                    fldChoice.Choices = “MyChoice1;MyChoice2;MyChoice3”.Split(";".ToCharArray());
                    fldChoice.Update();
                    ctx.ExecuteQuery();               
    If this helped you resolve your issue, please mark it Answered

Maybe you are looking for