Search found 2063 matches

by admin
Mon Jan 25, 2021 10:24 am
Forum: Application DBA & System Administration
Topic: Get SQL from an OAF Page
Replies: 0
Views: 11423

Get SQL from an OAF Page

1) Set the following profiles FND: Diagnostics Personalize Self-Service Defn 2) Open Java OAF Page. 3) Click on About this Page in the bottom left of the page. 4) Expand the Business Component References Details Section and go to the View Objects Sub Section. 5) Click the Object by reading the last ...
by admin
Wed Jan 13, 2021 6:24 am
Forum: Oracle APEX
Topic: Load Data Using Pl_SQL APEX_DATA_PARSER
Replies: 0
Views: 12990

Load Data Using Pl_SQL APEX_DATA_PARSER

-- The APEX_DATA_PARSER.PARSE function allows to "select" up to 300 columns (COL001 to COL300) from the -- parsed file. This example uses the following parameters. -- -- P_CONTENT the file content to be parsed as a BLOB -- P_FILE_NAME the name of the file; only used to derive the file typ...
by admin
Wed Jan 06, 2021 6:30 pm
Forum: Financials (GL, AP, AR, FA & CM)
Topic: ebTAX R12 VAT Notes
Replies: 0
Views: 13293

ebTAX R12 VAT Notes

Youtube Video https://youtu.be/HGjKGrIKy60 REGIME: In Oracle E-Business Tax, a Tax Regime is the system of regulations for the determination and administration of one or more taxes. TAX: A Tax is a distinct charge imposed by a government through a fiscal or tax authority. Every tax in Oracle E-Busi...
by admin
Mon Jan 04, 2021 3:55 am
Forum: Application DBA & System Administration
Topic: Debugging in TOAD
Replies: 0
Views: 11487

Debugging in TOAD

1. DBMS_DEBUG should be in SYS schema 2. Version check - Oracle Probe API v2.0 or greater required declare probe_major_ver varchar2(10); probe_minor_ver varchar2(10); begin dbms_debug.probe_version(probe_major_ver, probe_minor_ver); dbms_output.put_line('MAJOR=' || probe_major_ver); dbms_output.put_...
by admin
Mon Dec 21, 2020 4:39 am
Forum: Excel 2010, 2013, 2016, 365
Topic: Duty Roster / Shifts Planner
Replies: 0
Views: 14591

Duty Roster / Shifts Planner

Sir, there are 4 Shifts Rotation 24/7 all year Duration of one shift Duty is 12 hours in Day and night For Every Shift, the Person will have the Following Format of work in Rotation Day duty next day night duty than in morning will off on next day also OFF The Purpose of making sheet : 1. To determi...
by admin
Sun Oct 04, 2020 10:35 am
Forum: Application DBA & System Administration
Topic: Workflow mailer Settings and Status Script
Replies: 0
Views: 12131

Workflow mailer Settings and Status Script

Hi, Here is a sample code to handle following in R12.1.3 1. Check Workflow Mailer settings to OUTBOND is wrong will update with provided info. 2. Will check if Mailer is running if not will try to start and send email/sms. 3. Will change workflow WF_ADMIN_ROLE to * which gets change to SYSADMIN afte...
by admin
Tue Aug 18, 2020 12:41 pm
Forum: Application DBA & System Administration
Topic: Oracle 12C ACL for smtp2go setup
Replies: 0
Views: 11364

Oracle 12C ACL for smtp2go setup

BEGIN DBMS_NETWORK_ACL_ADMIN.append_host_ace ( host => 'mail.smtp2go.com', lower_port => 587, upper_port => 587, ace => xs$ace_type(privilege_list => xs$name_list('http'), principal_name => ‘myuser', principal_type => xs_acl.ptype_db)); END; /
by admin
Tue Aug 18, 2020 12:25 pm
Forum: Application DBA & System Administration
Topic: PLSQL email code using AUTH LOGIN
Replies: 0
Views: 11370

PLSQL email code using AUTH LOGIN

CREATE OR REPLACE PROCEDURE erpstuff_email (fromm VARCHAR2, too VARCHAR2, sub VARCHAR2, body VARCHAR2, port NUMBER) IS /* Sample code for R&D purpose only using on PROD need proper testing and UAT hence no liability on ERPstuff.com Verrsion 1.0 by Sikandar Hayat info@erpstuff.com */ objConnectio...
by admin
Wed Jul 15, 2020 4:34 am
Forum: Oracle APEX
Topic: APEX Email related tables/view/jobs
Replies: 0
Views: 9317

APEX Email related tables/view/jobs

select * from APEX_200100.wwv_flow_mail_queue select * form apex_mail_queue select * from FROM ALL_SCHEDULER_JOB_LOG select * from DBA_SCHEDULER_JOB_RUN_DETAILS where JOB_NAME='ORACLE_APEX_MAIL_QUEUE'; select * from all_scheduler_jobs where job_name like 'ORACLE_APEX_MAIL_QUEUE' select * from all_sc...
by admin
Mon Jul 13, 2020 2:56 am
Forum: Oracle APEX
Topic: LDAP authentication using Active Directory
Replies: 0
Views: 9631

LDAP authentication using Active Directory

ACL BEGIN DBMS_NETWORK_ACL_ADMIN.create_acl ( acl => 'erpstuff_acl.xml', description => 'ACL for LDAP', principal => 'APEX_2002000', << APEX current version username is_grant => TRUE, privilege => 'connect', start_date => SYSTIMESTAMP, end_date => NULL); DBMS_NETWORK_ACL_ADMIN.assign_acl ( acl => '...
by admin
Sat Jul 11, 2020 12:01 pm
Forum: Application DBA & System Administration
Topic: Bursting using SMTP with TLS authentication like GMAIL etc
Replies: 0
Views: 11527

Bursting using SMTP with TLS authentication like GMAIL etc

Update the bold data in the file as below then save and test, $vi cd $XDO_TOP/resource/xdodelivery.cfg <?xml version="1.0" encoding="UTF-8" ?> <config xmlns="http://xmlns.oracle.com/oxp/delivery/config"> <servers> <server name="smtpserver1" type="smtp_ema...
by admin
Thu Jul 09, 2020 1:10 am
Forum: Application DBA & System Administration
Topic: Gather Schema Statistics?
Replies: 0
Views: 11211

Gather Schema Statistics?

EXECUTE DBMS_STATS.GATHER_SCHEMA_STATS(ownname => 'SCOTT');
by admin
Sun Jun 21, 2020 7:26 am
Forum: Excel 2010, 2013, 2016, 365
Topic: User Range Selection Input Box
Replies: 0
Views: 10132

User Range Selection Input Box

Public Sub User_Range_Selection() ' To show an input box where the user can select a range ' Value Description ' 0 A formula ' 1 A number ' 2 Text (a string) ' 4 A logical value (True or False) ' 8 A cell reference, as a Range object ' 16 An error value, such as #N/A ' 64 An array of values Dim rng ...
by admin
Sun Jun 21, 2020 7:22 am
Forum: Excel 2010, 2013, 2016, 365
Topic: Open File Dialog using VBA
Replies: 0
Views: 10245

Open File Dialog using VBA

Sub FileDialogOpen() ' Open File Dialog to only select multiple Excel files ' ERPstuff.com With Application.FileDialog(msoFileDialogOpen) .AllowMultiSelect = True .Filters.Add "Excel Files", "*.xlsx; *.xlx", 1 .Show For i = 1 To .SelectedItems.Count MsgBox .SelectedItems(i) Next ...
by admin
Sat Jun 13, 2020 6:17 am
Forum: Excel 2010, 2013, 2016, 365
Topic: MS Excel Data Splitting to Multiple Sheets - FREE TOOL
Replies: 0
Views: 10628

MS Excel Data Splitting to Multiple Sheets - FREE TOOL

Hi, This is a normal requirement of users who are working on different data analyses on a huge amount of data in Excel like Finance, Marketing, Sales, HR etc. For a detailed demo of this FREE TOOL is in the following youtube video, https://youtu.be/lGnGPTTAmOo To Download click below, - The formula ...