Posts

Extract Dynamic file name from file path in RPLGE - IBM I / AS400

Image
 Extract Dynamic file name from file path:- **Free                                                                                                                                  // Variable  declarations                                                                                                              Dcl-s FilePath Varchar(30);            ...

Difference between %Scan and %Check in RPGLE - IBM I / As400

Image
Difference between %Scan and %Check in RPGLE - IBM I / As400 **Free                                                                                                                                   * Variable Declarations                                                                                                                                ...

Date Filter in Angular

Image
DateFilter in Angular:- <html>     <head>         <title>Date Formats in Angular</title>         <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.8.2/angular.min.js"></script>     </head>     <body>         <div ng-app="" style="font-size: larger; color: darkblue;">             <h1 align="center">Changing Date Format using Angular Date Filter</h1>             <input type="date" ng-model="MyDate">             <br><br>             <span>Short Date Format (M/d/yy):</span><br> {{MyDate | date : 'shortDate'}}             <br><br>             <span>Medium Date Format (MMM d, y):</span><b...

Dynamic XMl file creation in IFS using RPGLE Program - IBMI / AS400

Image
How to create a dynamic XML file in IFS using RPGLE:-  **Free                                                                       *    Generate dynamic XML with RPGL                                                                                                          Ctl-opt DftActGrp(*no) ActGrp(*new);                                                                ...

File creation in IFS using RPGLE Program - IBMi / AS400

Image
How to create a file in IFS using RPGLE program:- **Free                                                                   *    Program to write data in IFS                                                                                Ctl-opt DftActGrp(*no) ActGrp(*new);                                                                                         *    Procedure for o...

Alphanumeric / Character Data type in RPGLE Free Format - IBM i / AS400

Image
How to declare character data type in RPGLE free format:- **Free                                                                                                                                    *            Conversation of Alphanumeric data type in free format                                                                         *    D FirstName       S             30A  ...

Numeric Data type in RPGLE free format - IBM i / AS400

Image
How to declare numeric data type in RPGLE free format:-  **Free                                                                    *                   Numeric data type  Converstion in free format                                                                ...