Monday, August 27, 2018

Ellucian Banner : Input text into 2 text boxes continuously when typing extra characters


Ellucian Banner : Input text into 2 text boxes continuously when typing extra characters

Ex

Struct

<Item AllowSearch="true" CanvasName="FABINVH_HEADER" Id="FABINVH_VEND_INV_CODE" MaxLength="15" Type="TextItem"/>


XVC

<textbox autoskip="true" block="FABINVH" case="upper" datatype="String" height="23px" keyactions="NEXT_ITEM" label="fabinvh.fabinvhVendInvCode.prompt" maxlength="15" member="FABINVH_VEND_INV_CODE" name="fabinvhVendInvCode" validation="server" width="120px" style="ui-hidelabel">


FORM

@ActionTrigger(action="HOLD_LAST_ITEM_LOC")
public void Fyainve_HoldLastItemLoc()
{

// DECLARE
//  hold_last_text_item VARCHAR2(30);
// BEGIN
// DECLARE
//  hold_last_text_item VARCHAR2(30);
// BEGIN
getFormModel().getFormHeader().setHoldLastTextItem(toStr(getCursorItem()));


CONTROLLER

@ActionTrigger(action="POST-TEXT-ITEM", item="FABINVH_VEND_INV_CODE", function=KeyFunction.ITEM_OUT)
public void fabinvhVendInvCode_itemOut()
{
    System.out.println(" fabinvhVendInvCode_itemOut");

    executeAction("HOLD_LAST_ITEM_LOC");
}



@ActionTrigger(action="KEY-NEXT-ITEM", item="FABINVH_VEND_INV_CODE", function=KeyFunction.NEXT_ITEM)
public void fabinvhVendInvCode_keyNexItem()
{
System.out.println(" fabinvhVendInvCode_keyNextItem ");
nextItem();
//    GO_FIELD( 'FABINVH_ACH_OVERRIDE_IND' ) ;
getTask().getGoqrpls().gCheckFailure();
}


Banner 9 Eclipse - Unable to Open Task Outline


Eclipse - Unable to Open Task Outline in Banner 9


Close Eclipse
navigate to the Eclipse workspace directory in the file system c:\admin_page\dev90workspace
Drill into the following path under that folder: .metadata\.plugins\morphis.foundations.plugin.core\
Delete the tasksRegistry.xml file (or rename it).
Then restart Eclipse and wait for it to finish rebuilding the task registry.
Note: you may have to run Maven update

Ellucian
explanation:

The tasksRegistry is created and maintained by the Morphis plugins. We've been seeing strange problems like you described that are caused by bad data in the tasks registry, but thus far haven't been able to track down the root cause other than that letting Eclipse rebuild it often helps. There is nothing you did wrong per se that would cause this. At this point we don't know if there is something invalid in the Banner code or with how the Morphis plugins work that causes this to happen but are actively working with Morphis to try and narrow it down.

Thursday, August 23, 2018

Banner 9: Fix for Missing IN or OUT parameter

Ellucian Banner 9: Fix for Missing IN or OUT parameter

Find Queries in controller to make sure no missing addParametter

Notes param will start with :
ex   pidm= :id

Tuesday, August 21, 2018

Banner 9: After, Before event for extended function of controller in extension

Banner 9: After, Before event for extended function of controller in extension page

Banner 9: Overwrite struct xml, function of controller in extension

Banner 9: Overwrite struct xml, function of controller in extension

Banner 9 Extend page with different name

Banner 9 Extend page with different name



Banner 9: Warning error alert message box



Banner 9: Info message, error message, alert message boxes


MessageServices.message("This is info");


MessageServices.setAlertMessageText("aa", "This is xxx.");
MessageServices.showAlert("aa");

/MessageServices.message("sss", userResponse);
//OutputMessageUserResponse

getTask().getGoqrpls().gDisplayAlert(toStr("G$_WARNING_ALERT"), GNls.Fget(toStr("GUAGMNU-0007"), toStr("FORM"), toStr("aaaaaaaaaaaaaaaaaaaaa.")) );

getTask().getGoqrpls().gDisplayAlert(toStr("G$_WARNING_ALERT"), new NString("This is aalert.") );

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...