Hello Friends,
I have a file whose contents I have to read and is iven below:
==============================
Request Number: 000248
Priority: Medium
Request Area: Accounting
Brief Description:
Add the account number/s to the automatic product verification emails.
Please enter a short description of the
request.
This is related to SR #000230. The account number is a useful information
for our RAPID Users
when they research on what is being requested in the RAPID Product
Receipt Verification email.
Business
Objectives
This is an enhancement of the email text that aims to facilitate getting
responses from our RAPID
users. In turn, RAPID Accounting is able to accomplish more effectively
and efficiently the purpose
of the product verification sampling report in a shorter time possible.
How will it be determined that the business objectives have been
satisfied?
When the turnaround time shows a significant improvement and the number of
responses gets
higher, it means that our business objectives are getting met.
Who will be responsible for performing the
measurements?
RAPID Accounting will be responsible for performing the measurements.
What are the requirements for this
request?
To make this enhancement possible, resource and time allotted by RAPID IT
will be needed.
Describe what benefits will be derived from this
request.
RAPID Accounting business controls will be benefited by this request.
RAPID Users will more likely
respond to the verification request and therefore ensure that any issues
are resolved as quickly as
possible.
===================
I want to read selected data from this file.
for e.g.
Business
Objectives
and then the next one is:
How will it be determined that the business objectives have been
satisfied?
but if you see Business Objectives is in 2 lines.
I want to read data between Business Objectives and
next record which is: How will it be determined that the business objectives have been
satisfied?
The problem is Business Objectives is split in 2 lines.
I tried following code but it gets the pattern line also which i don't want.
#/Objectives/ , /^$/ {next; print}
#/Priority:/ {print $2}
#/satisfied?/ , /^$/ {print}
#/Author/{print $2 " " $3}
#/Creation Date/{print $6}
Please help how can i do this task. This is rather urgent. Please help as soon as possible.
Thanks
I have a file whose contents I have to read and is iven below:
==============================
Request Number: 000248
Priority: Medium
Request Area: Accounting
Brief Description:
Add the account number/s to the automatic product verification emails.
Please enter a short description of the
request.
This is related to SR #000230. The account number is a useful information
for our RAPID Users
when they research on what is being requested in the RAPID Product
Receipt Verification email.
Business
Objectives
This is an enhancement of the email text that aims to facilitate getting
responses from our RAPID
users. In turn, RAPID Accounting is able to accomplish more effectively
and efficiently the purpose
of the product verification sampling report in a shorter time possible.
How will it be determined that the business objectives have been
satisfied?
When the turnaround time shows a significant improvement and the number of
responses gets
higher, it means that our business objectives are getting met.
Who will be responsible for performing the
measurements?
RAPID Accounting will be responsible for performing the measurements.
What are the requirements for this
request?
To make this enhancement possible, resource and time allotted by RAPID IT
will be needed.
Describe what benefits will be derived from this
request.
RAPID Accounting business controls will be benefited by this request.
RAPID Users will more likely
respond to the verification request and therefore ensure that any issues
are resolved as quickly as
possible.
===================
I want to read selected data from this file.
for e.g.
Business
Objectives
and then the next one is:
How will it be determined that the business objectives have been
satisfied?
but if you see Business Objectives is in 2 lines.
I want to read data between Business Objectives and
next record which is: How will it be determined that the business objectives have been
satisfied?
The problem is Business Objectives is split in 2 lines.
I tried following code but it gets the pattern line also which i don't want.
#/Objectives/ , /^$/ {next; print}
#/Priority:/ {print $2}
#/satisfied?/ , /^$/ {print}
#/Author/{print $2 " " $3}
#/Creation Date/{print $6}
Please help how can i do this task. This is rather urgent. Please help as soon as possible.
Thanks