My Stuff
Comments
-
The problem was my file name had spaces. Replacing spaces with underscores fixed the issue.
-
Is this the correct area for this type of question? How long does it normally take Oracle customer support to respond?
-
Found the solution: I didn't choose any sourcing. I filtered "Using" = "Company", Compare Type = "equal to", Compare To Field" = "Customer"
-
Look at the AddButton Action and Using Buttons to Execute Transitions. Using a workflow, I've been able to add a button to a record upon viewing. Then clicking the button executes a transition to the next state, which executes my code. Let me know if you need more clarification or help.…
-
Are you still having problems with this? Using nlapiGetFieldValue on the field displaying the contact gets the contactid. You could then nlapiLoadRecord on the Contact record to get name, etc. That worked for my problem.
-
If I don't have a selection chosen in the custentity_customcontact field, then I get a single response. With a contact selected, I get two responses.
-
I understand why it's happening now. All the contacts that don't match the id are still returned, but since the value is the same, it's a single column return, so only two results. I haven't joined with contact yet. I suppose that's the issue. How do I join with contact on the custom field id. ***EDIT*** . See the comment…
-
It was an authorization issue. Using OAuth 1 and tokens fixed the problem.
-
It's been pretty quiet. I still haven't solved the issue. I've tried grouping the results by customer internalid, but I get an UNEXPECTED_ERROR from system. No other error message.
-
I finally figured out how joining works. Only some records can join with others. On the record description page, there's a Search Join table. That provides the Join IDs for the records the given record can join with. Also, search formulas are what's used to filter multiple entries (such as pulling a specific contact from…
-
SOLVED: JOIN using the id of the parent field on the child record.... columns.push( new nlobjSearchColumn('custrecord_module_field_1', 'custrecord_module_parent',null) ); To get fields from both Parent and Element, I have to redo the search so searching on Module, so I have keys to both parent and child (child holds the…
-
This turned out to be not a problem at all. I just used nlapiCreateFile with a type "PDF" and the response body for the content of the file. Easy peasy.
-
Thank you!