How do I assign a program to my new HR sapscript form ZHR_BEN_CONF

I have copied the form HR_BEN_CONF to a z program.  I set the config to use this form when printing a confirmation form.   when I am in transaction HRBEN0015 it is printing my new form.  All is fine except I cannot figure out how to assing my Z program to the new form.  My z program is a copy of SAPLHRBEN00FORMS and I also tried RPUBEN15.  I tried assigned the print program within se71.  But that doesn't work and I cannot find in configuration how to assign the new program to the new form.

Application Preferences.
Next time, 'what' program would also help.
Most people do setup with a dedicated boot drive with OS and apps, .then use other drives or array(s) for media, scratch as needed, including external hardware RAID.

Similar Messages

  • I purchased creative cloud when I purchased my laptop, I've since had to put in a new hard drive.  How do I reinstall the programs on my new hard drive?

    I purchased creative cloud when I purchased my laptop, I've since had to put in a new hard drive.  How do I reinstall the programs on my new hard drive?

    Creative Cloud Help / Sign out, Sign in | Creative Cloud desktop app
    http://helpx.adobe.com/creative-cloud/kb/sign-in-out-creative-cloud-desktop-app.html
    Creative Cloud Help / Install, update, or uninstall apps
    http://helpx.adobe.com/creative-cloud/help/install-apps.html
    Installing Creative Cloud Apps
    http://tv.adobe.com/watch/cs6-creative-cloud-feature-tour-for-video/installing-desktop-app s-from-creative-cloud/

  • Computer Crashed with CS4 - How can I get these programs to my new computer?

    Computer Crashed with CS4 - How can I get these programs to my new computer?

    You will want to install them from the installation media.

  • How do I make this program generate a new problem once the button is hit

    Here is the code... appreciate any help given
    How do I make this program generate a new set of problem when the "NEXT" button is clicked and continue until the END button is hit
    package javaapplication3;
    import java.awt.GridLayout;
    import java.awt.Window;
    import javax.swing.*;
    import java.awt.event.*;
    * @author Sylvester Saulabiu
    class Grid extends JFrame{
        final int score = 0;
        final int total = 0;
        Grid(){
            //Set Layout of Flashcard
            setLayout(new GridLayout(4, 4, 2 , 2));
            //Create Panels
            JPanel p2 = new JPanel();
            JPanel p3 = new JPanel();
            final JPanel p1 = new JPanel();
            //Create Radio buttons & group them
            ButtonGroup group = new ButtonGroup();
            final JRadioButton ADD = new JRadioButton("Addition");
            final JRadioButton SUB = new JRadioButton("Subtraction");
            final JRadioButton MUL = new JRadioButton("Multiplication");
            final JRadioButton DIV = new JRadioButton("Division");
            p2.add(ADD);
            p2.add(SUB);
            group.add(ADD);
            group.add(SUB);
            group.add(MUL);
            group.add(DIV);
            p2.add(ADD);
            p2.add(SUB);
            p2.add(DIV);
            p2.add(MUL);
            //Create buttons
            JButton NEXT = new JButton("NEXT");
            JButton END = new JButton("End");
            //Create Labels
            JLabel l1 = new JLabel("First num");
            JLabel l2 = new JLabel("Second num");
            JLabel l3 = new JLabel("Answer:");
            JLabel l4 = new JLabel("Score:");
            final JLabel l5 = new JLabel("");
            JLabel l6 = new JLabel("/");
            final JLabel l7 = new JLabel("");
            //Create Textfields
            final JTextField number = new JTextField(Generator1());
            final JTextField number2 = new JTextField(Generator1());
            final JTextField answer = new JTextField(5);
            //Add to panels
            p1.add(l1);
            p1.add(number);
            p1.add(l2);
            p1.add(number2);
            p1.add(l3);
            p1.add(answer);
            p1.add(l4);
            p1.add(l5);
            p1.add(l6);
            p1.add(l7);
            p3.add(NEXT);
            p3.add(END);
            //Add panels
            add(p2);
            add(p1);
            add(p3);
            //Create Listners
      NEXT.addActionListener(new ActionListener() {
          public void actionPerformed(ActionEvent e) {
             int answer1 = 0;
             //Grab the numbers entered
             int numm1 = Integer.parseInt(number.getText());
             int numm2 = Integer.parseInt(number2.getText());
             int nummsanswer = Integer.parseInt(answer.getText());
             //Set the score and total into new variabls
             int nummscore = score;
             int nummtotal = total;
             //Check if the add radio button is selected if so add
             if (ADD.isSelected() == true){
                 answer1 = numm1 + numm2;
             //otherwise check if the subtract button is selected if so subtract
             else if (SUB.isSelected() == true){
                 answer1 = numm1 - numm2;
             //check if the multiplication button is selected if so multiply
             else if (MUL.isSelected() == true){
                 answer1 = numm1 * numm2;
             //check if the division button is selected if so divide
             else if (DIV.isSelected() == true){
                 answer1 = numm1 / numm2;
             //If the answer user entered is the same with th true answer
             if (nummsanswer == answer1){
                 //add to the total and score
                 nummtotal += 1;
                 nummscore += 1;
                 //Convert the input back to String
                 String newscore = String.valueOf(nummscore);
                 String newtotal = String.valueOf(nummtotal);
                 //Set the text
                 l5.setText(newscore);
                 l7.setText(newtotal);
             //Otherwise just increase the total counter
             else {
                 nummtotal += 1;
                 String newtotal = String.valueOf(nummtotal);
                 l7.setText(newtotal);
      //Create End listener
    END.addActionListener(new ActionListener() {
          public void actionPerformed(ActionEvent e) {
            // get the root window and call dispose on it
            Window win = SwingUtilities.getWindowAncestor(p1);
            win.dispose();
    String Generator1(){
         int randomnum;
         randomnum = (1 + (int)(Math.random() * 20));
         String randomnumm = String.valueOf(randomnum);
         return randomnumm;
    public class Main {
         * @param args the command line arguments
        public static void main(String[] args) {
            // TODO code application logic here
            JFrame frame = new Grid();
            frame.setTitle("Flashcard Testing");
            frame.setSize(500, 200);
            frame.setLocationRelativeTo(null);
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            frame.setVisible(true);
    }Edited by: SirSaula on Dec 5, 2009 4:39 PM

    Extract code into methods, so that when an action is performed a method is called. That way you can reuse the method for purposes such as resetting textfields to their default values, scores to default values, etc.
    You can go one step further and seperate the GUI layer from the processing layer, by deriving classes that for example maintain and calculate a score.
    Mel

  • We are getting a new computer for are Adobe Creative suite 6. how do we install the program onto the new computer?

    we are getting a new computer for are adobe creative suite. How do we install the program on the new computer?

    contact adobe support for an activation count reset, http://helpx.adobe.com/x-productkb/global/service1.html

  • Just purchased a new computer, how do I download the program on the new computer?

    Just purchased a new computer, how do I download the program on the new computer?

    Downloadable installation files available:
    Suites and Programs:  CC 2014 | CC | CS6 | CS5.5 | CS5 | CS4, CS4 Web Standard | CS3
    Acrobat:  XI, X | 9,8 | 9 standard
    Premiere Elements:  13 | 12 | 11, 10 | 9, 8, 7 win | 8 mac | 7 mac
    Photoshop Elements:  13 |12 | 11, 10 | 9,8,7 win | 8 mac | 7 mac
    Lightroom:  5.7.1| 5 | 4 | 3
    Captivate:  8 | 7 | 6 | 5.5, 5 | 1
    Contribute:  CS5 | CS4, CS3 | 3,2
    FrameMaker:  12, 11, 10, 9, 8, 7.2
    Download and installation help for Adobe links
    Download and installation help for Prodesigntools links are listed on most linked pages.  They are critical; especially steps 1, 2 and 3.  If you click a link that does not have those steps listed, open a second window using the Lightroom 3 link to see those 'Important Instructions'.

  • How can I find the program which is calling my SAPscript??

    How can I find the program(std/Custom) which is calling my SAPscript form??
    Regards,
    Shashank.

    Hi
    check in NACE transaction or TNAPR table
    reward points to all helpful answers
    kiran.M

  • How to launch a java program in a new process

    Hello !
    II have a Java program, in which I want to carry out another Java program but in a new process, this new program requiring the definition of constants to the launching of the JVM.
    How can I do it ?
    Tank you for your help.

    Use
    Runtime.getRuntime().exec( cmd ); //where cmd is command for run java program.
    cmd may be "java test".
    You may also try using jnlp to run you java program in a new process.
    cmd will be "cmd /c \"javaws " + jnlpFile + "\"";

  • How do I assign default programs

    I don't seem to be able to choose which programs are the default programs for opening files. I know I've done this before, where is it?
    Thanks

    How to Associate a Document with an Application
    To associate an application with a document select the document and press COMMAND-I to open the Get Info window.  In the Open With section select the desired default application from the drop down menu.  If you want the application associated with all such documents then click on the Change All button.  For more complete control over default associations, applications, MIME types, etc. download the freeware utility RCDecaultApp.

  • How to dynamically assign Display Pattern using FormCalc in Adobe PDF Form

    I am using Adobe PDF Form Designer. I am trying to dynamically assign a display pattern like MM/DD/YYYY to the Field tab - Display Pattern property. May I know how to do that?
    I am using FormCalc scripting.

    hi,
    After placing the date field in layout from data view, u will get tabs like field,layout,border etc..
    In field tab under the edit pattern specify the pattern in which you want to display the date field.
    hope this works.
    Reward points if helpful.

  • I have Acrobat Standard X on an old computer. How can I transfer this program to the new computer?

    The original program on the old computer was a download. How can I transfer this downloaded version to a new computer?

    Copy the downloaded file to the new computer and install it. You will still need the S/N to complete the process.

  • How to Migrate custom DML Programs to a new AW

    Hi,
    I created a custom DML Program using AWM and OLAP Worksheet.
    I'm migrating the AW metadata to another file usin XML template which doesn't migrate the custom DML Programs.
    Can you please let me know how can I migrate the custom DML Programs?
    We don't want to use EIF import and export as part of our migration.
    Thanks,
    Rajesh

    Hi Rajesh,
    You can also do it like this.
    run dsc <program name> => Copy the output to a .txt file and in the end of this txt file after "END" insert a enter.
    upload this file to physical location of a oracle directory(ensure that the user has access to this directory).
    Now from olap worksheet run
    infile <txt file name>;upd;commit;
    Thanks
    Brijesh

  • How do I assign my ipad to a new computer without erasing/reformatting?

    Hi guys
    I recently had to reformat my computer and luckily I have a 1.5 TB external drive, so it was relatively painless and I didn't lose much. However, now when I plug in my iPad and iPhone, iTunes says that my devices are synced with another computer, and asks me to either erase and sync with this computer, or cancel.
    I'm still using the same computer I was always using, but since I reformatted, the iPhone and iPad don't recognize this computer and I would like to know how I reassign these devices to my computer without having to do a erase and sync? I've already transferred all of my purchases on both devices, so everything is backed up. Am I stuck with only the option of erase/sync on both devices? That would suck, I would lose all of my emails and everything else and all of my settings now that both of my devices are tailored to me.
    Is there a way to solve this? It kind of seems like they should have an easier way to do this without making it so painful. Hopefully someone understands what I'm asking here and I won't have to erase and sync both of my devices.
    Thanks a lot
    -Tim

    I sort of answered my own question I guess. I'm just posting this to give the information to anyone else who might be having the same problem.
    What I did:
    Plug your device into your  computer, and with iTunes plugged in right click and click "transfer purchases"
    Once that's done, right click and click back up (do this with "backup to my computer" checked under summary and also "backup to iCloud" should also be checked) so you've backed up the device two different times.
    So now all of your files and whatnot have all been transferred and backed up to your computer, so no worries about losing anything. Then you sync the device with iTunes and you should be all set. I no longer get any messages saying that my device is synced with another computer.
    Hopefully this helps someone who might be having a similar problem.

  • I just bought a new mac. I have Acrobat pro on my windows PC. How can I reinstall this program into my new mac?

    I just bought a new mac. I currently have acrobat pro X on my Windows pc that I don't intend to use any more. How can I reinstall this into my mac?

    Hi George,
    Platform swap is available only for currently shipping version products( in this case Acrobat 11)
    Please check Adobe's Platform swap policy at: Order product | Platform, language swap
    Regards,
    Rave

  • I bought adobe photoshop and adobe premiere a few years ago and love it; however, i recently got a new labtop which has no disk drive. How can i redownload my programs on my new product? I have all the original informaiton and serial numbers.

    please help

    BOILERPLATE TEXT:
    If you give complete and detailed information about your setup and the issue at hand, such as your platform (Mac or Win), exact versions of your OS, of Photoshop and of Bridge, machine specs, such as total installed RAM, scratch file HDs, video card specs, what troubleshooting steps you have taken so far, what error message(s) you receive, if having issues opening raw files also the exact camera make and model that generated them, etc., someone may be able to help you.
    Please read this FAQ for advice on how to ask your questions correctly for quicker and better answers:
    http://forums.adobe.com/thread/419981?tstart=0
    Thanks!

Maybe you are looking for

  • Why no sound on YouTube?

    Why am I unable to get sound when viewing YouTube and demo Videos sent in e-mails? I'm also experiencing no sound with iTranslate app

  • Acrobat 9 Pro cannot crop certain files that v7 can

    I just upgraded to Acrobat 9 Pro for Mac, and find that it does not allow cropping of many files that I can crop with v7. At least in some cases, these are PDF/A files.  Does v9 prohibit the cropping of such files, and if so can the PDF/A restriction

  • Deleting unwanted apps

    I installed an app called wireshark (traffic monitor) on my mac mini, and now want to remove it. It's not as simple as most apps - it's not in the app folder. I can see the remnants of the app in terminal under Library/Receipts. Question is how do I

  • Long query on Forms

    Hello I have a datablock, whose datasource is a view (sourceType = 'table'; sourcename =viewName). All of the datablock items are database items (no calculations, etc..) The ORDER BY clause has pre-defined values ("date field" DESC) The default_where

  • Use a check box in numbers

    Hi, How do I link a checkbox to duplicate a cell value? For instance, I want to survey a room which may have 4 doors in it or it may have 1. The door height and width is constant so by filling in that data in height and width columns it can be duplic