Computation Columns in IR get lost

Hei,
i have an IR with many computation columns in saved reports.
Whenever the source table structure is changed (new column, delete column, etc), all computation columns are moved to non-visible sides of reports.
Is this a bug or a feature? ;)
Regards
Raffaello

Raffaello wrote:
Thanks for the fast reply.
But...
I tried another way using a second server.
Same application, same id.
Adding some columns, export the application and import on server one, replacing the application.
The computation columns don't get lost in the visible side.
Why do this way work, but the direct way don't?Just a guess. When you export/import either the report gets regenerated or something copied without being invalidated

Similar Messages

  • Working in MUD: after deleting column whole table gets lost

    Good morning community,
    we do have a problem with the obiee admin tool.
    we just migrated to version 11.1.1.6.6.
    Now a colleague of mine worked with the MUD. He checked out the RPD-file and wanted to delete a column from a table within the presentation layer. Then he checked in this change again. He Uploaded the file to the server and everything is working fine.
    Now the problem:
    When he checked it out again, he saw that the full table was "deleted", but not only in the presentation layer, also in the business modell and the physical layer.
    He opened the RPD file locally and there everything was okay.
    Our first idea that the admin tool lost the link of these tables to the project couldn't be confirmed.
    So we are asking you :-)
    Maybe someone of you had this problem too and can explain how he solved it.
    Thank you and have nice day,
    Sven

    Hi Sven,
    Then he checked in this change again. He Uploaded the file to the server and everything is working fine.It should not be the case please confirm below
    1. Uploaded means ? directly moved to MUD server instead of doing checking or from MUD to system where BI installed (NQSconfig.ini) ?
    2. I'm sure he deleted the table instead of column (track it from MUD History in file option -->)
    3. Link will break when (Tables in BMM & Physical ) a fact table is deleted so automatically associated dims will go off
    4. Get the latest version . XXX (from MUD server) then change it to .rpd and deploy to get rid of issue
    thanks,
    Saichand

  • I´ve lost all of the music from my computer and whant to get it back from my iphone, how can I do this?

    Hi I am in need of some helt, I lost my music from my computer and whant to get it back... I´ve got it all in my iphone but don´t know if it is possible to transfer it with a safe application from my iphone to my compyter
    Hope someone can help
    tks
    V

    VanesaGG wrote:
    ...I lost my music from my computer ...
    How...?
    If this occured after an Update... See here  >  http://support.apple.com/kb/TS1967
    From here  >  http://www.apple.com/support/itunes/install/

  • TreeTable with inputText column data gets lost in adf 10g

    Hello All. I have a TreeTable in my page with two columns for user inputs. After a node is expanded, the data gets lost... The TreeTable was created using ViewObjects, here is one example of the sql query of one of the ViewObjects:
    select distinct det.cliente id_cliente
    , cust.customer_name descripcion
    , city.id_simcot
    , to_number(null) horas_normales
    , to_number(null) horas_recargo
    , 'CLIENTE' tipo
    from grc_dist_factura dist
    , grc_det_simcot_v city
    , grc_det_dist_factura det
    , ra_customers cust
    where det.id_dist_fact = dist.id_dist_fact
    and cust.party_id = det.cliente
    and dist.id_det_simcot = city.id_det_simcot
    and city.tipo = 'CIUDAD'
    The inputText are mapped to the attributes HorasNormales and HorasRecargo. Those columns does not existe in DataBase, that's why I create them in the View Object in that way.
    This is my TreeTable:
    <af:treeTable value="#{bindings.GrcConfTarifaRaizView.treeModel}"
    var="node"
    binding="#{ConfiguracionTarifas.treeTable1}"
    id="treeTable1" width="100%"
    emptyText="No hay un Arbol Disponible.">
    <f:facet name="nodeStamp">
    <af:column binding="#{ConfiguracionTarifas.column1}"
    id="column1" noWrap="true" headerNoWrap="true"
    headerText="Descripcion">
    <af:outputText value="#{node.Descripcion}"
    binding="#{ConfiguracionTarifas.outputText2}"
    id="outputText2"/>
    </af:column>
    </f:facet>
    <f:facet name="pathStamp">
    <af:outputText value="#{node.Descripcion}"
    binding="#{ConfiguracionTarifas.outputText3}"
    id="outputText3"/>
    </f:facet>
    <af:column sortable="false" headerText="Tarifa Hora Normal"
    formatType="number"
    binding="#{ConfiguracionTarifas.column2}" id="column2">
    <af:inputText binding="#{ConfiguracionTarifas.txtHoraNormal}"
    id="txtHoraNormal" rendered="#{node.Tipo ne 'RAIZ'}"
    value="#{node.HorasNormales}">
    </af:inputText>
    </af:column>
    <af:column sortable="false" headerText="Tarifa Hora Recargo"
    formatType="number"
    binding="#{ConfiguracionTarifas.column3}" id="column3">
    <af:inputText binding="#{ConfiguracionTarifas.txtHoraRecargo}"
    id="txtHoraRecargo" rendered="#{node.Tipo ne 'RAIZ'}"
    value="#{node.HorasRecargo}"/>
    </af:column>
    </af:treeTable>
    And this is the page Def:
    <tree id="GrcConfTarifaRaizView"
    IterBinding="GrcConfTarifaRaizViewIterator">
    <AttrNames>
    <Item Value="IdSimcot"/>
    <Item Value="Descripcion"/>
    <Item Value="Tipo"/>
    <Item Value="HorasNormales"/>
    <Item Value="HorasRecargo"/>
    </AttrNames>
    <nodeDefinition DefName="gsgappl.grc.datamodel.view.confTarifa.GrcConfTarifaRaizView"
    id="GrcConfTarifaRaizViewNode">
    <AttrNames>
    <Item Value="IdSimcot"/>
    <Item Value="Descripcion"/>
    <Item Value="Tipo"/>
    <Item Value="HorasNormales"/>
    <Item Value="HorasRecargo"/>
    </AttrNames>
    <Accessors>
    <Item Value="ClientesView"/>
    </Accessors>
    </nodeDefinition>
    <nodeDefinition DefName="gsgappl.grc.datamodel.view.confTarifa.GrcConfTarifaClientesView"
    id="GrcConfTarifaClientesViewNode">
    <AttrNames>
    <Item Value="IdCliente"/>
    <Item Value="Descripcion"/>
    <Item Value="IdSimcot"/>
    <Item Value="Tipo"/>
    <Item Value="HorasNormales"/>
    <Item Value="HorasRecargo"/>
    </AttrNames>
    <Accessors>
    <Item Value="RegionalesView"/>
    </Accessors>
    </nodeDefinition>
    <nodeDefinition DefName="gsgappl.grc.datamodel.view.confTarifa.GrcConfTarifaRegionalesView"
    id="GrcConfTarifaRegionalesViewNode">
    <AttrNames>
    <Item Value="CodRegional"/>
    <Item Value="Descripcion"/>
    <Item Value="IdSimcot"/>
    <Item Value="IdCliente"/>
    <Item Value="Tipo"/>
    <Item Value="HorasNormales"/>
    <Item Value="HorasRecargo"/>
    </AttrNames>
    <Accessors>
    <Item Value="CiudadesView"/>
    </Accessors>
    </nodeDefinition>
    <nodeDefinition DefName="gsgappl.grc.datamodel.view.confTarifa.GrcConfTarifaCiudadesView"
    id="GrcConfTarifaCiudadesViewNode">
    <AttrNames>
    <Item Value="CodCiudad"/>
    <Item Value="Descripcion"/>
    <Item Value="CodRegional"/>
    <Item Value="IdSimcot"/>
    <Item Value="IdCliente"/>
    <Item Value="Tipo"/>
    <Item Value="HorasNormales"/>
    <Item Value="HorasRecargo"/>
    </AttrNames>
    </nodeDefinition>
    </tree>
    Note the Node Definition for gsgappl.grc.datamodel.view.confTarifa.GrcConfTarifaClientesView, it correspond to the View Object showed at the beginning of the post.
    Can any one help me please?
    bye

    Thanks for the links.
    I checked them up, but first, I noticed they apply to adf 11g, and second none of them use inputText in columns. I really couldn't find a any idea to solve my issue.
    Any other suggestions?
    My problem is that when I expand/collapse a node, the values in the inputTexts are lost. I don't know if I need something else on my page Definition...
    thank you.

  • So my computer crashed and i had lost all my itunes purchases and dont know how to get them back, so my computer crashed and i had lost all my itunes purchases and dont know how to get them back

    so my computer crashed and i had lost all my itunes purchases and dont know how to get them back, so my computer crashed and i had lost all my itunes purchases and dont know how to get them back

    You have a backup of your computer, or at the very least of your iTunes media, correct?
    Simply copy your backup of your iTunes media into the iTunes library on your new computer.
    Connecting and syncing your device to the new computer without first recovering your iTunes media is a really, really, really bad idea.  iDevices are designed to ONLY sync with one computer.  When you plug your device into a new computer, it will wipe all media on the device when it syncs.  The only media you may be able to salvage and transfer to the new computer would be anything bought directly on the device.
    If you do not have a backup of your iTunes media, then you will want to either look at a way (using software from a third party company)  to either extract the media from you iDevice or your old computer (assuming the hard drive is not toast).

  • My computer crashed and I've lost two of my films. On my purchases they are still listed how do I get them back?

    My computer crashed and I've lost two of my films. On my purchases they are still listed how do I get them back?

    Re-downloading of movies has been licensed by the movie studios only in the US as of right now. I'm guessing, since you refer to "films", that your're not in the US and if so will not be able to download your movies again without paying. You'll need to restore from your backups.
    Regards.

  • I'm trying to install Design sutie 5.5 but lost theserial number. It is on an older computer that is crash and i need to put it on a newer computer how can i get it.

    I'm trying to install Design sutie 5.5 but lost theserial number. It is on an older computer that is crash and i need to put it on a newer computer how can i get it?

    If you registered the software when you first installed it then you should be able to find the serial number available thru your Adobe account online.

  • HT1296 I've just bought a new laptop, how do I put my iTunes from my old computer on it in a way where nothing gets lost or deleted?

    I've just bought a new laptop, how do I put my iTunes from my old computer onto my new laptop, in a way where nothing gets lost or deleted?

    or:
    Transfer iTunes purchases by:
    http://support.apple.com/kb/HT1848?viewlocale=en_USiTunes Store: Transferring purchases from your iOS device or iPod to a computer
    - Transfer othre music by using a third-party program like one of those discussed here:
    Copy music
    - Retain app data and other information, connect the iPod to yur computer and make a backup by right clciking on the iPod under Devices in iTunes and select Back Up
    - Restore the iPod from that backup
    Note that the Backup that iTunes makes does not include synced media like apps and music.

  • Hyphen gets lost when printing to computer to plate

    hello!
    i´ve got a big problem. I have a pdf from a client and everything is fine while checking the pdf.
    acrobat preflight and my creo software tell me, that everything is ok.
    but when die creo rip produces the output date, its a tiff file, the hyphenation at the end of a line gets lost.
    e.g prob-lem looks like pro lem.
    my client uses indesign version 6.0, with version 6.0.4 there are no problems.
    the pdf is exportet to acrobat level 1.3.
    I couldn´t find anything that explains this error.
    We produced 18000 broschures and the client doesn´t accept them.
    thanks
    michael

    Over years of experience in the graphic design and printing industries, I have seen this sort of problem from time to time with both film and ctp RIPs. They are most often, although not always, caused by an issue with the RIP software being out of date.
    IF the hyphens are visible in the PDF, the RIP software should process them properly.
    I have also learned that visual checking is essential. The client should ALWAYS supply a laser printed copy and even a cursory comparison between the film, plate or first sheets off press should reveal the more obvious problems.
    I doubt that you will be able to tell the customer that the problem is his fault.

  • Computer Crashed Had To Get New-Are purchased songs lost?

    My ipod doesn't have all purchased songs on it either.  If computer guy can't get hd up and running to get files off am I s.o.l?  Thanks all

    Downloading past purchases from the App Store, iBookstore, and iTunes Store

  • How do I use the Verizon Service & Protection app to locate my phone if it gets lost?

    The Verizon Support & Protection app (VZ Protect) is installed on my phone and is supposed to help me if my phone is lost or stolen by allowing me to find it on a map, lock it, erase my data from it, etc.  But I found it nearly impossible to figure out what I should do in the event that actually did get lost or stolen.
    I logged into my My Verizon account from my computer (which is probably what I would do if I lost my phone), but unfortunately there isn't anything on the site to help a person who has actually lost their phone or had it stolen to quickly and easily locate it.  Most of the links I found were only promoting Verizon's services and the app, but nothing on how to use it.
    I tried searching for things I might type if I had actually lost my phone (like, "missing phone", "stolen phone", "find lost phone").  I had to go into the "How to Use Guide: Verizon Support & Protection" page, which I was only able to find on the  Verizon Support & Protection FAQs  page), in order to find a link that told me I had to go to the Verizon Support & Protection App website  to use this service.
    There really should be something more obvious right on the My Verizon site.

    Purchase a replacement remote.
    The remote is required for configuring the ATV and setting up the remote app on iDevices.

  • Adding complex computed column at run-time fails in PB 12.6

    I support a large 'vintage' application that was originally written in the late 90's, and has been migrated from version to version over the years.  Currently I'm working to get it working in PB 12.6 Classic, build 3506, migrating it from PB 11.5
    The first issue I've come across is that PFC treeviews are not working properly.  After some debugging, I determined that the cause of the failure is the PFC code's creation of 'key' column in the datawindows being used to populate each level.
    In the pfc_u_tv.of_createkey function, it looks at the linkages between the levels of a treeviews data, and then crafts an expression, and then uses that to create a computed column, which is subsequently used to uniquely identify the data.
    The expression is a series of string concatenations, such as this:
    expression='String(ctg_cd) + "#$%" + String(app_cd) + "#$%" + String(app_cd) + "#$%" + String(win_id) + "#$%" + String(ctg_cd) + "#$%"'
    This expression is then used in a modify statement to create the new compute key column:
    ls_rc = ads_obj.Modify("create compute(band=detail x='0' y='0' " + &
      "height='0' width='0' name=pfc_tvi_key " + ls_Exp + ")")
    In earlier versions, this works, and when you do a getitemstring afterward you get a long concatenated value that PFC uses to uniquely identify treeview items.
    Such as 'a/r#$%plcy#$%plcy#$%w_m_plcy_fncl_tran#$%a/r#$%'
    However, in PB 12.6, only the first portion of the expression is processed.  There is no error returned from the Modify function, and the column is created, but the expression is only evaluating one part of the expression.  In this partiular case, it results in
    'plcy'
    I just noticed that this isn't the *first* item in the set of concatenated columns and string literals, which is interesting.  In any case, when the computed key values are not correct, the whole method PFC is using to populate and run the treeview falls apart, and you get all children under each parent, and selections on the treeview object do not work properly because the key column values are not unique.
    I can copy the expression value from a debugging session, and use that to create a computed column at design time, pasting the expression in, and naming it the same as the created column (pfv_tvi_key), and this then allows the treeview to work properly.  However, this is a very cumbersome and problematic workaround.  The application has a lot of treeviews, with a very large number of datawindows operating as all the different types of items on different levels of different trees.  I don't think it's a practical workaround, and future maintenance would be very difficult.
    bu the workaround still demonstrates it is not an issue with the syntax of the compute expression, just an issue with the way it is handled by PowerBuilder when a column is created at run time,vs. at design time.
    Has anyone else encountered this issue?  I would think there are a fair number of older apps still around that are using PFC treeviews.
    My next step will be to install PB 12.6 build 4011 and cross my fingers.  Other than that, perhaps try 12.5?

    Updating the PFC layers has started to lead down a rabbit hole of hundreds and hundreds of errors.
    Granted, many of these are probably rooted in a few ancestor issues.
    But I'm not sure this will lead to a solution.
    The problem lies in using a modify statement to create a computed column at run time containing an expression with multiple concatenated values.
    If I look at the pfc_u_tv.of_createkey function from the newer PFC version, I see the same code there:
    ls_rc = ads_obj.Modify("create compute(band=detail x='0' y='0' " + &
      "height='0' width='0' name=pfc_tvi_key " + ls_Exp + ")")
    And the same code above it which creates the expression used in the modify.
    So after doing all the patching for the new PFC version, I somehow suspect I'll still be facing the same datastore.modify problem.
    Not to say that isn't a good thing to do, just not sure it addresses the root of the problem.

  • HT201250 I have thousands of pictures on my Mac.  If something happens to my Mac I don't want them lost.  I do time machine back ups to an external hard drive once a week.  Is this good enough for making sure my pictures don't ever get lost?

    I have thousands of photos on my Mac.  If something happens to my Mac obviously, I don't want to lose the photos.  I do Time Machine back ups to an external hard drive once a week.  Is this good enough to make sure my pictures don't get lost?

    tgs6164 wrote:
    I have thousands of photos on my Mac.  If something happens to my Mac obviously, I don't want to lose the photos.  I do Time Machine back ups to an external hard drive once a week.  Is this good enough to make sure my pictures don't get lost?
    Purchase a couple of these when they go on sale.
    Start burning all the photos onto DVDs. 
    At least you'll have all your photos if your computer, time machine or any other backup you use goes bonkers.

  • HT1296 I HAVE A TOUCH 4.3. MY COMPUYET DIED AND NOW HAVE A NEW LAP TOP. I HAD SYNCED PHOTOS FORM THE COMPUTER IN THE TOUCH THAT APPEAR IN FOLDERS. THEY WERE NOT TAKEN WITH THE TOUCH. NOW HAVE A NEW COMPUTER AND WANT TO GET THESE PHOTOS FROM THE IPOD TO NE

    I HAVE A TOUCH 4.3. MY COMPUTER DIED AND NOW HAVE A NEW LAP TOP. I HAD SYNCED PHOTOS FROM THE COMPUTER TO THE TOUCH THAT APPEAR IN FOLDERS. THEY WERE NOT ORIGINALLY TAKEN WITH THE TOUCH. NOW HAVE A NEW COMPUTER AND WANT TO GET THESE PHOTOS FROM THE IPOD TO NEW PC OTHERWISE ARE LOST. MY LAPTOP IN WINDOWS 7

    To get synced photos from an iPod to a computer you need a third-party program like TouchCopy or PhoneView.

  • Parameter of Source-portion of url gets lost

    Hi Expert,
    following Situation:
    Default List-View-WebPart from a custom List added to a Enterprise-Wiki-Page.
    First column in the List-View is the edit button to open the related edit-Form.
    Because of a custom Edit-Form which is not set as the default for edit i have to relink to my specific Form.
    I have done this by this script which is included by Script-Editor-WebPart:
    var tags = $('a[onclick*="84858E12"]');
    if(tags)
    tags.each(function ()
    var att = $(this).attr('onclick');
    if(att)
    if(att.match(/ID=([0-9]*)/))
    var id = $(this).attr('onclick').match(/ID=([0-9]*)/)[1];
    var bo = $(this).closest('td').next('td').find('a').text();
    if(bo)
    $(this).removeAttr('onclick');
    $(this).attr('href', '/Lists/Leads/LeadEdit.aspx?ID=' + id + "&BO=" + encodeURIComponent(bo));
    $(this).attr('onclick', 'GoToLink(this);return false;');
    If i click a edit button to open my edit form everything works fine and the URL has correct values. The source Portion works fine if i close the edit form (save or cancel). So far so good.
    In last mentioned edit form i have another List-View-WebPart (Added through SharePoint-Designer) which holds data of a related list. Filter is working fine here. For this List-View i also have to relink the edit button to another specific edit form. I have
    done this in the same way as i did it before. The important part of the script:
    $(this).click(function(e)
    e.preventDefault();
    var currentid = $(this).attr('href').match(/ID=([0-9]*)/)[1];
    var encbo = encodeURIComponent(getBO());
    $s = "/Lists/Com2Know/Edit.aspx?ID=" + currentid + "&BO=" + encbo+ "&Source=" + source + "&BO=" + encbo;
    location.href = $s;
    This also works fine. Source Portion is shown and correct. If i copy the source Portion and paste it to a new browser tab it is working fine. But if i Close this edit form (save or cancel) a Parameter of the source portion of the URL gets lost somehow and
    now i'm not there where i wanted to be. The URL is as follows (changed hostheader to ...)
    http://.../Lists/Com2Know/Edit.aspx?ID=86&BO=LE%2F2014%2F2000084&Source=http://.../Lists/Leads/LeadEdit.aspx?ID=84&BO=LE%2F2014%2F2000084
    So i should go to http://.../Lists/Leads/LeadEdit.aspx?ID=84&BO=LE%2F2014%2F2000084
    but i end up here: http://.../Lists/Leads/LeadEdit.aspx?ID=84
    So my Parameter BO is missing.
    Do i miss something from specification?
    With Kind regards,
    Ronny

    Sorry Folks, i got it myself and i hope it is useful for somebody else.
    Just mask the ampersand for Parameters in source Portion with %26
    So in my case: source + "%26BO="
    Kredits to Marc D Anderson. Thanx!
    Ronny

Maybe you are looking for