Restrict user could not get output of conc request more than one

Hi all,
I actually have one scenario that I want to delete or purge concurrent requests after getting view output. Please tell me how it is possible to purge request , Its simple means to prohibit the user to
see out 2nd time.
"I have one option that May be I use personalization , when user click on view output button , after populating file
code delete request from concurrent request table."
Thanks

user9275313 wrote:
Hi Sirini,
We have its solution already, when user click on view output then this directly go to printer, user can not view output, But I prevent here user he can click only one time against one request, the second time when he click of that button either it goes disable or that request purg in first click from the table.
ThanksThere are several obvious issues that come to mind -
1. If the user cannot view the output but can only print it, then the only way he/she can verify that it is the correct output is after printing it - seems to be a possible waste of paper.
2. What if the printer jams (or runs out of ink etc etc) when printing the output ? What is the option to print a second time ?
HTH
Srini

Similar Messages

  • How can i get apple tv2 to recognize more than one computer in my house

    how can i get apple tv2 to recognize more than one computer in my house, I just got it and can only find one of two computers in my home

    Same here. I have 1 ATV2 and 2 computers and each has separate iTunes accounts (mine and my wife's). The ATV menu says "computers" so I presume you can have more than 1 computer on 1 ATV. The big question is how do you set it up?

  • HT4759 Can't get in Cloud. States ID valid for Apple but not Cloud Account. Is there more than one Cloud. Is the new Windows 8 messing up my iTunes?

    ID is valid for Apple but not iCloud account? Is there more than 1 cloud?

    Welcome to Apple Support Communities
    You are trying to log in iCloud for the first time. You have to set up iCloud first on a iPhone, iPad, iPod touch or Mac before being able to set it up on a PC. See > http://www.apple.com/icloud/setup
    If you haven't got a iPhone, iPod touch, iPad or Mac to set up iCloud, you can't use iCloud until you have one

  • Multiple users on a single computer/synching device to more than one iTunes

    Sorry if this has been asked before -- seems like it would be a common question. Our family has three iTunes users, and we each run off our own laptop, but there's a lot of overlap in the library and it's a huge waste of disk space. I'd like to achieve two things:
    1. Have a single copy of a music file even if it's in all three libraries
    2. Avoid having to go into three separate iTunes accounts to add new music to each one -- I just want to add it once and have it available to all three users
    So can I do this: have a new iTunes account on the central desk computer, and have that iTunes hold all our music. Everybody maintains their own playlists on that one central iTunes. If we sync our iPhones/iPods to that computer, we just sync music, and we pick up our playlists. If we sync to our laptops, we sync podcasts and so on and don't sync music because there won't be music on those laptops. Will that work? Or can I not sync my iPhone to more than one iTunes?
    Thanks for any help
    Mike

    Welcome to AD!
    Here is an article on using multiple ipods. I suggest method 1 and steer clear of method 3.
    http://support.apple.com/kb/HT1495
    For your point #1, sharing music on same PC between users, put it in a shared library & set permissions as directed here
    http://support.apple.com/kb/HT1203
    For #2, itunes doesn't have the capability to monitor folders for new content. You'll need to get something like the free program 'itunes folder watch'.

  • My iPod Nano will not sync ratings to iTunes if more than one playlist is played

    When I try to sync my iPod back to my computer it will only take song ratings I've changed if I only played music with one playlist.  If I've played more than one it doesn't transfer them and just acts if they never existed.  Why is this?

    If you honestly did not damage the iPod, the broken screen should be covered under warranty. Do you live near an Apple Store?
    JC

  • How come its not letting me video chat with more than one people?

    i've chatted before with more than 2 people on ichat but for some reason its not letting me. The plus sign will only show like 2 names meanwhile there are other people on my buddy list that i want to add not the ones in the plus sign. I've exited out of the chat i had with one person and went to the other person to make sure theres is working and it does. so why can;t i chat with 3 people then, and how to add them. If someone can help that would be great! Thanks!

    Perthaps http://docs.info.apple.com/article.html?artnum=304486
    and http://docs.info.apple.com/article.html?artnum=301050
    play into this...
    (if this solves your problem, or is actually helpful towards arriving at a solution to your problem, please consider clicking on either the gold or green star in order to mark this reply as "helpful" or "solved")

  • Can't get itunes library to playback more than one song at a time

    Has anyone had this problem? I am in the iTunes library and I can't get any songs to play unless they are selected. Even then, it will only play one song and then stop. I have "shuffle" activated and I have "repeat" activated. I have tried uninstalling and reinstalling the software. I have also made sure I have the latest updates of iTunes and Quicktime. Does anyone have any idea how I can solve this?
      Windows XP  

    To me, it looks like the songs are not checked.
    iTunes will only play checked songs continuously.
    Control-click on one of the checkboxes in front of the name to check/uncheck them all at once.
    Hope this helps.
    M

  • BufferedReader does not reset stream, unable to write more than one

    Hi,
    The following is a program that tries to read a file and write into 10 files.
    I am using bufferedReader.reset() to get to the starting position of the stream, but unfotunately it says mark not supported .
    Can anyone please tell me , why the stream does not reset, and do I have to close and then again reopen the input reader to write multiple times. Are there any other alternatives?
    import java.io.BufferedReader;
    import java.io.BufferedWriter;
    import java.io.FileNotFoundException;
    import java.io.FileReader;
    import java.io.FileWriter;
    import java.io.IOException;
    public class TestFile {
         public static void main(String args[]) {
              try {               
                                  FileReader fr = new FileReader("testinput.txt");
                   BufferedReader br = new BufferedReader(fr);
                   BufferedWriter out = null;                  
                   String line = null;
                   String name = "testoutput";
                   FileWriter fw = null;
                   for(int i=0;i<10;i++){     
                        String fname = name + i + ".txt";
                         fw = new FileWriter(fname ,false);
                         out = new BufferedWriter(fw);                    
                        while((line = br.readLine())!= null){
                             out.write(line);                         
                        out.close();
                        if(br.markSupported()){
                             br.reset();
              } catch (FileNotFoundException fnf) {
                   fnf.printStackTrace();
              } catch (IOException e) {               
                   e.printStackTrace();
    }Exception
    java.io.IOException: Stream not marked
         at java.io.BufferedReader.reset(BufferedReader.java:485)
         at TestFile.main(TestFile.java:30)

    but unfotunately it says mark not supported No it doesn't. It says
    java.io.IOException: Stream not marked
    No where in that code are you calling the method "mark" to set a mark and the API for reset says:
    Reset the stream to the most recent mark.And it says it throws an IOException
    If the stream has never been marked, or if the mark has been invalidated.

  • Can you output a multicam video (more than one angle on screen)

    I'm trying to output some video for an engineering project and I need to be able to show four angles of the same intersection on one video. It is possible to do this? If so, how?

    I am not sure if I have your question correct but yes it is possible.
    Place a video on a track with another on the track above, a third on the track above the second.  You can stack as many as you want on top of each other.
    Then with the clip on the highest numbered track highlight the clip and then in the effects panel resize and reposition the clip, repeat going down the tracks
    Col

  • TS1398 My iPhone has just started to not allow me to connect to more than one wi-fi connection, i need to reset network settings every time i want to use the wi fi somewhere different, how do i fix??

    Why will my iPhone no longer allow me to connect to multiple wi-fi, i have reset network setting and tried turning phone off and on?

    Found this & it worked... at least to get my Wi-Fi no longer greyed out:
    Settings > Airplane Mode ON, Do Not Disturb ON
    Power down and wait 5-10 minutes
    Power on
    Settings > Airplane Mode OFF, Do Not Disturb OFF
    Now if only my phone would find my Wi-Fi network & connect to it....

  • HOw to I get thumbnails to show in more than one column in Finder?

    When viewing images in Finder - they only show up in one column when I am in the thumnail view - how can I get them to show in multiple columns?
    Thanks

    This is Column view. When you select any item in any column, another column comes up on the right until an icon - with no content - is displayed in the far right column.

  • Cant get FBEAN.GET_CHAR_PROPERTY to return more than one character

    I have a javabean on my form. I am passing values to the bean using FBEAN_INVOKE. I need to get error messages back from Java. I set the logging mode to Log_All.
    I use FBEAN.GET_CHAR_PROPERTY to return an error.
    Here's my code:
    retval varchar2(10);
    retval := FBEAN.GET_CHAR_PROPERTY('bean',1,'errorMessage');
    message (retval);
    The message appears on the Java control panel. But the message returned in the Form is null, unless the value is one char length. It should be able to return a string.
    I have a similar problem when using FBEAN_INVOKE_CHAR.
    My Java class extends JPanel
    Does anyone know what is wrong ?

    I dont know how but this issue resolved itself

  • Not able to view data from more than one data package in PSA

    Hi Friends,
    Desparetly trying to view data in PSA. Problem :
    If i mark more than one datapackage this error raises:
    You must only select one data packet when entering data record numbers
    Message no. RSAODS127
    And there is no change to reset data record numbers.
    What is wrong ?
    Thanks in advance for help.
    Joe
    BW3.5, SP21
    Edited by: J.F.B. on Jul 2, 2009 11:40 AM

    Hi again,
    Seems I'm too stupid for this issue.......
    As I understand there are two ways to view PSA :
    1. PSA maintenance in RSA1
    2. In SE11/SE16 viewing the underlaying transparent table
    ad 1.
    When I try to filter erroneous records for more than one datapackage situation is as described above.
    ad 2.
    Trying to view the table works, but where is the chararcteristic/field marking a  record as erroneous
    in table /BIC/Bxxxxxxxx (table containing PSA-Data) ?
    Thanks
    Joe

  • Installer does not allow for shortcut changes or more than one

    I have been trying to create a shortcut for the Start Menu and the Desktop. I can create the two shortcuts except they are exactly setup the same. I try to change one or the other and they both revert back to the original settings. In the attached images you will see that I change the subdirectory to nothing. When I come back to the shortcuts area, the subdirectory is back. If I create a second shortcut, it is the same as the first... I cannot change it.
    photo 1: this is how it starts, default
    photo 2: My changes... subdirectory is removed
    photo 3: I leave the shortcuts area
    photo 4: I return to the shortcuts area and the subdirectory is back.
    If I create another shortcut, it will act exactly the same. Both shortcuts will be setup as the first photo. No changes stay.
    What is going on here?
    Attachments:
    shortcuts_setup_anomaly.zip ‏161 KB

    What LabVIEW version is this?
    LabVIEW Champion . Do more with less code and in less time .

  • Can you get a charger to charge more than one ipad2?

    We are a primary school with 15 ipad2s and it would be lovely to charge them all together.

    Charge and sync 16 iPads at one go
    http://www.paratec-blue.com/products/iNsync-ipad-charging-synchcronising-case/

Maybe you are looking for