Friday, April 20, 2018

Banner error: Invalid PKG_XML or PKG_XML not found

Banner error: Invalid PKG_XML or PKG_XML not found



Resolution:

Uncomment : <entry key="PKG_XML" value="goktxml"/>   in app config xml

Banner 9 General: Form not found or Invalid Object

Banner 9 General

Error:

Form not found or Invalid Object

Root cause: form has not compiled yet


Resolutions:

Check error log
Check problem log
Check pom.xml file dependency

then
Maven update all projects

Banner error not authorized access GOAIMMU

Banner error not authorized access GOAIMMU


Check GURUOBJ

select * from BANSECR.GURUOBJ where GURUOBJ_USERID = 'your userid'



Resolution:

Insert into BANSECR.GURUOBJ (GURUOBJ_OBJECT, GURUOBJ_ROLE, GURUOBJ_USERID, GURUOBJ_ACTIVITY_DATE, GURUOBJ_USER_ID)
  Values ('GOAIMMU', 'BAN_DEFAULT_M', 'your userid', SYSDATE, 'BANSECR');

Banner 9: Error not authorized access SOACOMP


Banner 9: Error not authorized access SOACOMP

Check GURUOBJ

select * from BANSECR.GURUOBJ where GURUOBJ_USERID = 'your userid'



Resolution:

Insert into BANSECR.GURUOBJ (GURUOBJ_OBJECT, GURUOBJ_ROLE, GURUOBJ_USERID, GURUOBJ_ACTIVITY_DATE, GURUOBJ_USER_ID)
  Values ('SOACOMP', 'BAN_DEFAULT_M', 'your userid', SYSDATE, 'BANSECR');

Banner error not authorized access SOAIDEN


Banner error not authorized access SOAIDEN


Check GURUOBJ

select * from BANSECR.GURUOBJ where GURUOBJ_USERID = 'your userid'



Resolution:

Insert into BANSECR.GURUOBJ (GURUOBJ_OBJECT, GURUOBJ_ROLE, GURUOBJ_USERID, GURUOBJ_ACTIVITY_DATE, GURUOBJ_USER_ID)
  Values ('SOAIDEN', 'BAN_DEFAULT_M', 'your userid', SYSDATE, 'BANSECR');

Banner ORA-20104: Invalid version of object is being used ORA-06512: at "BANSECR.G$_SECURITY_PKG"

Ellucian Banner 9 admin

Error:

ORA-20104: Invalid version of object is being used.
ORA-06512: at "BANSECR.G$_SECURITY_PKG", line 821
ORA-06512: at line 1

Root cause:

Java Code of form and DB is mismatched

Resolution:

Ex: GEAPART form:

Option 1: update DB

UPDATE GURAOBJ SET GURAOBJ_CURRENT_VERSION_ALT = '9.3.3', GURAOBJ_ACTIVITY_DATE = SYSDATE WHERE GURAOBJ_OBJECT = 'GEAPART';

Option 2: update code
GEAPART form controller

@ActionTrigger(action="LOAD_CURRENT_RELEASE")
public void Wfacrlv_LoadCurrentRelease()
{

getFormModel().getFormHeader().setCurrentRelease(toStr("9.3.3"));
}

Monday, April 16, 2018

Banner error not authorized to access GUAINIT


Banner error not authorized to access GUAINIT

need to grant access on bansecr

grant select on bansecr.gubiprf to userid;


AWS how to delete VPC when it has error with Network interface , Gateway decencies

   how to delete VPC when it has error with Network interface , Gateway decencies  in AWS 1. Check if it is running on EC2 instance then Sto...