Siebel Open UI, Tools, Scripting and EAI (MOSC)

MOSC Banner

Clarification on Pick() Method

edited Oct 30, 2013 3:17AM in Siebel Open UI, Tools, Scripting and EAI (MOSC) 8 commentsAnswered
Hi All,
As per bookshelf, "The Pick method places the currently chosen record in a pick business component into the appropriate fields of the parent business component.".
Consider a scenario where I'm trying to insert a record in Service Request BC.
What is the difference between the following 2 code snippets??
Code.1:

    SetFieldValue(“SR Type”, sSRType);

Code.2:

var oSRTypeBC = GetPicklistBusComp("SR Type");
with(oSRTypeBC)
{
    SetViewMode(AllView);
    ClearToQuery();
    SetSearchSpec("Value", sSRType);
    SetSearchSpec("Type", "SR Type");
    ExecuteQuery(ForwardOnly);
    if(FirstRecord())
    {
        Pick();
    }
}

Even if I'm gonna use SetFieldValue, the fields in the PickMap will also be set right???

Regards,
Maggi.

Howdy, Stranger!

Log In

To view full details, sign in to My Oracle Support Community.

Register

Don't have a My Oracle Support Community account? Click here to get started.

Category Leaderboard

Top contributors this month

New to My Oracle Support Community? Visit our Welcome Center

MOSC Help Center