HR payslip - Bold to be removed

Hi ,
  I have developed HR payslips using transaction PE51 to print HR payslips.
Now all the data & the alignment is fine.
Only problem iam facing is its printing everything in BOLD.
Its printing think & Bold.
How do i remove the bold. Because there is no place i found in PE51 where i can adjust the font size or font type to italic or normal.
Please give me a solution.
Thanks in Advance.
regards
siva

The /etc/skel folder is (optionally) used when creating a new user as a template for their home directory. By default it usually only has shell config files and X initialisation files, but you (as a system administrator) can add files to it that you want new users to have in their home folders.
The following is a list of official packages that install files to /etc/skel:
$ foreach package in $(pkgfile -qg "/etc/skel/*"); do echo "$package:"; pkgfile -lq $package | grep "/etc/skel/."; echo; done
bash:
/etc/skel/.bash_logout
/etc/skel/.bash_profile
/etc/skel/.bashrc
grml-zsh-config:
/etc/skel/.zshrc
screen:
/etc/skel/.screenrc
xorg-xinit:
/etc/skel/.xinitrc
/etc/skel/.xsession
mksh:
/etc/skel/.mkshrc
If you didn't copy these files yourself, perhaps they were added by an AUR package (or more likely, several), check with 'pacman -Qo /path/to/file' for several of the files to see if any are owned by unofficial packages. If they are, I would check with the maintainer to see if this is intended (it seems highly irregular in my opinion, and I'd avoid using any packages that polluted my filesystem in such a manner). If they are not owned by a package, then you (or someone else with root access on your installaion) must have created them manually. If it wasn't you, and you don't think you created them manually, check your logs for suspicious activity, and make sure you haven't been compromised. You can remove the files if you don't need them.

Similar Messages

  • Get a Arabic text bold in a basic RichText control

    Maybe a very silly question, but I'm searching for a solution many days now and maybe someone had the same issue.
    I have a basic Arabic text and put in a Flex RichText control with this line:
    public override function set text( value:String ):void
         this.textFlow = TextFlowUtil.importFromString( value );
         // this.textFlow = TextConverter.importToFlow( value, TextConverter.TEXT_FIELD_HTML_FORMAT );
    In a CSS file I tell the application to make all the text bold for this RichText control. And the strange thing that happens is that a "normal" english text appears bold and the arabic text stays the same as if the font-weight was set to normal.
    Can someone please help me?

    Nothing to do with CSS.
    On windows I have AdobeArabic-Regular and AdobeArabic-Bold installed.
    This markup gives me bold text.  I use the textLine.dump() method to see what font player has actually chosen.
    <span fontFamily="Adobe Arabic" fontWeight="bold">
    If I remove AdobeArabic-Bold and render the same markup FlashPlayer does a fallback looking for some appropriate bold font that has Arabic.  If it can't find it bold text is not rendered.
    Hope that helps,
    Richard

  • Remove XML attribute and value

    Hi All,
    I require to delete the attribute and value in xml structure.
    Below code is not working due to ":" (aid:cstyle) between attribute name.
    JS code is:
    evaluateXPathExpression("//typestyle[@aid:cstyle = 'bold']")
    If I remove colon and change it to aidcstyle than it is working. How to read : (colon)?
    Also it is showing alert message again and again.
    Please help.
    Chang.

    for the first problem there are two fixes:
    first one (simple, normal, no ideea why it's not there already) declare your aid (and aid5) namespaces in your xml. For example:
    <Root xmlns:aid=”http://ns.adobe.com/AdobeInDesign/4.0/”
    xmlns:aid5=”http://ns.adobe.com/AdobeInDesign/5.0/”>
    second one: more advanced xpath, if it works, using local_name() and namespace-uri(). My xpath-expert is not at work right now, so i can't help you more with this until he's back.
    second problem... no real fix for now. some characters that indesign uses (indentToHere and rightIndentTab, as far as I know, but may be others too) have no UTF equivalent, so you get that warning. you can eitehr ignore it, or, as I do, before doing anything with XML in scripting, i change the said characters to some marking (##RIT## and ##ITH##), and change them back after changing the XML

  • Vendor batch is retrieved from LIPS-LICHN only if LIPS-LICHN is not blank,

    (Current design)
    Batch is retrieved from LIPS-CHARG
    Vendor batch is retrieved from LIPS-LICHN
    (If there is no record in LIPS, blank will be printed out for both fields)
    REQUIREMENT:
    Batch is retrieved from LIPS-CHARG
    Vendor batch is retrieved from LIPS-LICHN only if LIPS-LICHN is not blank.
    If LIPS-LICHN is blank, vendor batch is retrieved from LIPS-CHARG.
    (If there is no record in LIPS, blank will be printed out for both fields. If both LIPS-CHARG and LIPS-LICHN are blank, blank will be printed out for both fields)
    t-lips is the internal table :
    DATA: BEGIN OF t_lips OCCURS 0,
             vbeln LIKE lips-vbeln, "Delivery document no
             posnr LIKE lips-posnr, "Item number for Delivery document
             charg LIKE lips-charg, "Batch number
             lichn LIKE lips-lichn, "Vendor Batch number
          END OF t_lips.
    Following is the piece of code:
    *&      Form  f_collect_final
          Routine to collect all the display data into the final internal
          table t_display.
    FORM f_collect_final.
      DATA: l_std_pac_no LIKE eket-menge,
            l_std_pac_no_out(13) TYPE p,
            l_tot_std_pt(13) TYPE c,
            l_rmdr(13) TYPE n,
            l_qtnt(13) TYPE n,
            l_tabix TYPE i.
      LOOP AT t_eket.
        t_display-ebeln = t_eket-ebeln.
        t_display-ebelp = t_eket-ebelp.
        t_display-etens = t_eket-etens.
        t_display-eindt = t_eket-eindt.
        t_display-menge = t_eket-menge.
        t_display-meins = t_eket-meins.
        t_display-matnr = t_eket-matnr.
    mod begin CR1591
       t_display-maktx = t_eket-maktx.
        READ TABLE t_makt WITH KEY matnr = t_eket-matnr
                          BINARY SEARCH.
        IF sy-subrc = 0.
          t_display-maktx = t_makt-maktx.
        ENDIF.
    mod end CR1591
        t_display-vpnam = t_eket-vpnam.
        t_display-lifnr = t_eket-lifnr.
        t_display-charg = t_eket-charg.
        READ TABLE t_mlgn WITH KEY matnr = t_eket-matnr
                                          BINARY SEARCH.
        IF sy-subrc = 0.
          t_display-lhmg1 = t_mlgn-lhmg1.
          t_display-lhme1 = t_mlgn-lhme1.
          t_display-lety1 = t_mlgn-lety1.
          t_display-ltkze = t_mlgn-ltkze.
        ENDIF.
        READ TABLE t_marm WITH KEY matnr = t_eket-matnr
                                               BINARY SEARCH.
        IF sy-subrc = 0.
          t_display-umrez = t_marm-umrez.
          t_display-meinh = t_eket-meins.
        ENDIF.
        READ TABLE t_marc WITH KEY matnr = t_eket-matnr
                                             BINARY SEARCH.
        IF sy-subrc = 0.
          t_display-zzjp_nyu_sop = t_marc-zzjp_nyu_sop.
          t_display-zzjp_dos_frm = t_marc-zzjp_dos_frm.
          t_display-zzjp_aprn    = t_marc-zzjp_aprn.
          t_display-zzjp_re1     = t_marc-zzjp_re1.
        ENDIF.
        READ TABLE t_lfa1 WITH KEY lifnr = t_eket-lifnr
                                          BINARY SEARCH.
        IF sy-subrc = 0.
          t_display-name1 = t_lfa1-name1.
        ENDIF.
        READ TABLE t_lips WITH KEY vbeln = t_eket-vbeln
                                   posnr = t_eket-vbelp
                                   BINARY SEARCH.
        l_tabix = sy-tabix.
        IF sy-subrc = 0.
          t_display-charg = t_lips-charg.(I think this is the place to change).
         t_display-lichn = t_lips-charg.
        ENDIF.
    I have tried with the following code, but it is not working.
    IF sy-subrc = 0.
          t_display-charg = t_lips-charg.
    IF not t_lips-lichn is initial.
         t_display-lichn = t_lips-lichn.
        ELSE.
       t_display-lichn = t_lips-charg.
        ENDIF.
    ENDIF.

    Hi,
    Find the modification below, consider the bold text and remove the old one:
    READ TABLE t_lips WITH KEY vbeln = t_eket-vbeln
    posnr = t_eket-vbelp
    BINARY SEARCH.
    l_tabix = sy-tabix.
    IF sy-subrc = 0.
    <b>if t_lips-lichn EQ space AND
    t_lips-charg NE space.
    t_display-charg = t_lips-charg.
    t_display-lichn = t_lips-charg.
    endif.</b>
    <i>t_display-charg = t_lips-charg.(I think this is the place to change).
    t_display-lichn = t_lips-charg.</i>ENDIF.

  • List of new mods

    · 01-last-visit-profiles.diff
    Adds the users last visit date to their profile
    · 02-last-visit-memberlist.diff
    Adds the users last visit date to the memberslist.  People who have registered but never logged in are shown as "never".  Admin may use this to remove users.
    · 03-get-last-X-hours.diff
    Provides links to search for the last 12, 24 and 48 hours posts, good if your since last visit breaks
    · 04-glance-support.diff
    Glance provides syndication of forum announcements to the index page.
    · 05-arch-icons.diff
    Fixes the path for the wiki,doc,bugs icons and adds planet
    · 06-multi-bbcode.diff
    Allows installation of new bbcode options
    · 07-buttons-bbcode.diff
    Provides buttons for bbcode options installed using multi-bbcode
    · 08-google-bbcode.diff
    Adds google bbcode
    · 09-search-bbcode.diff
    Adds bbcode to search the forum itself
    · 10-mod-bbcode.diff
    Adds bbcode to tag moderator changes, the button is visible to all users but can;t only be used by mods
    · 11-ignore-hide-forum.diff
    Allows users to ignore forums on an individual basis - threads from ignored forums do not show up in seach
    · 12-disable-post-count.diff
    Disable posts increments for certain forums (TU and Off-Topic)
    · 13-search.diff
    Some tweaks to the search.pho
    · 14-ban-posting.diff
    Allows admin and moderators to remove a users posting rights, allowing read only access to the board
    · 15-admin-icon.diff
    Adds an icon to the main menu access the admin panel (admin only)
    · 16-moderate-icon.diff
    Adds a button to moderate the current forum on both topic and forum views (mod/admin only)
    · 17-register-login-page.diff
    Provides a registration link on the login page
    · 18-horiz-topic-bold-post.diff
    Removes the topics and posts columns on teh fourm index and instead displays the information under the forum description.
    · 19-RSS-icon.diff
    Adds an RSS icon and link to topic_anywhere.php - the RSS feed generator
    · 20-edit-faq.diff
    Links in admin panel to edit Forum and bbcode FAQs
    · 21-since-last-count.diff
    Adds the number of post since last visit to the "View posts since last visit" link
    · 22-wiki-bbcode.diff
    Adds bbcode to seach the ArchWiki and wikipedia
    · 23-double-post.diff
    Prevents people from posting the exact same message twice - should account for common browser screw-ups and some abuse practices
    · 24-mod-panel-icon.diff
    Adds an icon to the main menu access a reduced admin panel (mods only)
    · 25-adsense.diff
    Reformats the google adsense banners to allow the site to be viewed correctly in small windows or at lower resolution

    Hi,
    You can use this report S_ALR_87012328  and in dynamic selections double click on created on then  pressing right arrow give the date ranges in in which you have creation of GL master records "Select Ranges" .
    Thanks
    Javed

  • Simple, simple instructions please

    I am not techinical so please be very clear with any instructions. Two months ago I received my new corporate Blackberry Z10 and my Blackberry Bold was retired to a drawer. I've just realized that there are photographs on my Blackberry Bold that would be fantastic for a report that I'm doing and now I can't get the Blackberry Bold to turn on even after I've charged the device. Any suggestions?

    Hi 
    If the pictures were contained on a media card in your Bold, you could remove it,  and insert it into the Z10 in order to see your photos. 
    If the pictures were saved to the Bold device memory though you will need to get the device turned on in order to copy the photos. Do you have access to another battery you can use for testing? 

  • Instring

    i am using this to retrieve part of a string field, it works great as long as what i want is the end of the string(nothing following)
    {USR_CR_RISK_CHANGE;1.DETAIL}
    [instrrev({USR_CR_RISK_CHANGE;1.DETAIL},
    'RiskClass')+9 to length({USR_CR_RISK_CHANGE;1.DETAIL})];
    i currently get the following (which is what i want)
    OLD: HighRisk NEW: LowRisk
    how do i get it the above when there is data at the end of the string i dont want.
    OLD: DefClass NEW: HighRisk| Prospect OLD: False NEW: True
    want to remove after highrisk(not always the same data)
    I added CR's to break the formula up and retain characters.
    Edited by: Don Williams on Jun 9, 2010 2:18 PM

    don,
    i am using
    InStrRev (inputString, findString, startPosition, compare)
    {USR_CR_RISK_CHANGE;1.DETAIL}[instrrev({USR_CR_RISK_CHANGE;1.DETAIL},'RiskClass')+9 to length({USR_CR_RISK_CHANGE;1.DETAIL})];
    if you look at my formula it goes to the length of the string, i need it to stop after the last |
    | LastOper OLD: Null NEW: SHTO01| RiskClass OLD: LowRisk NEW: HighRisk| DoCIP OLD: False NEW: True| Prospect OLD: False NEW: True
    i only want what is bolded and to remove anything before and after

  • There's no new mail indication for subfolders if the folder is collapsed.

    I have subfolders under other folders. If I get email for a subfolder when the upper-level folder is collapsed, there's no indication at the upper-level folder that there's new email. Folders that are subordinate to the inbox are highlighted when new email arrives.

    This is what I have.
    structure example in folder pane:
    * mail account name
    * >Inbox
    * >>Sub folder A
    * >>sub folder B
    If there are 2 unread messages in sub folder A when Inbox is not collapsed, I will see the sub folder in bold with number:
    * mail account name
    * >Inbox
    * >>'''Sub folder A (2)'''
    * >>sub folder B
    If there are 2 unread messages in sub folder A when Inbox is collapsed, I will see the Inbox folder in bold alerting me that there are unread messages within that Folder.
    * mail account name
    * >'''Inbox'''
    If there is 1 unread message in Inbox and 2 unread messages in sub folder A when Inbox is not collapsed, I will see:
    * mail account name
    * >'''Inbox (1)'''
    * >>'''Sub folder A (2)'''
    * >>sub folder B
    If there is 1 unread message in Inbox and 2 unread messages in sub folder A when Inbox is collapsed, I will see:
    * mail account name
    * >'''Inbox (1)'''
    With Inbox collapsed, after reading the 'unread' message in Inbox, the bold number is removed, but the 'Inbox' itself is still in bold alerting me to the fact that more emails are unread in sub folders.
    Do you have this occurring?

  • Unable to remove Bold font - Hr payslip

    Hi All,
    USING PRINTRONIX printer ( P7220 ).
    using the standard format type X_44_120 for country Thailand.
      I have developed HR payslip using transaction PE51 to print HR payslips. Now all the data & the alignment is fine.
    Only problem iam facing is its printing everything in BOLD.
    How do i remove the bold. Because there is no place i found in PE51 where i can adjust the font size or font type to italic or normal.
    Please give me a solution at the earliest.
    Thanks in Advance.
    regards
    siva

    Changing the device type may not fix the issue but it's always better to use sap provided device type instead of using printer with device type SWIN.
    Some times printing using device with device type SWIN is better than using printer specific device type.
    Try device type LB_PRI in the printer definition. if it doesn't work, try printer with device type SWIN.
    Also refer to printer manual and check settings on the printer control panel to change font attributes.
    Refer to  website http://www.printronix.com/sap-printing.aspx, download and install printronix provided line printer device type and try printing.
    Regards
    Sridhar
    Message was edited by: Sridhar K

  • Need solution for removing Bold format in HR payslip

    Dear all,
    The HR pay slip is developed using pE51 & thailand country version.
    I am calling a standard program HTHCEDT0.  
    The bold is being printed from the standard program HTHCEDT0 . Iam using remuneration statement program HTHCEDT0 to print.
    Which is resulting the print in bold.
    can we change the standard , how do we go about it.
    i would like to make the font normal.
    Using printronix printer.
    But would you be able to eloborate on how to proceed now with the printer settings.
    May be our basis consultant would be able to understand if you give us more info on this.
    would be great if you can provide a solution at the earliest.
    regards
    siva

    Select video and move it up onto color matte.
    Let go
    Pick it up again and move it to track 3
    Dont let go, hold shift and move audio to track 2
    Deselect
    Select color matte and left over audio: ripple delete.

  • Need Solution for removing the bold format HR payslip

    Dear all,
    The HR pay slip is developed using pE51 & thailand country version.
    I am calling a standard program HTHCEDT0.  
    The bold is being printed from the standard program HTHCEDT0 . Iam using remuneration statement program HTHCEDT0 to print.
    Which is resulting the print in bold.
    can we change the standard , how do we go about it.
    i would like to make the font normal.
    Using printronix printer.
    But would you be able to eloborate on how to proceed now with the printer settings.
    May be our basis consultant would be able to understand if you give us more info on this.
    would be great if you can provide a solution at the earliest.
    regards
    siva

    Select video and move it up onto color matte.
    Let go
    Pick it up again and move it to track 3
    Dont let go, hold shift and move audio to track 2
    Deselect
    Select color matte and left over audio: ripple delete.

  • How to remove -ve sign from the deduction wagetype in payslip

    Hi Experts,
    Plz tell me how i can remove the -ve sign from the deduction column in
    the Payslip.
    Regards
    TS

    Hi ,
    Do you just have to show the sign different in payslip and the RT .
    Coz what it seems is that the RT is having a negative WT , so in order to make it positive you goto
    PE51 , enter the form you are using and change the cumulation id for deduction wage type .
    Hope this helps.
    Regards,
    SureshP

  • First sync with bold removed all numbers

    I am helping a friend and I am trying to get some answers about OS and such but...  Anyway, the first time she synced her bold to her mac using the desktop sofware, it did not go two ways.  it removed all of her contacts from the blackberry and replaced them with the ones from the mac.  she did click two way.  I am a pc user so I am unfamiliar.  We did follow the manual directions and turned isync on and such.  Any help would be appreciated.  I will try to get os info when she gets back to me.

    same thing happened to me!!! please help!

  • Bold 9000 on Mac Desktop Manager - Can't Remove Any Applications

    In Mac Desktop Manager I go to applications and select the ones I want to remove.  I get a message saying:
    Validation failed because a module marked for update (net_rim_bis_lib) is not available on local disk
    Then, it cancels the application removal.
    I am trying to remove some applications that I loaded (QuickPull among others) that I think are slowing down my Bold.  I have deleted them when on the Bold, but they still appear as loaded in the Desktop Manager.  Ever since putting this app on my BB, I get many more clocks and it runs much slower.  Thanks for the help.
    I have done a battery pull for 10 minutes, but no change.
    Richard

    Not having a media card in your BlackBerry may affect your ability to transfer media files onto it. There is a file size limit of 2.86MB when transferring files into device memory. http://bbry.lv/9XNuy0
    Have you verified that the applications you are trying to install are supported by your current wireless provider? Unlocked devices from one provider may not have full functionality on another network.
    -FS
    Come follow your BlackBerry Technical Team on Twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.
    Click Solution? for posts that have solved your issue(s)!

  • How can I remove bold from my email letter?

    I was writing an email and the text came out in BOLD. How can I get back to normal Times Roman text?

    Select the text with your mouse and click on the fat 'A'.
    you have, in order
    colour selector - two overlapping rectangles
    <small>A</small> - reduce font size
    <big>A</big> - enlarge font size
    '''A''' - bold
    ''A'' - italics
    <u>A</u> - underlining
    <img src="https://support.cdn.mozilla.net/media/uploads/images/2015-03-12-10-27-10-dcc08b.png">
    If there is a mix of bold and regular styles in the selected text, you may need to click ''twice'' to cycle from "part bold" through "all bold" to "regular". Same goes for the other styles on offer.
    You can also get at these styles, and more, via the menu under '''Format'''.
    If you can't see this formatting toolbar, or the menu itself, hold down the <alt> key and press V (for View) and select the required Toolbar options.

Maybe you are looking for

  • USB flash on DVD Player

    I have a panasonic DVD(DMR-Ez28) player with USB Divx support. I tried a USB flash with divx files, which had been used on my Mac, and the player recognized it but said "no files". So I formatted the USB flash to FAT32 on my Mac and same issue. So I

  • Connect nas drive to mac

    We have a CoolMax NAS drive CN-330; all the PC's on the network can access it just fine. However we have a MAC, which opens up the shares just fine... however trying to save anything on the NAS from MAC gives the error "action could not be completed

  • 65hm167 loss of HDMI signal -- No picture

    I have a Toshiba 65HM167 DLP TV that was working in this configuration for 4 months: Uverse HD cable receiver, apple TV, Wii, Xbox, BD player  to a  Denon AVR2113ci receiver to the Toshiba I now get a blue banner witrh no signal which seems to me to

  • Check Double Invoice

    Hi, I would like to ask if there is a possible way to check for duplicate invoices for customers same as in the vendors. thanks Caglar

  • Send XML to Client: call-program cannot pass ampersand in parameter

    In WLI Studio, I have tried to use the action "Send XML to Client" with following information: <call-program mode="async" name="IEXPLORE.EXE"> <actionid>1027425345078</actionid> <parm>http://pttserver:7001/pttWebApp/Test.jsp?First=a&Second=b&Third=c<