Possible to print Int.Tab data in a window other than MAIN window in Script

Hi,
  Can we print a internal table data in a window which is a VARIABLE Window in SAP Script? my requirement is not to print in MAIN Window.
Thanks in Advance,
Jakeer.

Hi,
You can do that.But main window is must.
Create a text element and please check it maynot overflow if so data will be truncated.
For not printing main window :
Do one thing set the main window margint to the botom of the form.
Then create a text element in main element
NEW             
NEW-PAGE        
NEXT            
NEW-PAGE = 'NEXT'

Similar Messages

  • Is it possible to install an iOS upgrade from a computer other than your sync computer?

    Hello,
    Is it possible to install an iOS upgrade from a computer other than your sync computer? I usually sync to my tower at home, but only have access to my laptop now. My laptop is authorized to the same iTunes account as the tower. If I do a software update for the iPhone on the laptop's copy of iTunes, will it wipe away my music that isn't from the iTunes store, etc?
    Thanks,
    Will

    Yes, but all your data will be replaced by whatever is on this other computer. So if you don't want that to happen wait and install on the computer with which the device is normally synced.

  • What are possible causes for frequent loss of wireless mouse connectivity other than the batteries ?

    What are possible causes for frequent loss of wireless mouse connectivity other than the batteries ?

    Wi-Fi or another interference source. Try turning off the Wi-Fi and see if the problems continue. If that solves the problem, see if you can set your Wi-Fi to run in the 5 GHz range.
    Keyboard/Mouse – Troubleshooting Wireless
    WIFI AND BLUETOOTH FINALLY SOLVED, NO REALLY - YOSEMITE 10.10
    Bluetooth Wireless Problems
    Bluetooth devices become unresponsive

  • I previously used Indesign CS4. I now have recently purchased Indesign CC. I have a Mac Yosemite 10.10.3. When I print, I cannot select my paper stock, other than what is in the print dialogue box, i.e. art paper. In Indesign CS4, I could choose fine art

    previously used Indesign CS4. I now have recently purchased Indesign CC. I have a Mac Yosemite 10.10.3. When I print, I cannot select my paper stock, other than what is in the print dialogue box, i.e. art paper. In Indesign CS4, I could choose fine art paper etc. Where can I find this option in this new version?

    With Snow Leopard, the Printing of PDFs has changed. Try using the highlighted option

  • Is it possible to print web form data once it is added to the CRM cases.

    I have a client who needs to have volunteers fill out a one page activity report. I can create the a Web form to acquire the data. The data will then be stored in the CRM as a case. What I am having trouble with, is how to easily track the cases and,  more importantly, print them out  individually in a readable format. Is this possible?

    Hi,
    The only option is to create a customer/case report which will output the data in a spreadsheet.  Then you can pull the individual records accordingly and print. 
    I do not see any other workaround to this at this stage.
    Kind regards,
    -Sidney

  • How can I go to a specific date in the future other than by clicking one month at a time?

    Would like to go to a specific date several years from now and see what else I have scheduled (if any) or to see if that day is a holiday or even just to see what day of the week that day falls on. Can I do this in some way other than clicking on the NEXT MONTH button a gazillion times?
    I am using Windows 7 (64-bit) on a Dell THX computer.
    Thanks,
    DannyBoy

    tried clicking on the year in the calendar?

  • Printing 1 Label in Row and Column Other Than Row 1, Column 1

    I want to print 1 label and want to print it on Avery label stock in a row and column other than row 1, column 1. I'm using Avery Labels 8163. I can select the row and column I want to print on in Word but can't figure out how to do it in *Address Book*. Anyone know how to do this?

    You can't do that in Addrress Book. But you can use pearLabelizer to do that. Be sure you download and install the appropriate Label Definition file and name it as such so you can select it from the pop-up list in the program's Preferences window.

  • Is it possible to have profile manager on a different port other than 443

    Hi to have profilemanager working securely and correctly it should be run on 443 the default. But surely it could be run on another port if specified. If Apache was configured differently other than port 80/443? As i would rather host another site on 443. Which ideally i dont want the port number in the URL as this would be the main server address.
    If anyone has any info on how to do this that would be great..
    Thanks

    Hi Gilla-
    No, the isolation hardware on the 623x DIO is completely unidirectional so it is not possible to adjust the line directions beyond those specified in the user manual for those devices.
    Message Edited by Tom W [DE] on 04-29-2008 08:57 AM
    Tom W
    National Instruments

  • Is it possible to subscribe to dates in Address Book other than birthdays?

    iCal can subscribe to birthdays that have been entered into Address Book.  Is it possible to have iCal pick up other dates that have been included in Address Book entries (anniversary, etc)?
    Steve

    Hi Steve,
    I wrote an application that would enable you do this. Take a look at Dates to iCal. It is £4 shareware with a 3 week demo.
    As well as automatically syncing birthday dates from Address Book, Dates to iCal can sync anniversary and custom dates. It can set up to five alarms for each date in iCal and can also set different alarms for birthdays and anniversaries. It allows the option of only syncing from one Address Book group. It application also allows for the titles of the events sent to iCal to be modified.
    Best wishes
    John M
    As I sell software on my site and ask for donations, the Apple Support Communities Use Agreementrequires that I state that I may receive some form of compensation, financial or otherwise, from my recommendation or link.

  • Transferring primitive data types via UDP other than a String

    Hi ALL,
    I am new to Socket programming in UDP.
    I need to implement a FTP client-server application.
    Now the packet that I need to transfer using UDP as a DatagramPacket consists of multiple primitive data types, (3short types and 1 byte array of size 265.)
    How do I do that?
    All the samples and examples I managed to find on the Internet illustrated the problem of transferring a String type converted to getBytes and the byteArray is transferred.
    However, in my case i need to pass this structure..(3fields) to the other side. If I convert the 4 fields to a single concatenated string there's this problem of finding out where each of the four fields begin and where do they end.
    Please suggest and help...
    thanks..
    : )

    Just create a class that represents your structure and convert-it to a byte array that can be sended over a DatagramSocket.
    Try this sample code :
    import java.io.*;
    import java.net.*;
    public class DP
        /** Creates a new instance of DP */
        public DP ()
         * @param args the command line arguments
        public static void main (String[] args)
            try
                System.out.println ("Starting server ...");
                DatagramServerThread server = new DatagramServerThread ("Datagram server");
                server.start ();
                System.out.println ("Creating your object ...");
                ByteArrayOutputStream baos = new ByteArrayOutputStream (); // Creating byte array output stream ..
                ObjectOutputStream oos = new ObjectOutputStream (baos);// Creating a object output stream that writes to byte array output stream..
                YourStructure newObject = new YourStructure (); // creating your data structure..
                newObject.setShortField1 ((short)12);// setting values ...
                newObject.setShortField2 ((short)45);
                newObject.setShortField3 ((short)4);
                newObject.setArray (new byte [256]);
                oos.writeObject (newObject); // write your structure to object output stream...
                byte data_to_be_sent[] = baos.toByteArray (); // retrieving equivalent byte array...
                // send data...
                DatagramSocket s = new DatagramSocket ();
                System.out.println ("Sending ...");
                DatagramPacket packet = new DatagramPacket (data_to_be_sent, data_to_be_sent.length);
                packet.setAddress (InetAddress.getByName ("localhost"));
                packet.setPort (8888);
                s.send (packet);
            catch (Exception e)
                e.printStackTrace ();
    class YourStructure implements Serializable
         * Holds value of property shortField1.
        private short shortField1;
         * Holds value of property shortField2.
        private short shortField2;
         * Holds value of property shortField3.
        private short shortField3;
         * Holds value of property array.
        private byte[] array;
         * Getter for property shortField1.
         * @return Value of property shortField1.
        public short getShortField1 ()
            return this.shortField1;
         * Setter for property shortField1.
         * @param shortField1 New value of property shortField1.
        public void setShortField1 (short shortField1)
            this.shortField1 = shortField1;
         * Getter for property shortField2.
         * @return Value of property shortField2.
        public short getShortField2 ()
            return this.shortField2;
         * Setter for property shortField2.
         * @param shortField2 New value of property shortField2.
        public void setShortField2 (short shortField2)
            this.shortField2 = shortField2;
         * Getter for property shortField3.
         * @return Value of property shortField3.
        public short getShortField3 ()
            return this.shortField3;
         * Setter for property shortField3.
         * @param shortField3 New value of property shortField3.
        public void setShortField3 (short shortField3)
            this.shortField3 = shortField3;
         * Getter for property array.
         * @return Value of property array.
        public byte[] getArray ()
            return this.array;
         * Setter for property array.
         * @param array New value of property array.
        public void setArray (byte[] array)
            this.array = array;
        public String toString ()
            StringBuffer buffer = new StringBuffer ();
            buffer.append ("Short field 1 is ");
            buffer.append(this.getShortField1 ());
            buffer.append ("\nShort field 2 is ");
            buffer.append (this.getShortField2 ());
            buffer.append ("\nShort field 3 is ");
            buffer.append (this.getShortField3 ());
            buffer.append ("\nYour array field is ");
            for (int index = 0; index < this.getArray ().length; index++)
                buffer.append ("Index [" + index + "] = " + this.getArray () [index] + "\n");
            return buffer.toString ();
    class DatagramServerThread extends Thread
        protected DatagramSocket socket = null;
        public DatagramServerThread (String name) throws IOException
            super (name);
            socket = new DatagramSocket (8888);
        public void run ()
            try
                byte buffer [] = new byte [socket.getReceiveBufferSize ()];
                DatagramPacket packet = new DatagramPacket(buffer, buffer.length);
                System.out.println ("Server is ready. Waiting for packet ...");
                socket.receive(packet); // waiting for packet ...
                System.out.println ("Packet received! : ");
                byte received_data[] = packet.getData ();
                ByteArrayInputStream bais = new ByteArrayInputStream (received_data); // Creating byte array input stream ..
                ObjectInputStream ois = new ObjectInputStream (bais); // Creting Object input stream
                Object readed_object = ois.readObject ();
                YourStructure your_original_object = (YourStructure)readed_object;
                System.out.println (your_original_object.toString ());
                System.out.println ("Exiting server thread. Bye");
                socket.close ();
            catch (Exception e)
                System.err.println ("Server error");
                e.printStackTrace ();
    }

  • Printing payment advice note in local language other than english

    Dear Expert Users
    We are trying to print payment advice notes in different local
    languages.
    We have maintained the vendor language as the local language(ex:
    Japanese)and tried printing the payment advice note and its appearing
    in English.
    Please note that we have maintained the transalation of the forms in
    local language.
    Any assistance in this regard will be highly appreciated .
    Pravin

    Hi,what exactly do you want to see in local language?Vendor's master data or Print form?

  • Can I print my ical calendar in a orientation other than landscape?

    I like to print my monthly calendar and slip it into a monthly pocket divider in my binder that I normally take to meetings etc. Unfortunatley the ical calendar only seems to print in a landsape view that does not work well in binders. This has always been very frustrating  and because of it I have always used other calendars. I really would like to use my ical. Does anyone have a suggestion? Thanks in advance.

    iCal doesn't offer you this option. You might like to consider BusyCal, which does:
    It's like 'iCal Pro', with a lot of useful extra facilities: it uses the same database as iCal so for 'On My Mac' calendars it works immediately. It will also sync with MobileMe in the same way as iCal, though you will need to set it up separately. It's slightly cheaper in the Mac App Store than from their website.

  • How to print a monochromatic image in a colour other than black?

    I have an image in photoshop that  is currently black and white, but I would like to print in a monochromatic green, as in just #00ff00 colour; so that it prints in green and white. How do I edit the image so that it prints like this?

    Use your B&W image, inverted, in the mask channel of a Solid Color Layer with the specific colour that you require. Underneath that put a solid white background layer.
    Use linear blending (Ps default is gamma 2.2). In Edit > Color Settings, set RGB blending to 1.00.

  • Best practice for encrypting data in CRM 2013 (other than the fields it already encrypts)

    I know CRM 2013 can encrypt some values by default, but if I want to store data in custom fields then encrypt that, what's the best practice?  I'm working on a project to do this through a javascript action that when triggered from a form would reference
    a web service to decrypt values and a plugin to encrypt on Update/Create, but I hoped there might be a simpler or more suggested way to do this.
    Thanks.

    At what level are you encrypting?  CRM 2013 supports encrypted databases if you're worried about the data at rest.
    In transit, you should be using SSL to encrypt the entire process, not just individual data.
    you can use field-level security to not display certain fields to end users of a certain type if you're worried about that.  It's even more secure than anything you could do with JS, as the data is never passed over the wire.
    Is there something those don't solve?
    The postings on this site are solely my own and do not represent or constitute Hitachi Solutions' positions, views, strategies or opinions.

  • Storing analog output data in a datatype other than single-precision

    I'm using three PCI-6713 AO cards in a single computer to output 24 channels of data using Labview 6.1. The input terminals of all the analog output VI's are of type single precision (32-bit). The output cards only have 12-bit DAC's, so there is a large amount of information stored that is never used by the cards. Is there a way in Labview to store AO data in another, smaller datatype - such as a 16-bit integer. This would greatly reduce the memory requirements for my application.

    I just figured out the answer to my own question. There isn't an option for binary in the AO Write vi, but if you go down to the AO Buffer Write vi (which is called by AO Write), you can select binary array.
    Thanks for all your help.
    Josh

Maybe you are looking for

  • Starnge iGrid problem in xMII 11.5

    Hi All, I am getting one strange issue while displaying Data in iGrid. I have a query which has few columns. One of the columns has alias and Alias ! character in as one of the characters ( eg !num). When i execute such query in Query template ! gets

  • Problem with Save data with report

    Post Author: ramprosoft CA Forum: General Hi, I am new to CR and using Crystal Reports XI with SQL Server 2000. I'm not able to remove the saved data in a report. I have played around different options, but unfortunately I'm not able to remove the da

  • Connecting A100-306 & Desktop via Wireless Modem/Router: access is denied

    I am attempting to file/printer share between my A100-306 laptop and desktop units. I have used the Windows Wizard to create internet connection/LAN. This has been successful with the internet connection (via Belkin 54g Modem/Wireless Router) but my

  • What displays does the mac mini work with?

    and what kind of plug do they work with I'm getting one off of ebay a 8GB model from 07

  • 18 Month Contract near end

    It does not look like BT has a retention number like Talktalk were you can haggle and get your Telephone & Broadband cost's lowered when coming out of contract. as you all know the Goverment want's us to change are provider to save money on electric