Apex Project Creation
1. Create new project and select desktop application then click next button.
2. Creation application select the below fileds.
user interface : Desktop
schema : XXIP
Name : project name
Application : 104
Theme : select your interested themes
If you need then select Theme style.
3. Add the new page from the existing main page. if you need any shared components to import this project then select yes radio button otherwise no. Finally application was created.
4. In Home page create one region and select type is classic report and write a query in the sql block.
SELECT DISTINCT PROPOSAL_TYPES as "Proposal Types",PROPOSAL_TYPE_ID as "Proposal Codes",
apex_item.checkbox(1,PROPOSAL_TYPES)"Check"
FROM XXMAP_PROPOSAL_QUESTIONS
5. Select column level check column and go to the security field and then select for "NO" Escape the special character for check box.
6. If you need column level also check box then enter the Header place enter the below code.
heading => <input type = "checkbox"onclick="$f_CheckFirstColumn(this)">
7. Create the button under the region then type the button name and title and also select the button position(Top and bottom of the region).
8. Then create a page processing under create a processes. write the plsql code for the relevant block.
then move to the server side condition then select the button.
/
Login page and security phase authentication
1. To upload the company logo and backend images to the share point
go to the share point -> files -> static workspace files
to upload a file and take the reference characters.
2.Go to the login page under filter properties -> css -> Inline paste the css code
3. select the content body region and enter the title place below code.
<h style="font-size:35px;font-family:Cooper;color:white;"> Clinigen Mapping Proposal</h>
In title logo if you want to display null then use below syntax
<span style="display:none">background name </span>
4. select the user name filed and go to the appearance filed in filtered option select the value placeholder column update the required water mark.
5. if you want to disable the login symbol then go to the appearance field in content body region select the template option and uncheck the use template default. then go to the region select content body and go to the appearance and empty the icon css classes
6. security authentication go to the sharedcomponents and select the security -> Authentication schema then create the authentication. to use below function in custom
Function xx_login_fn(p_username IN varchar2
,p_password IN varchar2
)
return boolean
As
xx number := 0;
Begin
select 1 into xx
from XXMAP_USERS
where upper(USER_NAME) = upper(p_username)
and PASSWORD = p_password;
return true;
Exception
when NO_DATA_FOUND THEN
Return FALSE;
end;
/////
7. After create process button go to the next page below are the changes are required
Create a branches _> Exicute options == point = After processing
Behavior --- type = page or url
1. Create new project and select desktop application then click next button.
2. Creation application select the below fileds.
user interface : Desktop
schema : XXIP
Name : project name
Application : 104
Theme : select your interested themes
If you need then select Theme style.
3. Add the new page from the existing main page. if you need any shared components to import this project then select yes radio button otherwise no. Finally application was created.
4. In Home page create one region and select type is classic report and write a query in the sql block.
SELECT DISTINCT PROPOSAL_TYPES as "Proposal Types",PROPOSAL_TYPE_ID as "Proposal Codes",
apex_item.checkbox(1,PROPOSAL_TYPES)"Check"
FROM XXMAP_PROPOSAL_QUESTIONS
5. Select column level check column and go to the security field and then select for "NO" Escape the special character for check box.
6. If you need column level also check box then enter the Header place enter the below code.
heading => <input type = "checkbox"onclick="$f_CheckFirstColumn(this)">
7. Create the button under the region then type the button name and title and also select the button position(Top and bottom of the region).
8. Then create a page processing under create a processes. write the plsql code for the relevant block.
then move to the server side condition then select the button.
/
Login page and security phase authentication
1. To upload the company logo and backend images to the share point
go to the share point -> files -> static workspace files
to upload a file and take the reference characters.
2.Go to the login page under filter properties -> css -> Inline paste the css code
3. select the content body region and enter the title place below code.
<h style="font-size:35px;font-family:Cooper;color:white;"> Clinigen Mapping Proposal</h>
In title logo if you want to display null then use below syntax
<span style="display:none">background name </span>
4. select the user name filed and go to the appearance filed in filtered option select the value placeholder column update the required water mark.
5. if you want to disable the login symbol then go to the appearance field in content body region select the template option and uncheck the use template default. then go to the region select content body and go to the appearance and empty the icon css classes
6. security authentication go to the sharedcomponents and select the security -> Authentication schema then create the authentication. to use below function in custom
Function xx_login_fn(p_username IN varchar2
,p_password IN varchar2
)
return boolean
As
xx number := 0;
Begin
select 1 into xx
from XXMAP_USERS
where upper(USER_NAME) = upper(p_username)
and PASSWORD = p_password;
return true;
Exception
when NO_DATA_FOUND THEN
Return FALSE;
end;
/////
7. After create process button go to the next page below are the changes are required
Create a branches _> Exicute options == point = After processing
Behavior --- type = page or url