How to hide database user name on report

Hi,
Whenever I run my report, there is a username "HTMLDB_PUBLIC_USER" displayed on the top of the report.
Could someone tell how to hide that? If I need to chage the template for that, please guide me through the steps.
thanks in advance.
VJ

Go to your page template body and remove
&APP_USER.
variable.
Denes Kubicek

Similar Messages

  • Question on how to Hide the User Name, Password, and Domain fields in the MDT Wizard

    MDT 2012 U1
    Deploying Windows 7 via Offline Media (ISO) to MS Virtual PC's
    I am looking on how to Hide the User Name, Password, and Domain fields which are prepopulated in the MDT wizard via the CS.ini (Not so concerned about the Domain field as I am User Name and Password)
    We do need the Computer Name and OU fields to be seen, so skipping the wizard is not a option
    The client just does not want these fields to be seen by the end users, they dont want them to even know the account name used for adding the machine to the domain, of course the password is not displayed but it must not be displayed either.
    But since we use the fields they must still  be fuctional just not seen.
    Thanks.....
    If this post is helpful please click "Mark for answer", thanks! Kind regards

    You shouldn't have to edit DeployWiz_Definition_ENU.xml. You should only need to add "SkipAdminPassword=YES" to the CS.ini file and your authentication information.
    Example:
    [Settings]
    Priority=Default
    Properties=MyCustomProperty
    [Default]
    OSInstall=Y
    SkipCapture=NO
    SkipAdminPassword=YES
    UserID=<MyUserID>
    UserPassword=<MyPassword>
    UserDomain=<MyDomain.com>
    SkipProductKey=NO
    SkipComputerBackup=YES
    SkipBitLocker=NO
    -Nick O.
    Nick,
    SkipAdminPassword=YES is for:
    You can skip the Administrator Password wizard page by using this property in the
    customsettings.ini.
    I am hidding the Username/Password/and domain field in the computer name Wizard pane which is read from the cs.iniDomainAdmin=xxxxx
    DomainAdminPassword=xxxxx
    DomainAdminDomain=xxxxxx
    JoinDomain=xxxxxx
    If this post is helpful please click "Mark for answer", thanks! Kind regards

  • How can I hide the user name and password from the url address?

    Good afternoon every body,
    I have a form running with Oracle9i Developer Suite Release 2 and when I run the form on the web it shows the user name and password of my data base. Can anyone of you please help me to hide the user name and password, if there's any way of course?.
    Thanks a lot!!.

    Luis,
    Then, as inolau's notice, create logon screen (or use the default one) and force the users to logon at runtime. Do not pass username/password as parameters.
    inolau,
    True that if the connection is specified in the config it will be the same for everyone. However, every case is different. For example one of our apps gets S3 credentials (from non-Oracle S3) as session parameters. It uses this common db connection to validate some stuff with the database, read security definitions and then it re-connects the forms using the credentials.

  • How to Hide a User?

    I'm trying to create an admin user without having the account showing on the login screen.
    I came across this article:
    How to hide a user account in OS X - Apple Support
    Which says to enter the following into the Terminal (when using Yosemite):
    sudo dscl . create /Users/hiddenuser IsHidden 1
    The problem is after doing this and rebooting the user account is still visible.
    I'm using OS X v10.10.2, and yes I did replace the hiddenuser reference with the user's home directory name I'm trying to hide (the command completed with no errors shown)...
    Anybody know how to do this, and why the article shown doesn't appear to work???

    Bobby T wrote:
    I'm trying to create an admin user without having the account showing on the login screen.
    I came across this article:
    How to hide a user account in OS X - Apple Support
    Anybody know how to do this, and why the article shown doesn't appear to work???
    Did you try other methods described in that article?

  • How to preserve database user details before cloning

    Hi Experts,
    How to preserve database user details before cloning,
    I am cloning the test database with the prod database, so my concern is how to preserve the users details which they have in TEST database( like roles, privilges, profiles , passwords, etc.....). Because that all gone after cloning from PROD.
    Thanks
    Sam

    use the following script to take the backup of roles,pwd & other  details of DEV . after cloning  execute the scripts back in DEV to restore the old values....
    set head off
    set lines 200
    set pages 9999
    col owner for a20
    col db_link for a30
    col username for a15
    col host for a40
    col created for a12
    spool db_details.lst
    select * from global_name;
    select * from dba_db_links;
    select name from v$controlfile;
    select member from v$logfile;
    select file_name from dba_data_files;
    select file_name from dba_temp_files;
    spool off
    spool create_db_links.lst
    select 'create DATABASE LINK '||owner#||'.'||NAME|| ' connect to '|| userid || ' identified by '|| password || ' using '||''''|| host ||''''||'; ' FROM sys.link$ order by owner#;
    select username,user_id from dba_users where user_id in (select distinct owner# from link$);
    spool off
    spool alter_user.lst
    select ' alter user '||username||' identified by values ' || chr(39)||password||chr(39) || ';' from dba_users;
    spool off
    Set verify off
    Set space 0
    set feedback off;
    set echo off;
    set pages 1000;
    set lines 150;
    spool create_synonym.sql
    Select 'CREATE SYNONYM '||owner||'.'||synonym_name||' FOR '||table_owner||'.'||table_name||'@'||db_link||';' from dba_synonyms where db_link is not null and table_owner is not null;
    Select 'CREATE SYNONYM '||owner||'.'||synonym_name||' FOR '||table_name||'@'||db_link||';' from dba_synonyms where db_link is not null and table_owner is null;
    spool off;
    Spool profile.sql
    select ' alter user '||username||' profile '||PROFILE||';' from dba_users;
    spool off

  • Discoverer Report: How to find Business Area name from Report Name.

    Hi
    I opened a report in Disco Desktop 4 -> Resonsibiolity --> Report Name.
    So I know Report name but don’t know which Business Area it belongs to.
    How to find Business Area Name from Report Name?
    Cheers
    Vijay

    Hi,
    There is no relationship between reports and business areas. Each report can be built from many folders. Each folder can be in many business areas.
    However you can try the following SQL which may give you the result you want for an v5 EUL. You will have to modify for Discoverer 4 EUL:
    select distinct doc_name, obj.obj_name folder_name, bas.ba_name
    from eul_us.eul5_documents doc
    , eul_us.eul5_elem_xrefs xref
    , eul_us.eul5_expressions exp
    , eul_us.eul5_objs obj
    , eul_us.eul5_ba_obj_links bol
    , eul_us.eul5_bas bas
    where xref.ex_from_id = doc.doc_id
    and doc.doc_name = &your_report
    and xref.ex_to_id = exp.exp_id
    and obj.obj_id = exp.it_obj_id
    and bol.bol_obj_id = obj.obj_id
    and bas.ba_id = bol.bol_ba_id
    Rod West

  • How to hide the file name (the bizarre number assigned by the camera) when exporting an image version in aperture from an album. Pl understand I want to keep the file name in the project library version.

    how to hide the file name (the bizarre number assigned by the camera) when exporting an image version in aperture from an album. Pl understand I want to keep the file name in the project library version.

    Within Aperture you have Images, which are constructed on-the-fly from two files (the Master and the Version).  You get an image-format file _only_ when you export an Image.  You select the file name (usually a scheme) when you create an image-format file (that is, when you export).  Look under "Aperture→Presets→File Naming" for built-in Presets.  You can, of course, create your own or customize any provided.
    The Preset is applied to only the file newly created by your "export" command.  It is not applied to the Image in Aperture (unless you rename your Versions or your Masters).

  • How do I ensure user name is shown rather than 'another user' on the 'File in Use' dialog box?

    How can I ensure user names are shown rather than just 'another user' on the 'File in Use' dialog box that appears when attempting to edit a checked out document in Microsoft Word/Excel? 
    All suggestions welcome. 

    If I recall correctly, that dialog is generated by the Office client product supporting that file type. There would be no way to modify it.
    Trevor Seward
    Follow or contact me at...
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • How to hide Group Tree in Crystal Report Server.

    Hi all visitors
    i have created one crystal report and my report use group to summary the amount of each day.
    after i use group to summary, i used text box cover the group. so my group can't click anything.
    After that i upload my report to crystal report server, when i viewed my report and when i click on Group Tree, it will show the list of group (group date in crystal report) and it also can click. I don't want to show the Group Tree in Crystal Report Server.
    Anybody know how to hide group tree in crystal report server?
    Best Regards,

    Are you talking custom application, or infoview?  If it is custom app, you would have to look at the setToolPanelViewType method.  if its infoview, no direct way to change this that i know of.

  • How to find current user name on a LAN machine....

    how to find current user name in a remote machine in LAN .
    how to find current user name on a local machine in LAN .

    how to find current user name in a remote machine in
    LAN .Many users may be logged on concurrently on the remote machine.
    how to find current user name on a local machine in
    LAN .The user who is running the code in the process would be obtainable via:
    System.getProperty("some property goes here");
    I leave it to you to look at the API documentation for System.getProperties() to see what property name you would retrieve.

  • How to change your user name for the Ipod nano...

    Can anyone please explain how to change the user name on your Ipod nano?

    hiya!
    do you mean the nano's name in the ipod source list?
    if so, select the ipod in the itunes sourcelist. click on it once, and pause for a second or so. you should then be able to type in what you please.
    love, b

  • How do you change user name for Icloud

    We were having problems when I changed a password in Itunes and found user name on my Ipad and Iphone were old email addresses. We changed user name on Ipad and Iphone and Icloud woks fine, howerver we also have a Iac that had the old email address as the user name and now it will not sync with the Imac. How do I change user name on the Imac so it will agree with the other 2 devices?

    There is no application. Go to System Preferences>iCloud, click 'Sign out'.

  • How to install database 10g and forms&reports developer 10g?

    hi
    how to install database 10g and forms & reports developer 10g on windows xp 32 bit? and which one is to install first? how to connect them together? where can i find complete guide

    Gul wrote:
    hi
    how to install database 10g and forms & reports developer 10g on windows xp 32 bit? and which one is to install first? how to connect them together? where can i find complete guideThis link will help you http://tahiti.oracle.com/

  • How do I change user name on apps store , it keeps showing a different email when I wanna buy apps.

    How do I change user name on apps store , it keeps showing a different email when I wanna buy apps.

    Go to Settings > iTunes & App Stores touch AppleID, sign off, and sign on with the proper AppleID.

  • Database, user name, password for Crystal report

    We're running BOE XI 3.1 and we use WebI reports.  One of our departments uses Crystal reports, and they'd like to be able to run them in our BOE environment so that they can refresh reports over the Web.  They uploaded a report to BOE (using Add -> Crystal Reports) but when they try to refresh it they aren't prompted for the database or a password, and the refresh fails.
    How do you specify the database / data source / data connection (or whatever it's called) for a Crystal report? How do you specify the user name and password to use for authenticating to the database?
    Thanks,
       Laura

    I am fairly new on this forum but we have been doing exactly what you are talking about with Crystal Reports published to BO XI 3.1 for a while.  There are a few things we have found that have to be done to make this work right...
    - Use the EXACT same ODBC/database connection setup on both the Crystal Report developer's machine and on the BO server
    - On the developer's machine use integrated security for the database connection
    - Then after you upload the report to BO, go into CMC and open the Crystal Report's properties.  In there under "Default Settings" you will see an option for Database Configuration.  The User and Password under the "Use original logon informstion from the report" should be empty.  Put in a valid userid and password that has access to the database.
    - Also, in the Database Configuration screen make sure the Server and Database boxes are filled-in - they will be greyed out and you can't change them (this is why you have to make sure the ODBC/database info is the same).  If they are wrong, you will need to fix the ODBC/database connection in the original RPT file.
    - Finally, you need to scroll to the bottom of the Database Configuration page and select the radio box "Use same database logon as when report is run" and then Save and Close
    Now when users run the report it will use the user and password you entered to do it.  The disadvantage is you are not using integrated security but then the users also never get prompted for a password.  We tried very hard to get integrated security to work but could not manage it.
    Hope this helps!
    Larry

Maybe you are looking for

  • Re: Satellite Pro A200 - Won't boot with 4GB RAM

    Hi, I've installed 2 x 2GB, but it seems it doesn't work. The funny thing is that when running just one memory strip (so 2GB) it works, when running both it doesn't work and it freezes. These are the Samsung 2GB 2Rx8 PC2 - 6400s - 666 - 12 - E3 Ive'

  • When I try to add a comment under a YouTube video I'm not able to ... I get a redirected to another page that "flashes" open for a second then closes?

    This problem just started about three days ago. Before that I was able to click in the comment box under a YouTube video and leave my comment. The page that opens for a second shows the following when I look at my History in Firefox: Google plus: rea

  • Spinning wheels!  Please help.

    Lately, while running Safari, when I click on links or open pages in general, Safari freezes up for a few seconds and I get the little spinning color wheel. This didn't used to happen and now it's happening quite regularly. Any ideas as to why? It's

  • With out JVM

    dear friends, where can I found JVM in java? is it part of OS or JDK. can I compile java file with out JVM. please I need answer for this questions. thanking you madhu babu

  • Selection with color range based on a channel

    I want to select highlights from a channel with the color range ... I select "hightlights" on the color range window. Then, which values of the fuzziness and range sliders should I use for selecting highlights equal to the selecting them with ctrl +