Renaming presentation colums

hi,
i m renaming exiting columns in presentation ie in repository
i would like to know
if they are present in any of reports it will definitely effect it so how to find out and resolve it

Hi,
i will explain it further
1)If you rename columns in RPD, then it will create an alias for that presentation column.If you double clcik the column you have renamed in presentation layer,you will see alias tab.Under this you will see the alias being created.This wll help in avoiding existing reports to function properly
2)If you go to Answers and look for the column that you have renames it will show the new name that you have given.
Now my question is are users have access to RPF because they will be able to see that alias only in RPD.If you want to change the heading of column you can chang it manually.
Thanks
Sandeep

Similar Messages

  • Rename presentation layer catalog

    Hi,
    I have renamed the presentation layer catalog in RPD. When I am seeing the dashboard all the reports are getting displayed but when I see the individual reports I am getting :"Either you do not have permission to use the subject area X within Answers, or the subject area does not exist" on the left side of the report.Can anyone tell me how can we rename the presentation layer catalog with individual reports not showing the above statement?
    Thanks and Regards,     
    Amrit

    Option 1 :
    use the rename wizard ( tols-> utility-> rename wizard) to change the name of presentation catalog
    option 2 :
    go to answers of that report->go to advance tab
    under
    Enter the name of the Subject Area : write the new subject area

  • Renaming columns resulting in breakage of already existing reports

    Hi
    We recently upgraded from 10g to 11g and we faced the following issue related to trailing spaces:
    In 10g we had trailing spaces for few columns which accounts for say around 300 in number. After consistency check, these trailing spaces were shown as warnings in 10g and did not error out any reports. But in 11g, these trailing spaces were shown as errors and resulting in the breakage of already existing reports. To avoid this, we have to delete the trailing spaces along with the aliases. After this, the only process we are aware of, is to re-pull the renamed columns in the existing reports to make them error free. Now we have around 200 reports using these columns and it requires good amount of manual effort to go in. I would like to know, is there any better solution other than re-pulling these columns to keep the reports error free.
    Any suggestions on this will be very helpful and greatly appreciated.
    Thanks

    Hi,
    Refer
    renaming presentation colums
    Re: renaming using rename wizard.
    Re: Renaming Business Model and Subject Area
    Thanks
    Deva
    Edited by: Devarasu on Sep 27, 2011 5:27 PM

  • Can't delete file after renaming due to Word file handle still present. Error staes document is still in use but it's really not. Worked fine in 2007 but not in 2010.

    I have some code associated with a Word Template. The template is opened, filled out and saved via a routing in vba. This all works fine in older 2007 version (which is version it was originally created in). Once this file is saved, the user can change the
    date in a text box and re-save document. The code saves using the new date for part of new file name and then deletes that older file from the server. It fails at the delete function because the newer version of word is not dropping the file handle from the
    first named file when user saves it to the new filename. In older version (2007) this handle was released as soon as file was saved to a different name. I can't seem to figure out how to release the old document filename so the old document file can be deleted.
    I hope I explained this well enough.
    Here's the code that woeked in version 2007 but fails in version 2010.
    Option Explicit
    Dim CAPEX01 As MSForms.ComboBox
    Dim CAPEX02 As MSForms.ComboBox
    Dim LocalPath As String
    Dim NetPath As String
    Dim OldPath As String
    Dim OldPathNet As String
    Dim DocName01 As String
    Dim DocName02 As String
    Dim DocName03 As String
    Dim DocName04 As String
    Dim DocName As String
    Dim DocNameold As String
    Dim TestDocName As String
    Dim filesys
    Dim newfolder
    Sub AutoOpen()
    ActiveDocument.ActiveWindow.View.Type = wdPrintView
    TestDocName = ActiveDocument.TextBox2
    OldPathNet = "\\yourPath\" & TestDocName & "\"
    End Sub
    Sub AutoNew()
    TestDocName = ActiveDocument.TextBox2
    OldPathNet = "\\yourPath\" & TestDocName & "\"
     ComboBox1.Locked = False
     ComboBox1.Enabled = True
     FillList1
     FillList2
     End Sub
    Sub DeleteOldDoc()
    OldPathNet = "\\yourPath\" & TestDocName ' & "\"
    DocNameold = OldPathNet & TestDocName & "-" & DocName02 & "-" & DocName03 & "-" & DocName04 & ".doc"
        If Not TestDocName = DocName01 Then
            Set filesys = CreateObject("Scripting.FileSystemObject")
        If filesys.FileExists(DocNameold) Then
            filesys.DeleteFile (DocNameold), True      
     'I get file permission error here
        End If
        End If
    If DocName01 <> "" Then
    If Not TestDocName = DocName01 Then
    If Not TestDocName = "" Then
        MsgBox "Project Proposal Has Been Moved From Year " & TestDocName & " To " & DocName01 & ""
    End If
    End If
    End If
    TestDocName = DocName01
    End Sub
    '''''''Document path functions''''''
    Sub chkpath()
    Set filesys = CreateObject("Scripting.FileSystemObject")
    If Not filesys.FolderExists("\\yourPath\") Then
       newfolder = filesys.CreateFolder("\\yourPath\")
    End If
    If Not filesys.FolderExists("\\yourPath\" & DocName01 & "\") Then
        newfolder = filesys.CreateFolder("\\yourPath\" & DocName01 & "\")
    End If
    End Sub
    ''''''Save Function''''''
    Private Sub CommandButton1_Click()
    DocName01 = ActiveDocument.TextBox2
    DocName02 = ActiveDocument.TextBox4
    DocName03 = ActiveDocument.TextBox1
    DocName04 = ActiveDocument.ComboBox1.Value
    chkpath
    NetPath = "\\yourPath\" & DocName01 & "\"
    DocName = NetPath & DocName01 & "-" & DocName02 & "-" & DocName03 & "-" & DocName04
    ActiveDocument.SaveAs2 FileName:=DocName, FileFormat:=wdFormatDocument
     ComboBox1.Locked = True
     ComboBox1.Enabled = False
     ComboBox2.Locked = True
     ComboBox2.Enabled = False
     TextBox1.Locked = True
     TextBox1.Enabled = False
     TextBox3.Locked = True
     TextBox3.Enabled = False
     TextBox4.Locked = True
     TextBox4.Enabled = False
     DeleteOldDoc
    End Sub
    Sub FillList1()
    Set CAPEX02 = ActiveDocument.ComboBox2
      With CAPEX02
          .AddItem "CASTING", 0
          .AddItem "HOT ROLLING", 1
          .AddItem "COLD ROLLING", 2
          .AddItem "FINISHING", 3
          .AddItem "PLANT GENERAL", 4
          .AddItem "MOBILE EQUIPMENT", 5
      End With
    End Sub
     Sub FillList2()
     Set CAPEX01 = ActiveDocument.ComboBox1
      With CAPEX01
          .AddItem "A Name", 0
          .AddItem "Another Name", 1
      End With
    End Sub
    Private Sub CommandButton2_Click()
        UserForm1.Show
    End Sub

    mogulman52 and Don,
    I went back and looked at my code and had already updated it to SaveAs in the new docx format. It still holds the lock handle in place until Word closes, unlike earlier versions which released the lock handle when you did a SaveAs.
    As a note, all my Word and Excel macro-enabled (dotm & xltm) templates are read only and are never filled in, prompting the user for a file name on any close event or if they run the code gets auto-named. I do the SaveAs and concatenate the file name
    from data on the document (or sheet) that has been filled in. During the SaveAs the docx gets saved to a network folder and also on a local folder. The lock gets renamed to the filename and remains until Word is closed.
    So my code still fails at the point noted below while trying to delete an old filename version after the file has been saved as a new filename in a new folder. So....
    The code is looking in the last folder where the docx file was saved for the older filename so it can be deleted. The newest docx version has already been saved in a different folder and has a new lock handle of its own. That lock is not my problem, it's
    the older file lock which really exists in the same folder as the first filename that the docx was saved to. It does not release that lock until I exit Word. My work around has been to instruct all users to manually delete the older version file.
    The other odd thing is this only happens when I run it from code, if you manually go through these steps with the SaveAs menu drop-downs in Word it will release the lock handle???
    Hope this isn't to confusing and thanks for all your suggestions and help.
    Sub DeleteOldDoc()
    OldPathNet = "\\yourPath\" & TestDocName ' & "\"
    DocNameold = OldPathNet & TestDocName & "-" & DocName02 & "-" & DocName03 & "-" & DocName04 & ".doc"
    If Not TestDocName = DocName01 Then
    Set filesys = CreateObject("Scripting.FileSystemObject")
    If filesys.FileExists(DocNameold) Then
    filesys.DeleteFile (DocNameold), True 'I get file permission error here- lock handle is still present from last SaveAs command in last folder where previous version of file was saved.
    End If
    End If
    If DocName01 <> "" Then
    If Not TestDocName = DocName01 Then
    If Not TestDocName = "" Then
    MsgBox "Project Proposal Has Been Moved From Year " & TestDocName & " To " & DocName01 & ""
    End If
    End If
    End If
    TestDocName = DocName01
    End Sub
    Glenn

  • How do i "Rename (or delete) cookies.sqlite (cookies.sqlite.old) and delete other present cookies files like cookies.sqlite-journal in the Firefox profile folde

    ''locking as a duplicate of https://support.mozilla.org/en-US/questions/1041857''
    i have been getting lots of pop up windows. i did delete my history, cache and cookies, i even uninstalled firefox and installed it again, but the cookies remain. i read a question on your forum and the answer was:"Rename (or delete) cookies.sqlite (cookies.sqlite.old) and delete other present cookies files like cookies.sqlite-journal in the Firefox profile folder..." but how do i do that?

    You can check for recently installed suspicious or unknown extensions.
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    Do a malware check with several malware scanning programs on the Windows computer.
    Please scan with all programs because each program detects different malware.
    All these programs have free versions.
    Make sure that you update each program to get the latest version of their databases before doing a scan.
    *Malwarebytes' Anti-Malware:<br>http://www.malwarebytes.org/mbam.php
    *AdwCleaner:<br>http://www.bleepingcomputer.com/download/adwcleaner/<br>http://www.softpedia.com/get/Antivirus/Removal-Tools/AdwCleaner.shtml
    *SuperAntispyware:<br>http://www.superantispyware.com/
    *Microsoft Safety Scanner:<br>http://www.microsoft.com/security/scanner/en-us/default.aspx
    *Windows Defender:<br>http://windows.microsoft.com/en-us/windows/using-defender
    *Spybot Search & Destroy:<br>http://www.safer-networking.org/en/index.html
    *Kasperky Free Security Scan:<br>http://www.kaspersky.com/security-scan
    You can also do a check for a rootkit infection with TDSSKiller.
    *Anti-rootkit utility TDSSKiller:<br>http://support.kaspersky.com/5350?el=88446
    See also:
    *"Spyware on Windows": http://kb.mozillazine.org/Popups_not_blocked
    *https://support.mozilla.org/kb/troubleshoot-firefox-issues-caused-malware

  • I am using an epson projector to present images downloaded to a thumb drive. I renames the images on export to "untitled 101, 102 etc. The projector will not recognize the sequence. It wants 001, 002etc. If I try to start 001 lightroom changes it to 1, 2

    I am using an epson projector to present images downloaded to a thumb drive. I rename the images on export to "untitled 101, 102 etc. The projector will not recognize the sequence. It wants 001, 002etc. If I try to start 001 lightroom changes it to 1, 2  ... 10,11 etc. How can I export and rename starting with 001?

    The projector may actually be processing a 3 digit number in numerical sequence.  Have you tried your export/collection in order  sequence starting with 101?  Assuming you have fewer than 899 images you should be OK. (I had to fiddle with export sequence for a display frame which used the file date and time for sequence!)

  • FM to Rename a File on my Desktop(Presentation server) thru SAP

    Hi,
    I have a requirement wherein, I know the correct path along with the file name of any particular file stored on my desktop. I need to change the name of that file according to the client's naming convention.
    Does anybody knows the name of SAP Standard Function Module by which you can change the name of a file on Presentation Server.
    Thanks in Advance.
    With Best Regards,
    Nitin

    Hi nitin,
    1. Exactly for this purpose
        i have developed an INDEPENDENT SUBROUTINE (FORM)
      in which we pass
        a) old file name
        b) new file name
      and it will rename the file
    (This will work in WINDOWS Operating system)
    (we can modify it very little for other OS also_
    2. just copy paste in new program.
    3.
    Report abc.
    PERFORM MYRENAME USING 'D:\CCC.TXT'  'DDD.TXT'.
    FORM
    form myrename USING oldfile newfile.
      data : pm(200) type c.
      concatenate '/C REN ' oldfile newfile
      INTO PM separated by space.
      CALL FUNCTION 'GUI_RUN'
        EXPORTING
          COMMAND          = 'CMD'
         PARAMETER        = pm
      CD               =
    IMPORTING
      RETURNCODE       =
    endform.                    "myrename
    regards,a
    amit m.

  • Renaming the files present inside a war file.

    Hi,
    I am using the java.util.zip API for reading a war file(a zip file).
    I wanted to know whether its possible to rename a particular file present in the zip using this API.
    Thanks in advance.

    You can't edit a ZIP file with the standard libraries.

  • Rename columns in Presentation layer

    Hi Experts,
    I Have one BMM layer table with 2 groups columns like
    BMM Table
    Sales
    Revenue
    Sum
    Sales_ B Group
    Revenue_ B Group
    Sum_ B Group
    Now I want to show these columns in two tables i.e. A table and B table with same column names in presentation layer as below:
    Presentation A table Presentation B table
    Sales Sales
    Revenue Revenue
    Sum                     Sum          
    In BMM layer it should be Sales_ B Group but in presentation table it should show as Sales as vice verse for other 2 columns for B group columns
    If I rename Sales_ B Group as Sales in BMM layer it won’t accept because already sales column is there my requirement is in BMM layer in should as Sales_ B Group but in presentation layer the same column it should show as Sales .
    Regards,
    Rafi
    Edited by: Rafi.BI on Jan 31, 2013 11:28 PM

    Hi Rafi,
    Can you right click on your presenatation layer and create a new presentation table (EG: Table A) -- and then move the columns from bmm layer and rename them as per your req.
    Now right click again.. create one more Pres. table (EG: Table B) -- and then move the columns from bmm simply drag and drop and rename as per your req.
    Thank you.

  • Renaming the Presentation Layer objests

    Hi
    Can any one please guide me for the below problem
    After creating reports in Dashboard or answer when i tried changing the name of presentation catlog or presentation table or presentation column, the previous name gets store in alias and my reports also work fine... but now when i want to make some changes or modify my reports It does not allow me for that.. and says either i do not have an access or that presentation catalog does not exist.
    I am working on OBIEE 10.3.*
    What i want is to rename and could also able to make the changes.
    Or if any best Possible Solution for the same .. so please .. welcome ..
    Cheers,
    Rishabh
    Edited by: user10589822 on Feb 14, 2010 7:26 PM

    Best way to correct this is to use the catalog manager. Do an "XML Search and Replace"...search for "YourOldPresentationTableName" and replace with "YourNewPresentationTableName".
    Cheers,
    C.

  • Why did they skip the "save as" command in the last version of Keynote? how do I rename an existing keynote presentation quickly?

    Why did they skip the "save as" command in the last version of Keynote? How do I rename an existing keynote presentation quickly without the "Save As" command??

    Why did they skip the "save as" command in the last version of Keynote? How do I rename an existing keynote presentation quickly without the "Save As" command??

  • Rename Resource objects not present in IDM

    i need to change the container of some users in LDAP that are not present in SIM. Can someone help me with the same

    Check out this example how to rename an organizational unit:
    <Action id='0' name='Find OU' application='com.waveset.provision.WorkflowServices'>
         <Argument name='op' value='getResourceObject'/>
         <Argument name='objectType' value='Organizational Unit'/>
         <Argument name='objectId' value='ou=Staff,dc=example,dc=com'/>
         <Argument name='resourceId' value='#ID#Resource:LDAP'/>
         <Return from='object' to='orgObject'/>
         <Return from='applicationError' to='applicationError'/>
    </Action>
    <Action id='1' name='Modify OU'>
         <expression>
              <set name='orgObject.organizational unit.attributes.ws_newAccountId'>
                   <s>ou=Staff2,dc=example,dc=com
              </set>     
         </expression>
    </Action>
    <Action id='1' name='Update OU' application='com.waveset.provision.WorkflowServices'>
         <Argument name='op' value='updateResourceObject'/>
         <Argument name='objectType' value='organizational unit'/>
         <Argument name='object' value='$(orgObject.organizational unit)'/>
         <Argument name='resourceId' value='#ID#Resource:LDAP'/>
         <Argument name='action' value='update'/>
         <Return from='applicationError' to='applicationError'/>
    </Action>

  • Ssis - move files from one directory to another and rename destination file if present

    Hello,
    How is it possible to move files from one directory to another directory and if the file already exists in destination directory then rename it?
    Thanks

    1. Use a foreach loop with file enumerator pointing to first directory.
    Inside loop have a ssis variable of type string to get filename (@[User::FileName])
    Choose option as Fully Qualified in loop
    2. Add another variable called @[User::DestFileName], set EvaluateAsExpression true for it and set expression like this
    REPLACE(@[User::FileName],<source directory path>,<destination directory path>)
    put actual paths in above expression in your case
    and another variable called @[User::RenameFileName], set EvaluateAsExpression true for it and set expression like this
    REPLACE(@[User::FileName],".","_old.")
    3. Create a boolean variable say @[User::FileEXists]
    4. Add a Script Task inside the loop and pass @DestFileName variable in ReadOnly mode and FileExists in ReadWrite mode
    Inside Script Task write code as per below
    http://blog.dbandbi.com/2013/11/13/check-file-exists-ssis/
    5. Add File System Task choose operation as Rename File, Select IsSourcePathVariable as true and select @[user::DestFileName] variable and IsDestinationPath variable as true and select @[user::RenameFileName] variable
    6. Choose ExpressionAndConstraint option for precedeence constraint from ScriptTask to above File System Task and choose constraint as OnSuccess and expression as
    @FileExists == True
    7. Add another File System task with operation as Move File Select IsSourcePathVariable as true and select @[user::FileName] variable and IsDestinationPath variable as true and select @[user::DestFileName] variable. Join Script Task as well as
    File System Task above to this task and choose constraint as OnSuccess and Multiple Constraint option as Or (dotted line)
    Then once executed it will work as per your requirement
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • How do I rename the "Presentation Window"

    any ideas?
    Ed

    You can press the "glasses" icon on the toolbar or Go to Safari > View > Hide reading list.  The keyboard shortcut is Shift Command L

  • Rename CPD using Subversion or Explorer?

    Hi
    My RoboHelp (V7) cpd is 25MB and I want to reduce its size. I am intending to rename the file and then open the project, and hopefully the resulting CPD will be much smaller. I use Subversion as source control for the RoboHelp project. My question is do I rename the CPD using Subversion or using Windows Explorer?
    Thanks in advance
    MadgeDeepers

    They are machine specific files so there is no point in having them in source control. If they aren't present when you open the RH project, they are automatically rebuilt. The same could also be said about the HHP and LDB files although here we do add these to source control.
    With SVN, ignoring the CPD file gets around that annoying updated icon issue when all you've done is open a project to look at something.
      The RoboColum(n)
      @robocolumn
      Colum McAndrew

Maybe you are looking for

  • How can I make my hotmail account delete emails that I delete on my phone?

    How can I make my hotmail account delete the messages that I delete on my Droid 3? I selected the "obey the other program" in my hotmail account, but nothing's being deleted. Thanks, Cesslie

  • ITunes and Apple TV and purchased content

    I have a new 2nd gen Apple TV.  To test things out, I bought a couple of TV shows via the Apple TV.  Should I see those shows in iTunes on my computer? Conversely, if I have TV or Movie content on my computer that I bought via iTunes, should I see th

  • 10.6.8 upgrade problems

    I've been VERY happy with my MBP since I bought it a year ago. However after the 10.6.8 update yesterday I have had the following problems: 1. Startup time VERY slow - 30 sec to login screen, then 7 minutes after user/pass entered to log in 2. Networ

  • Error U44M1P7 from CSXS Infrastructure 4.0.2 update

    Got to work this morning, and Creative Cloud pops up an update message. Goodie, I thought. There were updates for the following applications, all of which were the CSXS Infrastructure 4.0.2 update: - Dreamweaver CC - Illustrator CC - InCopy CC - InDe

  • ODBC Connectivity with Crystal Reports 2009 and MySQL

    Hi, I'm hoping someone can help me. We are currently running Crystal Reports CR Developer version 9.2.2.693 with an ODBC connection (ODBC 3.51 driver) to a My SQL database, version 4.0.18.* We want to upgrade to Crystal Reports 2008, CR Developer ver