Planning form some columns set to hide but appear in SmartView

I have a Planning form with about 30 columns. Some of these columns are set to hide. The hidden columns still appear in SmartView. How can I get them to hide in SmartView?

Hi,
May I ask you why you have these columns in the form that you actually want to hide?
I was able to recreate your problem. In web the columns are hidden but in Smartview it comes up.
Regards,
Amol
Edited by: AmolDatt on Apr 29, 2009 11:20 AM

Similar Messages

  • Report Painter - missing column in GRR1/GRR2 but appears when executed

    Hi
    I have a report with 10 columns in addition to the first column that contains the descriptions of the rows, i.e. Sales Revenue etc etc.  The columns across are different projects. However, most strangely, the first of the projects does not appear when I am in GRR2 or GRR3 but when I execute the report, it is there!!!  When I look at the Overview in GRR2 and GRR3, it is listed so am at a loss to explain where it has gone.
    any suggestions?

    Hello,
    1) hide the first column
    2) unhide the column
    3) you´ll see the column which you were missing instead of the former first column
    4) change the column or whatever you want to do
    5) hide the column
    6) unhide the column
    Now the formular is as it was before. Still you can´t see the column but you know it´s there and you´ll see it in the report.
    I searched a lot and didn´t found any other solution.
    Reg.
    A.S.

  • E72 - Gmail synch set to hourly but appears to be ...

    Hi,
    Just bought a nokia E72 and started using Gmail on Nokia Messaging. I have set the synch schedule to hourly between the hours of 10am and 9pm but I am still getting my emails through in realtime and I appear to be constantly connected. Any ideas as to why this is occuring?
    Many thanks in advance.

    Hi lofive,
    Welcome to Apple Support Communities.
    It sounds like you’re running into an issue with devices not being able to connect to a Personal Hotspot created by your iPhone. Try the suggestions in the article linked below, it provides a lot of great troubleshooting tips that will resolve most issues like the one you’ve described.
    iOS: Troubleshooting Personal Hotspot
    I hope this helps.
    -Jason

  • Some events missing in ipod but appear in ical

    Some of my appointments/events in ical are not transfering to my ipod. The one I noticed last was from a subscribed calendar. There were two events on the calendar, one of which appeared on my ipod calendar and the other did not. I tried dumping the calendar files on the ipod, resubscribing to the calendar, reupdating the calendar to the ipod again, running the ipod updater program. Nothing helped though. I want to depend on my ipod for my calendar but unless I can get this fixed I cannot. Help!
    iMac G5   Mac OS X (10.4.4)  

    As a follow up I went to my local Apple Store and talked to a genius. He looked at it and at some forums and information and asked that I test to see if I put the iPod in disk support and deleted all the calendars from the iPod's calendars directory, then export each calendar manually from iCal to the iPod's calendar's directory. This actually worked - though it is a most inconvenient way of updating my iPod calendar. This seems to be a bug in either iCal or, more probably, iSync and will probably require an update from Apple.

  • I have a  ipad 64GB Wifi 3G and i can not get onto the internet, i have  set up wifi but it wont get on the net

    i have a  ipad 64GB Wifi 3G and i can not get onto the internet, i dont have a data plan yet & i have  set up wifi but it wont conect to the internet

    From your description above I conclude that the WiFi transmitter and receiver of your iPad appear to be working, but I abviously cannot tell how well they are working.
    Have you reset your iPad already?
    Press the Home and sleep/wake buttons simultaneously until only the white Apple logo appears on the screen - usually 10 to 15 seconds - ignore anything else.
    Genius Bar: http://www.apple.com/retail/geniusbar/

  • My spreadsheet is set for landscape but shows portrait in "print view".  How do I fix this?

    My spreadsheet in Numbers is set for landscape but appears as portrait in "print view".  What am I doing wrong?

    Where are you seeing "print view?" Using the little paper icon at the bottom left of your document turns print view on & off & that is also where you can set portrait or landscape. The default is landscape.

  • Can a member be READ-ONLY in a row of some Planning forms?

    Hi,
    Can a member be READ-ONLY in a row of some Planning forms?
    For example, I have a member called Salary as a row in a Form that is used to maintain employees. We allow Planners to update Salary in "Employee Detail" form.
    However, in another form , we roll up Salary to "ALL EMPLOYEES IN DEPT" member and we do not want users to update that as it is added up by a calc script.
    What is the best way to restrict users from updating in this 2nd form but allow update to Salary in first form.
    Thanks.

    Hi,
    You can use Asymmetric Rows and set the member you want to be read only, for more information on how to create them on forms have a read of http://download.oracle.com/docs/cd/E12825_01/epm.111/hp_admin/ch06s03s14.html
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • I am trying to hide a column in a gridview but need access to the data in these fields.

    I have a gridview with columns that I want to hide but still need to access this data at the row level. What is the best way to achieve this? (Using Visual Studio 2013)

    OK - I posted the question then posted the answer. I tried to find the answer and discovered the question was asked a
    lot, and many had 30 or more posts on the question. Since I spent way to much time looking at forums/discussions and figuring it out, I thought that I should repost the question then answer it. Hopefully if someone stumbles on it it might save
    them some time.
    I tried setting column widths, setting columns to visible=false before a bind (and after a bind), CCS, TemplateFields etc etc. All had problems either in the display, paging or retrieving the data in the gridview events (RowCommand & RowDataBound).
    I am not saying the others won't work but this is the way I got it to work. As with most coding issues once you have the answer it looks pretty simple.  
    First of all forget about trying to hide columns - Use DataKeyNames in the GridView. 
    Here is what I am trying to do - Based on the data in the "hidden columns" in the row, I want to manipulate how the Grid will appear. (Buttons will or will not appear)
    SQL:
    Select [FruitID], [StuffDesc], [ActionAFlag], [ActionBFlag] from [Friut] ORDER BY [StuffDesc]
    ASPX:
          <asp:gridview id="Gridview1"  AllowPaging="True" runat="server" 
                        autogeneratecolumns="False"
                        onrowdatabound="GridView1_RowDataBound"  
                        onrowcommand="GridView1_RowCommand"
                        Datakeynames="FruitID, ActionAFlag, ActionBFlag">
              <Columns>
                  <asp:BoundField DataField="StuffDesc"  Headertext="Made up Stuff" />
                  <asp:ButtonField ButtonType="Button" CommandName="FireA" Text="Action A" />
                  <asp:ButtonField ButtonType="Button" CommandName="FireB" Text="Action B" />
              </Columns>
          </asp:gridview>
    ASPX.VB
    RowDataBound fires before each row is rendered to the Gridview. The data in ActionAFlag and ActionBFlag will determine which buttons show. If the data in field ActionAFlag is 1 then "Action A" button shows; if field ActionBFlag
    is 1 then "Action B" shows. First it checks to see that you are dealing with a DataRow, (not Headers or Footers). Note variable "rowcounter" [I could not figure out how to get the row number from GridviewrowEventsArgs so I fudged it by
    using a global variable and setting it to 0. Each time the page is rendered the Rowcount is automatically set to 0]
        Protected Sub GridView1_RowDataBound(ByVal Sender As Object, ByVal e As GridViewRowEventArgs)
            If e.Row.RowType = DataControlRowType.DataRow Then
                Dim AShow As String = Gridview1.DataKeys(rowcounter).Values("ActionAFlag").ToString
                Dim BShow As String = Gridview1.DataKeys(rowcounter).Values("ActionBFlag").ToString
                If  AShow <> "1" Then
                    e.Row.Cells(1).Text = " "
                    ' -- Blank Action A Button ---
                End If
                If BShow <> "1" Then
                    e.Row.Cells(2).Text = " "
                    ' -- Blank Action B Button ---
                End If
                rowcounter = rowcounter + 1
            End If
    RowCommand fires on page changes or if a button on a row is clicked. I want to capture the FruitID and execute the appropriate button action. Here I can get the Row Index
        Protected Sub GridView1_RowCommand(ByVal sender As Object, ByVal e As GridViewCommandEventArgs)
            If e.CommandName = "FireA" Or e.CommandName = "FireB" Then
                Dim index As Integer = Convert.ToInt32(e.CommandArgument)
                Dim FruitID As String = Gridview1.DataKeys(index).Values("FruitID").ToString
                If e.CommandName = "FireA" Then
                    MsgBox(" In FireA / FruitID = " + FruitID)
                Else
                    MsgBox(" In FireB /FruitID = " + FruitID)
                End If
            End If
        End Sub

  • Planning form , column formula not adding correctly.

    Hi all,
    I have a small issue with a planning form. I have two columns
    Column1 - Decendants of Units
    Column2 - Formula column, sum of col1 (sum of units)
    Figures are entered as percentages. I have a validation rule for Column 2 such that if the sum isn't 1 (adding percentages so it's 1 and not 100) then cell colour should be red.
    Issue appears if I enter .1 for 10 units, I get an error and for some reason the value of column 2 is .9999999999999 instead of 1.
    If I enter .5 for two units, it's fine.
    If I enter .5 , .3, .1,.1 it's fine
    If I enter .3,.3,.3,.1, it's fine
    If I enter .1,.1,.1,.1,.1,.1,.1,.1,.1,.2 the result is 1.1 which is correct.
    Not sure why is this issue happening.
    Screnshot: http://i44.tinypic.com/2nk5mz8.png
    Any input would be helpful.
    Using 11.1.2.1, accessing Planning via workspace.
    Edited by: N13 on Jun 7, 2013 6:09 AM

    Hi
    I had logged something similar on here a little while back.
    Webform "Validation" column issue
    Something to do with 'floating point decimal errors'.....I realise this doesnt help much as the solution was the same, but it might give you a place to start if you wanted to embark on the tiresome odyssey of Googling.
    JB

  • How to hide some columns in FBCJ tcode

    hi experts,
    is it possible to hide some columns in FBCJ for some particular user ids.
    i want to display only these following columns for some particular user ids. I tried configuration button exists on right corner of table above scroll bar by changing administrator settings.
    But it is reflecting for all user ids.
    I want to reflect  changes for some particular user ids.
    1. business trnsaction
    2. amount
    3.Document status
    4. g/l account
    4. Receipt Recipient
    6. text
    7. vendor
    8. Reference
    9. company code
    10. cost center
    11. profit center
    12. additional text1
    13. additional text 2.
    I came to know by using screen variants we can achieve this.
    But i dont know how to proceed.
    Kindly provide steps to make changes.
    thanks & regards,
    Hari priya

    Hi,
    Check out this link.Probably this would be useful.
    http://www.madeitsimple.com/technology/sap-abap-transaction-variants/
    Thanks
    Papiya

  • I created a slide show in imovie for my daughters 21st with voice overs from friends and family which was all working fine but now the voice recordings are not playing at all.  Obviously some setting has changed but I can't find which one.

    I created a slide show in imovie for my daughters 21st with voice overs from friends and family which was all working fine but now the voice recordings are not playing at all.  Obviously some setting has changed but I can't find which one.

    I created a slide show in imovie for my daughters 21st with voice overs from friends and family which was all working fine but now the voice recordings are not playing at all.  Obviously some setting has changed but I can't find which one.

  • Field not displaying in ALV but going in column-set...

    Hello Gurus,
    I am facing a strange issue in ALV.  I am specifying the column position when I create the field list.
    But when I execute the ALV, that field goes out of ALV. I have to goto ALV layout setting to move that feild from column set to be dispalyed on ALV. I am not sure why this is happening ? Can someone please help ?
    Regards,
    Tushar.

    Hi,  Please check the how the fieldcatalouge is built.
    Also check whether there is any default layout assigned in alv layout management.

  • I try to insert some images on a website but the images are not in the right color mode. I do not know what to do? and also I have 1200 images to insert so I can not change one after one. So I need to set up an action, but I donot know how to do it... Tha

    I try to insert some images on a website but the images are not in the right color mode. I do not know what to do? and also I have 1200 images to insert so I can not change one after one. So I need to set up an action, but I donot know how to do it... Thanks

    What is the problem specifiaclly?
    If the images are intended for web use I would recommend converting them to sRGB which could be done with Edit > Convert to Profile or with File > Save for Web, but as including a Save step in Actions and applying them as Batch can sometimes cause problems I would go with regular converting.
    You could also try Image Processor Pro.
    Scripts Page

  • Hide a column in one view, but show in other

    Hi all.
    I need to hide a column on "Table" view, but column needs to show up on "Pivot table".
    I know we can hide it on pivot ( exclude It ) and show on table, but I want to know if reverse is possible.
    This is needed because I am doing a view selector for writeback. And I dont want to display all the columns on writeback table view. But it needs to be there on Pivot table.
    Please let me know if it is possible.
    Thanks.
    Vinay

    Yes we can do that.
    Check on the "Hide" in the column format tab of the column that you need to display in the table lay out.
    Now dupliate the same view and in the pivot table column intially you will not see the column displayed.
    Now in the properties check on "hidden" in the "format headings" and you wont see it still and now uncheck the"hidden" and you shoud be able to see the column displayed in the pivot view
    In this way you will have the column hidden in the table view and displayed in the pivot table.
    Hope it helps
    Prash

  • I deleted some of songs by iPhone.but now it until shows all that songs.they seems partially visible not like other song totally black.actual songs are 701 shown in setting.in the music it shows 901. How can I permanently delete them???

    I  cannt synk them to iTunes because lots of songs are not in iTunes now. This will delete my lots of songs.
    I deleted some of songs by iPhone.but now it until shows all that songs.they seems partially visible not like other song totally black.actual songs are 701 shown in setting.in the music it shows 901. How can I permanently delete them???

    I called Apple and spoke with a customer service representative regarding this issue. I was given the two things to try, and if they don't work, I was told I can call back in:
    1. Go to iCloud.com and look at the advanced options. Since Photos can be deleted here, the representative thought there may be an option to remove songs here as well.
    2. Go into the library that has the songs that were deleted and click Update iTunes match.
    I tried #1--this didn't resolve the issue, as there is no option to remove songs this way. I can't try #2 right now since I'm at work, but if anybody else with this issue can try that step it can help us get the ball rolling on it. After I try that, I'll call Apple back to discuss this further.

Maybe you are looking for

  • I am trying to set up my e mail account on my i pad and do not seem tobe getting my e mails I have checked the wifi and it is connected? what can I do?

    I am trying to set up my mail account on my i pad.  I have checked the wi-fi connection and all seems ok but I still do not have my emails yet I followed the on screen info required?  please help?

  • Multiple Page Number

    Dear All i have Month wise tabular and summary information in one report (using report 6i) , report start from January report first show tabular information having many pages and then its summary, show on single page then next month say February tabu

  • Restarting order for epm systems in distributed environment

    hello everone , Q. 1   can  I know safe restarting order for epm systems in distributed environment where I have 7 servers which have different epm applications. and in which order i should start services ? version is hyperion 11.1.2.1 Q. 2  also I a

  • Lightroom vs CaptureOne

    I am a user of capture one but am considering lightroom. Does anyone know if there is an overlay feature in lightroom? The purpose is to check the composition relative to the type on the page the image is being shot for without exporting into inDesig

  • Swingbench Load Generator fails to quit the users

    Hello All, We have an Oracle DB 10.2 running on HP-UX. This is a demo application to demonstrate the migration of the CPU on the vPar environment when the oracle load goes high. We are using swingbench to generate the load to the Oracle DB. The probl