Sunday 1 November 2015

Practical File Of C

November 01, 2015 Posted by Knowledge Bite , , No comments
INDEX
Sr.No.
Title
Signature
Date
1.
WAP TO PRINT A MESSAGE ON THE SCREEN


2.
WAP TO ADD TWO NUMBERS 


3.
WAP TO SUBTRACT  TWO NUMBERS 


4.
WAP TO MULTIPLY TWO NUMBERS 


5.
WAP TO DIVIDE TWO NUMBERS 


6.
WAP TO CALCULATE MODULUS OF TWO NUMBERS 


7.
WAP TO calculate area of circle


8.
WAP USING DO WHILE LOOP


9.
WAP USING WHILE LOOP


10.
WAP USING FOR LOOP


11.
WAP TO PRINT SUM OF FIRST 10 NATURAL NUMBERS


12.
WAP TO FIND GREATER OF TWO NUMBERS


13.
PROGRAM FOR SWITCH STATEMENT


14.
WAP TO DISPLAY AVERAGE OF N NUMBERSUSING ARRAY


15.
WAP FOR  CALL BY VALUE  USING  FUNCTION


16.
WAP FOR  CALL BY REFERENCE  USING  FUNCTION


17.
WAP FOR STRING CONCATENATION


18.
WAP FOR  COPY ONE STRING INTO ANOTHER


19.
WAP FOR STRING COMPARISION


20.
WAP TO CALCULATE LENGTH OF A STRING


21.
WAP TO PRINT FIRST 10 NATURAL NUMBERS USING 1D ARRAY


22.
WAP TO PRINT  ELEMENTS OF 2D ARRAY


23.
WAP TO IMPLEMENT  STRUCTURE


24.
WAP TO IMPLEMENT  STRUCTURE  POINTER


25.
WAP TO IMPLEMENT UNION IN C


26.
WAP TO COUNT CHARS, SPACES, TABS AND NEWLINES IN A FILE 


27.
WAP TO COPY ONE FILE INTO ANOTHER FILE








PROGRAM 1
AIM: WAP TO PRINT A MESSAGE ON THE SCREEN
 #include<stdio.h>
#include<conio.h>
void main()
{
printf("Welcome BCA 1st year students”);
getch();
}

Output:
Welcome BCA 1st year students

PROGRAM 2
AIM: WAP TO ADD TWO NUMBERS 
#include<stdio.h>
#include<conio.h>
void main()
{
int a,b,c;
clrscr();
printf("Enter the value of a and b \n");
scanf("%d%d",&a,&b);
c=a+b;
printf("SUM = %d”,c);
getch();
}

Output:
Enter the value of a and b
10
20
SUM = 30

PROGRAM 3
AIM: WAP TO SUBTRACT  TWO NUMBERS 
#include<stdio.h>
#include<conio.h>
void main()
{
int a,b,c;
clrscr();
printf("Enter the value of a and b \n");
scanf("%d%d",&a,&b);
c=a-b;
printf("SUBTRACTION = %d”,c);
getch();
}

Output:
Enter the value of a and b
20
10
SUBTRACTION = 10

PROGRAM 4
AIM: WAP TO MULTIPLY TWO NUMBERS 
#include<stdio.h>
#include<conio.h>
void main()
{
int a,b,c;
clrscr();
printf("Enter the value of a and b \n");
scanf("%d%d",&a,&b);
c=a*b;
printf("MULTIPLICATION = %d”,c);
getch();
}

Output:
Enter the value of a and b
10
20
MULTIPLICATION = 200

PROGRAM 5
AIM: WAP TO DIVIDE TWO NUMBERS 
#include<stdio.h>
#include<conio.h>
void main()
{
int a,b,c;
clrscr();
printf("Enter the value of a and b \n");
scanf("%d%d",&a,&b);
c=a/b;
printf("DIVISION = %d”,c);
getch();
}

Output:
Enter the value of a and b
20
10
DIVISION = 2

PROGRAM 6
AIM: WAP TO CALCULATE MODULUS OF TWO NUMBERS 
#include<stdio.h>
#include<conio.h>
void main()
{
int a,b,c;
clrscr();
printf("Enter the value of a and b \n");
scanf("%d%d",&a,&b);
c=a%b;
printf("MODULUS = %d”,c);
getch();
}

Output:
Enter the value of a and b
15
10
MODULUS = 5

PROGRAM 7
AIM: WAP TO CALCULATE AREA OF CIRCLE
#include<stdio.h>
#include<conio.h>
void main()
{
int r;
float a=3.14,area;
clrscr();
printf("to calculate area of circle \n");
printf("enter the value of r \n");
scanf("%d",&r);
area=a*r*r;
printf("area of the circle is %f,area);
getch();
}

Output:
to calculate area of circle
enter the value of r
2
area of the circle is 12.56






PROGRAM 8
AIM:WAP USING DO WHILE LOOP

#include<stdio.h>
#include<conio.h>
void main()
{
int i=1;
do
{
printf("i=%d",i);
i++;
}
while(i<=5);
getch();
}

OUTPUT:
i=1i=2i=3i=4i=5



PROGRAM 9
AIM:WAP USING WHILE LOOP

#include<stdio.h>
#include<conio.h>
void main()
{
int i=1;
while(i<=5)
{
printf("i=%d",i);
i++;
}
getch();
}

OUTPUT:
i=1i=2i=3i=4i=5

PROGRAM 10
AIM:WAP USING FOR LOOP

#include<stdio.h>
#include<conio.h>
void main()
{
int i;
for(i=1;i<=5;i++)
{
printf("i=%d",i);
}
getch();
}

OUTPUT:
i=1i=2i=3i=4i=5

PROGRAM 11
AIM : WAP TO PRINT SUM OF FIRST 10 NATURAL NUMBERS
#include<stdio.h>
#include<conio.h>
void main()
{
int i,sum=0;
clrscr();
for(i=1;i<=10;i++)
{
sum=sum+i;
}
printf("sum=%d",sum);
getch();
}

OUTPUT
sum=55

PROGRAM 12
AIM : WAP TO FIND GREATER OF TWO NUMBERS
#include<stdio.h>
#include<conio.h>
void main()
{
int a,b,g;
clrscr();
printf("to find greater of two numbers");
printf("enter the value of a and b\n");
scanf("%d%d\n",&a,&b);
if(a>b)
printf("a is greater than b\n");
else
printf("b is greater than a\n");
getch();
}

Output    to find greater of two numbers enter the value of a and b
45
80
b is greater than a





PROGRAM  13
AIM: PROGRAM FOR SWITCH STATEMENT
#include<stdio.h>
#include<conio.h>
void main()
{
int a,b,c,ch;
float d;
printf("choices are\n");
printf("\n 1. ADD");
printf ("\n 2. SUB");
printf("\n 3. DIV");
printf("\n 4. MUL");
printf("\n 5. Mod");
printf("enter the value of a and b");
scanf("%d%d",&a,&b);
printf("enter the choice");
scanf("%d",&ch);
switch(ch)
{
case 1:
c=a+b;
printf("c=%d",c);
break;
case 2:
c=a-b;
printf("c=%d",c);
break;
case 3:
c=a/b;
printf("c=%d",c);
break;
case 4:
c=a*b;
printf("c=%d",c);
break;
case 5:
c=a%b;
printf("c=%d",c);
break;
default:
printf("wrong choice entered\n");
}
getch();
}

Output   choices are
 1. ADD
 2. SUB
 3. DIV
 4. MUL
 5. mod enter the value of a and b 40
30
enter the choice 4
c=1200

PROGRAM 14
AIM: WAP TO DISPLAY AVERAGE OF N NUMBERSUSING ARRAY
#include<stdio.h>
#include<conio.h>
void main()
{

float data[5];
float total;
float average;
data[0]=34.0;
data[1]=27.0;
data[2]=45.0;
data[3]=82.0;
data[4]=22.0;
total=data[0]+data[1]+data[2]+data[3]+data[4];
average=total/5.0;
printf("%f%f\n",total,average);
getch();
}


OUTPUT  210.00000042.00000








PROGRAM  15
AIM: WAP FOR  CALL BY VALUE  USING  FUNCTION
#include<stdio.h>
#include<conio.h>
int sum (int,int);
void main()
{
int a=10,b=20,c;
c=sum(a,b);
printf("c=%d",c);
getch();
}
int sum(int x,int y)
{
int z;
z=x+y;
//printf("z=%d",z);
return(z);
}

Output    c=30



PROGRAM  16
AIM: WAP FOR  CALL BY REFERENCE  USING  FUNCTION
#include<stdio.h>
#include<conio.h>
void sum (int *,int *);
void main()
{
int a=10,b=20;
sum(&a,&b);
getch();
}
void sum(int *x,int *y)
{
int z;
z=*x+*y;
printf("z=%d",z);
//return(Z);
}

Output  z=30

PROGRAM  17
AIM: WAP FOR STRING CONCATENATION
#include<stdio.h>
#include<conio.h>
#include<string.h>
void main()
{
char a[20],b[10];
clrscr();
puts("enter the first string");
gets(a);
puts("enter the second string");
gets(b);
strcat(a,b);
puts("after concatenation of string");
puts(a);
getch();
}

OUTPUT  
enter the first string
abc
enter the second string
xyz
after concatenation of string
abcxyz


PROGRAM 18
AIM: WAP FOR  COPY ONE STRING INTO ANOTHER
#include<stdio.h>
#include<conio.h>

#include<string.h>
void main()
{
char a[10],b[10];
clrscr();
puts("enter the string a");
gets(a);
strcpy(b,a);
puts("After copying string b=");
puts(b);
getch();
}

OUTPUT
enter the string a
abc
After copying string b=
Abc





PROGRAM 19
AIM: WAP FOR STRING COMPARISION
#include<stdio.h>
#include<conio.h>
#include<string.h>
void main()
{
char a[10],b[10];
int i;
clrscr();
puts("enter the string a");
gets(a);
puts("enter the string b");
gets(b);
i=strcmp(a,b);
if(i==0)
puts("both string are equal");
else if(i>0)
{
puts("string a is greater than string b");
}
else if (i<0)
{
puts("string b is greater than string a");
}
getch();
}
OUTPUT
enter the string a
abc
enter the string b
xyz
string b is greater than string a
PROGRAM 20
AIM : WAP TO CALCULATE LENGTH OF A STRING
#include<stdio.h>
#include<conio.h>
#include<string.h>
void main()
{
char a[20];
int l;
clrscr();
puts("enter any string:");
gets(a);
l=strlen(a);
printf("total number of character=%d",l);
getch();


OUTPUT
enter any string:
abcxyz
total number of character=6


PROGRAM  21
AIM : WAP TO PRINT FIRST 10 NATURAL NUMBERS USING 1D ARRAY
#include<stdio.h>
#include<conio.h>
void main()
{
int a[10];
int i;
clrscr();
printf("Enter array elements\n");
for(i=0;i<9;i++)
{
scanf(“%d”,&a[i]);
}
printf("The array elements are : \n");
for(i=0;i<9;i++)
{
printf(“%d  ”,a[i]);
}
getch();
}

OUTPUT
The array elements are :
1 2 3 4 5 6 7 8 9 10





PROGRAM 22
AIM : WAP TO PRINT  ELEMENTS OF 2D ARRAY
#include<stdio.h>
#include<conio.h>
void main()
{
int a[2][2];
int i,j;
clrscr();
printf("Enter the array elements \n");
for(i=0;i<2;i++)
{
for(j=0;j<2;j++)
{
scanf("%d",&a[i][j]);
}
printf("The array elements are : \n");

for(i=0;i<2;i++)
{
for(j=0;j<2;j++)
{
printf("%d \t",a[i][j]);
}
printf("\n");
}
getch();
}





OUTPUT
Enter the array elements
1 2
3 4
The array elements are :
1 2
3 4
 PROGRAM 23
AIM : WAP TO IMPLEMENT  STRUCTURE
#include<stdio.h>
#include<conio.h>
#include<string.h>
struct student
{
char name[20];
int age,rollno;
}s1;
void main()
{
clrscr();
strcpy(s1.name,"ram");
s1. age=18;
s1.rollno=281;
printf("details of student s1:\n");
printf("student name=%s\n age=%d\n rollno=%d\n",s1.name,s1.age,s1.rollno);
getch();
}

Output 
details of student s1:
student name=ram
 age=18
 rollno=281



PROGRAM 24
AIM : WAP TO IMPLEMENT  STRUCTURE  POINTER
#include<stdio.h>
#include<conio.h>
#include<string.h>
void main()
{
struct student
{
char name[20];
int age,rollno;
}s1;
clrscr();
strcpy(s1.name,"ram");
s1. age=18;
s1.rollno=281;
struct student *st;
st=&s1;
printf("details of student s1:\n");
printf("student name=%s\n age=%d\n rollno=%d\n",st->name,st->age,st->rollno);
getch();
}

Output 
details of student s1:
student name=ram
 age=18
 rollno=281


PROGRAM 25
AIM:  WAP TO IMPLEMENT UNION IN C
# include<stdio.h>
# include<conio.h>
void  main()
{
union a
{
int  I;
char ch[2];
};
union a key;
key.i=5;
printf(“key.i = %d \n”, key.i);
printf(“key.ch[0] = %d \n”, key.ch[0]);
printf(“key.i = %d \n”, key.ch[1]);
getch();

OUTPUT
Key.i=5
Key.ch[0]=0
Key.ch[1]=2

PROGRAM 26
AIM:  WAP TO COUNT CHARS, SPACES, TABS AND NEWLINES IN A FILE 
#include<stdio.h>
int main()
{
 FILE *fp;
 char ch;
 int nol=0, not=0, nob=0, noc=0;
 fp=fopen("pr1.c","r");
 while(1)
{
 ch=fgetc(fp);
 if(ch==EOF)
 break;
 noc++;
 if(ch=='')
  nob++;
 if(ch=='\n')
  nol++;
 if(ch=='\t')
  not++;
}
fclose(fp);
printf("number of characters = %d\n", noc);
printf("number of blanks = %d\n",nob);
printf("number of tabs = %d\n",not);
printf("number of lines = %d\n",nol);
}

OUTPUT
number of characters = 15
number of blanks = 5
number of tabs = 2
number of lines = 2


PROGRAM 27
AIM:  WAP TO COPY ONE FILE INTO ANOTHER FILE
#include<stdio.h>
#include<stdlib.h>
int main()
{
 FILE *fs, *ft ;
 Char ch;
fs=fopen (“pr1.c”,”r”);
If (fs==NULL)
{
puts (“cannot open source file”);
exit(1);
}
ft=fopen (“pr2.c”,”w”);
if(ft==NULL)
{
puts (“cannot open target file”);
fclose(fs);
exit(2);
 }
While(1)
{
Ch=fgetc(fs);
If(ch==EOF)
break;
else
fputc(ch,ft);
}
fclose(fs);
fclose(ft);
return 0;
}


Friday 15 August 2014

Some Selected Finacle Menu Commands

August 15, 2014 Posted by Knowledge Bite , No comments

SL COMMANDS/MENUS Function of the Finacle Menu
1. AALI A/c Abnormal Limits/Details Inquiry
2. ABMR Report of Accounts Below Min Balance
3. ACCBAL Components of Account Balance Inquiry
4. ACDET Account Balance Details
5. ACI Customer Accounts Inquiry
6. ACLI Account Ledger Inquiry
7. ACLPCA Customer Account Ledger Print
8. ACLPOA Office Account Ledgers Print
9. ACMP Account Master Print
10. ACSP Account Selection Print
11. ACTI Account Turnover Inquiry
12. ACTODI Account TOD Inquiry
13. ADVC Print DR/CR Advice to Customer
14. AFI Audit File Inquiry
15. AFINQU Audit File Inquiry
16. AFP Audit File Print
17. AICR Advanced Interest Collected Report- Bills
18. AINTRPT Interest Report For Accounts
19. AITINQ Account Interest Details Inquiry
20. ALMSP Agricultural Loans Master Sheet Print
21. ASTI Amount-slab Table Inquiry
22. ATI Abnormal Transactions Inquiry
23. ATMBRPT Balances outstanding in MBBCASH001,ATMCASH001, ATMTEMP001 where balancenot equal to ZERO.
24. BDTR Bills due Today report.
25. BEHI Bills Events History Inquiry
26. BGCLOSE GUARANTEE CLOSE REGISTER PRINTING
27. BGPRINT GUARANTEE PRINTING
28. BI Bills Inquiry
29. BICR Bills Interest Collected Report
30. BICS Bills Collection Schedule
31. BKTI Bank Table Inquiry
32. BR Balancing Report
33. BRBPR BALANCING REPORT BILLS PURCHASED
34. BRCR BALANCING REPORT BILLS COLLECTION
35. BRRBPR Bills Register Report - Bills Purchased
36. BRRCR Bills Register Report - Collection Inward/Outward
37. BRTI Branch Table Inquiry
38. CALLRPT 1 Call over Report for SB and CA Accounts
39. CALLRPT 11 Payslip reconciliation/outstanding Report
40. CALLRPT 12 Interest certificate Only for TDR for a givencust_id.
41. CALLRPT 14 Inward Clearing File Generation
42. CALLRPT 15 Statement of Service Tax
43. CALLRPT 16 Statement of PPF Transactions
44. CALLRPT 17 BCTT Download for a Branch
45. CALLRPT 18 BCTT Consolidation for Zonal Offices
46. CALLRPT 2 Call over Report for CC and OD Accounts
47. CALLRPT 3 Call over Report for Loan Accounts
48. CALLRPT 4 Call over Report for TDA Accounts
49. CALLRPT 5 Call over Report for DD
50. CALLRPT 6 Call over Report for office Accounts
51. CALLRPT 7 Accounts with interest table code Zero/ZeroL
52. CALLRPT 8 TDS details for a given Cust-Id
53. CALLRPT 9 Interest details for a given Sol-Id.
54. CBM Customer Becoming Major
55. CHGIR Charges Income Report
56. CHRGADV CHARGE ADVICE PRINTING
57. CTI Calendar Table Inquiry
58. CUACLI Inquire on Your Account Ledger Entries
59. CUBI Bills Inquiry
60. CULAC Customer Accounts List
61. CULI Customer Unutilised Limit Inquiry
62. CUMI Customer Master Inquiry
63. CUS Customer Selection
64. CUSTBALP CUSTomer BALance Printing
65. DCEXPLST REPORT ON DC EXPIRED
66. DCLIABRG DC LIABILITY REGISTER
67. DCQRY Document credit Query
68. DCQRYP Documentary Credits Query Printing
69. DCREG Documentary Credits Register Printing
70. DCRPTS DC REPORTS AND ADVICES
71. DDIC DD Credits Inquiry
72. DDID DD Debits Inquiry
73. DDII Specific DD Issued Inquiry
74. DDIP Specific DD Paid Inquiry
75. DDIR DD Issue Reports
76. DDP A-> DD Issued Summary
77. DDP B-> DD Issued Register
78. DDP C-> DD Paid Summary
79. DDP D-> DD Paid Register
80. DDP E-> DD Cancellation & Rectification Summary
81. DDP F-> DD Cancellation & Rectification Register
82. DDP G-> DD Consolidated Summary
83. DDP H -> All Summarys A,C,E,G
84. DDP I -> All Registers B,D,F
85. DDP J -> All Summaries & Registers
86. DDP2 A -> Drafts Issued Schedule
87. DDP2 B -> Drafts Issued Register
88. DDP2 C -> Drafts Paid Schedule (other than Ex-advice)
89. DDP2 D-> Drafts Paid Register (other than Ex-advice)
90. DDP2 E-> Drafts Paid Ex-advice Schedule
91. DDP2 F-> Drafts Paid Ex-advice Register
92. DDP2 G-> Drafts Reversing Debits Schedule
93. DDP2 H-> Drafts Reversing Credits Schedule
94. DDP2 I-> Drafts A/c Schedule
95. DDP2 J-> All Schedules A,C,E,G,H,I
96. DDP2 K All Registers B,D,F
97. DDP2 L All Schedules & Registers J,K
98. DDPALL Print all unprinted DDs
99. DDPRNT Print a DD
100. DDREPRNT Reprint a DD/ Print advice
101. DDXFER Advice of Drawing Printing
102. DEPINT Interest calculator for deposits
103. DEPMOD Deposit Modeling
104. DRP Deposits Receipt Print
105. DTCS Display Tran Code Summary
106. DTR Deposit Transactions Report
107. DUDRP Deposits Receipt Print [Duplicate]
108. ECGCRPC ECGC PREMIUM REPORT FOR RPC
109. EFI Employee File Inquiry
110. EXCPRPT Exceptions Report
111. FBADVP FOREIGN BILLS ADVICE PRINT
112. FBBR FOREIGN BILLS BALANCING REGISTER
113. FBCS Foreign Bills Covering Schedule
114. FBECGC ECGC PREMIUM REPORT FOR BILLS
115. FBHI Foreign Bills History Inquiry
116. FBI Foreign Bills Inquiry
117. FBP Foreign Bills Printing
118. FBRPR Reserve Payment Register
119. FI Fate Inquiry
120. FOIQ FAB Outward Clearing Instrument Inquiry
121. FTI Financial Transactions Inquiry
122. FTR Financial Transactions Inquiry & Report
123. FTR Financial Transactions Inquiry & Report
124. FWCHI Forward Contract History Inquiry
125. FWCLIAB Forward Contract Liability Register
126. FWCODLST List of Overdue and Matured FC
127. FWCQRY Query on FC
128. GDET General Deposits Details
129. GDET General Deposits Details
130. GI Guarantee Inquiry
131. GILR Guarantees Issued cum Liabilty Register
132. GP Guarantee Printing
133. GPI Guarantee Parameters Inquiry
134. GSPI General Scheme Parameters Inquiry
135. GURFIMU Reference File Inquiry Menu
136. HACCBAL Balance details of an Account
137. HACCBAL Balance details of an Account
138. HACCDET General Details
139. HACCDET General Details
140. HACIMU CRV - Account Level Menu
141. HACLHI Limit Details
142. HACLI Transactions Inquiry
143. HACS Account Selection
144. HACTI Account turnover details
145. HADVC Print DR/CR Advice to Customer
146. HAITINQ Account Interest Details Inquiry
147. HBKQRY Bank Level Query Option
148. HCELI Collateral Entity Linkage Inquiry
149. HCRVMU Customer Relationship View- Main Menu
150. HCUACC Accounts of Customer
151. HCUCA Current Account of Customer
152. HCUCC Cash Credit of Customer
153. HCUDET General details of Customer
154. HCUIMU CRV - Customer Level Menu
155. HCULA Loan Accounts of Customer
156. HCUMAT Forthcoming Maturities of Customer
157. HCUOD Overdraft Accounts of Customer
158. HCUPSD Portfolio details of Customer
159. HCUS Customer Selection
160. HCUSB Savings Account of Customer
161. HCUSEL Customer Selection
162. HCUSUM Summary details of Customer
163. HCUSWP Sweep details of Customer
164. HCUTD Term Deposits of Customer
165. HCUTI Turnover Summary of Customer
166. HDCDET Delivery Channel transaction details
167. HFTI Financial Transactions Inquiry
168. HICI Inward Cheques Inquiry
169. HII Hot Items Inquiry
170. HINTCI Interest Table Code Inquiry
171. HINTTI Interest Rate Details Inquiry
172. HIOGLT Inquire on GL Transactions
173. HIOT Inquire on Transactions
174. HLAGI Loan Account General Inquiry
175. HLAI Loan Inquiry
176. HLAMOD Loan Modelling
177. HLAOPI Loans Overdue Position Inquiry
178. HLAPSP Loan Account Pass Sheet Print
179. HLARSH Loans Repayment Schedule Report
180. HM Help Maintenance
181. HOCI Outward Cheques Inquiry
182. HOCIP HOC Inquiry cum BA(R) Print
183. HOCIP HOC Inquiry cum BA(R) Print
184. HODBCH Bill and Collection History Details
185. HOIQ Outward Clearing Instrument Inquiry
186. HOPQ Outward Clearing Ptran Inquiry
187. HPARTINQ Inquiry on Partitioned Account
188. HPBP Passbook Print
189. HPSP Pass Sheet Print
190. HRTHQRY Ratelist History Query
191. HTD Term deposit transaction details
192. HTDINT Term deposit interest details
193. HTDSIP TDS Inquiry & Printing
194. HTDSIP TDS Inquiry & Printing
195. HTDTAX Term deposit tax deduction details
196. HTFIN Customer Trade Finance Inquiry
197. HTINQ Hot Items Lookup
198. HTODCS TOD Criteria and Selection
199. IBADVP CUSTOMER ADVICE INLAND BILLS
200. IMI Inventory Movement Inquiry
201. IMR Inventory Movement Report
202. INQACHQ Inquire Account Number for a Cheque
203. INTCERT Interest Certificate Print
204. INTSI Interest Slab Inquiry
205. INTTI Interest Table Inquiry
206. IOCLS Inquire On Clearing Transaction Sets
207. IOGLT Inquire on GL Transactions
208. IOT Inquire on Transactions
209. ISAR Inter Sol Audit Report
210. ISI Inventory Inquiry Split and Merge-EM
211. ISIA Inventory Inquiry Split and Merge
212. ISTR Inter Sol Transaction Report
213. ITCI Interest Table Code Inquiry
214. ITI Instruments Table Inquiry
215. LAGI Loans General Inquiry
216. LAITCI Loan Interest Table Code Inquiry
217. LAOPI Loans Overdue Position Inquiry
218. LAPSP Loan Account Pass Sheet Print
219. LLIR Limit Liability Inquiry/Report
220. LLIR Limit Liability Inquiry/Report
221. LNDI Limit Node Details Inquiry
222. LNHTIR Limit Node History/Tran Inquiry/Report
223. LNHTIR Limit Node History/Tran Inquiry/Report
224. LNI Limit Node Inquiry
225. LVSI Loan Interest Version Slabs Inquiry
226. MNTPST Maintain PST Table (Modify & Inquiry)
227. NEWOLDAC NEW OLD ACCOUNT
228. OIQ Outward Clearing Instruments Inquiry
229. OPQ Outward Clg Part Tran Inquiry
230. OTRINQ Offline Transaction Inquiry
231. PARTINQ Inquiry on Partitioned Account
232. PBP Pass Book Print
233. PCLSO Print Clearing Schedule
234. PDADI Past Due A/c Details Inquiry And Report
235. PDML Print/Display Media List
236. PENDDRP Pending Deposits Receipt Print
237. PHINQ Inquiry on History of Partition A/c
238. PICS Print Inward Clearing Schedule
239. PICW Print Inward Clearing Waste
240. PLIST Pending Installments List - Recurring Deposits
241. PLIST Pending Installments List
242. PLR PARTY WISE LIABILITY REGISTER FOR PC
243. PRR25 PRR25 Report of rejected cheques
244. PRR38 Statement of Daily Cash Position
245. PRRTL Ratelist Printing
246. PRTINQ Print Queue Inquiry
247. PSR32 Sanction Limits For Accounts based on Sector &Sub-sector codes
248. PTW 1 Full Transfer Waste
249. PTW 12 System Generated Transactions
250. PTW 2 Only Verified Transaction
251. PTW 3 Only Unposted Transaction
252. PTW 4 Only Unverified Transaction
253. QBR Quick Balancing Report
254. RBTI Register Table Balance Inquiry
255. RDD Ratewise Distribution of Deposits
256. REDRP Reprint Deposits Receipt
257. REJREP Rejected Instruments Report/Advice
258. RENHIST TD Renewal History Details
259. RINTINQ Interest Inquiry For RPC Accounts
260. RINTRPT RPC ACCOUNT INTEREST REPORT
261. RPCRPT RPC ACCOUNT REPORT
262. RRCDI Reference Code Inquiry
263. RTHQRY Ratelist History Query
264. RTHQRY Ratelist History Query
265. SCWRPT Shroff Cash Report
266. SCWRPT A Shrof Cash Rpt-All
267. SDD Schemewise Distribution of Deposits
268. SEL Superceding Expired Limits
269. SEL Superceding Expired Limits
270. SIETR SIs Executed Today Report
271. SII Standing Instructions Inquiry
272. SIRP Standing Instructions Register Printing
273. SMI Swift Messages Inquiry
274. SPRG Stop Payment Register
275. TCPI Teller Wise Cash Position Inquiry
276. TCPIA Teller Wise Cash Position Inquiry / All
277. TDSIP TDS Inquiry & Printing
278. TEI T Transactions Exceptions Inquiry
279. TI Transactions Inquiry
280. TODCS TOD Criteria and Selection
281. TODRP TOD Register Printing
282. TRANINQ Tran Inquiry
283. TRANLIST Tran list display
284. TRTRI Treasury Transaction Report and Inquiry
285. TVSI Term Deposits Interest Slabs Inquiry
286. VCHR Print DR/CR Voucher

Finacle Function Keys with their functions

August 15, 2014 Posted by Knowledge Bite , No comments
Functional Keys

Functions

F1

Field level HELP

F2

LIST the codes that may be used in a particular field.

F3

QUIT or BACK

SHIFT+F3

To completely QUIT and brings back to the main menu

F4

ACCEPT

F5

BACKGROUND Menu (very useful key especially when you are in the middle of a transaction and in the meantime you are required to visit some other menu)

F6

NEXT BLOCK (or swap between screens)

F8

Copy a record

F9

Display SIGNATURE

F10

COMMIT (perhaps the most important key for it updates the record in the database)

F11

NEXT FIELD

F12

PREVIOUS BLOCK

TAB

Go to NEXT valid FIELD

SHIFT+TAB

Go to PREVIOUS valid FIELD

CNTRL+DOWN ARROW

NEXT RECORD

CNTRL+UP ARROW

PREVIOUS RECORD

CNTRL+F9

MEMO pad look up

CNTRL+U

PAGE UP list

CNTRL+D

PAGE DOWN list

CNTRL+E

EXPLODE (For further inquiring)

CNTRL+F

CLEAN a field

CNTRL+X

CURRENT DATE (or BOD). Also in case of an amount field it displays the highest value