How to send E-mail through JCL with 2 line title? - mainframe

Good afternoon,
I have a requirement that consists of sending an e-mail from a batch job which has a title which occupies 2 lines. Two lines named TITLE1 and TITLE2 were used in one of the attempts but it didn't work.
Are there any suggestions? I've visited several forums but with no success.
Thanks!

Related

VBA - Lotus Notes - Output Email History

I hope someone can put me on the right path, I have code that simply outputs emails received today into an excel spreadsheet by connecting to the database and then popping out the NotesDocument.Document items. Now what I cannot see within those items is reference to History as I'd like to be able to tell whether these output email have been replied to.
If anyone knows what I could look into or read to help me retrieve this information it would be greatly appreciated.
If you look at the (FollowUpMemoSubform) in the mail template, you will see that it contains this section.
The appearance of these lines is controlled by hide-when formulas that check for a NotesItem called $RespondedTo. The logic for the first line ("This message has been replied to") is
#IsNewDoc | !#IsAvailable(DeliveredDate) | !#IsAvailable(PostedDate) |
!#IsAvailable($RespondedTo) | !$RespondedTo="1"
The hide-when formulas for the other two lines are similar, but they are checking for "2" or "3".
The basic logic is: It's been replied to if $RespondedTo is 1 or 3. It's been forwarded if $RespondedTo is 2 or 3. The checks of DeliveredDate and PostedDate are there (I think) to exclude drafts. The check of #IsNewDoc is there for when you are composing a brand new message that has not yet been saved, but that's not an issue for you since those messages aren't in the NSF file so you'll never read them.

How do i write more complex code in Lotus Notes views

i currently work on a project where i have to write a programm which processes raw data from a
Notes Database into an excel file using Lotus Script. The Database contains time information about how long different devices have been lend out. The output from my script looks like this:
June
Device
Counter
Times(Minutes)
Times(Hours)
--------
--------------
--------------
--------------
TestDevice1
3
270
4,5
TestDevice2
2
210
3,5
I am finished with the programm itself, now i need to have the same Output inside a Lotus notes View. I am very new to lotus notes and i have no idea how to do this. I know that it is possible to use Lotus Formula to programm. But i cant find anything about the language and how to use it. Maybe someone here can help.
You can look at the online documentation provided by HCL "About Designing Views"
Pay particular attention to "Selecting which documents display in a view" and "Creating columns in a view" (and its subsection "
Adding programming to columns").
That should give you a few ideas of how to progress.
You can get close.
Make a view to display the Device, Counter, Times, and Times columns, unsorted.
Once you figure that out, create a new column that displays the month. (Hint: See #Text formula.)
Now change it to subcategorized by month by changing the month column to be the first column, and then edit the column properties to give it a width of 1 or 2, not resizable, and make it a category column with twisties shown.
This will get you close. Instead of the month followed by column titles followed by the data, you will get column titles followed by the month followed by the data per month.

Print List of Reports Found For Each Email

I have an assignment where I have over 1000 reports going out to tons of different emails together. I had to separate the emails receiving those reports into 9 different columns in this excel sheet because per report a random amount of people between 1-9 could receive it and I want to see which reports each email receives. I made a new sheet in which it has all emails listed from the 1-9 columns in one column and deleted duplicates. I am left with 79 emails. The 1000+ reports I have I want to show under each email individually. For example lets say one email address receives 25 of the reports I want it to find those reports and put them into another column next to the email receiving them so I can get a list for each email. Due to confidentiality reasons I can't upload the document but if you need more information I should be able to provide some.
I have messed with Hlookup and Vlookup but was unsuccessful.
I was trying code like =HLOOKUP(A2,'Find it EZ Report Schedule'!J:R,'Find it EZ Report Schedule'!A:A,FALSE)
It should have in column 1: email#email.com and column 2 should be Report 1 Report Two Report Three... etc.
Example Pictures to possibly help explain what I am wanting
This is a basic example of how the reports and emails receiving them looks except in a much larger amount than I showed in example.
In this sheet page I am trying to put each email and have it list each report it's receiving.
If this helps explain what I am trying to do let me know!

How do remove labels from 4000+ emails in Gmail?

I have never used Google Scripts or anything...but is there a quick hack to remove labels from 4000+ emails in my gmail account?
I accidentally put a Filter to attach a certain label to any email that was from myself....and the result was applied to several emails over the years.
I ended up deleting the label...and creating a new label with the same name using a different Filter criteria in the message body.
Changed from 4000+ mislabelled emails to just 600+.
Seems pretty obvious, but not at the time.

excel lookup that alters URL for web based data pull

I've been trying to figure this out for 5 days, searched this site, watched youtube tutorials, and it's just not coming together for me. I know very little excel and no visual basic.
I need to be able to pull specific info from a website and populate an excel sheet with that info.
User-entered data (the variable?) is an email address. I have a long list of email addresses. From this list I want to generate the web data pull.
My excel is currently set up as a form, Column 1=email, that is the info I have. What I want to pull is in columns 2-8: 2=id number, 3=first name, 4=last name, etc.
The site I am pulling from is an internal API, looks like: http://blah.web.blah.com/blah/blah/blah/emailAddress. This site displays each value that I seek as:
<id>12345</id>, <firstName>Joe</firstName>
The site has over 25 lines of info tagged like this, I am only interested in pulling 7 specific lines into the appropriate column and row, based on the email value in Column 1.
I can easily capture all 25+ lines of info, one at a time.
=HYPERLINK("blah.web.blah.com/blah/blah/blah/"&A3
I would prefer to do this as a batch where I paste the email addresses into Column 1 and walk away while the magic computer executes the batch.
...this seems like it should be easy, but I don't know how to do it and haven't found a solution that starts to function. And like a seasoned Russian once said, "What is hard? Everything you do not know."
If you have excel 2013 , you can use FilterXML function

Resources