Quantcast
Channel: JDELIST.com - JD Edwards ERP Forums
Viewing all 7922 articles
Browse latest View live

Web Client Exception errors in Chrome?

$
0
0
We've been using E1 Tools 9.1.5.5 for a year, and have had users get Web Client Exception errors when they change their Google Chrome Zoom to be greater than 100% or less than 100%. Simply changing it back to 100% fixes the issue.

In the last couple weeks, we have several users who are receiving Web Client Exception errors when using Google Chrome version 54.0.2840.71 m (64-bit) or 54.0.2840.87 m (64-bit) even when the Zoom is set to 100%. These are users in different locations using different E1 programs. In each case, the error states an invalid value (not a whole number) is being passed to the server - just like the Zoom issue. They do not get the errors when using IE11.

Is anyone else having similar issues with Chrome now?
Are there any other settings we should look at with the Chrome browser that could be causing this issue?

Accounts Receivable Unapplied Cash issue - error code 033I

$
0
0
Hello. We had an unapplied cash posting generated by the auto cash application process. It has been posted; however, when we attempt to perform a spread and apply this cash to the open invoice that matches to the penny, it is giving us an error code 033I stating the record is in use by auto receipts; however, there is nothing that we have been able to identify that agrees with this error message. We have gone into review auto receipts clearing and updated the record status on this transaction and attempted to re-run it through the auto cash application process and still get the same error.

Any suggestions? Thank you in advance for your help!

BI Publisher Install for OneView reports

$
0
0
Hi folks,

Playing around with the OneView feature in 9.2. Have a question about installing the BI server. Documentation says:

Quote:

Select the appropriate installation type:

  • ”Simple Install” installs Oracle Business Intelligence components with the default settings on a single computer in the minimum number of steps. The Managed Server is not installed. This installation is targeted for demonstration, evaluation and proof of concept use cases.
  • ”Enterprise Install” installs Oracle Business Intelligence components that you select and associates them with the Middleware, Oracle data source, and WebLogic Server homes that you specify. The enterprise installation type creates a separate Managed Server, bi_server1, along with the Admin Server. You should also use this installation type if you have a previous version of BI Publisher installed.
    This installation type is recommended for a production environment.

Does anyone know if the "Enterprise Install" is required to integrate with E1? or can we go with "Simple Install"

thanks,
Craig

Localization Setting in User Profile?

$
0
0
We are using a country localization for the first time and are getting some conflicting advice on which users need to have the localization for this country turned on in their user profile.

Do all users from this country need localization on or just certain users like financial users?
What about turning it for users from the corporate headquarters who will do work for this division?

If someone understands this setting and which users need this turned on in their profile, we would appreciate the guidance.

Thanks,
Jeff

Create a csv output for a custom dreamwriter

$
0
0
Hello All-

I'm trying to create a csv output for a custom dreamwriter. I setup the csv version according to the import/export guide. When I run the report, somehow the spool file is generated with tags but csv is not generated on the ifs directory. I tried creating a txt file and that is generated successfully.

Any ideas??

Thanks in advance for your help!

Sejal
JDE World
A9.3

JDE E1 Employee/Manager Self Service

$
0
0
Hi All,

I was wondering if you could point me to the right direction.

I am investigating the JDE E1 Self Service HR module (JDE E1 9.1 and above) in regards to configuring it with the assumption of other integrated JDE are already installed ( i.e HR, Payroll, Time and Labour).


My question is, what is the typical time line to install standard/vanilla ESS module? Would you be able to assist or point me to the right direction?


Thanks in advance
Jeff Husman

Using API JDB_InitEnvOvr and JDB_InitUser correctly

$
0
0
Hi folks,

A while ago I enquired about running a UBE under a different USER ID (huser2 below) and we all seemed to crack it by using these 2 cracking APIs

However I came across a few problems and I think I may have fixed them at the time but I'm just revisiting them now.
When you open a connection, you have to close the connection, right?
I think you do that with the JDB_FreeUser JDB_FreeEnv etc

Can someone cleverer than I am take a look at my code here and let me know if I am opening and closing things correctly please?

Thanks

John

The code
#include <jde.h>

#define b570001_c


/************************************************** ***************************
* Source File: b570001
*
* Description: GTS EDI Interoperability, Launch UBE Specific User Source File

* Notes:
*
/************************************************** ************************
* Notes:
* Purpose
* -------
* This function is designed to launch the Interoperability Vendor-Specific
UBE specified in the Input Parameter's UBE Name and Version under a specific USER ID.
It will also pass 6 additional parameters to the Vendor-Specific UBE, namely EDI
Key Co(EKCO), EDI Doc Number(EDOC), EDI Doc Type (EDCT), Export
Mode Flat File(FFEM), Export Mode Database(EDEM) and Export Mode API(EAEM).
After the Vendor-Specific UBE returns, it will copy the UBE Error Code
parameter from the Vendor-Specific UBE's report interconnect data structure
to the Output Error Code parameter.

The main aim of this BSFN is to open a user session for the user/password/environment passed in.
All WorkCentre messages for the UBE to be called will then fall into a WC of choice

*
* Special Logic
* -------------
* 1. All required fields must be passed in.
* 2. The Vendor-Specific UBE called by this business function must
have the following Report Interconnect data structure.
The order of the parameters in the UBE data structure must
be maintained as follows:
3. * EDI Key Co(EKCO) (INPUT)
4. * EDI Doc Number (EDOC) (INPUT)
5. * EDI Doc Type (EDTY) (INPUT)
6. * Export Mode Flat File (FFEM) (INPUT)
7. * Export Mode Database (EDEM) (INPUT)
8. * Export Mode API (EAEM) (INPUT)
9. * UBE Error Code (ERRC) (OUTPUT)
************************************************** ************************/

#include <b570001.h>


/************************************************** ************************
* Business Function: GTSEDIInteropLaunchSpecificUSER
*
* Description: GTS EDI Interoperability, Launch UBE Specific User
*
* Parameters:
* LPBHVRCOM lpBhvrCom Business Function Communications
* LPVOID lpVoid Void Parameter - DO NOT USE!
* LPDSD570 lpDS Parameter Data Structure Pointer
*
************************************************** ***********************/

JDEBFRTN (ID) JDEBFWINAPI GTSEDIInteropLaunchSpecificUSER (LPBHVRCOM lpBhvrCom, LPVOID lpVoid, LPDSD570001 lpDS)

{
/************************************************** **********************
* Variable declarations
************************************************** **********************/
ID idReturnCode = ER_SUCCESS;
ID idJDBReturn = JDEDB_PASSED;
/************************************************** **********************
* Declare structures
************************************************** **********************/

DSRI570001UBEDS dsReportInterconnect= { 0 };
struct tagUBEVAR dsUbeStructure = { 0 };


/************************************************** **********************
* Declare pointers
************************************************** **********************/

HUSER hUser = (HUSER)NULL;
PUBEVAR pUBEVar = (PUBEVAR)NULL;
HENV hEnv = NULL;
HUSER hUser2 = NULL;
LPBHVRCOM lpBhvrCom2 = NULL;
LPVOID lpVoid2 = NULL;
/*
JCHAR szEnv[11] = {0};
JCHAR szUser[11] = {0};
JCHAR szPwd[30] = {0};

PJSTR pEnv = NULL;
*/

/************************************************** **********************
* Check for NULL pointers
************************************************** **********************/
if ((lpBhvrCom == (LPBHVRCOM) NULL) ||
(lpVoid == (LPVOID) NULL) ||
(lpDS == (LPDSD570001) NULL))
{
jdeErrorSet (lpBhvrCom, lpVoid, (ID) 0, _J("4363"), (LPVOID) NULL);
return ER_ERROR;
}
/* Initialize Behaviour DS */
idJDBReturn = JDB_InitBhvr(lpBhvrCom, &hUser,
(JCHAR *) NULL, JDEDB_COMMIT_AUTO);

if (idJDBReturn != JDEDB_PASSED)
{
jdeErrorSet (lpBhvrCom, lpVoid, (ID) 0, _J("4363"), (LPVOID) NULL);

lpDS->cErrorCode = _J('1');
return ER_ERROR;
}
/************************************************** **********************
* Set pointers
************************************************** **********************/

/************************************************** **********************
* Main Processing
************************************************** **********************/

/* Spawn new user session using API JDB_InitEnvOvr
JDB_InitEnvOvr() initializes a JDB environment, usually on the servers.
This API passes the environment name, user name, and password for signing on to the environment.
In addition, without an initialized environment, no JDB API will work.
The environment handle initialized here is needed for the call to JDB_InitUser.
*/



if (JDB_InitEnvOvr( &hEnv, lpDS->szEnvironment, lpDS->szScheduledUserID, lpDS->szScheduledPassword) != JDEDB_PASSED)
{
JDB_FreeBhvr(hUser);
return (ER_ERROR);
}

if (JDB_InitUser(hEnv, &hUser2, lpDS->szScheduledUserID, JDEDB_COMMIT_AUTO) != JDEDB_PASSED)
{
JDB_FreeBhvr(hUser);
return (ER_ERROR);
}

jdeCreateBusinessFunctionParms(hUser2, &lpBhvrCom2, &lpVoid2);


/* Initialize Output Variables */
lpDS->cErrorCode = _J('0');

/* Set up PUBEVar data structure */
dsUbeStructure.bPreview = FALSE;
jdeStrcpy((JCHAR *)dsUbeStructure.szReport,(const JCHAR *)lpDS->szVendorSpecificUBEName);
jdeStrcpy((JCHAR *)dsUbeStructure.szVersion, (const JCHAR *)lpDS->szVersionToCall);
if((jdeGetHostName(dsUbeStructure.szMachineKey, 16, 0) == 1) ||
(!GetLocalEnvironmentName(dsUbeStructure.szEnhv, 11)))
{
lpDS->cErrorCode = _J('1');
lpDS->cUBEErrorCode = _J('1');
idReturnCode = ER_ERROR;
}
if(lpDS->cErrorCode != _J('1'))
{
/* Assign Input Parameters to Report Interconnect Values */
jdeStrcpy((JCHAR *)dsReportInterconnect.szEDIKeyCompany,
(const JCHAR *)lpDS->szEDIKeyCompany);
MathCopy(&dsReportInterconnect.mnEDIDocumentNumber , &lpDS->mnEDIDocumentNumber);
jdeStrcpy((JCHAR *)dsReportInterconnect.szEDIDocumentType,
(const JCHAR *)lpDS->szEDIDocumentType);
dsReportInterconnect.cExportModeFlatFile = lpDS->cExportModeFlatFile;
dsReportInterconnect.cExportModeExternalDatabase = lpDS->cExportModeExternalDatabase;
dsReportInterconnect.cExportModeExternalAPI = lpDS->cExportModeExternalAPI;

dsUbeStructure.idRunTime = (GLRTID)lpBhvrCom->hDlg << 16;

/* Run the UBE Synchronously with this BsFn (i.e. wait until UBE
is complete before executing next line of code).
*/
dsUbeStructure.bSynchFlag = TRUE;

/* Run the UBE Without Any Prompting (i.e. Batch Mode). */
dsUbeStructure.bBatchFlag = TRUE;

/* Call Launch UBE API */
idJDBReturn = jdeLaunchUBEEx((HUSER)hUser2,
(PUBEVAR)&dsUbeStructure,
(LPVOID)&dsReportInterconnect,
(LPBHVRCOM) lpBhvrCom);

/* When UBE Managed to Launch and Return, Get Error Code back */
if(idJDBReturn != JDEDB_PASSED)
{
lpDS->cErrorCode = _J('1');
lpDS->cUBEErrorCode = _J('1');
idReturnCode = ER_ERROR;
}
else
{
lpDS->cUBEErrorCode = dsReportInterconnect.cErrorCode;
}

jdeFreeBusinessFunctionParms(lpBhvrCom2, lpVoid2);
JDB_FreeUser(hUser2);
JDB_FreeEnv(hEnv);
jdeFree(pUBEVar);

}

/************************************************** **********************
* Function Clean Up
************************************************** **********************/

return (ER_SUCCESS);
}

/* Internal function comment block */
/************************************************** ************************
* Function: Ixxxxxxx_a // Replace "xxxxxxx" with source file number
* // and "a" with the function name
* Notes:
*
* Returns:
*
* Parameters:
************************************************** ************************/

BSSV weblogic error on Local FAT Client

$
0
0
I am getting an error while trying to build a BSSV on my local FAT client. It has JDeveloper 12.1.3 on 32 bit JDK

The error is ..

cmd.exe /c ""C:\oracle\Middleware\oracle_common\common\bin\wl st.cmd" "C:\Users\ugurbekp\AppData\Roaming\JDeveloper\syst em12.1.3.0.41.140521.1008\o.j2ee.adrs\BuildDefault Domain1.py""
Process started
wlst > Error occurred during initialization of VM
wlst > Could not reserve enough space for object heap
wlst > Error: Could not create the Java Virtual Machine.
wlst > Error: A fatal exception has occurred. Program will exit.
Elapsed time: 294 ms

I have checked and have plenty of RAM not sure how I can increase the JVM memory. I have already tried below without success. Any help is appreciated.
--------------------------------------
In case you have enough free RAM on your computer:

go to jdev.conf file (~/Oracle/middleware/jdeveloper/jdev/bin) and add more memory to the file
I haven't checked but you could add:

AddVMOption -XX:MaxHeapSize=512m

Registration is now LIVE! 6th Annual HUG Holiday Social Networking Event/Casino Night

$
0
0
Houston Regional Users Group, H.U.G. cordially invites all Oracle JD Edwards Professionals to our 6th Annual HUG Holiday Social Networking Event & Casino Night on Thursday, December 8th 2016.

Educational Curriculum 2:00pm-4:00pm
Exhibitor Showcase/Casino Gaming 4:00pm-8:00pm

Hess Club
5430 Westheimer Road
Houston TX 77056

Preregistration on RegOnline at https://www.regonline.com/HUGQ4Y16 is REQUIRED to ATTEND


• Festive Holiday Atmosphere
• Excellent Cuisine & Beverage Service
• Blackjack, Roulette, Craps, and Texas Hold’em Casino Games
• FREE Parking
• Opportunities to network in a relaxed setting
• Meet new JD Edwards contacts
• Demonstrations of new hardware, software, services
• Casino Grand Prize Drawings

Multiple JD Edwards Education Breakout Sessions 2:00 pm - 4:00 pm
Opening of Exhibitor Showcase /Casino Gaming 4:00 pm - 8:00 pm

ATTENDANCE IS FREE
for all Oracle JD Edwards Customer Users

Special Surprise Gift at the door for all Oracle JD Edwards Users

AP check printed w/out entries in payment files

$
0
0
List,

I will probably hit the Oracle support site digging for this, but I want to ask anyway.

We've twice, over a 6 month span, had a physical check generate w/out any history of it in the F041* tables.
In the F0413 (Accounts Payable Matching document), there are 150+ entries for the time/date range that the check should have been generated in.

DOCM is sequential, w/out gaps, with the exclusion of this single check #.
PYID is sequential, w/out gaps at all.

If the check had been printed and voided, there should be evidence of this.

The check physically looks the same as other checks as far as formatting (font, spacing).
I don't think this is a case of someone using a typewriter and check stock.

Has anyone seen a case like this?

THANKS!

Coexistence between XE and 9.2

$
0
0
Hi!

We have a very odd situation. We have a site where they have 40000 customs in XE, a billion dollar company that need to revise all their business processes. This is a major plan for many years that will by done by phases (financial, inventory, etc...). We will need to be coexistent with the data for many years. Upgrade has been rules out and it's a new vanilla install that is the target while being co-existent (and all processes being review to remove all customs)

Oracle doesn't provide any coex between XE & 9.2.

Does somebody went through a similar situation like this before? Any suggestions with tools to transfer data 'real-time' and 'differ'? Any suggestions on how to attack this?

Any comments are welcome. Cloud not an option for the site.

Thanks!

Unable to update a Who's Who record using BSSV

$
0
0
I want to update a Who's Who record in F0111 using BSSV. I use this business function B0100087 and below are my code in BSSV


bsfnParams.setValue("cActionCode", 2);
bsfnParams.setValue("mnAddressNumber", addressBookNumber);
bsfnParams.setValue("mnLineNumberID", 0);
bsfnParams.setValue("szNameMailing", broker.getDesignatedBroker());


bsfnParams.setValue("szNameAlpha", broker.getDesignatedBroker());

But it failed at this line

int error = bsfnService.execute(context, connection, "WhosWhoMBF", bsfnParams);

The errors I got was

Server Failure while executing business function. Please try request again. :WhosWhoMBF(Who's Who MBF)

Attached are the errors. Do you know why? I did a get for that business function and data structure and rebuilt it locally. I tested it using Jdeveloper 11g.

If there's a better way to do what I need to do, please let me know.

Thanks

I use JDE 9.1.5.3
Attached Images

Purchase Order Close

$
0
0
Hi all

There are two purchase order that are created by mistake by the user. I just want to close that purchase order or want to eliminate that purchase order. Can anyone please tell me how to do.

Thanks
Anshul

Security Issue

$
0
0
Hello All,

I am JD Edwards sales and Distribution consultant and currently working on JD Edwards security.

I have been assigned the Job for Cleaning SoD (Segregation of Duties).

I have Rule set in place and accordingly i have to see which role should have what access.

Now the issue is if i go to JD Edwards system 8.10 and check the security work bench a particular Role 0AUDITOR has Veiw only access.

When i see my Dashboard i can see that Role 0AUDITOR has access to almost all the major program.

Can anyone suggest me how i can start doing by analysis set by step because i am new in Security.

If more details has to be provided please let me know and i can provide it.

Regards
Amit

JDE Security

$
0
0
Hello All,

I am JD Edwards sales and Distribution consultant and have been assigned new responsibility to maintain Security for different BU's.

My current responsibility is to Clean SoD (Segregation of Duities) issue in JD Edwards.

What is the process-

We have a tool which gives us a Dashboard telling which Role has maximum risk based on this we do the cleaning process.

What is the issue-

I have one role 0AUDITOR and this role have All modules read only access.

If i check the P00950 this role has only 6 lines in security matrix.

But when i see my Dashboard it shows that this Role 0AUDITOR has access to all major programs.

What is required-

Can anyone help me how to start my analysis step by step as i am new in security.

Your help will be appreciated.

Regards
Amit

Multiple orders in one pdf

$
0
0
Hey folks,
So I am trying to get a single pdf with multiple work orders. I am able to get the xml with the multiple work orders together.
I am breaking on each work order number as well, and therefore use the for each on : order number in the BI Publisher body.

I am able to get individual work order's data (e.g pg 1-5 first Work order (321262), pg 5-9 second work order (321285)).

The problem I am facing is that the footer is only showing the data from the first work order. It never changes. I want it to change when the work order number changes from 321262 to 321285. I want the work order number to print in the footer. So the first 5 pages footer should show 321262 and the pgs 5-9 footer should show 321285.

I've tried a lot, am calling a subtemplate made specifically for the footer from within the footer, but it doesn't seem to work.

Any ideas?

Stopping Call object kernel from accepting new user request

$
0
0
All, We have a situation where a rogue process creates an infinite loop and causes call object kernel to grows continuously to over 2 GB . Once it reaches 2 GB limitation ( Linux limitation on file size), it stops writing to the log file and the kernel becomes hung. At that time, call object kernel stops accepting any new connections and we have to terminate the kernel. Is there a way to stop a particular COK from accepting the new sessions and to continue to work on old user requests only.

Currently, We have a way to identify the issue, but then we have to wait for it to reach 2gb Limitation and then we have to wait for all session to complete it works before killing the kernel.

Any examples of getCustomerItemPrice (J4200040) web service call?

$
0
0
No previous experience with BSSV publishing or calling one so I am in the dark on this but I don't think I need to do a deep dive to get what we need and just need to call a web service that is there. The getCustomerItemPrice (J4200040) web service is already provided so if we can pass the Customer, Item, Quantity and get the price that should work. So I am checking to see if someone else has done this or knows about it.

A sample of the call to this web service would be what I am looking to find.

This BSSV is delivered with JDE as part of the JP420000 sales order BSSV that has been published. I can see JP420000 published using P9603 and the getCustomerItemPrice is under it, but not sure if it is published with it or needs more to get it to work. Thinking if we can try to call it we will find out if it is there and working and if not I will need to do more to get it there.

Any feedback on this is appreciated.

Thanks,
Tom

EDI Sets and Associated UBEs

$
0
0
Hi,
Does anyone have a comprehensive list of UBEs that are used for specific EDI Transaction sets they would like to share? (I.E. 850 = R47011)
I would appreciate a cheat sheet that ties the two together if anyone has one...
Thanks,

Server to Server communication (JDENET?)

$
0
0
I have a fairly generic question: is it possible to have JDE communicate with another server by defining the IP-Port? The server I need to communicate with is NOT a JDE server, rather it will be running a windows service that will respond to the request and perform other actions.

If so, can you help me by referencing some examples or other documentation on how to do this?

Regards,
Viewing all 7922 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>