Customizing Printscreen Default Name

Is there a way to customize the default naming convention - or even have it give me an opportunity to name it before it is saved?
Is there a way to set where they will be saved?
Thanks

Hotwheels22 wrote:
Is there a way to customize the default naming convention - or even have it give me an opportunity to name it before it is saved?
Is there a way to set where they will be saved?
This Web page
http://www.usingmac.com/2009/10/19/tweak-screencapture-behavior
discusses how to change several things about captured screens.

Similar Messages

  • Custom Objects - defaulting 'Name' to have relate list sort nicely :)

    I am attempting to use a custom object to store various information. I see that 'Name' is a required field. It also seems that it is the Name field which is used to sort the related list. Any suggestions on how to automatically populate the NAME field? I would relaly like it to be the same and another picklist field which is on the screen.
    Thanks.

    Problem is that 'Name' is a required field and post value will not work.
    If I set the 'Name' to a pre default, the value I want to use has not yet been selected by the user. The sorting on these related objects is messy.

  • CrystalReport into Business Objects - Change default name when saving

    Hello everyone,
    i'm asking a question here because I don't know anywhere else people who have sufficient skill to answer.
    I hope the thread is posted in the right section, if not, sorry and please move it where it belongs.
    I'll try to simply explain my problem.
    I have Business Objects XI 3.1 enterprise and i use InfoView to open a CrystalReport report.
    When I export it, (the extension does not matter) the location window opens and the default name is CrystalReportViewer.xxx .
    What I need is to not show to the customer the default name but the name of the report itself.
    Anyone has an idea?
    Thank you a lot!
    Cric

    We have a similar request for our companies deployment. Unfortunately I found that this is normal behavior for the application and that an enhancement request has already been opened (ADAPT01550068).
    SAP note 1491438 can provide you with additional information. Hope this helps.
    Edited by: Rodney Barrera on Feb 17, 2012 5:11 PM

  • AP to GL Transfer: How to have a custom Journal Header name in GL.

    Hi,
    Does any one know how to have a custom Journal Header name while transferring the Journals from AP to GL?
    Assume that I am transferring the Journals which belongs to a Single Invoice from AP to GL. When these Journals are transferred from AP to GL, Oracle will create a Journal Header with the default naming convention. The Oracle generated Header name will be as shown below.
    *123456 Purchase Invoices USD*. Where 123456 is AE_HEADER_ID and USD is the Invoice Currency code.
    Our requirement is, we want the Journal Header name something like *"Hello World"+TIMESTAMP*, where TIMESTAMP is the date when the user has ran the AP to GL transfer program.
    I know that when building the AAD(Application Accounting Definition) we can define the Journal Header descriptions and Journal Lines descriptions. But, I did not see any setup option to have the custom Journal Header name in GL.
    Any suggestions on this issue are highly appreciated.
    Advanced Thanks,
    Lokesh.

    Hi Lokesh,
    The best way to have a custom journal header name is using hook package.
    When data move from XLA to GL, every time it creates a new dynamic table as GL_INTERFACE table but the name is different (XLA_GLT_XXXXX).
    This table information stores in 'gl_interface_control' table but after use the record has deleted from 'gl_interface_control'.
    So we can't see table information after finishing create accounting program.
    What the modification you will made in this table it will affect GL base table. So to made custom journal header name, we need to change Reference4 column of dynamic table.
    Here is the code to get the table name and through procedure you can update the Reference4 column.
    FUNCTION pre_module_hook(run_id IN NUMBER,
                   errbuf IN OUT NOCOPY VARCHAR2) RETURN BOOLEAN IS
    chr_errbuf varchar2(50);
    chr_retcode varchar2(50);
    l_interface_Table_name varchar2(2000);
    BEGIN
         SELECT interface_table_name
    into l_interface_Table_name
    FROM gl_interface_control
    WHERE interface_run_id = run_id;
         BEGIN     
    xxdb_gl_icaccntgdist_pkg.gl_int_jrnl_update (chr_errbuf,chr_retcode,l_interface_Table_name);
    RETURN(TRUE);
         END;
    END pre_module_hook;
    Make these changes in GL_IMPORT_HOOK_PKG.pre_module_hook function.
    You can make the changes through calling procedure using dynamic query under the function pre_module_hook.
    Thanks,
    Gaurav K
    Edited by: 972729 on Nov 22, 2012 4:46 AM

  • Select option "Show this View : in Folder of Content type : {Custom Content Type Name}" while creating view using CSOM

    Hi,
    I am trying to create "View" in a Document Library and need to enable following:
    1. Mark as default View
    2. Folders -> Show this view : in Folders of Content Type : {Custom Content Type name}
    I am using following code which sets "in Folders of Content Type : " to "Folder" rather than selecting custom content type despite passing Content Type ID of custom content type.
    code:
    var itemContentTypes = clientContext.LoadQuery(web.AvailableContentTypes.Where(ct => ct.Name == viewContentType));
    clientContext.ExecuteQuery();
    var itemContentType = itemContentTypes.FirstOrDefault();
    view.ContentTypeId = itemContentType.Id;
    view.DefaultViewForContentType = true;
    view.Update();
    clientContext.ExecuteQuery();
    Please highlight what seems to be missing?
    Thanks
    Sonal

    Hi,
    Before you set the content type ID for the view, you need to add the custom content type to the library firstly.
    You can add the content type to library using OOTB feature “Add from existing site content types” in library settings or using Client Object Model.
    Here is a code snippet for your reference:
    var list = context.Web.Lists.GetByTitle(listTitle);
    list.ContentTypesEnabled = true;
    var contentType = context.Site.RootWeb.ContentTypes.GetById("0x0120");
    list.ContentTypes.AddExistingContentType(contentType);
    context.ExecuteQuery();
    More information about add exist content type using Client Object Model:<o:p></o:p>
    http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.client.contenttypecollection.addexistingcontenttype%28v=office.15%29.aspx
    Best regards,
    ZhengyuGuo
    Zhengyu Guo
    TechNet Community Support

  • Please Help - Avoid default name when creating constraints

    Here I am creating two very simple tables:
    create table supplier
         id number not null,
         constraint pk_supplier primary key (id)
    create table product
    id number not null,
    supplier_id number not null,
    constraint pk_product primary key (id),
    constraint fk_product_supplier_id
    foreign key (supplier_id) references supplier(id)
    After done while I choose to view table constraint information by using:
    select table_name, constraint_name
    from user_cons_columns
    where lower(table_name) = 'product';
    I get result:
    TABLE_NAME                     CONSTRAINT_NAME
    PRODUCT                        SYS_C005441
    PRODUCT                        SYS_C005442
    PRODUCT                        PK_PRODUCT
    PRODUCT                        FK_PRODUCT_SUPPLIER_ID
    What is the "SYS_C005441" and "SYS_C005442" for? Can I avoid creating them?
    Thanks

    Justin Cave wrote:
    Are you suggest not explicitly naming all your constraints? Or just the NOT NULL ones?No, not at all. Did not even thought that far when I responded. Bit of foot in mouth as I only thought of not null constraints. Blame it on a lack of coffee. :-)
    I usually name primary & foreign key and check constraints. But not null constraints - too much of an effort to name them IMO.
    But you do raise an interesting topic. Why bother naming some constraints (e.g. PK and FK) and not others (e.g. not null)? So playing devil's advocate, why should we be naming constraints at all?
    It sounds like you're suggesting that all constraints should get system default names. Well, one can argue that the same effort of naming other constraints is not worth it - why have null constraints as the exception to implicit naming? I would think that the issue I raised also applies to all constraints.
    You have multiple foreign key constraints for INVOICE_ID - how do you name these? I would like both the table and column names as this will provide the meaning needed when seeing the constraint being violated. But with 30 chars only, that is a problem. So invariable one needs to start to abbreviate table and column names in order to make it meaningful constraint name. Been there many times - disliked the constraint name I came up with every time, as it was a compromise and not the actual naming format I would have preferred.
    If that's what you're suggesting, doesn't that create problems for you when different environments have different constraint names? I know personally that I'd much rather have named constraints so that when there are constraint violation errors in production, I can start troubleshooting the problem in my local environment without first determining how to map the production constraint name to my local database's constraint name. Understand your point - and yes, it can be an issue. But by the same token, why should an application user ever see a default Oracle exception? With the exception of system-type exceptions (e.g. no more tablespace space, eof on communcation channel), all other exceptions should be custom application exceptions.
    Showing for example a "+ORA-00001: unique constraint (xxx.xxxxx) violated+" is wrong IMO. The app code should trap that exception and raise a meaningful and unique application exception for that. The user seeing anything other than a custom app exception, should itself be an exception.
    And I'd much rather be able to put the constraint name in a script that is to be promoted through the environments rather than coming up with a process that uses dynamic SQL to figure out the name of the constraint I want to do something to. Well, I would not rely on a constraint name itself to determine what it is. Just because it says fk_invoiceid_invoices does not mean that is is a foreign key on column invoice_id and references the invoices table. The safe/proper thing to do would be to query the data dictionary and confirm just what that constraint is.
    I suppose if you know that all the lower environments are very recent clones of production rather than running all the scripts in source control that these problems may not be particularly large. But I'm curious if you have some better approach to handling them (or if I'm completely misinterpreting what you're suggesting).Not sure if you recall some feature discussion with Tom and others (was on asktom?) when someone came up with this core issue and suggested it be addressed by allowing one to define an exception message with the definition of the constraint. Cannot recall the exact syntax proposed, but I do remember thinking that it was not a shabby idea - as this solves the problem of having to invent a meaningful name using 30 chars only. And it also removes the need for trapping that constraint violation in all app code that may cause the exception and raising a custom and meaningful app exception instead. Not too mention that plain and direct SQL access will show the same exception message.
    Perhaps in Oracle 12c? I assume the c as it seems that The Next Big Thing is cloud computing and surely Oracle 12 will somehow try to exploit that buzzword - as it has with i (Internet) and g (Grid) versions. ;-)

  • How to find the internal(default name) of the fields once renamed?

    Hi,
    Is it possible to find what default fields are used(renamed) and new custom fields created from field configuration?
    thanks,
    m

    m, you can find it out from field management screen for a particular object (e.g. Admin > Application Customization > Activity > Activity Field Setup). Click on the Rename button, and in the resulting screen the 2nd column “Default Name” will contain “<Custom Field>” for the new field were as for the OOB field it will contain the OOB field name.

  • Default Name Space

    Is there a way to change the default name space?
    From
    /sap/bc/bsp/sap/......
    to
    /zzcustom/bsp/
    Appreciate any help or pointers?

    <i>However, that section of BSP page properties is untouchable. In other words you are forced to create a service in /default_host/sap/bc/bsp/sap/</i>
    -->If you want to create the BSP Application in custom Namespace, then while creating the BSP Application , you can mention your custom namespace in SE80 as below..
    /MY_NAMESPACE/ZBSP
    <i>So, if I change my name space to some zzobject what will happen to the page properties? How will it know that it has to pick up /default_host/zzobject/ versus /default_host/sap/bc/bsp/sap/ ?</i>
    -->I believe you are going to create the new namespace, not going to change the SAP namespace into custom..
    --> I assume u r going to create the new namepsace..In this can, goto SICF, locate your BSP Application..Right click & Cut the service(ur BSP Appl) & Paste it under YOur custom Name space. Here it will generate the new URL for you..
    <i>What will be the impact on upgrade?</i>
    -->>It wont affect as far as you are creating the custom namepace. I believe if you change the SAP Namespace, it will be affected during upgrade..
    Raja T
    Message was edited by:
            Raja Thangamani

  • Default Name

    We have self-registration (Membership)turned on in the portal. We also have a custom auth module which gets the user name from a homegrown authentication service. So, when a new user logs into the portal, they are authenitcated using the homegrown service, the custom auth module returns the username from that service and a new user entry is created in the LDAP directory. So far so good. But if at this point, the admin logs into the admin console and lists the users, the new user shows up as "default" on the left hand pane ! Obviously, the admin can open the user and change the Full Name on the right side pane and fix the problem. But I don't think that is the right approach. So, is there another way the problem can be fixed? Is there some setting in the admin console?
    On the same note, is there a way to control what role a new user is assigned to when a new user is created? Under the Core Services for the organization, there is a property called "Dynamic User Profile Creation Default Roles". Is that where I specify the name of the default role a new user gets assigned to ? It doesnt' seem to work.
    Thanks
    K. Ramesh

    Hi Alex,
    Thanks for the reply.
    So, does it mean that there is no control from the admin console to assign a default role that a new user gets assigned to?
    If that is the case, what is the purpose of the "Dynamic User Profile Creation Default Roles" attribute available under the core services of the org?
    Also, do you know anything about the "default" name that I am talking about in my previous posting?
    Thanks

  • How to change the default name of new adjustment layers? (and other Q's)

    How do I change the default name of new adjustment layers?
    How can I make it so that adjustment layers don't come with a mask when I create them (unless I have a selection active)?
    Why isn't the Shadows/Highlights functionality an adjustment layer? It's accessable under "adjustments" but you can't use it non-destructive
    Where can I find documentation on Photoshop's API? (I want o make tools for it - javascript)

    Forgive me for not looking into your Maya-specific links, but one can automate Photoshop using JavaScript indeed (on Windows also VB, on Mac also AppleScript).
    Not everything can be automated naturally, but a lot – and it can really speed up many tasks; and with the »small« repetitive ones like saving copies off of files etc. combining Scripts with Configurator Panels can be especially convenient.
    There is a Scripting Forum over at
    http://forums.adobe.com/community/photoshop/photoshop_scripting
    As for plugins: it's something I would like to learn some day (I guess you would have to go with Flash and AS3 for making actual plugins)
    I think you might also have to learn C++ or C.
    There is Forum the contributors to which might be able to give you pointers if you get to that. 
    http://forums.adobe.com/community/photoshop/photoshop_sdk

  • Default name from header, if present

    The default document name comes from the first few words of
    the first page.
    If the document has a header before it get saved, examine the
    header: if it has anything that is
    not a field (e.g. Page Number), then use that as the default
    name.
    Cheers

    Hi Richard,
    Thanks a lot for your feedback. We will forward this as a
    feature request and will make try with all our efforts to include
    this as a feature
    Thanks and regards
    Piyush Bhatnagar
    Technical Support Engineer

  • Changing the Default name of DVD Disk in OneStep

    Is it possible to change the default name of the disk that is burned on iDVD 6 "OneStep DVD" ???
    the default disk name becomes "IDVDONESTEPDVD"...
    I make lots of DVD with OneStep and would like the name created to be different.
    Is this possible and if so...How??
    Thanks for your advice...
    STDigital

    Not sure if this is possible or not but did you already check the iDVD6 Help Menu and try the following?
    Choose Project > Project Info. Type the new name in the Disc Name box.
    If this approach isn't possible, then it's likely not a very good idea to change its default title. Good luck.
    (3) G4 PM's/(3) S-Drives/Sony TRV900/Nikons/6FWHD's/PS7/iLife06/FCPHD/DVDSP/etc. Mac OS X (10.4.8) My ichatav AIM account is: SDMacuser1 (Please use Text chat prior to video)

  • HT4897 I created an alias precisely because I wanted to make it the new default name and then quickly realized it wasn't possible. How long after deleting the alias will it become available again so that I can create a new account with it?

    I created an alias precisely because I wanted to make it the new default name and then quickly realized it wasn't possible. How long after deleting the alias will it become available again so that I can create a new account with it?
    I'm trying to make iCloud mail my primary email but I'm concerned that I may have lost the perfect email address forever.

    I have the same problem. After our wedding I've created an alias ([email protected]) to my actual AppleID Account ([email protected]). Now I'd the idea to delete the alias and my actual AppleID to create a new AppleID with ([email protected]).
    Is there really no possibilty to do this?
    Thanks in advance for quick and positive feedback.

  • Download a file and give the file name as default name while saving

    Hi folks
    I am facing a problem. I have jsp which fetchs the file name and it's location from the database.
    It can fetch many row's. Now i have provided a radio button, against each row, By clicking on it , the user selects the file to download.
    And clicks on download button, which call an action say "Download File".
    It's downloading the file successfully. But displaying the action name as default name while selecting the location to save the file on local machine.
    I want the file name which he opted to download, should get displayed as default name.

    Set it in the content disposition header.
    The downloadFile() snippet here might give some useful insights: http://balusc.xs4all.nl/srv/dev-jep-pdf.html

  • Changing default name and email address in mail

    For some reason, the default name and address that comes up when I try and edit Mail, Contacts,& Calendars under system preferences is different the one I originally set up.  When I try and edit, it seems like I have succeeded, but if I come back into system preferences, the changes have not been remembered.  Any suggestions?
    Thanks

    Thanks, Ernie
    I wasted about 20 minutes looking for it and couldn't find it
    cheers,
    tom

Maybe you are looking for