How to capture the current info in the top-of-page event in Reuse block dis

How to capture the current info in the top-of-page event in Reuse block dis

Hi Geetha,
     If you don't have any information to pass the Heading Block, then why you are using this event ?
     please comment/ remove that TOP_OF_PAGE code. and use subtotal code in field catalog block.
      you can use below code for subtotal. 
      FORM field_catalog .
                gs_fcat-do_sum = &2.
          fcat : 'WRBTR' '15' 'X' ' ' ' ' 'WRBTR' 'Amount',
       ENDFORM.
       Regards,
       Kunjan

Similar Messages

  • How to Capture Addl. Info in the Timecard(HXT and HXC) apart from Hours?

    We run Payroll and OTL. We need to configure the timecard for one of the payroll element (HXT and possibly the HXC) to capture additional information apart from Hours (Using and LOV).
    To accomplish that, I've done the following steps as per the User Guide.
    1. Created new Payroll Element(Hours x Rate) , linked
    2. Added the element to Element Set
    3. Created new Lookup
    4. Created new input value to the element created above and attached above created lookup.
    5. Ran Generate Flexfield and Mapping Information.
    6. Queried OTL Information Types DFF and made sure that the element is present there.
    7. Clicked on Enabled and Displayed check boxes to enable 'Hours' and 'New Input' and Compiled the FF
    8. Created a Table Validation Value Set for the above Lookup
    9. Added Alternate Name Mapping (I AM NOT SURE WHICH MAPPING COMPONENT TO USE??????)
    10.Created an Alternate Name for this Value Set
    11.In the Preference tree for Timekeeper Timecard Layout, added this alternate name as the Timekeeper Layout Item 2. Please note that "Timekeeper Layout Item 1" is the Payroll Element Set.
    When I opened the HXT Timekeeper Entry in the OTL Super Timekeeper responsibility, it is giving the following error message:
    APP-HXC-366338: The Setup of Timekeeper Preference is incomplete.
    Ensure that the following are set correctly:
    1. Timekeeper Misc Setup Items.
    2. Timekeeper Layout Attributes.
    3. Timekeeper Group is created.
    4. Profile: OTL: Allow Change Group Timekeeper.
    When I remove the alternate name from the Timekeeper Layout Item 2, In the Preference tree for Timekeeper Timecard Layout, it works fine and I am able to capture the Hours for the element.
    My intention is to capture another input value in the Timecard apart from Hours for the new payroll element and bring that input value to the element entries.
    Can someone help me on this?
    Any help is greately appreciated.
    Thank you.

    Hello,
    Setting view options in Image Capture:
    You can view images and other items from your digital camera in Image Capture. You can see the items in icon view or list view. In list view, you can see information about each item, such as the date it was created, its size, and the exposure. You can specify which information gets displayed.
    Connect your digital camera, and click Download Some.
    Choose View > as List.
    Control-click any column header, and choose the columns you want to display.
    Now, if you want, you can get iLife 06 and use iPhoto instead. You can set your default preferences so that either Image Capture or iPhoto launches when you connect your camera. But in iPhoto, once the images are downloaded to your Mac, you can see all the information in the bottom lefthand corner of the iPhoto window by simply selecting an image in your iPhoto library. It's so much more convenient then Image Capture. I use IC for scanning... that's about it.
    If you need further assistance post back... and.. with Image Capture open, you can always click Help in the Menu top of your screen. If you don't find an answer there, just post here.
    Carolyn

  • How can I change the state in the shipment info in the account setting?

    How can I change the state in the shipment info in the account setting?
    I was trying to buy an Apple TV from the store but, I live in Italy and at the moment (for long time) I'm in Deutschland.
    From the shipment information i didn't find the possibility to change the state. From default is ITALY but I need to receive in Deutschland.
    Did somebody know how to???
    Thanks in advance!!!

    Hi 7oaksGaz,
    1) Due to tax reasons, it's not possible to change the country associated with an existing Adobe ID.
    Follow the steps mentioned in the below link as a workaround to create an Adobe ID with the email address you currently use for the existing Adobe ID.
    http://helpx.adobe.com/x-productkb/policy-pricing/change-country-associated-with-adobe-id. html
    2) You can change the language of the application from AAM preferences
    Please find the link below for the article with the steps
    http://helpx.adobe.com/creative-cloud/kb/creative-cloud-trial-mode.html
    Thanks!
    Eshant

  • How to check whether current time satisfies the schedule?

    I am working on a task, which is opposite of cron tab. My application is in groovy but can call all Java api. Can you please provide some pointers?
    User is allowed to schedule a rule to be executed the way crontab gives the options. For example he wants the rule to be executed from Monday to Friday from 8 am to 5 pm.
    I can’s schedule in crontabe or Quartz. At run time I have to match, whether the current time satisfy the time condition entered by user.
    I may have to store this information in the database the way we put in the cron. Eg. my tables will have following
    Id|| Policy Id|| seconds|| minutes|| hours|| Day|| Date|| month|| year
    1 || 5 || 1     || 1 || 8-17 || M-F||? || * ||*
    Now while my code is getting executing, how can I match whether the current time matches the condition mentioned above.
    Thanks in advance.

    [Using Span|http://tus.svn.sourceforge.net/viewvc/tus/tjacobs/util/] would make this easy

  • I migrated info from a hard drive to a new mac under time machine. It says I have shared files, but I don't see the old info on the new machine. Where do I look for it ? How do I make the old backup the base for my new macbook ?

    I migrated info from a hard drive to a new mac under time machine. It says I have shared files, but I don't see the old info on the new machine. Where do I look for it ? How do I make the old backup the basis for my new macbook ?
    The old OS was Mac X 10.5.8.   I think the new one is  10.7.2     Lion.

    Have a read here How do I set up a new Mac from an old one, its backups, or a PC?
    Stefan

  • How to get the Current User on the UI page?

    All,
    Could you please let me know how to get the Current user on the UI input page , i need to display the current user ID when some one clicks the submit button, i want o get the current user to display in the javascript alert box.
    Edited by: 951930 on Oct 24, 2012 12:21 PM

    lucky,
    my schema has already defined for
    <user mapField="USER_ID" default="%CurrentUser"/>
    and in my UI page
    <td oraLabel="user"></td><td oraField="user" id="userId" ></td>
    and my javascript
    function showUserId () {                        
    var curUser = document.getElementById('userId').value;
    alert(curUser);
    and i have called this function on my submit button, but i am not able to get Current Logged User ID value to show in the alert nor able to show the current logged user on the UI page.
    my requirement is on custom UI page i need to show Current Logged User in one corner of the page and also need to show the same user in alert when he submits the button.
    Appreciate for the help.
    Edited by: 951930 on Oct 25, 2012 8:42 AM
    Edited by: 951930 on Oct 25, 2012 9:06 AM

  • How to get cwd of the current process in the kernel in Solaris 8

    Hi, everyone
    Does any one know how to get the path name of the current working directory of the current process in the kernel in Solaris8 ?
    I searched the forum and got some related links, but none of them gives a clear solution.
    Sample code can help a lot!
    Thank you!

    NiuLin wrote:
    Thanks for the reply.
    What the user structure contains is the vnode pointer of the cwd, but I want go get the pathname of it, like /export/home/abc/.First, all you can get is a path name - there can be more than one. And then there's the problem of determining the path name you want if the process is running under chroot.
    Assuming you don't have to deal with those, there's this thread:
    http://forum.java.sun.com/thread.jspa?threadID=5084620&messageID=9298124
    Of course, that thread doesn't say how to do that. But it appears to be part of Solaris 10.
    I once had to solve this same problem for a Linux kernel module I wrote, so I know it's theoretically possible. But I also know it's not as simple as it seems it should be, and any results you do get are not guaranteed to be unique and, IIRC, not even correct in some cases.
    Sorry I can't be more specific than that right now.

  • How to display the current date in the prompt value.

    Hi,
    How to display the current date in the prompt value. When the user runs the query he want the current date to be displayed in the prompt value and he should also be able to change the date if required ...... I am using web Intellegency BO XI3.0.
    Thanks,
    Shakthi.

    Please refer the below link.
    Prompt  with  default  date   (  currentdate-1  and current date-8)
    http://www.dagira.com/2008/07/15/how-can-i-make-today-my-default-prompt-value/
    http://www.dagira.com/2008/07/21/using-a-magic-date-value-in-prompts/
    Regards,
    Bilahari

  • I downloaded CS6 Red Plug-In and added to Package Contents, replaced the current files with the new without backing up, now my RED footage thumbnails and color-correction don't WORK! How do I get my old importerRed file back!!?? HELP!

    I downloaded CS6 Red Plug-In and added to Package Contents, replaced the current files with the new without backing up, now my RED footage thumbnails and color-correction don't WORK! How do I get my old importerRed file back!!?? HELP!

    Try asking in the Premiere Pro  forum seems to be an Adobe Lab for Premiere Pro

  • How to make the LV front panel controls the current value through the program is set as the default value when the next time you open?

    How to make the LV front panel controls the current value through the programis set as the default value when the next time you open?
    1110340051 

    Try this: Re: How to make a VI remember the latest control value?
    Jim
    You're entirely bonkers. But I'll tell you a secret. All the best people are. ~ Alice

  • Updated all account information.  How to update apple acct. info on the Iphone itself.  Cannot download any apps.

    I have updated account information online at apple/itunes.  How do I change account info on the IPhone 4 itself so I can start downloading apps?  Thanks

    thank you but when I tap the apple ID , the only options are view apple ID, sign out or, cancel . Cannot get it to allow me to edit the account name

  • How to get the current Date from the system?

    How do I acquire the current date from the system? Also, if possible, can I assign the day, month and year separately into three variables and how? It would be thankful if some simple Example could be given. Thanx!

    import java.util.*;
    public class count {
    public count() {
    Calendar now = Calendar.getInstance();
    int month = now.get(Calendar.MONTH);
    int day = now.get(Calendar.DAY_OF_MONTH);
    int dayyear = now.get(Calendar.DAY_OF_YEAR);
    int year = now.get(Calendar.YEAR);
    int a = 365;
    int b = a - dayyear;
    System.out.println("The day is the" + " " + day);
    System.out.println("IT is the" + " " + month + " " + "month of the year");
    System.out.println("The year is" + " " + year);
    System.out.println("This many days till next year" + " " + b);
    public static void main(String[] args) {
    count cou = new count();
    }

  • How to find the current line in the table control in module pool ?

    How to find the current line in the table control in module pool ?
    This is an urgent requirement? please do help me.

    refer to this example
    REPORT demo_dynpro_tabcont_loop_at.
    CONTROLS flights TYPE TABLEVIEW USING SCREEN 100.
    DATA: cols LIKE LINE OF flights-cols,
    lines TYPE i.
    DATA: ok_code TYPE sy-ucomm,
          save_ok TYPE sy-ucomm.
    DATA: itab TYPE TABLE OF demo_conn.
          TABLES demo_conn.
    SELECT * FROM spfli INTO CORRESPONDING FIELDS OF TABLE itab.
    LOOP AT flights-cols INTO cols WHERE index GT 2.
      cols-screen-input = '0'.
      MODIFY flights-cols FROM cols INDEX sy-tabix.
    ENDLOOP.
    CALL SCREEN 100.
    MODULE status_0100 OUTPUT.
      SET PF-STATUS 'SCREEN_100'.
    DESCRIBE TABLE itab LINES lines.
    flights-lines = lines.
    ENDMODULE.
    MODULE cancel INPUT.
      LEAVE PROGRAM.
    ENDMODULE.
    MODULE read_table_control INPUT.
      MODIFY itab FROM demo_conn INDEX<b> flights-current_line.</b>
    ENDMODULE.
    MODULE user_command_0100 INPUT.
      save_ok = ok_code.
      CLEAR ok_code.
      CASE save_ok.
        WHEN 'TOGGLE'.
          LOOP AT flights-cols INTO cols WHERE index GT 2.
            IF  cols-screen-input = '0'.
              cols-screen-input = '1'.
            ELSEIF  cols-screen-input = '1'.
              cols-screen-input = '0'.
          ENDIF.
      MODIFY flights-cols FROM cols INDEX sy-tabix.
    ENDLOOP.
        WHEN 'SORT_UP'.
          READ TABLE flights-cols INTO cols WITH KEY selected = 'X'.
          IF sy-subrc = 0.
            SORT itab STABLE BY (cols-screen-name+10) ASCENDING.
            cols-selected = ' '.
      MODIFY flights-cols FROM cols INDEX sy-tabix.
          ENDIF.
        WHEN 'SORT_DOWN'.
          READ TABLE flights-cols INTO cols WITH KEY selected = 'X'.
          IF sy-subrc = 0.
            SORT itab STABLE BY (cols-screen-name+10) DESCENDING.
            cols-selected = ' '.
      MODIFY flights-cols FROM cols INDEX sy-tabix.
          ENDIF.
        WHEN 'DELETE'.
          READ TABLE flights-cols INTO cols
                                  WITH KEY screen-input = '1'.
          IF sy-subrc = 0.
            LOOP AT itab INTO demo_conn WHERE mark = 'X'.
              DELETE itab.
    ENDLOOP.
          ENDIF.
    ENDCASE.
    ENDMODULE.

  • How to interpret the current day of the month

    I am a rookie in java and am trying to play with the Calendar class.
    The DATE static field of this class says it returns "Field number for get and set indicating the day of the month."
    So, Calendar.DATE has to return the current day of the month.
    Today is 7th of january. So, it should return 7. But, I am getting a value of 5.
    I am very much confused. I fell that my interpretation os wrong.
    Please help.............
    Thanks in advance.

    You must NOT confuse the value of the constant Calendar.DATE (5) and how you can use that constant to retrieve the current day of the month.
            Calendar cal = Calendar.getInstance(); // Gets the current date
            int dayOfMonth = cal.get(Calendar.DATE); // Gets he current day of the month from the current date
                                                     // (Using the Calendar.DATE constant as method parameter).
            System.out.println("Calendar.DATE = " + Calendar.DATE); // Prints the constant
            System.out.println("dayOfMonth = " + dayOfMonth); // Prints the current day of month

  • How backup iphone without erasing the new info on the new iphone

    how backup iphone without erasing the new info on the new iphone?

    L.A RAA wrote:
    Ya but my question is: ones i restore all my info into my new iphone would it erase the content i have on it? ...
    Yes.
    L.A RAA wrote:
    I already backup my old phone on itunes now i want to get that information in my new iphone without erasing anything on the new iphone...
    The Restore from Backup will erase what is on the phone..

Maybe you are looking for

  • Changing master images in aperture and iphoto

    hi am i right in thinking that there is no way of altering my original (master) images (located in my 'pictures' folder) in both aperture ans iphoto? I want to be able to see the changes in the original images in this folder, and have these altered i

  • Adding a new field in MIRO using BADI

    Hai Experts, I am new to BADI. Today one requirement was there to add a field in MIRO screen for costcenter. As i searched in SDN i got information to use BADI MRM_ITEM_CUSTFIELDS. Is it right or anyother option is there to create a field. If it is r

  • Does WLS 7.0 run on Windows XP ?

    Is Weblogic 7.0 supported on Windows XP ? Is it reliable, etc. ? I was planning to use it on a laptop running windows XP.           

  • Uh Oh, This isn't good

    Now I'm wondering why I bothered. This weekend (last night) I went about the task reinstalling Windows XP, etc. I decided that since I was doing a clean wipe and reinstall I would upgrade my BIOS first from 2.2 to 2.4. This may have been a mistake. A

  • Accessing JAR file

    How i can access a file inside my JAR? Anybody there to help me?