Custom Column - is it Forwardable? - outlook

I've added an editable Custom Column in Microsoft Outlook (see steps below) that is a Text field where Sensitive Data will be added (for example, a Social Security Number or ID field). We only want this data accessible within the Mailbox where the Custom Column was added. My question is, will this data be forwarded when a message from this Mailbox is Replied to or Forwarded?
Adding an editable Custom Column: Right-Click on the Outlook Columns and choose View Settings:
(Settings > Advanced View Settings > Columns > Add Column).
(Settings > Advanced View Settings > Other > check the Allow in-cell editing checkbox)

Yes, all custom fields and their values will be present on the forwarded item. You would need a macro or add-in to remove them when creating forwarded items.

Related

Rails: disable input tag upon selection from a dropdown menu

Scenario/Context
I've got a drop down menu with two input elements underneath.
From the dropdown menu, are names of companies (with values set to the respective company id's), and another prompt to Add a new company.
If the option to Add a new company is selected from the dropdown, then the user is to fill out the 2 input field elements (i.e. company name and company email).
Otherwise, if an available company is selected from the dropdown,
then the 2 input fields (for company name and email are to be disabled).
My question
Is this possible to do without an AJAX call if I want things to happen without a page refresh?
Can anyone suggest some other alternatives??
Many thanks!
That is absolutely possible, though you'd need to use some JavaScript to make it happen and load a bit more data to the DOM on the initial page load.
For each option in your company select dropdown, add a data attribute for the name and email.
Then, watch that dropdown for the change event in JavaScript. Whenever that event is fired, if the data-company-name and data-company-email attributes are defined for the selected option, disable the input fields and populate them with those values. If those data attributes are not defined for the option (likely only for your 'Add a new company' option), then clear the values from the input fields and enable them.

Outlook 2016 - Modify Appointment Window

Wondering if there is a way to modify the Appointment window in outlook 2016 to add new fields?
A resource field that would be a drop down menu containing
different alphanumeric text field selections.
A Numeric data type entry field.
A Text data type entry field.
Thanks in advance.
Yes, you can create a custom form based on the IPM.Appointment class or create a form region associated with that class. See: https://msdn.microsoft.com/en-us/vba/outlook-vba/articles/customizing-form-pages-and-form-regions.
You can also host your UI in a custom Windows Form on a custom Task Pane adjoining the Appointment window by using a .NET add-in.

Add record with ID, selecting NAME from another table

Can anyone, please, help me with Libreoffice Base form creation?
I have the following tables:
And I'm trying to add a form to enter new RESOURCES record with the following fields: [RESOURCE_NAME], [CURRENCY_NAME] and [AMOUNT]. But after 10+ tries I have not succeeded. I have tried adding it via wizard, selecting RESOURCES as main form and CURRENCIES as subform and vice versa. I have tried VIEWS and forms based on them. These tries only gave to me or no possibility to enter new record, either creation of the new CURRENCY.
I don't need to create new currency via this form, I only want to enter new Resource (only enter once, not to modify, not to delete). Since I don't want to remember all the ID's I want to select currency name via DropDown list.
Can anyone provide instructions about how to do it, please?
Thanks.
You do not need a subform for this - just create your form document with RESOURCES as the main form (only form).
You will need a listbox to enter the currency item. A listbox has two fields, a display field and a field that is saved in the table. You will set it up to display CURRENCY_NAME and store CURRENCY_ID.
When you create a listbox, the wizard that pops up may get you what you want. If the wizard falls short:
Make sure the form document is open in design mode: on the "Form Controls" toolbar, the leftmost/topmost icon of a pencil with a triangle should be depressed. If this icon is grayed out, close your document, right-click on its name and choose "Edit".
Right-click on the listbox and choose "Control"; this will open the properties window
On the tab "Data" change the "Type of list contents" to "Sql"
In the field "List content" enter SELECT "CURRENCY_NAME", "CURRENCY_ID" FROM "CURRENCIES" ORDER BY "CURRENCY_NAME"
The Bound Field should default to 1. If it isn't 1, change it to 1.
Close the properties window and save your form. It should work as you want now.
If you want a listbox inside a tablegrid: after you create the table, with the form in edit mode, right-click on the column name you want to change and choose "Replace with" and then "listbox".
Edited to include comment by OP about bound field needing to be 1

CRM - 2015 - CheckBoxes

IS this possible to have check boxes in crm 2015 page (not through web resource) , I tried to implement couples of solution with js but did not work out. Any comments would be useful.
You can add checkboxes by creating fields of type two options. Then, add them to an entity form and in the field properties window, change the format to "checkbox".
Check this out: https://www.microsoft.com/en-US/dynamics/crm-customer-center/create-or-edit-entity-fields.aspx
Possible data types for a field
Two options
After creating this field, configure it in the form to which it was added. In the form, select whether the field is displayed as option buttons (also known as radio buttons), a check box, or a list.
Cheers.
In the Dynamics CRM entity form editor:
Click New Field button on the extreme down-right corner
Provide Name to the field
Set data type as Two options
Save the record
Drag this newly added field into the form from the right side field list
Click Change Properties in the menu bar
In the pop-up click the Formatting tab
Select Two radio buttons / Check box / List in the Control formatting section
Click OK

how to ignore subject field or define a default value for it,in a Microsoft dynamic crm Activity form

I create a new Activity in Microsoft dynamic CRM for sending SMS. but i dont need the "Subject" field in Activity Form and want to ignore it.
I tried to hide the subject field but is require field.
first i deselect the visible by default option in field property. after publish the customization i open the form and subject field has been hide. but when i pressed the Save button, activity form alert me You must provide a value for Subject. and show subject field.
how can i ignore Subject or define a default value for it?
You just need to change the requirement level.
On the form designer double click on the field. This will show you the Field Properties where the Visible by default checkbox is.
Click on the Details tab and then click the Edit button.
Here you can set the Requirement Level from Business Required to No Constraint.
Now you can hide the field from your form.
Save and Publish your customizations.
Your other option is using JavaScript.
On Load of the form you could use the following:
// Change the required level
Xrm.Page.getAttribute("subject").setRequiredLevel("none");
On Save you could use the following:
// Set a default value
Xrm.Page.getAttribute("subject").setValue("This is your default value");

Resources