Unblocking proposal run from program

Dear experts,
i am in development stage of releasing strategy for payment (automatic
payment- f110), we need to know how to unblock payment proposal from
program. the scenario is
1. payment proposal will be created - but made the configuration to block
always for outgoing payment.
2. once the final approval from the custom program has done it has to
unblock the line item in the payment proposal (as we do in edit proposal)
3. then we will schedule payment run, what ever unblocked will go for
payment run and create payment.
so kindly let me know which tables need to consider while unblocking and shall
it be update in f110 -proposal run.
i am updating tables: reguh, regup. reguhh(not getting update).
kindly do the needful.thanking you.
Ahmed

Hi,
My suggestable solution:
By using standared authorizations we can satisfy your requirement,
Key        Action
02         Edit parameters
03         Display parameters
11         Execute proposal
12         Edit proposal
13         Display proposal
14         Delete proposal
15         Create payment medium proposal
21         Execute payment run
23         Display payment run
24         Delete payment run payment data
25         Create payment media of payment run
26         Delete payment orders of payment run
31         Print payment medium manually
Give all access except 15 to one user & give only 15 to approval person, then Impliment BADI for follow sequesnce like 1st execute praposal , 2nd execute payment run.
for your requirement logic as follows:
1 - create Z internal table with update invoice documents,rundate, identification along with user. (tell the ABAPer once praposal success first all success invoices need to update customised Z table. this table need to updated from table REGUH with referance to Rundate & Identification)
2 - once documents updated this table restruct Payment Run option.then give access to next level person to approve for Z table invoices. once he is approved then it will accept for payment.
Regards,
Viswa

Similar Messages

  • F0273 - F110 - Printing program RFFOF__V - proposal run

    Hello,
    After changing document numbers ranges for company code BP01 in our
    development environment (duplicating fiscal year 2099 to 2011 and 2012,
    updating status of 2011 document number range to match current status of
    2099 fiscal year document range), we faced the following problem :
    It is not possible to create a proposal in F110 and to create the payment
    medias while creating the proposal. The error message :
    The following payment documents/payment orders were not updated
    (Result of the payment document update)
    CoCd Payment document/Payment order
    BP01 F110000001
    BP01 F110000002
    The accompanying payment media have not been generated
    ...is displayed in the logs of printing program. Using another company
    code - without the document number range modification -, there is no
    problem.
    When we want to run the payment run and tick "Create payment medium"
    while launching the payment run, we faced the same problem with the real
    documents. It was possible to print the payment medium after a few
    seconds, using the "printing" function of F110. After activating the
    field XSYUP in table T042C with value "X", the problem disappeared for
    the real payment run. In the proposal run, the problem still occurs.
    Would you have any explanation and potential solutions to solve this
    problem ?
    Thanks
    Florent

    Hi Florent,
    Check if you have the F0272 and F0273 errors, this result from (1) Update terminations or (2)
    Starting of the print program before postings are completed.
    The reason for the payment document not yet being updated in your case
    appears to be that the print job was started too early, (since there
    are no update terminations, check it at  SM13).
    Checking the print program variant, and when messages on the log are
    output: the system checks whether the 'validation of payment doc' is
    marked and if it is, it looks to see whether the document exists.
    If it does not the system issues the error, like in your case it
    probably happened.
    When this occurs, there are two options.
    1) Re-run the print program. If the invoices have been paid and clea-
        red then you can re-run program and mark the reprint button. This
        will allow you to regenerate the checks.
    The recommendation of note 855825 is valid for all RFFO* programs. In
    fact it's a generic recommendation and will help you in this case.
    Also let us know in case you are facing another issue, let us know the error numbers, it
    will help us in order to provide you some hints on how to fix it.
    I hope i could be of assistance.
    Kind Regards,
    Fernando Evangelista
    Edited by: Fernando Evangelista on Aug 29, 2011 3:17 PM

  • Not able to run a program to extract news from news channel websites.

    Let me start with stating the fact that I am a super greenhorn, so please be ultra elaborate with the answers .
    This is my code, I copied it from Mr. Alvin Alexander (http://alvinalexander.com/java/edu/pj/pj010011?). I am trying to use it to extract news from news channel websites.
    I used the following URLs:
    1.http://in.reuters.com/
    2.http://timesofindia.indiatimes.com/
    3.http://www.hindustantimes.com/
    // JavaGetUrl.java: //
    // A Java program that demonstrates a procedure that can be //
    // used to download the contents of a specified URL. //
    // Code created by Developer's Daily //
    //  http://www.DevDaily.com  //
    import java.io.*;
    import java.net.*;
    public class JavaGetUrl {
      public static void main (String[] args) {
      // Step 1: Start creating a few objects we'll need.
      URL u;
      InputStream is = null;
      DataInputStream dis;
      String s;
      try {
      // Step 2: Create the URL. //
      // Note: Put your real URL here, or better yet, read it as a //
      // command-line arg, or read it from a file. //
      u = new URL("http://200.210.220.1:8080/index.html");
      // Step 3: Open an input stream from the url. //
      is = u.openStream(); // throws an IOException
      // Step 4: //
      // Convert the InputStream to a buffered DataInputStream. //
      // Buffering the stream makes the reading faster; the //
      // readLine() method of the DataInputStream makes the reading //
      // easier. //
      dis = new DataInputStream(new BufferedInputStream(is));
      // Step 5: //
      // Now just read each record of the input stream, and print //
      // it out. Note that it's assumed that this problem is run //
      // from a command-line, not from an application or applet. //
      while ((s = dis.readLine()) != null) {
      System.out.println(s);
      } catch (MalformedURLException mue) {
      System.out.println("Ouch - a MalformedURLException happened.");
      mue.printStackTrace();
      System.exit(1);
      } catch (IOException ioe) {
      System.out.println("Oops- an IOException happened.");
      ioe.printStackTrace();
      System.exit(1);
      } finally {
      // Step 6: Close the InputStream //
      try {
      is.close();
      } catch (IOException ioe) {
      // just going to ignore this one
      } // end of 'finally' clause
      } // end of main
    } // end of class definition
    This is the error i am getting, every time I run it on Eclipse:
    Oops- an IOException happened.
    java.net.ConnectException: Connection refused: connect
    at java.net.DualStackPlainSocketImpl.connect0(Native Method)
      at java.net.DualStackPlainSocketImpl.socketConnect(Unknown Source)
      at java.net.AbstractPlainSocketImpl.doConnect(Unknown Source)
      at java.net.AbstractPlainSocketImpl.connectToAddress(Unknown Source)
      at java.net.AbstractPlainSocketImpl.connect(Unknown Source)
      at java.net.PlainSocketImpl.connect(Unknown Source)
      at java.net.SocksSocketImpl.connect(Unknown Source)
      at java.net.Socket.connect(Unknown Source)
      at java.net.Socket.connect(Unknown Source)
      at sun.net.NetworkClient.doConnect(Unknown Source)
      at sun.net.www.http.HttpClient.openServer(Unknown Source)
      at sun.net.www.http.HttpClient.openServer(Unknown Source)
      at sun.net.www.http.HttpClient.<init>(Unknown Source)
      at sun.net.www.http.HttpClient.New(Unknown Source)
      at sun.net.www.http.HttpClient.New(Unknown Source)
      at sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(Unknown Source)
      at sun.net.www.protocol.http.HttpURLConnection.plainConnect(Unknown Source)
      at sun.net.www.protocol.http.HttpURLConnection.connect(Unknown Source)
      at sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown Source)
      at java.net.URL.openStream(Unknown Source)
      at JavaGetUrl.main(JavaGetUrl.java:33)
    Also, when I try a local server URL, the output screen goes blank, which I guess is due to lack of Text on the local URL. So, the little research that I did, made me believe that the code not running on external server was due to firewall on the server side. Please help me run it. Also : I work on a proxy network.( if that has something to do with this).
    P.S : Advanced gratitude for any assistance.

    any decently secured server would reject such a blatant attempt to steal its content.

  • Cant run a program from command prompt

    i am using eclipse 3.2 for java development.
    programs are running from editor window, but whenever i am trying to run it from command prmpt , i am getting folowing error...
    ..........NoClassDefinitionFound
    how to resolve it...??
    regards
    yogesh g k

    Since there have been a lot of posts from people who fail to compile and run their correct code, I would like to suggest to use ant for building and running! It hides the complexities of specifying the correct paths and a lot it's easier to type
    prompt>ant
    at the command line than
    prompt>javac -d . -cp .;longListOfJarsNeededToRun somePackage/*.java aLotOfOtherFilesToCompile.java
    prompt>java -cp .;longListOfJarsNeededToRun somePackage.someClass
    It takes some time to get familiar with the configuration, but once you get it right, you gain back a lot of your invested time!

  • How to run java program from website?

    Hello
    I'd like to know how to run java program from my web page.
    I'd like to push some button in this web page so java program that would be on my server
    would pop-up. Can it be done automaticaly upon running this web site? (without any buttons - I just enter website and program pops up).
    Cheers

    I rather thought about RMI. But I could try servlets. So how it would look like?.
    I would make http request in browser (enter address) and program would show up in its window?. And I would not have to change anything in my program?. This program would run then on both boxes?. One remotely and one not?.
    But I would have to learn some basics, I've never worked with servlets. Could you suggest some good sites about it?. With ready examples so I could tweak them to my purpose.
    Message was edited by:
    macmacmac

  • How to run java programs from a master java program?

    Hello,
    I have several java programs which run from the command prompt. I am seeking help with code for starting java programs from within a java program. For example, a program called master.java works something like this:
    import java.*;
    create connection pool
    create variables and result sets
    start/run slave1.java (var1, var2);
    start/run slave2.java (var3, var4, var5);
    start/run slave3.java (var1, var4);
    end of program master.java
    Each of the slave.java programs will run for up to an hour. I do not want the master.java program to pause for each slave program to stop. Instead, the master program will keep running and multiple slave programs will be running simultaneously with the master program. When a slave program starts, it is on its own. Also, if possible, I would like to have each of these slave.java programs open in a new separate command window, so I can observe each slave program running in separate windows.
    Any suggestions for code or helpful documentation are greatly appreciated.
    Thank you,
    Logan

    Thank you all.
    At the bottom of master.java I have successfully started a batch file with these lines:
    String jcmd = "cmd.exe /c start c:/data/simulations/MsgViewCount2.bat";
    Process proc = Runtime.getRuntime().exec(jcmd);
    But I still cannot get a java program to start. Here is one variation I have tried:
    String [] cmdArray = new String[2];
    cmdArray[0] = "java";
    cmdArray[1] = "slave1";
    Runtime runtime = Runtime.getRuntime();
    Process process = runtime.exec(cmdArray);
    This compiles, and no errors occur, but nothing happens.
    Regarding this comment:
    Why Runtime.exec? Either make the slaves Runnable or
    just call their main() methods.
    Oh, I see. Sepearate output. :PNone of the slave.java programs have any output.
    Thanks again.

  • Extract Process Chain ID/Name that an embedded ABAP program is run from?

    Hi all,
    I have created some Process Chains in SAP BW where I have incorporated some ABAP program Process Types that uses the same ABAP program.
    In these embedded ABAP program Process Types I need to extract the name of the Process Chain it runs from (ID, Technical Name, Descirption).
    Is there any way this is possible to do?
    One solutions that is not possible to implement (due to parallell runs of process chains that uses the same ABAP program) is the following:
    search in table RSPCVARIANT for your program as follows
    - field TYPE = "ABAP"
    - field FNAM = "PROGRAM"
    - field LOW = <program name>
    take the value of field VARIANTE and use this in table RSPCPROCESSLOG (enter a date selection for BATCHDATE as well)
    take the most recent entry (should be the one you're actually running at that moment)
    via field LOG_ID, retrieve CHAIN_ID (technical name of your process chain) in table RSPCLOGCHAIN
    So my question here is:
    -Is there any way to extract the Process Chain ID/Name that an embedded ABAP program Process Type is run from?
    Thanks beforhand for your feedback!
    regards
    Oddmar

    Hi Erik,
    I am stuck up with a similar requirement, wherein I have an ABAP program in my process chain and I need the technical name of the process chain in the ABAP program at run-time.
    Did you get a solution or work-around for this scenario?
    Thanks in advance.
    Regards,
    Chetana.

  • Can programs run from java that is on web browser

    i have written a program and used autorun to run when a cd is put on but not every body will have java on their computer a firend told me that most people will have java on the web browser that will be able to run the cd is this true or will i have to give download instructions to download jav first. this is obviously not ideal as i want people to be able to run the program by putting the cd in and nothing else.

    1. You can create a Java applet, which is a Java program that runs
    from a web page. It will need to be a signed applet. Your autorun will start the browser with the web page carrying the Java applet.
    I don't think this is optimal.
    2. Search for "embed JRE", which describes how you can supply your
    private JRE with your program. It does not install the JRE, nor does it
    care if one is already installed. I did this many times, there is no problem
    at all, but here I have no idea whatsoever what happens if your JRE originates from write protected media. I guess it should work. Experiment or wait for others to see what they think.

  • Hi i have a LG 3D SMART TV that i was runing nero home media 4 from my old windows laptop, this software wont now run from my macbook pro, does anyone know if a program is available i can use preferably for free

    HI i recently purchased a macbook pro to replace my old laptop running windows.
    the problem i have is i have a LG SMART 3D TV which i was running nero media home 4 on from my old laptop, i have tried to install this program on my macbook but is it not compatible.
    does anyone know which program is available to run from my apple product to smart tv in a similar way..... preferable free
    regards
    steven

    First, back up all data immediately, as your boot drive might be failing.
    There are a few other possible causes of generalized slow performance that you can rule out easily.
    Reset the System Management Controller.
    If you have many image or video files on the Desktop with preview icons, move them to another folder.
    If applicable, uncheck all boxes in the iCloud preference pane.
    Disconnect all non-essential wired peripherals and remove aftermarket expansion cards, if any.
    Check your keychains in Keychain Access for excessively duplicated items.
    If you have more than one user account, you must be logged in as an administrator to carry out this step.
    Launch the Console application in the same way you launched Activity Monitor. Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left. If you don't see that menu, select
    View ▹ Show Log List
    from the menu bar.
    Select the 50 or so most recent entries in the log. Copy them to the Clipboard (command-C). Paste into a reply to this message (command-V). You're looking for entries at the end of the log, not at the beginning.
    When posting a log extract, be selective. Don't post more than is requested.
    Please do not indiscriminately dump thousands of lines from the log into this discussion.
    Important: Some personal information, such as your name, may appear in the log. Anonymize before posting. That should be easy to do if your extract is not too long.

  • Trying to install CS3 on my Mac from DVD and I get Required Resources are missing. I have run this program for years but this occurred after I rebuilt OSx

    Trying to install CS3 on my Mac from DVD and I get Required Resources are missing. I have run this program for years but this occurred after I rebuilt OSx

    I ran the adobe cleaner and that did not help. I then uninstalled norton antivirus. and that solved the problem and I was able to install photoshop cs3. I than reinstalled norton antivirus. My system seems to be fine,

  • PE4-Win7: Please run this program from the Administrator account so it can set up your license. Once the license is set up, you can run it from any account.

    Hi,
    I'm using Premiere Elements 4 in Windows 7 (64 bit). When I launch PE I get the following error:
    Please run this program from the Administrator account so it can set up your license. Once the license is set up, you can run it from any account.
    Any idea how to solve it?

    I came across this link online. Please check it out and decide if it will or will not advance your case.
    http://www.howtogeek.com/howto/windows-vista/enable-the-hidden-administrator-account-on-wi ndows-vista/
    ATR

  • Program Running from Long Time

    Hi Friends,
    There is a program running from long time. Can anybody let me know how can i analyse this program other than SM50, SM51, SM66. Its a CRM Program.....there are no logs.......
    Points will be rewarded....
    Thanks,
    Nagesh.

    Hi,
    I will suggest you to check a few places where you can see the status
    1) SM37 job log. If its active make sure that the job log is getting updated at frequent intervals.
    2) Get the job details (server name PID etc from SM37) and see in SM66 if the job is running or not. See if its accessing/updating some tables or is not doing anything at all.
    If its running and if you are able to see it active in SM66 you can wait for some time to let it finish.
    3) You can also try SM50 / SM51 to see what is happening in the system level like reading/inserting tables etc.
    If you feel its active and running you can verify by checking if the number of records getting updated/ inserted /deleted in table level.
    You can take the help of Basis/DB2 to find out what is actually happening in the background.
    This is the best way to identify of something is happening in the database level.
    Thanks,
    JituK

  • Running My Program From Windows?

    Hi, now that I'm done with my program, is there any way that I can run the program from windows by creating a shortcut? I would like the program to run on other machines without having to start or install the JDK.

    Hi, now that I'm done with my program, is there any
    way that I can run the program from windows by
    creating a shortcut? I would like the program to run
    on other machines without having to start or install
    the JDK.First, the other machines do not need the JDK - they need the JRE which is much smaller. Second, your question is a variant of the most asked question on this forum. Try searching for "exe" or "executable" or something similar and you will find lots of answers.
    Quickly I can tell you that if your program use any GUI (ie AWT/Swing), there is no way you can avoid having the JRE on the target machines. You can, however, make installation programs that install the JRE along with you program if you wish.

  • C program not running from terminal as expected

    Hi everyone
    I am starting C programming as part of my university degree, I understand most of the content so far. I am compiling and running my program in Terminal and I am having a small amount of trouble with running it. Here is how I have set my program up:
    • Created folder named "C" on the desktop
    • Opened terminal and changed the directory by using the following command: cd /Users/jc/Desktop/C, the directory is changed as the terminal output reads:
    JCs-MacBook-Pro:C jc$
    • Created main.c file
    • Compiled fine in terminal by using: cc main.c
    Here is where it breaks down, typing a.out does not run the program (as I expected) but returns the error: "-bash: a.out: command not found", if I drag the file to terminal or type out the absolute path and execute the program runs fine. What is happening and how do I fix it so typing just a.out runs the program?
    Thanks in Advance
    J.C

    The commands to add a folder to your search path (if you haven't changed your shell from the default bash) are:
    PATH=$PATH:<absolute path to parent folder>/MyProjectFolder
    export PATH
    Typing the above at your terminal prompt should allow you to execute your programs without typing ./a.out, but only for the life of the current terminal session (You can type 'printenv' or 'echo $PATH' to verify that your folder was added correctly).
    If you wish to add your folder automatically to any terminal session, the above should be saved in a text file named '.profile' in your home folder (the folder you're in when you start Terminal, e.g. /users/raynewbie).
    If you wish to add whatever folder is current (wherever I am right now) to your permanent search path, insert the following into .profile:
    PATH=$PATH:.
    export PATH
    The above has the disadvantage of being less secure on multiuser systems. The current, "dot", directory used to be first in the default Unix search path. But when I was in school (during the Lincoln administration) our favorite sport was trying to hack root perms by placing our own version of 'ls' in directories frequented by superusers. Higher powers caught on to this after only a few years and newer systems required you to type the dot.

  • This program has been blocked for your protection/ An Administrator has blocked you from running this program/ Return code: 1625

    This program has been blocked for your protection/ An Administrator has blocked you from running this program/ Return code: 1625
    If you get a message saying, “Publisher: Not trusted,” the printing functionality you are attempting to use may become blocked while downloading, installing or attempting to run.
    You may also see messages such as:
    MSIExec installation error (Return code:1625)
    The recommended software listed below could not be installed
    “Do you want to allow the following the program from an unknown publisher to make changes to this program”
    “This program has been blocked for your protection”
    “Blocked”
    “Not trusted”
    The Windows User Account Control message may look like this.
    You may get this message when installing, uninstalling, or updating HP software for Windows from the product CD, from software previously downloaded from www.hp.com, or from running HP Smart Install by connecting a printer via USB cable.
    The solution will vary depending on the products that you are using. Here is a helpful document for HP printers that will walk you through what you can do.
    John
    I work on behalf of HP.

    Hey @kat54 ,
    Welcome to the HP Forums!
    I understand you're receiving an error stating "This program has been blocked for your protection."
    You can read about this error here: "Blocked", "User Account Control", "Not trusted", or "Return code: 1625" message in Windows.
    You will find a link for Printers here which directs you to the HP Update Software Utility to resolve the problem. When you install this utility ensure you select version 5.005.002.002 or later.
    Make sure the utility you've downloaded is for your exact product and operating system.
    If this does not resolve the issue please call our technical support at 800-474-6836. If you live outside the US/Canada Region, please click the following link to get the support number for your region: Phone Assist Worldwide.
    Thanks!
    Please click the "Kudos, Thumbs Up" at the bottom of this post if you want to say "Thanks" for helping!
    Please click "Accept as Solution" if you feel my post solved your issue, it will help others find the solution.
    The Great Deku Tree
    I work on behalf of HP.

Maybe you are looking for

  • I cant download apps from the internet! WHY? AND HOW?

    So I downloaded Game Maker from its official website and GTA from 4shared I guess.....after the download, when I double click on the Apps, a pop-up pops up saying "The App or whatever cant open becasue its from an unidentified developer" and beneath

  • How can I embed a video with absolute path into a PDF

    I'm having some difficulties in embedding a video into a pdf; I followed the instructions to embed it properly, but the path points to my personal computer , so that the video will be available only on the computer I used to embed the document. Any s

  • Image Quality for Slideshows

    Hello Everyone. I just purchased Photoshop Elements 9 and I have just joined the Adobe Forum. I am an amateur photographer with a challenge. I am creating slideshows for family, and before I go any further, I need to get some questions answered about

  • Business Area for Depot Sales

    One of our clients who has implemented SAP thru us 3 months back has now acquired a depot for trading in excisable goods. He has acquired a dealers registration for the depot and will be shortly starting his trading activity from the depot. I have be

  • Problem with Xacute Query.

    <b> Hi, When I pass the Input parameter to the Xacute Query,It is not giving any output.I mapped the Transaction Output to the Xacute Query. When I ran transaction with same input parameter (transaction  property),it gave successful results. Also all