Satish Kumarsatishkumar.hashnode.dev·Aug 2, 2023How to Export Data into multiple Excel Sheets in VBCSRecently I had come across a requirement where there was a need to export the data into multiple sheets of an Excel File. So generally VBCS has a sample custom component to export the data from a DataProvider into CSV called oj-sample-export-data . T...Discuss·48 readsOracle VBCS
Satish Kumarsatishkumar.hashnode.dev·Feb 20, 2023Redwood Theme vs Template PatternRecently I have come across a lot of instances where there is confusion between Redwood Theme and Redwood Design System (aka Template Pattern). So let's get some more details on what these are. What is Redwood? Redwood is the name of Oracle’s next-ge...Discuss·299 readsvbcs
Satish Kumarsatishkumar.hashnode.dev·Jan 29, 2023Editable Table in Oracle VBCS with Asynchronous Edit HandlingOne of the common issues with an editable table was that when the number of columns was more we see behavior where "previous row data shows up in the current row being edited for a fraction of a second". We can find many discussions around this on cu...Discuss·353 readsOracle VBCS
Satish Kumarsatishkumar.hashnode.dev·Dec 11, 2022How to Filter Table Data in Oracle Visual BuilderWe often have Tables in our VB screens which can contain large numbers of rows. We also may have requirements that provide a way to end users to filter data within it. If the table is hooked to SDP then you can follow this method in vbcookbook In thi...Discuss·347 readsvbcs
Satish Kumarsatishkumar.hashnode.dev·Nov 15, 2022Add Attachments to AP Invoice using REST APIRecently we were working on a VBCS UI to create AP invoices. Part of that requirement was that users should be able to attach documents as well. Since it was from a VBCS UI we were looking for a pure REST solution as we did not want to build any wra...Discuss·199 readsOracle Cloud
Satish Kumarsatishkumar.hashnode.dev·Oct 4, 2022ZIP files in VBCSIn this article let us see how to zip the files and use its contents downstream. The sample application is present in my GIT here. One of the use case for this functionality is where the user can upload a data file and we need to generate a FBDI zip ...Discuss·114 readsvbcs
Satish Kumarsatishkumar.hashnode.dev·Sep 28, 2022Base64 Encode and upload file to UCM from VBCSIn this article let us see an approach to upload the file selected by the user to UCM using VBCS. We will be using the REST service direct from VBCS without any OIC wrapper. While most of the steps mentioned here are simple the places where it gets t...Discuss·246 readsvbcs
Satish Kumarsatishkumar.hashnode.dev·May 14, 2022How to parse Excel (XLSX) data in Oracle Visual Builder using JS libraryIn one my previous blog I had written about parsing CSV data and that was very well received. Today let us use the popular SheetJS library to parse data from Excel to JSON/CSV. Import the library in Visual Builder Since we need to use a third-party l...Discuss·191 readsvbcs
Satish Kumarsatishkumar.hashnode.dev·Apr 22, 2022How to parse CSV data in Oracle Visual Builder using JS libraryIn this blog we will see how to use a library in Visual Builder to parse CSV data.The library we are using here is papaparse. Background We have come across many scenarios where there is a need to parse the CSV data. For example but not limited to ,...Discuss·2 likes·819 readsOracle