As of December 1, 2020, Focal Point is retired and repurposed as a reference repository. We value the wealth of knowledge that's been shared here over the years. You'll continue to have access to this treasure trove of knowledge, for search purposes only.
Join the TIBCO Community TIBCO Community is a collaborative space for users to share knowledge and support one another in making the best use of TIBCO products and services. There are several TIBCO WebFOCUS resources in the community.
From the Home page, select Predict: WebFOCUS to view articles, questions, and trending articles.
Select Products from the top navigation bar, scroll, and then select the TIBCO WebFOCUS product page to view product overview, articles, and discussions.
Request access to the private WebFOCUS User Group (login required) to network with fellow members.
Former myibi community members should have received an email on 8/3/22 to activate their user accounts to join the community. Check your Spam folder for the email. Please get in touch with us at community@tibco.com for further assistance. Reference the community FAQ to learn more about the community.
Employee Details
------------------------------------------------------------------------
Emp ID : 112847612 HireDate : 01/07/81
Name : Mary_Smity CJob Code: B14
Dept : Mis Skils : FIQU
Job Des: File Quality
Skils Des:Insure File Integrity
Bank Acct: --
Bank Code: --
Bank Name: --
CurSal : $13,200.00
Can any please help me by giving sample code with
TABLE FILE EMPLOYEE
PRINT
EMP_ID
COMPUTE NAME/A100=FIRST_NAME||'_'||LAST_NAME ;
HIRE_DATE
DEPARTMENT
CURR_SAL
CURR_JOBCODE
BANK_NAME
BANK_CODE
BANK_ACCT
JOB_DESC
SKILLS
SKILL_DESC
WHERE EMP_ID EQ '112847612'
END
This message has been edited. Last edited by: Deepu,
Step 1 :- TABLE FILE EMPLOYEE PRINT EMP_ID COMPUTE NAME/A100=FIRST_NAME||'_'||LAST_NAME ; HIRE_DATE DEPARTMENT CURR_SAL CURR_JOBCODE BANK_NAME BANK_CODE BANK_ACCT JOB_DESC SKILLS SKILL_DESC WHERE EMP_ID EQ '112847612' ON TABLE HOLD AS HLD_EMPDTL END -RUN
TABLE FILE HLD_EMPDTL
EMP_ID/A20 NAME/A100 HIRE_DATE/A20 DEPARTMENT/A20 CURR_SAL/A20 CURR_JOBCODE/A20 BANK_NAME/A20 BANK_CODE/A20 BANK_ACCT/A20 JOB_DESC/A20 SKILLS/A20 SKILL_DESC/A20 ON TABLE SAVE AS HLD_EMPDTLF END -RUN
SET PAGE=NOPAGE
SET HTMLCSS = ON
DEFINE FILE EMPLOYEE
COLON/A1 = ':';
SEPERATOR/A1 = '';
NAME/A100 = FIRST_NAME||'_'||LAST_NAME ;
END
TABLE FILE EMPLOYEE
HEADING
"Employee Details "
PRINT
COLON AS 'Emp_id'
EMP_ID AS ''
SEPERATOR AS ''
COLON AS 'Hiredate'
HIRE_DATE AS '' OVER
COLON AS 'Name'
NAME AS ''
SEPERATOR AS ''
COLON AS 'Jobcode'
CURR_JOBCODE AS '' OVER
WHERE EMP_ID EQ '112847612';
ON TABLE PCHOLD FORMAT EXL2K
ON TABLE SET STYLE *
TYPE=HEADING, SIZE=14, STYLE=BOLD,$
TYPE=REPORT ,UNITS=PTS ,FONT='VERDANA', SIZE=8 ,$
TYPE=REPORT ,BORDER=0 ,BORDER-COLOR=RGB(210 210 210) ,$
TYPE=DATA ,TOPGAP=2 ,BOTTOMGAP=2 ,$
TYPE=DATA ,COLUMN=SEPERATOR, WIDTH=60,$
ENDSTYLE
END