Cant seem to get checkbox with hidden columns to work...

I tried to implement the guide to making checkboxes and make columns hidden tutorial on a report but I get the checkbox but no table. Is it because I imported from datalink and didnt create the data from scratch or there is something i needed to do?
I changed this statement from example"
STATIC2:Category;CAT,Description;DESCR,
Availability;AVAIL
to STATIC2:Category;CATEGORY,Description;DESCRCRIPTION,
Availability;AVAILABILTY
dont think there should be any problems...

What exactly happened when you took the applicable steps in the support article?

Similar Messages

  • TS3276 i cant seem to get online with my mail it says "offline"

    I need help getting my email to accept my password

    What exactly happened when you took the applicable steps in the support article?

  • How do i reset my mac completely? I have parental controls and cant seem to get to time machine cause i bought the computer with parental controls on it and they did not have the password. How do i completely reset my macbook pro?

    how do i reset my mac completely? I have parental controls and cant seem to get to time machine cause i bought the computer with parental controls on it and they did not have the password. How do i completely reset my macbook pro?

    If you have a rescue email address (which is not the same thing as an alternate email address) on your account then the steps on this page will give you a reset link on your account : http://support.apple.com/kb/HT6170
    If you don't have a rescue email address (you won't be able to add one until you can answer your questions) then you will need to contact Support in your country to get the questions reset.
    Contacting Apple about account security : http://support.apple.com/kb/HT5699
    When they've been reset (and if you don't already have a rescue email address) you can then use the steps on this page to add a rescue email address for potential future use : http://support.apple.com/kb/HT5620
    Or, if it's available in your country, you could change to 2-step verification : http://support.apple.com/kb/HT5570

  • I am trying to create a signature with echosign. I cant seem to get to the right screen. Any ideas?

    I want to create my signature with Echosign, but I cant seem to get to the right screen. How can I either draw my signature or type it in? thanks.

    George, I respectfully disagree that it related to the document. All documents I receive have the same problem. Again, all I want is to have the options back under the “Place Signature” button to be able to type my signature or draw it. The only thing the button is currently letting me do is  in the screen print below.
    cid:[email protected]

  • HT1552 Im setting up a server with the port 25565 and im doing it with Port Map but the problwem is i cant seem to get it to work with my router. it goes through my macmini to the router and the expansion hardrive

    Im setting up a server with the port 25565 and im doing it with Port Map but the problwem is i cant seem to get it to work with my router. it goes through my macmini to the router and the expansion hardrive

    Im setting up a server with the port 25565 and im doing it with Port Map but the problwem is i cant seem to get it to work with my router. it goes through my macmini to the router and the expansion hardrive

  • Hi everyone for  about 2 weeks now i cant seem to get any search results with the mobile myspace app on ipod touch 4g i have tried clearing cookies and cache ,resetting ipod uninstalling and reinstalling but nothing seems to work any ideas?

    hi everyone for  about 2 weeks now i cant seem to get any search results with the mobile myspace app on ipod touch 4g i have tried clearing cookies and cache ,resetting ipod uninstalling and reinstalling but nothing seems to work any ideas?

    - Have you tried going to the developer's support website/contacting the developer?
    - Try a reset. It surs many ills and nothng is lost
    Reset iPod touch: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.

  • Excel Upload with Hidden Column

    Hi Gurus-
    Can you upload Excel file with hidden column and get the function to read values in hidden column? If yes, could you please guide me how?
    I am using ALSM_EXCEL_TO_INTERNAL_TABLE
    Any help will be highly appreciated.
    Thanks in advance!

    Hi,
    Have a look at program RSDEMO01 (available in the controls examples of the workbench). It demonstrates an OLE connection to Excel.
    To know which excel objects, methods and properties to use it is a good idea to use the excel macro recorder - just do what you want your program to do and then translate the resulting VB code to ABAP OLE.
    For the import of the clipboard data you can use CL_GUI_FRONTEND_SERVICES=>CLIPBOARD_IMPORT. In the result table, iirc, there  is one line for each imported line and within the line the cell values are separated by tab. So there is some work left - it might be a good idea t import the data column by column.
    It has been some time when I did this for a former client of me - so unfortunately I do not have the code any more.
    Regards, Gerd Rother

  • I've connected my device through a wifi network and i accidentally signed out my apple ID for imessage then when I signed back in i cant seem to get connected though my wifi connection is working just fine. can anybody help me?

    I've connected my device through a wifi network and i accidentally signed out my apple ID for imessage then when I signed back in i cant seem to get connected though my wifi connection is working just fine. can anybody help me?

    I am having the same problem with my ipod nano
    I have been trying since Xmas

  • I purchased a song,cant seem to get it downloaded to my i-pod

    I have an older i-pod,purchased a song,cant seem to get it downloaded to i-pod

    How do you load songs to your iPod, manually (by dragging them to the iPod in iTunes), or using automatic syncing?
    NOTE:  In the latest version of iTunes, the sidebar may be hidden,  To show the sidebar, from the menu bar, under View, select Show Sidebar.

  • Cant seem to get memoryimagesource to work right

    Ok ive been messing with memory image source for a while here.
    at least 6 hour's and i cant seem to get it to work in fullscreen.
    i have tryed it a few different ways and im getting errors no matter what i do.
    i figured id search the web for a example of memoryimagesorce in fullscreen but i can't find any!!!
    anyways im haveing problems with drawimage().
    i have the blue bar poping back up in this one even though i set undecorated to true.
    when i try to use bufferstrategy it was even worse it locked up my comp 2 time's
    here my horribly buggy code so far.
    anyone have a example of the right way to use memory image source in fullscreen.
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.image.*;
    public class FStest6 extends Frame{
      // VARIABLES OR USED CLASSES
         DisplayMode D_Mode;
         Frame frame;
         int w,h;
         // MAIN
      public static void main(String[] args) {
          try {
       FStest6 test = new FStest6();// call constructor to begin 
       } catch (Exception e) {e.printStackTrace();}
       System.exit(0);
      // CONSTRUCTOR
      public FStest6(){
          GraphicsEnvironment env = GraphicsEnvironment.getLocalGraphicsEnvironment();
       GraphicsDevice device = env.getDefaultScreenDevice();
       if(device.isFullScreenSupported() == false){System.out.println(" Warning full screen is not supported "); }
       else{device.setFullScreenWindow(this);}
       GraphicsConfiguration gc = device.getDefaultConfiguration();
       frame = new Frame(gc);
       frame.setUndecorated(true);
       frame.setIgnoreRepaint(true);
       frame.setResizable(false);
       D_Mode = device.getDisplayMode();
       if (device.isDisplayChangeSupported() == false) {System.out.println(" warning display mode unsupported ");
       }else{
       D_Mode = new DisplayMode(640, 480, 32, 0);}
       show();
       w = getSize().width;
       h = getSize().height;
      try{
       int [] pixels = new int[w * h];
       DirectColorModel colorModel = new DirectColorModel(32, 0x00FF0000, 0x0000FF00, 0x000000FF,0);
       MemoryImageSource source = new MemoryImageSource(w, h, colorModel, pixels, 0, w);
       source.setAnimated(true);
       source.setFullBufferUpdates(true);
       Image img = createImage(source);
       boolean going = true;long timer =0;
       while(going){
       if(timer > 9999999){going = false;System.out.println(" exiting loop ");}
       render(pixels,img,source);
      }catch (Exception e){e.printStackTrace();}
      frame.dispose();
    public void render(int [] pixels,Image img,MemoryImageSource source){
       //Graphics g = img.getGraphics();
       int n =0;int col = 0;
       long t = System.currentTimeMillis();
       for (int x=0;x<640;x++){
        for (int y=0;y<480;y++){
         n = y*640 + x;
         if(col < 254){col ++;}else{col = 0;}
         pixels[n] = col;
       source.newPixels();
       //g.drawImage(img, 0, 0, null);
       System.out.println((System.currentTimeMillis()-t)/100f);
    }//eof class

    Now my code is painting exactly one time, the loop is going but nothing's happening. It should be displaying the different color lines moveing and changeing color.
    Also ive come to a problem ive had before in the tutorial,
    about not useing paint and update.
    however thier should logically be a method like drawimage to use
    or i should be able to use it. but its not doing anything.
    the application window is drawn directly to the screen (active rendering).
    This simplifies painting quite a bit, since you don't ever need to worry about paint events.
    In fact, paint events delivered by the operating system may even be delivered
    at inappropriate or unpredictable times when in full-screen exclusive mode.
    Instead of relying on the paint method in full-screen exclusive mode, drawing code is usually
    more appropriately done in a rendering loop:
    public void myRenderingLoop() {
        while (!done) {
             Graphics myGraphics = getPaintGraphics();
             // Draw as appropriate using myGraphics
             myGraphics.dispose();
    Such a rendering loop can done from any thread,
    either its own helper thread or as part of the main application thread.
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.image.*;
    public class FStest11 extends Frame implements Runnable, KeyListener {
    Image img;
    int w,h;
    int cx,cy;
    boolean done;
    public FStest11() {
        GraphicsDevice device = GraphicsEnvironment.getLocalGraphicsEnvironment().getDefaultScreenDevice();
        setUndecorated(true);// knock out bars and stuff
        setIgnoreRepaint(true);// ignore automatic repaint.
        if (device.isFullScreenSupported()) {
        device.setFullScreenWindow(this);}
        if (device.isDisplayChangeSupported()) {
        device.setDisplayMode(new DisplayMode(640,480,16,0));}
        show();//show fullscreen.
        w = getSize().width;
        h = getSize().height;
        done = false;
        addKeyListener(this);
        //new Thread(this).start();
        run();
        public void run(){
        int [] pixels = new int[w * h];// create the array that we will use for the pixels that i alter myself
        DirectColorModel colorModel = new DirectColorModel(32, 0x00FF0000, 0x0000FF00, 0x000000FF,0);// create are ARGB 32bit pixel colormodel
        MemoryImageSource producerobj = new MemoryImageSource(w, h, colorModel, pixels, 0, w);// create a new producer
        producerobj.setAnimated(true);//Changes this memory image into a multi-frame animation .
        img = createImage(producerobj);//create's image from specifyed producerobject thus img should be a producer
        // i could abstract this class and make the below into a abstracted method
        while (!done) {
        int n =0,rcol =0,gcol =50,bcol =101;
        //Graphics gfx = img.getGraphics();// ackk!!!! cant be used in this context
        for (int x=0;x<640;x++){
         for (int y=0;y<480;y++){
          n = y*640 + x;
          bcol ++;rcol ++;
          if(bcol >253){bcol =0;gcol ++;}
          if(gcol > 253){gcol = 0;}
          if(rcol > 253){rcol = 0;}
          pixels[n] = ( ((rcol &0xff) <<16)|((gcol &0xff) <<8)|(bcol &0xff) );  // draw some new pixels
        // this would be the render code but i cant get it to work like the tutorial says.
        Graphics g = this.getGraphics();
        producerobj.newPixels();
        g.drawImage(img, 0, 0, null);
        g.dispose();
        System.out.println(" in loop " );
    public void keyReleased(KeyEvent e) {}
    public void keyTyped(KeyEvent e) {}
    public void keyPressed(KeyEvent e) {if (!done){ done = true;System.out.println(" keypressed " ); } // program exits on any key press
    public static void main(String[] args) {
       System.out.println(" app " );
       new FStest11();
       System.out.println(" exit " );
       System.exit(0);
    }

  • Cant seem to get a seagate external drive to show up in finder when on the

    cant seem to get a seagate external drive to show up in finder when on the airport extreme base station. ver 7.5 using 10.6.2 any special setting to show it up in finder?

    I tested a FAT 32 drive and it will show up.
    Open your Hard Drive and look for your AirPort Extreme under the SHARED heading
    Click the AirPort Extreme icon and then click Connect As at the upper right of the window
    Your drive should appear
    If not, click anywhere on your open desktop so that the Finder menus appear at the top of the screen
    Click Finder, then click Preferences, then click the General tab
    Under the heading of "Show these items on the desktop", make sure there is a check mark next to "Connected Servers"

  • I recently updated my Ipod Touch to the ios 6 and now, i cant seem to use it with my itunes! A notification keeps coming up whenever i connect my ipod to itunes that a new version of itunes is required but it is the latest version alrdy. HELP!

    Hi all, I've recently updated my ipod touch to the ios 6 and now i cant seem to use it with my itunes
    whenever i connect my ipod to itunes, a notification saying that i need a newer version of itunes. However, when i check itunes for software updates, it seems i have the current version of itunes
    I am at a lost of what to do as i can no longer sync my ipod touch with my itunes.
    Help Pls!
    thanks

    You might tell us many more things so we don't have to guess and might be able to help.
    What computer do you have?
    What iTunes are you running now?
    What OS X system are you running are your computer now? Or is this a Windows machine?
    Let us know a little more info.

  • I can't seem to get the Elements 10 loader to work with Windows 8.1.  Is there a workaround?

    I can't seem to get the Elements 10 loader to work with Windows 8.1.  Is there a workaround?

    Never mind.  I figured it all out.  Thanks anyway.

  • Where do I find my Subscription ID or License for my Acrobat Pro cant seem to get passed trial pop up window

    where do I find my Subscription ID or License for my Acrobat Pro cant seem to get passed trial pop up window

    Which do you have - a subscription, or a permanent license? Did you buy from Adobe?

  • Just got a ipod 7th generation and having some difficulty copying tunes from 5 generation to new ipod; cant seem to sync old with new. any suggestions?

    just got a ipod 7th generation and having some difficulty copying tunes from 5 generation to new ipod; cant seem to sync old with new. any suggestions?

    Plug your iPod in and when it appears in iTunes, click on it from under Devices in the left hand pane.  This brings you to the Summary tab.  Locate and click on the Music tab.  What configurations do you have made from under this tab?  Is your iPod configured to sync those playlists?
    B-rock

Maybe you are looking for

  • Dreamweaver adding div height in tooltip?

    I dont normally use dreamweaver, but I must for this project, in dreamweaver for some bizarre reason the tooltip says height 50px (54px) and has added 4pxs to an image in a div. Anyone know why? It aligns in the browsers, IE 6, firefox, but why has d

  • Incoming Payment - Posting more than 999 line items through EDI

    Hi guys, I having following issues. 1. incoming 820 is not posting into customer a/c even I configured processing - REMC but creating payment advice 2. once i tried to process payment advice by using f-28 it is posting in to custmer a/c without payme

  • Is it possible to enter our own value in dropdown list box in Module Pool. How?

    Dear Experts, Being new to ABAP, I am trying my hands on Dropdownlist box on Module Pool. I want to pull data from Ztable(Custom Table) into Dropdown list box on Screen in Module pool and be able to edit it, delete it and enter new data through it, t

  • MM Account Determination Exits

    Greetings to all Experts - We're trying to fix an issue here with inter-company processing and want account assignment for cost of sales for inter-company orders to flow to a separate cost of sales account than trade sales.  The problem is that we do

  • Webservice with axis given a wsdl

    Hi all, I am a newbie to webservices, I have been given a wsdl from another company and I have been asked to develop a webservice with it. I would like to know the steps which I would be requiring to take inorder to build a webservice with axis. any