I try to display a number of executed record on the forms screen.

I try to display a number of executed record on the forms screen
while a cursor loop statement is running. (the cursor statement is in server)
And i used the 'when-timer-expired' trigger in forms developer.
it was possible to update the count of executed record to a temporary table,
but it didn't work to dislay the result on the forms in real-time .
only on time the trigger was executed when the cursor loop was finished.
Does anyone know the method of showing the count in real-time???
Message was edited by:
조현정
Message was edited by:
조현정

If I understand you:
- You created a procedure in the database that uses a cursor to process one record at a time.
- This procedure updates a temp table that indicates the current record being processed.
- While the procedure is running you created a repeat timer that queries the temp table and displays in the form the current record being processed.
Now, you say that the timer only executed once after the database procedure was finished. Is that your problem?
If so, I think you may have to start the procedure using the database scheduler. Then use a repeat timer to query the temp table. Your procedure will need to indicate in the temp table when it is finished so you can stop the timer. (There may be another way to check if the procedure is done. For example, the database may provide some means to indicate that the procedure in scheduler is done.)
Message was edited by:
Mark Roberts

Similar Messages

  • Is it possible to display list alv and grid alv in the same screen

    Hi
    There are methods to display more than 1 alv grid in the same screen by using block append grid . In the same manner its available for more than 1 list alv report display by REUSE_ALV_BLOCK_LIST_APPEND.
    My question is I want to display 1 alv list and 1 alv grid report in the same output screen .
    Please let me know how to do it ?  I will definetly appreciate the answers.
    Thanks!!

    Hi Anindita,
                                      Previously i ad told v cant display two lists together in same screen. But u can use Block ALV for this. Use FM "REUSE_ALV_BLOCK_LIST_APPEND.
    In OO u can use Cl_GUI_EAST_SPLITTER_CONTAINER for displayin more than two lists in same screen.
    If useful giv points
    Regards
    Vanitha P

  • Scan through the records in the Form and display the message!

    Hello Everyone,
    We have a requirement, I do not know how to achieve it.
    In a Forms 6i, 2 fields Type, Comment.
    Type is a list of Values (1,2,3)
    Comment - Free Text Field.
    User can enter as much rows of data, but while user saves the data we have to validate that all the records of Same Type(Say 1). If not we have to display a Message.
    So how to achieve this? How to scan through the records in the Form. Any comments on it would be great.
    Thanks.

    User can enter as much rows of data, but while user saves the data we have to validate that all the records of Same Type(Say 1). If not we have to display a Message.I am assuming that you want to check from the first record. Suppose in first record the user coosed 1 and you will check for all the entries for 1.
    Couple of ways to do this.
    1. While user is entering first record. You can keep that selected type value in GLOBAL variable and while he is entering further records you can match type with that global variable. If it is not matching then you can display message.
    2. On KEY-COMMIT trigger you can start loop from first record and can check for all the records one by one. Like.
    DECLARE
      vVal DATATYPE;
    BEGIN
      GO_BLOCK('BLOCK_NAME');
      FIRST_RECORD;
      vVal:=:FORM_TYPE_FIELD;
      LOOP
        IF vVal!=:FORM_TYPE_FIELD THEN
          MESSAGE(..);
          EXIT;
        END IF;
        EXIT WHEN :SYSTEM.LAST_RECORD='TRUE';
        NEXT_RECORD;
      END LOOP;
    END;I would go for earlier approach and will use WHEN-VALIDATE-ITEM / PRE-INSERT for type field for this purpose. Because in KEY-COMMIT the system is doing same thing again.
    -Ammad
    Edited by: Ammad Ahmed on May 15, 2010 12:23 AM
    changes not equal sign to !=

  • HT201210 my iphone is stuck on the itunes screen and when i try to restore it it just go back to the itunes screen how do i get out of it

    my iphone is stuck on the itunes screen and when i try to restore it it just go back to the itunes screen how do i get out of it

    Connecting in recovery mode will help: http://support.apple.com/kb/HT1808

  • My display freaks out and gets 4 of the same screen one it

    I have my display (apple cin of course), hooked to my Macbook Pro.  It has worked perfect for about a year and now it is clicking on and off every once in a while.  Then yesterday is went off and came back on with 4 of the same screen on the main screen and it was all jumbled up.  Why is it doing this and is the display failing?

    It sounds like the display or video card could be failing.  Try an smc reset but it probably won't have any affect.

  • Displaying Variables values with Text also in the selection screen of repor

    hai
    I have one InfoObject ZPLANT .When i try to excute the report then im getting only the Values of ZPLANT(not Text of those values) .Like below
    ZPLANT :-
    101 -
    (im getting like this)
    101 London Plant ( i want like this ,when i try to excute the report).
    Please tell me how to do .
    rizwan

    Yes kamaljeet ,
    When we press F4 , then we will gwt some values .
    I want those values with description also ..
    Pls tell me how can i get those F4 values with text in the selection screen of report .
    i ll assing the points
    rizwan

  • When i try to turn ipod touch on it stays on the black screen with the apple and nothing else happens. whats wrong?

    okay so just as i was typing this the problem resolved itself, but when i went to charge my ipod i noticed ot stayed on the black screen with the apple for a good 10 minutes, so i pressed buttons furiously (!!) and the screen went white and then back on to the screen with apple again. this contiinued for a good 4 tries then eventually went on to my lock screen (which is the very beautiful dom howard not that you know who that is and i dont even know any of you so i dont know why im typing all of this out but i really enjoy typing it's an incredibly exciting past time of mine but unfortunately i havent used capital letters) just wondering if it will happen again

    Try:
    - iOS: Not responding or does not turn on
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
      Apple Retail Store - Genius Bar

  • Display entity-attributes and global-attributes in the same screen

    Hi,
    I have a question about entity.
    Is it possible to display in the same screen, entity-attributes and global-attributes?
    thanks
    Rosalia

    Hi Rosalia,
    You can only display attributes from the current entity and the entity or entities that it is contained by (the parent entities).
    So if you had the following data model
    Global
    ..the person
    ...the income
    the person is contained by global.
    the income is contained by the person (which is contained by global).
    If you want to create a person-level question screen, you can display global attributes on that screen by using subsitution like %global_field_1%. You cannot, however, input global attributes on that screen (ONLY attributes belonging to the person)
    If you want to create an income-level question screen, you can display attributes from the person such as "tell us about %person_name%'s income..." as well as global attributes. Again, you cannot input person or global attributes on that screen (ONLY attributes belonging to the income)
    However it only works from child-to-parent containment relationships! You cannot have a global question screen which loops through the person instances and displays attributes from the person, or from the income out-of-the-box.
    We have managed to implement this using custom controls.
    You can map individual attributes back up to the parent level, and then display them,
    such as
    the first person's name = InstanceValueIf(the people, the person's name, the person's id = 1)
    the first person's name is now a global attribute and can be displayed on global question screens.
    Hope this helps!
    Ben

  • My ipod is stuck on a screen with a faint apple logo, my computer wont recognize it. If I try to reset it, it just comes back to the same screen.

    I have recieved an iopd classic 30gb, and it is not turning on. I am stuck at a black screen with a very faint apple logo in the center. When I try to reset, the screen goes blank for a second then goes back to the same screen. I really want to fix it, PLEASE HELP!!!!!

    Try working through the recommend five R's of troubleshooting. 
    http://www.apple.com/support/ipod/five_rs/
    B-rock

  • Display a field/ text as hyperlink in the selection screen.

    Hi All,
    I have a requirement wherein i need to display a text/field as hyperlink in the main selection screen.
    Uponn clicking the hyperlink i need to display an ALV in the pop up screen( i.e pop up window).
    Any pointers on how to get hypelink in main screen will be helpful.
    Thanks in advance.
    Regards,
    Nirmala.

    hi
    please raise your question in the abap forum.
    Regards
    sameer

  • Custom Infotype not displaying locked records in the list screen (3000)

    I have a custom infotype (9xxx) that will not display the locked records (locked indicator (sprps) is set to X) in the list screen (3000) in PA20 and PA30.
    Any ideas on what may be causing the records to not display in the list screen?
    Thanks,
    Ted

    Hi,
    for creating both employee and appliciant infotype you must check 'Both'  in PM01  IT tab.
    Regards.

  • Hiding the execute button of the standard screen

    Hi,
    I want to hide & disable the standard execute button which appears on the selection-screen on execution of a report.
    Kindly let me know of how to go about it.
    Thanks in advance.
    Regards,
    Malathi V.

    Here is how you can do it.  This way you don't have to create your own gui status.
    report zrich_0002 .
    * Used to limit user commands on selection-screen
    include rsdbc1xx.
    * Selection Screen
    parameters: p_check type c.
    * Events
    at selection-screen output.
      append 'ONLI' to current_scr-excl.   "Execute
      append 'PRIN' to current_scr-excl.   "Execute and Print
      append 'SJOB' to current_scr-excl.   "Execute in Background
    Regards,
    Rich Heilman

  • I have the Huawei S7 tablet running Android 2.1-update 1 and when I try to launch Firefox for Android it returns to the home screen. Anyone else have this problem?

    I can install the application although it will not launch. I get the firefox logo before it returns to the application screen. When I check to see if it is running it is not listed.

    Thanks for the report. We haven't tested Firefox on this device, and I'm not sure why it is crashing on startup. If you'd like to help us find out more, you can try both the ARMv6 and ARMv7 nightly builds at https://wiki.mozilla.org/Mobile/Platforms/Android

  • IOS5 displaying phone number instead of name in text message screen

    At the top of the text message screen, where it used to say the recipient's name, it now says their phone number.  I cannot find any settings as to change this.  It happens to others who have iMessage on.  If they do not have an iPhone, or their iMessage is off, it still says their name.

    I fixed this problem by:
    1. Turn iMessage off
    2. Turn iMessage on
    3. Verify contact is in contact list
    4. Deleting the text message series prior to the one you want to send.  Say you've texed Bob Dole 1000 times, delete the entire thread.  Then, hit new message, load Bob Dole from contacts, and send. 
    For me, this ended the above problem.

  • When i connect my mac book pro to an external display using a VGA cable and adaptor, the external display splits into several different columns of the same screen overlapping one another. Does anybody have any ideas as to why this happens?

    I have used different VGA to mini port adaptors, different VGA cables and connected them to different external monitors and prjectors but the same thing happens. I am starting to think there may be a problem with the macbook itself however, when i have used a HDMI lead and adaptor to external monitors the external display is fine.

    Hi there LDIMERY,
    You may find the troubleshooting steps in the article below helpful.
    Apple computers: Troubleshooting issues with video on internal or external displays
    http://support.apple.com/kb/ht1573
    -Griff W. 

Maybe you are looking for

  • ASA 5505 VPN NEM

    Hi! First of all I appologize for posting a similar question in another forum. I think this one is the right place. Im trying to connect to a PIX 501 with easy vpn in nem mode with a ASA 5505. Currently running 7.2.2-22 (had to download a interim rel

  • Kernel panic after installing additional ram

    Hi there. (I think this should go here, not in laptop issues because it seems to be more hardware-related) I have a laptop Acer Aspire 2920Z with 2x512 Mb stock ram and I recently bought an memory upgrade 2x2gb. Any of them works when inserted separa

  • Please help me with the installation process.

    i have got free norton antivirus activation keybwith the pirchase of hp 16 gb pendrive . please help me with the installation process.

  • Imovie malfunction

    I've been using Imovie on this machine for a over a year now and it has been working just fine. My usual procedure is to connect my Sony Mini DV camcorder via firewire. When I open Imovie, I set it to save the clips and project to external harddrive

  • BTE for Duplicate invoice

    Dear SAP gurus, We are on ECC 6.0.  We are trying to use BTE 1110 to build our logic for duplicate invoice. We have activated it in FIBF by copying the sample process, but it is not getting triggered while doing any vendor invoice posting. Please adv