How to print the itab,and the result number is changeable ?

in the abode ,how to print the itab,or how to print the data that its result number is
changeable ,in the nw04s1 it provide such example ,thanks for you !

Hi Yolanda,
I need to do the same in my form. Would you mind let me know if you found any solution. Appreciate if you can share some code.
Thanks in advance,
SekharN

Similar Messages

  • How to find lasts query and his results(number of record returned)

    Hi all,
    sorry for my english.
    My scenario: i have 3 select below....
    first select: select 1 from dual;
    second select select 1 from dualXXXX; (this table/view/synonym, etc,etc NOT exists in DB)
    third select select 1 from dual where 0=1;
    my question is:
    how and where i can find (in system table for example) the latest query and the right or wrong excecution?
    I.E. for the first query the results is OK (with 1 record returned)
    for the second query the results is KO (the table not exists)
    for third query the results is OK( but whit 0 record returned).
    There is this information stored somewhere?
    Thanks a lot
    Attilio

    Properly executed queries details will be found in below dynamic views :
    V$SQL,V$SQLAREA
    SELECT
         sql_text,
         ROWS_PROCESSED,
         LAST_ACTIVE_TIME
    FROM
         V$SQLAREA
    WHERE
         regexp_like(SQL_TEXT,'1 from dual');Not aware about the queries which did not get executed properly.

  • In iTunes, my printing is white and the background is black, How do I change it back to white printing on a black background.

    In my iTunes store, the printing is white and the background is black and I have forgotten how to change it back to black printing on a white background? I know that it is a simple answer, but right now I cannot think of it.
    Also, what is the "other" when you are syncing an ipad in itunes and in my case the other is more than half of my 64Gb. How do I find out what it is and then get rid of it if I want to?
    Thanks

    Hi gramie47,
    Sorry to hear that didn't resolve the issue.
    I checked online for issues printing from the Internet, found a couple of things you can try. Most likely it is a setting that needs to be changed in the browser settings, since the printer prints fine from the computer.
    From Internet Explorer, go to File, Page setup, Remove check from "Printer background color and images" if checked, or vise versa, to see if that helps.
    Here is another document you may take a look at.
    Map Images May Not Print Properly When Using Internet Explorer.
    If you continue to have issues, contact your Internet Provider for further assistance.
    Thank You.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Gemini02
    I work on behalf of HP

  • I have an Iphone 4S and I would like to print my text messages, including the thread and the Imessage date and time stamps.  How would I do this?

    I have an Iphone 4S and I would like to print my text messages, including the thread and the Imessage date and time stamps.  How would I do this?

    settings - message - imessage - OFF

  • How to print Integrity sql in the preparedstatement?

    How to print Integrity sql in the preparedstatement?
    Connection conn = null;
    String sql = "select * from person where name=?";
    PreparedStatement ps = conn.prepareStatement(sql);
    ps.setObject(1, "robin");
    ps.executeQuery();
    i'm wants print Integrity sql.
    For example:select * from person where name='robin'
    How should I do?
    thanks a lot!

    PreparedStatement doesn't offer methods for that. You can write your own implementation of PreparedStatement which wraps the originating PreparedStatement and saves the set* values and writes it to the toString().
    If needed, myself I just print the sql as well as the values-being-set to the debug statement.Logger.debug(query + " " + values);

  • HT2534 how do i use itunes and the app store without any credit card or gift card?

    i just got my iphone and i used to use itunes all the time before when downloading all songs were completly free, how do i use itunes and the app store to find free stuff to download without having to add a credit card or gift card with my account?

    Create a NEW account/ID for her using these instructions. Make sure you follow the instructions. Many do not and if you do not you will not get the None option. You must use an email address that you have not used with Apple before. Make sure you specify a birthdate that results in being at least 13 years old
      Creating an iTunes Store, App Store, iBookstore, and Mac App Store account without a credit card
    More details of how:
      http://ipadhelp.com/ipad-help-tips-tricks/how-to-get-free-apps-from-the-app-stor e-without-a-credit-card/

  • How to display name of the table and the description and the table type

    Hi,
    Can you people tell me how to display the name of the table and the description and the table type (View, structure, etc...) used in the program.
    I want to display in a list.
    Kind Regards

    use this program
    TABLES : TSTC, tstct.
    TABLES : DD03l, DD02l.
    DATA : Program like sy-repid.
    DATA : BEGIN OF I_FINAL OCCURS 0,
    tabname LIKE dd02l-tabname,
    TABCLASS LIKE dd02l-tabCLASS,
    TEXT LIKE DD02T-DDTEXT,
    END OF I_FINAL.
    DATA : BEGIN of ITAB Occurs 0,
    name like dd02l-tabname,
    END OF ITAB.
    DATA : TCD(100) TYPE C.
    DATA : var1 LIKE dd02l-tabname.
    DATA : DESC LIKE TSTCT-TTEXT.
    selection-screen skip.
    SELECTION-SCREEN : BEGIN OF BLOCK b2 WITH FRAME TITLE text-002.
    PARAMETERS : r1 RADIOBUTTON GROUP r DEFAULT 'X'.
    Parameters : Tcode like sy-tcode.
    selection-screen skip.
    PARAMETERS : r2 RADIOBUTTON GROUP r.
    Parameters : Prog like sy-repid.
    SELECTION-SCREEN END OF BLOCK b2.
    SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE text-001.
    select-options : Type for dd02l-tabclass .
    SELECTION-SCREEN END OF BLOCK B1 .
    at selection-screen.
    if r1 = 'X' and Tcode is initial.
    message e001(00) with 'Enter Transaction Code' .
    elseif r2 = 'X' and Prog is initial.
    message e001(00) with 'Enter Program Name' .
    endif.
    START-OF-SELECTION.
    if r1 = 'X'.
    Prog = ' '.
    select single * from TSTC where tcode = tcode.
    if sy-subrc = 0.
    program = TSTC-PGMNA.
    select single TTEXT from tstct into desc where tcode = tcode and SPRSL = 'E'.
    else.
    Write :/ 'Invalid Transaction Code'.
    exit.
    endif.
    elseif r2 = 'X'.
    Tcode = ' '.
    program = Prog.
    endif.
    CALL FUNCTION 'GET_TABLES'
    EXPORTING
    PROGNAME = Program
    TABLES
    TABLES_TAB = itab.
    if itab is initial.
    skip.
    skip.
    skip.
    skip.
    skip.
    WRITE :/40 'No Data Found' color 6 INTENSIFIED OFF.
    ELSE.
    PERFORM : categorize.
    endif.
    END-OF-SELECTION.
    LOOP AT I_FINAL.
    WRITE :/4 I_FINAL-tabname COLOR 2 INTENSIFIED OFF NO-GAP HOTSPOT ON, 35 I_FINAL-TABCLASS COLOR 2 INTENSIFIED OFF NO-GAP,
    50 I_FINAL-TEXT COLOR 2 INTENSIFIED OFF NO-GAP.
    ENDLOOP.
    AT LINE-SELECTION.
    TCD = SY-LISEL.
    var1 = TCD+3(30).
    set parameter id 'DTB' FIELD VAR1.
    call transaction 'SE11' and skip first screen.
    TOP-OF-PAGE.
    WRITE :/45 'TABLE DETAILS RELATED TO THE TRANSACTION CODE' COLOR 7 .
    WRITE :/2 'DATE : ' COLOR 1, SY-DATUM COLOR 1 INTENSIFIED OFF NO-GAP.
    WRITE :/2 'TRANSACTION CODE : ' COLOR 1, Tcode COLOR 1 INTENSIFIED OFF NO-GAP.
    WRITE :/2 'TCODE DESCRIPTION : ' COLOR 1, desc COLOR 1 INTENSIFIED OFF NO-GAP.
    WRITE :/2 'PROGRAM NAME : ' COLOR 1, PROGRAM COLOR 1 INTENSIFIED OFF NO-GAP.
    SKIP 1.
    WRITE :/1(140) SY-ULINE.
    WRITE :/4 'TABLE NAME' COLOR 5 INTENSIFIED OFF NO-GAP,35 'TABLE TYPE' COLOR 5 INTENSIFIED OFF NO-GAP,
    55 'DESCRIPTION' COLOR 5 INTENSIFIED OFF NO-GAP.
    WRITE :/1(140) SY-ULINE.
    *& Form categorize
    text
    --> p1 text
    <-- p2 text
    FORM categorize .
    SELECT dd02ltabname dd02ltabCLASS DD02T~DDTEXT
    FROM dd02l INNER JOIN DD02T ON dd02ltabname = dd02Ttabname
    INTO TABLE I_FINAL
    FOR ALL ENTRIES IN itab
    WHERE DD02L~TABNAME = ITAB-NAME AND TABCLASS IN TYPE AND DDLANGUAGE = 'E'.
    if sy-subrc <> 0.
    skip.
    skip.
    skip.
    skip.
    skip.
    WRITE :/40 'No Data Found' color 6 INTENSIFIED OFF.
    endif.

  • HT4061 Sir i have lost my apple iphone and i do not remember IMEI number of the iphone and the sticker affiexed on the box is also not present (lost) but i have the bar code 602-7484-A printed on the box and police is asking for the IMEI number so please

    Sir i have lost my apple iphone and i do not remember IMEI number of the iphone and the sticker affiexed on the box is also not present (lost) but i have the bar code 602-7484-A printed on the box and police is asking for the IMEI number so please help

    The IMEI number is stored in iTunes:
    iOS: How to find the serial number, IMEI, MEID, CDN, and ICCID number
    I can't imagine that any police agency in the world would request this information.

  • How do i save a calender i have created with the photo and the dates saved on separate pages?

    how do i save a calender i have created in photoshop with the photo and the dates saved as two separate pages?  when i save as pdf or jpeg they are authomatically saving 1 pg with the photo and dates on one page.  This is causing problems when i print.

    Hi there, in case your printer cannot print very large, you can also crop down two versions and print them as separate documents.
    1) Create a guide where you would like to split the pages by clicking on the ruler (hit command R if they are not showing) and dragging to the desired area.
    Creating the guide will make it so you can be precise in the way you split up your page, and so that no part of the image will be repeated or lost.
    2) Select the Crop Tool and fit the crop area to the top half of your calendar, using the guide you've just made to snap to the right spot. Hit return to finalize the crop.
    3) Go to File > Save As. Name the file something like calendar_top and select the desired file format. Hit "Save."
    4) Once you get back to your calendar file, Go to the History panel and select "Drag Guide." This will take you back to the step before you cropped the image.
    5) Repeat the steps as before for the bottom half of the calendar, once again using the guide to help you make your crop area.
    So then you would just print each of the two pages individually. The images will not be contained within one document, but if you have Acrobat you could combine the files.
    I hope this helps!

  • I got an iPod Nano 3rd Generation and it has scratches on the screen, and the warranty is already expired. Can it be repaired and how much is it going 2 be.?

    I got an iPod Nano 3rd Generation and it has scratches on the screen, and the warranty is already expired. Can it be repaired and how much is it going 2 be.?

    Hello HernanOtt,
    Depends on where you have it serviced.  Here are Apple's repair quotes.
    http://www.apple.com/support/ipod/service/prices/
    You would probably save a lot of money by having a 3rd party repair company do the job for you instead.  Just do a simple Google search for iPod repair and you'll get a plethora of results.
    B-rock

  • Hi!I have an image which is a drawing of black lines and i need to put it over a picture without loosing definition in both of them,like the drawing and the picture are one.How can i do that?can someone help me please?I do work with CS6.Thanks!

    Photoshop General Discussion

    Why has nobody suggested the "Blend If" solution yet?
    - double-click on the layer thumbnail of the dragon line art
    - Hold down <Alt> and drag the left half of the "This Layer" slider to the left, and the right slider as well, but not as much for a nicer blending.
    Done. The only trouble is that you cannot add (for example) a color overlay effect to recolour the lines directly because this layer is not considered truly transparent by Photoshop (in Photoline this is not an issue luckily). In Photoshop's case you will have to merge it to a new layer, and only then does Photoshop treat the transparent pixels as "real" transparent ones. Some tips to do that can be found here: Create A Composite Layer | Planet Photoshop
    Alternatively, convert the layer to a smart object, and you can apply layer effects and the like without issues. I would choose the latter option, since it is non-destructive.
    This method, however, does not take the pre-multiplied edge pixels into account (which are multiplied with white), and thus you lose those pixels. This may be an undesired side effect, especially for more delicate art work. A better approach is to use an "unmultiply" effect.
    In Photoline a non-destructive adjustment layer will allow us to do exactly this with any background colour, and with additional controls as well. Unfortunately, such a filter is unavailable in Photoshop. Luckily enough an action for Photoshop is available: http://www.ayatoweb.com/download/down04.html
    - download the action (zip file) and load up the actions in Photoshop (I have no idea if this action still works in CC and above - I own a license of CS6 only).
    - since this will unmultiply BLACK, you must first invert the artwork with <CTRL> <i>.
    - run the action "unmultiply English".
    - The black background is removed, and you now invert the artwork back to its original black.
    Done! Notice how all of the original edge pixels remained unaffected. Those are now truly semi-transparent, and blend nicely with the background layer(s). A bit of a shame this is a destructive workflow, but the result is great.

  • How do I stop the skipping and the hopping?

    In reading an article it invariably shakes and trembles and I momentarily lose sight of the spot where I am reading. If any one has experienced this problem and has fixed it, I would be grateful if you will please tell me how? I have an iMac 11.3 with OS X6.7.  Thanks.

    The problem is "Degaussian" ie in layman's terms  built-up 'magnetism'. Ordinarily it does not affect flat screens. So why the shaking and shimmering? A cable tethering the computer and the printer inadvertently crossed over the modem. By moving it to run under the desk the problem was resolved.

  • Error The PC and the printer are connected to different networks

    Hi,
    I'm trying to set up my C4580 on my laptop, but I'm getting  the following error after the diagnostic test:
    The PC and the printer are connected to different networks(237DB2A87D and 66616B65). They must be connected to the same network. This can happen when you use the manufacturer's default network name (SSID) and another nearby network is using the same name. 
    My setup is a Linksys router WRT546,  my laptop is conntected wireless to the router.  I have two other desktop computers that are directly connected to the router.  Both the desktops are able to connect wireless to the printer.  My router SSID name is 'Blair Office' with WPA security.
    I get a internet connect fine with the laptop, but can't get the new printer to setup.
    I saw another post that talked about 'Print the C45** Network Configuration Page', but not sure how to do this
    Thanks
    Diane

    This reply may be late for this user, but it might be helpful for any current users.
    I managed to change the modem's IP address to match that of the printer. In my case the printer worked fine wirelessly until I moved to a new place and installed a new modem. Here is what I did to solve the problem:
    1. At the printer, click on the wireless button, wireless settings, print network configuration page. This will print a page with the printer's IP address (in my case: 192.168.0.13)
    2. I accessed my modem via the internet browser, typing 192.168.1.1 (this is one of the default addresses (192.168.0.1 is also common). Default user and password is admin (usually). There I changed the modem's IP address to 192.168.0.1 and the range to start at 192.168.0.13 (my printer's IP address).
    3. I saved the settings (the modem will reboot and you will be offline, it may take some 20 seconds before the modem is visible again).
    4. Reconnect to the modem and check if internet is still working. Then try to install the printer again.
    This worked for me after I read several other postings.
    Good luck!

  • How can I distinguish between the first and the rest in Smartforms??

    I have made an Invoice in Smartform. I have to take three copies of that. In the first copy it will be printed "ORGINAL INVOICE" and in the next copies it will print "Duplicate copy".  How can I distinguish between the first and the rest in Smartforms??
    Regards,
    Subhasish

    >
    Subhasish Ganguly wrote:
    > I have made an Invoice in Smartform. I have to take three copies of that. In the first copy it will be printed "ORGINAL INVOICE" and in the next copies it will print "Duplicate copy".  How can I distinguish between the first and the rest in Smartforms??
    Hello Vamshi,
    As per the OP's requirement he has to print 3 copies of the invoice. Which according to my understanding should be printed at the same time ? May be i am wrong in interpreting this.
    You must be knowing you can control the print params of the SmartForms in CONTROL_PARAMETERS where you set the NO_DIALOG & in the OUTPUT_OPTIONS pass the number of copies.
    I think the solution you have proposed the "Original Copy" will be printed only once. (Correct me if i am wrong)
    Every time the user prints the invoice again he will be getting a "Duplicate Copy". If this is what the OP wants the logic is perfect
    Cheers,
    SUhas

  • Please help : How to print a matrix from the console...

    Hi..
    Please help:
    How to print a matrix on the console , but i want to take all the input from the console.. like...
    if the matrix is of size...
    mxn
    where
    m : row
    n : column
    and the all the elements of the matrix from the console it self... .
    Please help...

    Thanks...
    I am able to print the elements of the array but i am not able to assign those values to the array ....
    How to do that...
    I just did a little change in my code...
    import java.util.Scanner;
    public class CreatingAMatrix {
        public static void main(String[] args) {
         // TODO Auto-generated method stub
         System.out.print("Enter the number of rows: ");
         Scanner scanner1 = new Scanner(System.in);
         int m = scanner1.nextInt();
         System.out.print("Enter the number of coulmns:");
         Scanner scanner2 = new Scanner(System.in);
         int n = scanner2.nextInt();
         System.out.println("The size of the matrix is : " +m+" x "+n );
         int[][] a = new int[100][100];
         for(int i=0;i<=m;i++)
             for(int j =0; j <= n; j++)
              Scanner scanner3 = new Scanner(System.in);
              int o = scanner3.nextInt();
             System.out.println();
         for(int i=0;i<=m;i++)
             for(int j =0; j <= n; j++)
              System.out.print(a[i][j] + "\t");
             System.out.println();
    }I am getting an output as this
    output:
    Enter the number of rows: 2
    Enter the number of coulmns:1
    The size of the matrix is : 2 x 1
    1
    2
    1
    2
    3
    5
    0     0     
    0     0     
    0     0     
    how should i assig those input values to my array..
    Please help

Maybe you are looking for