Showing posts from May, 2024

BI Publisher Report

1. Grand/Group Sum Advanced : <?sum(current-group()/ DEBIT [.!=''])?> Group Amount in Word: <?xdoxslt:toWordsAmt(sum(current-group()/ DEBIT [.!='']))?> taka only. ------------ Advanced :  <?sum( DEBIT [.!=''])?…

Time Column Design in classic/IR Report

SELECT EMPNAME,ZONE_NAME, case when ATTN_IN IS NOT NULL then '<span class="info" style=" text-align: center; letter-spacing: .3px; display: inline-block;padding: 0.4rem 0.66666667rem;line-height: 1;padding-right: 0.6em;padding-…

HTML Report

Step-1: ===== Create Report Parameter Items. And Create Region PLSQL Dynamic Container. PLSQL Code : htp.p('   <!--div id="div_print2" align="left"-->');    HTP.P('<div id="printableArea" style=&quo…

Show And Hide Details List from Master Data

Step-1: ===== Create Classic/IR Report For Master. (Department List) SQL Query : Select  A.DEPARTMENT_ID,  A.DEPARTMENT_NAME,  NVL(B.QTY,0) QTY,  A.DEPARTMENT_ID report FROM DEPARTMENTS Step-2: ===== Create Item :  P9_DEPT_ID_FOR_EMP_LIST And Creat…

Classic Report Table Design By HTML Expression

Step-1: Create Classic Report. SQL Query : Select   EMPLOYEE_ID  ,  DEPARTMENT_ID  ,  FULLNAME  ,  EMAIL  ,  PHONE1  ,  PHONE2 ,  NID  ,  PERMANENT_ADDRESS  ,  PRESENT_ADDRESS  ,  BASIC_SALARY  ,  null X From   EMPLOYEES  WHERE EMPLOYEE_ID= 1003 Ste…

Button Style

Step : 1  ===== Create Button Step : 2 ===== Go to Page Inline CSS -->> #retailbtn , #camp , #gold , #order , #delivery , #retailsales {     height: 80px;     width: 100%; } #retailbtn,#retailsales {         border-radius: 12px;     cursor: p…

Report with Form create Same Page

Step: 1 ===== Create IR Report And Entry Form Same Page. Step: 2 ===== Select Entry Form. Appearance :    Template : Inline Dialog Step: 3 ===== Create Button. (New Entry) Dynamic Action:     Name :  New_Department_entry    Event : Click True Actio…

Link Report to from by java-script in HTML Expression

Select Report Region PK id Column (Ex: Department_Id) HTML Expression : <a href="javascript:$s( 'P9_DEPARTMENT_ID ','# DEPARTMENT_ID #'),$s(' P9_DEPARTMENT_NAME ','# DEPARTMENT_NAME #')"># DEPARTMENT_I…

Dashboard And Report Show

Step : 1  ====== Create PL/SQL Dynamic Content. PL/SQL Code : HTP.P('<!--DOCTYPE html-->'); HTP.P('<html lang="en" dir="ltr">');   HTP.P('<head>');     HTP.P('<meta charset="U…

Load More
That is All