Help regarding form editor.

Hello Sapients
i need details regarding form Editor ( Tcode PE51) how it will works.
where we need to write the code..how to call Form Editor in pgm..
tnx in Advance..
Sandeep

Hi,
HR forms are created using Tcode PE51. The program to use this form is Standard SAP programs. You can not write your own program to access this form.
This HR forms are specifically designed to created Payslip. So the standard program to access payslip is again country specific. For e.g. US, the program name is RPCALCU0.
Thanks
Bala

Similar Messages

  • Need help regarding form validation

    Hi all,
    I have particular doubt regarding form validation. I have a form based on a table. ( One data block ) . I have a function in program unit which return boolean value based on some conditions. I will be calling this function in block validate trigger.
    What i need is , if function return false i need to stop any insertion,updation action that's going to be done by forms.( point to control insertion and updation)
    I don't want to use form triggure failure builtin. What should i do ? plz guide
    regards

    what are you going to do stop insert/update upon commit?
    -- use on-insert trigger
    if allowed_to_insert then
    insert_record;
    end if;
    -- use on-update trigger
    if allowed_to_update then
    update_record;
    end if;
    if when entering data, you might want to check set_block_property

  • Forms Editors -- Case sensitive search

    I need help regarding forms editors. i am having an user defined editor in my form. when editor is opened it has ok , cancel and search buttons(which is used to search for a particular text). right now this search button is case sensitive. is there any way to make it case insensitive.

    it depends on how the search button was coded.
    I used to have search button form containing a text item and search button( and other buttons), then in the search button, user typed in entry was put inside the UPPER() or LOWER() when constructing the where clause for execute_query.
    so you may look into that button to see if you can do similar thing.

  • Help in Ad-hoc query and Hr form editor

    any body have material links of Ad-hoc query(it means how the reports are generated with Ad-hoc query) and Hr form editor(with examples) plz forward it to me???????????

    Hi,
    HR Ad Hoc Query is the special version of InfoSet Query with the HR object selection.
    You can find the system documentation here:
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/f9/cc9138e4a0341fe10000009b38f8cf/frameset.htm
    However I doubt the use of documentation of the query generator. So what is your concrete question?
    Or in any R/3 via application help of transaction SQ01.
    Also HR580 is a good course.
    Regards,
    Michael

  • Need help regarding the dunning form

    Hi,
    I have to display all the sales and payments of a cusomter for all the periods that are older than the run date in a dunning form. (i.e) if the run date is 04-aug-05 and if the slaes are there in 3 months(april, May, july) then i have to display three line items with sales and payments for that corresponding three months in the line items. As this is a dunning form i cannot change the print program. any table which have all the sales for a period which i can access directly in the script. can anyone suggest how to handle this.
    regards,
    Asha

    Hi,
    You can call a subroutine within a program (your z program)
    /:   PERFORM ADD_AMOUNT IN PROGRAM SAPLZFTP_F150
    /:           USING &W_AMOUNT&
    /:   ENDPERFORM
    In the z program create this subroutine.
          Form ADD_AMOUNT
         -->FT_INVAR  Text Symbol table for input  variables
         -->FT_OUTVAR Text Symbol table for output variables
    FORM add_amount TABLES ft_invar   STRUCTURE itcsy
                           ft_outvar  STRUCTURE itcsy.
      STATICS:
        w_value_l    TYPE  f150d-salfw.
            READ TABLE ft_invar INDEX 1.
            IF sy-subrc IS INITIAL.
    you can check all this part of the code how you want to
    process your data whether its numeric or character or
    whatever
               w_value_l = w_value_l + ft_invar-value.
            ENDIF. "IF sy-subrc IS INITIAL.
    ENDFORM.                    " ADD_AMOUNT
    TO BESPOKE THE PRINT PROGRAM FOR THE DUNNING
    Dunning outputs use the function module FI_DUNNING_PRINT_NOTICE. You can copy this to a Z function module and make some changes to the data selection. You will have to look into the code and decide what changes you need.
    The process to use a bespoke program to do the dunning print is as follows:
    UNDER FI GLOBAL SETTINGS in the configuration,
    There are Business Transaction Events. Within that you can configure the same to enable a Z function module in place of the standard function module (from the FUNCTION GROUP F150)
    • Create function group ZFTP_F150
    • Copy standard function module FI_PRINT_DUNNING_NOTICE of function group F150 to ZFTP_FI_PRINT_DUNNING_NOTICE in function group ZFTP_F150
    • Copy standard function module PRINT_DUNNING_NOTICE of function group F150 to ZFTP_PRINT_DUNNING_NOTICE in function group ZFTP_F150
    • Within the function module ZFTP_FI_PRINT_DUNNING_NOTICE, change function module call for PRINT_DUNNING_NOTICE to ZFTP_PRINT_DUNNING_NOTICE
    • Create a new include ZFTPI_ROUTINES within the function group and copy the subroutines LOG_MSG, LOG_MSG_TAB, & LOG_SYMSG from the function group F150 to this include
    AS AN ALTERNATE, YOU CAN COPY THE WHOLE FUNCTION GROUP
    • Maintenance view TBE31 (SM30). Change the function module from FI_PRINT_DUNNING_NOTICE to ZFTP_FI_PRINT_DUNNING_NOTICE against the event 00001720 FI-FI entry
    Hope this helps.
    regards,
    Satya

  • Web Form Editor - basic help needed!

    I must be the world's dumbest designer. I am trying to create a contact form in Business Catalyst to be placed in Muse. Now, I use Muse because I know very little about coding, so that is probably why I am struggling so bad creating this form. Typically, I use the form building widget in Muse to create my forms, but my client would like to include a dropdown list and an "add file" function to the form. I have watched a couple videos on youtube on how to set up a form, but I am getting hung up on the formatting. The form technically has everything I need, but it is horribly ugly! I have tried using the "Customize Web Form" option within BC (as well as the Style Builder), but nothing I do makes any difference.
    See for yourself:
    THis is what the form looks like in Muse. I manually added the blue box in Muse. There are so many things wrong I don't know where to start! The form fields are too small, I can't change the font or color and I want to get rid of the Title. I have tried playing with the code, but nothing works. Is there a tutorial somewhere teaching us how to edit a form using the built in web form editor?
    Thank you so much for your help!

    You need to assign a class to each input element and then target those classes with CSS.
    Example:
    <input type="text" name="FirstName" id="FirstName" class="cat_textbox" maxlength="255">
    CSS:
    .cat_textbox {
    width: 300px;
    height: 25px;
    border-radius: 3px;
    box-shadow: inset 1px 1px 2px 0 #DADADA;
    -webkit-box-shadow: inset 1px 1px 2px 0 #DADADA;
    border-color: #B6B6B6;
    border-style: solid;
    border-width: 1px;
    I can help you out more in a few hours. I highly recommend learning as much CSS & HTML as you can.
    -Ryan

  • Who will create form editor

    hai
    who will create form editor
    is it functional consultants or abapers
    suitable answer will be given suitable points
    kumari

    Hi Aruna,
    Form Editor is a standard tool available in SAP. nobody needs to 'create' it. (Tcode - PE51)
    But if are asking about who uses it to create new forms - HR Consultant would use it to create new forms or copy existing ones and modify them to get the form he requires.
    For example if you want to create a payslip form using form editor - here is the procedure
    Re: payslip creation...............
    Hope that helped
    Regards,
    Anand

  • To include a header in Payslip - Form Editor

    Dear Friends,
    It would be really great if someone could help me in this regard.
    My client would like to add the name of the Company on top of the payslip. Currently from Line 1 something is displayed in form editor.
    Where should i do the header inclusion. Either in single fields or line layout?? Should i need to make any provision in Background also in PE51. If so how to do it there is no provision to add new line there.
    Hope to get a solution soon.
    Thanks and Regards
    Nelson

    Hi Nelson
    That can be done by selecting the ' Background ' subobject from your form editor pe51screen. select change.
    Right click on the first line and select ' New Line '. Thus a new line is formed. In this new line you can type in the companies header.
    You can even send the rest of the lines deeper down the page by creating more lines. below this header line.
    Hope that helped.
    Regards,
    Anand

  • How to make changes in HR Form using Form editor

    Hi,
    I am new to hr-abap..And I am working on HR form editor..and I wanted to generate a pay-slip using the hr forms..I had copied the standard form..and I am making the changes into that..
    I want to add my own customization into it..like I wanted to display total in words...also, i wanted to display a message at the end of my report..This message should be allowed to change to end user...like for eg..Some Seasonal greetings...
    I am using Tcode pe51 to make changes in my form...
    Please tell me how to go about and where to implement all these changes so that they will get displayed in my form...Its urgent...

    When you go into HRFORM tcode, double click on your form name.
    It will take you to Customization window where you can drag and drop all additional data yo want on form.
    For designing and coding purpose click on the LAYOUT button on top of that window.
    This will open the form in SMARTFORM.
    Dont try to go directly as your Form name dont exist in Smartforms.
    Check this link for more info -
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PAXX/PYINT_FORMS.pdf
    Regards,
    Amit
    Reward all helpful replies.

  • How to make changes in HR-Forms using hr Form Editor

    Hi,
          I am new to hr-abap..And I am working on HR form editor..and I wanted to generate a pay-slip using the hr forms..I had copied the standard form..and I am making the changes into that..
    I want to add my own customization into it..like I wanted to display total in words...also, i wanted to display a message at the end of my report..This message should be allowed to change to end user...like for eg..Some Seasonal greetings...
    Please tell me how to go about and where to implement all these changes so that they will get displayed in my form...Its urgent...

    When you go into HRFORM tcode, double click on your form name.
    It will take you to Customization window where you can drag and drop all additional data yo want on form.
    For designing and coding purpose click on the LAYOUT button on top of that window.
    This will open the form in SMARTFORM.
    Dont try to go directly as your Form name dont exist in Smartforms.
    Check this link for more info -
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PAXX/PYINT_FORMS.pdf
    Regards,
    Amit
    Reward all helpful replies.

  • PE51/ Form Editor

    Hi,
    While creating Line Layout in FORM EDITOR, am facing the following error of "Cursor placed in a wrong position".
    I am doing it as given in the SAP help, but not able to create a line layout.
    Hope an early response to this query.
    Rgds
    Vaishali

    Hi Vaishali,
    Were you able to resolve the issue? You have to put your cusror immediately after the << pushbutton  & then click on the create icon.. this will let you insert fields..
    Regards,
    Suresh Datti

  • HR Form Editor - how to display text on payslip

    Hi Experts,
    I have an issue in HR Form Editor ( TCode PE51).
    In the earnings window of a payslip I have a wage type 2041(Ticket Fare Payment). At the time of evaluation if there is a value for this wage type then some text message has to be displayed for such a employee.
    Can anybody please guide me for the proper solution.
    I have created text module for the text to be appeared and placed it as a single field.
    Any help appreciated.
    Thanks & Regards,
    Aisha.

    Try Exploring BADI ADDR_PRINTFORM_SHORT. This is the only place wherein we can think to write some custom code for Remnuneration statement.
    The other way is the do the Customer Enhancement for transaction PC00_M16_CEDT. Also try searching SAP Notes I think there are couple which can be of help.
    Regards
    Shital

  • How to change font size in HR Forms Editor

    Hi Experts,
    I am modifiying the pay slip which was created using HR Forms Editor, now i modified the form, is it possible to change the font size ? i am not able to find option to change the font size.
    could any one please tell how to change the font size?
    With Regards,
    Thanesh

    *Default FullZoom Level: https://addons.mozilla.org/firefox/addon/default-fullzoom-level/

  • Issue with Form Editor, Payslip

    Dear All,
    I have an issue in Salary Slip. I am making my own pay slip in form editor and I have made 4 windows for displaying 4 different type of allowances and deductions but when I call the value in window from wagetypes in RT they come up as multiplied by 10. For example, (Please note that I am in Oman and local currency is OMR that uses 3 places after decimal for example 20.300 OMR) An employee has basic pay of 1500.700/- OMR it is coming up as 15007.00/- OMR. The amount in RT is coming fine as 1500.700/- OMR, I have checked it. When I call a wagetype in a single field the value comes out fine so the issue is with values displayed in the Windows.
    Can anyone tell me whats going on???
    Regards,
    Ahsan Zaidi.

    Hi Bala,
    It is already mapped correctly. If I enter a single line Text in HTML Editor, I am getting the same Text after Parsing. But If I enter multiple lines, spaces, new lines, etc., then the Problem.
    Thanks||
    Ashok M.

  • Using form editor in Adobe 9

    I am trying to use the builtin form editor in Adobe 9 for a basic fillable form.  Setting up the fields is no problem...actually the wizard took care of most of it for me.  I just needed to add a few radio buttons.  However, I would like to add a button that will allow the person completing the form to lock all fillable fields as read only before they submit the form back to me via email.  Is there a script that I can add to a button to accomplish this without having to use Livecycle?

    https://workspaces.acrobat.com/?d=YuA1xQM5o4S6TNxuP1PjCw
    Hopefully the above link will work for you.  I just tested it and it seems to work fine.  The reset button is on the second page of the form.
    Thank you both, I really appreciate your time and help with this.

Maybe you are looking for