Create an event of reconciliation delayed using API

Hello

The future was created in the test of IOM recon using the API?

You must just supplement the later date:

>
long createReconciliationEvent (java.util.Map poData, pbFinishEvent boolean, psObjectName java.lang.String, java.sql.Date futureDate) throws Thor.API.Exceptions.tcAPIException, Thor.API.Exceptions.tcObjectNotFoundException, tcAPIException

Creates a future event to day of atonement for the object specified in the future.
>

-Kevin

Tags: Fusion Middleware

Similar Questions

  • How to create RMA based on orders placed using api OE_ORDER_PUB

    Hello

    Can someone help me pls how to create an RMA based on the command using oe_order_pub.process_order APi.

    Thank you.

    Creating the RMA is very similar to creating a command. You must make sure that you have the correct order_type, line_type who is going to be the 'RETURN' (or 'MIXED') configuration category in the definition of transaction type.

    The API automatically create a reference on your RMA lines for command lines original, you must pass the following
    l_line_tbl (l_line_tbl. COUNTY) .return_reason_code: = 'BACK '; -Compulsory for RMA
    l_line_tbl (l_line_tbl. COUNTY) .reference_line_id: = v_ref_line_id; -Original order line_id
    l_line_tbl (l_line_tbl. COUNTY) .reference_header_id: = v_ref_header_id; -Original order header_id
    l_line_tbl (l_line_tbl. COUNTY) .return_context: = 'ORDER ';
    l_line_tbl (l_line_tbl. COUNTY) .return_attribute1: = v_ref_header_id; -Original order header_id
    l_line_tbl (l_line_tbl. COUNTY) .return_attribute2: = v_ref_line_id; -Original order line_id

    Once the RAM is created, query the order and go to the lines > tab returns. You can see the original order number and line number.
    Thank you
    Gopal

  • Payment records are processed and receipts created for charges paid in advance using API OE_ORDER_PUB.process_order

    Hello

    I want States to payment are processed and recipes created for prepayments by using OE_ORDER_PUB.process_order. I created the iStore sales order.

    Type of payment is "CASH".

    I tried the following code:

    DECLARE

    l_header_rec OE_ORDER_PUB. Header_Rec_Type;

    l_line_tbl OE_ORDER_PUB. Line_Tbl_Type;

    l_action_request_tbl OE_ORDER_PUB. Request_Tbl_Type;

    l_header_adj_tbl OE_ORDER_PUB. Header_Adj_Tbl_Type;

    l_line_adj_tbl OE_ORDER_PUB.line_adj_tbl_Type;

    l_header_scr_tbl OE_ORDER_PUB. Header_Scredit_Tbl_Type;

    l_line_scredit_tbl OE_ORDER_PUB. Line_Scredit_Tbl_Type;

    l_request_rec OE_ORDER_PUB. Request_Rec_Type;

    l_return_status VARCHAR2 (1000);

    l_msg_count NUMBER;

    l_msg_data VARCHAR2 (1000);

    p_api_version_number NUMBER: = 1.0;

    p_init_msg_list VARCHAR2 (10): = FND_API. G_FALSE;

    p_return_values VARCHAR2 (10): = FND_API. G_FALSE;

    p_action_commit VARCHAR2 (10): = FND_API. G_FALSE;

    x_return_status VARCHAR2 (1);

    x_msg_count NUMBER;

    x_msg_data VARCHAR2 (100);

    p_header_rec OE_ORDER_PUB. Header_Rec_Type: = OE_ORDER_PUB. G_MISS_HEADER_REC;

    p_old_header_rec OE_ORDER_PUB. Header_Rec_Type: = OE_ORDER_PUB. G_MISS_HEADER_REC;

    l_HEADER_PAYMENT_TBL oe_order_pub. Header_Payment_Tbl_Type;

    x_HEADER_PAYMENT_TBL oe_order_pub. Header_Payment_Tbl_Type;

    l_OLD_HEADER_PAYMENT_TBL oe_order_pub. HEADER_PAYMENT_TBL_type;

    x_Header_Payment_val_tbl oe_order_pub. Header_Payment_Val_Tbl_Type;

    p_header_val_rec OE_ORDER_PUB. Header_Val_Rec_Type: = OE_ORDER_PUB. G_MISS_HEADER_VAL_REC;

    p_old_header_val_rec OE_ORDER_PUB. Header_Val_Rec_Type: = OE_ORDER_PUB. G_MISS_HEADER_VAL_REC;

    x_Line_Payment_tbl OE_ORDER_PUB. Line_Payment_Tbl_Type;

    x_Line_Payment_val_tbl OE_ORDER_PUB. Line_Payment_Val_Tbl_Type;

    p_Header_Adj_tbl OE_ORDER_PUB. Header_Adj_Tbl_Type: = OE_ORDER_PUB. G_MISS_HEADER_ADJ_TBL;

    p_old_Header_Adj_tbl OE_ORDER_PUB. Header_Adj_Tbl_Type: = OE_ORDER_PUB. G_MISS_HEADER_ADJ_TBL;

    p_Header_Adj_val_tbl OE_ORDER_PUB. Header_Adj_Val_Tbl_Type: = OE_ORDER_PUB. G_MISS_HEADER_ADJ_VAL_TBL;

    p_old_Header_Adj_val_tbl OE_ORDER_PUB. Header_Adj_Val_Tbl_Type: = OE_ORDER_PUB. G_MISS_HEADER_ADJ_VAL_TBL;

    p_Header_price_Att_tbl OE_ORDER_PUB. Header_Price_Att_Tbl_Type: = OE_ORDER_PUB. G_MISS_HEADER_PRICE_ATT_TBL;

    p_old_Header_Price_Att_tbl OE_ORDER_PUB. Header_Price_Att_Tbl_Type: = OE_ORDER_PUB. G_MISS_HEADER_PRICE_ATT_TBL;

    p_Header_Adj_Att_tbl OE_ORDER_PUB. Header_Adj_Att_Tbl_Type: = OE_ORDER_PUB. G_MISS_HEADER_ADJ_ATT_TBL;

    p_old_Header_Adj_Att_tbl OE_ORDER_PUB. Header_Adj_Att_Tbl_Type: = OE_ORDER_PUB. G_MISS_HEADER_ADJ_ATT_TBL;

    p_Header_Adj_Assoc_tbl OE_ORDER_PUB. Header_Adj_Assoc_Tbl_Type: = OE_ORDER_PUB. G_MISS_HEADER_ADJ_ASSOC_TBL;

    p_old_Header_Adj_Assoc_tbl OE_ORDER_PUB. Header_Adj_Assoc_Tbl_Type: = OE_ORDER_PUB. G_MISS_HEADER_ADJ_ASSOC_TBL;

    p_Header_Scredit_tbl OE_ORDER_PUB. Header_Scredit_Tbl_Type: = OE_ORDER_PUB. G_MISS_HEADER_SCREDIT_TBL;

    p_old_Header_Scredit_tbl OE_ORDER_PUB. Header_Scredit_Tbl_Type: = OE_ORDER_PUB. G_MISS_HEADER_SCREDIT_TBL;

    p_Header_Scredit_val_tbl OE_ORDER_PUB. Header_Scredit_Val_Tbl_Type: = OE_ORDER_PUB. G_MISS_HEADER_SCREDIT_VAL_TBL;

    p_old_Header_Scredit_val_tbl OE_ORDER_PUB. Header_Scredit_Val_Tbl_Type: = OE_ORDER_PUB. G_MISS_HEADER_SCREDIT_VAL_TBL;

    p_line_tbl OE_ORDER_PUB. Line_Tbl_Type: = OE_ORDER_PUB. G_MISS_LINE_TBL;

    p_old_line_tbl OE_ORDER_PUB. Line_Tbl_Type: = OE_ORDER_PUB. G_MISS_LINE_TBL;

    p_line_val_tbl OE_ORDER_PUB. Line_Val_Tbl_Type: = OE_ORDER_PUB. G_MISS_LINE_VAL_TBL;

    p_old_line_val_tbl OE_ORDER_PUB. Line_Val_Tbl_Type: = OE_ORDER_PUB. G_MISS_LINE_VAL_TBL;

    p_Line_Adj_tbl OE_ORDER_PUB. Line_Adj_Tbl_Type: = OE_ORDER_PUB. G_MISS_LINE_ADJ_TBL;

    p_old_Line_Adj_tbl OE_ORDER_PUB. Line_Adj_Tbl_Type: = OE_ORDER_PUB. G_MISS_LINE_ADJ_TBL;

    p_Line_Adj_val_tbl OE_ORDER_PUB. Line_Adj_Val_Tbl_Type: = OE_ORDER_PUB. G_MISS_LINE_ADJ_VAL_TBL;

    p_old_Line_Adj_val_tbl OE_ORDER_PUB. Line_Adj_Val_Tbl_Type: = OE_ORDER_PUB. G_MISS_LINE_ADJ_VAL_TBL;

    p_Line_price_Att_tbl OE_ORDER_PUB. Line_Price_Att_Tbl_Type: = OE_ORDER_PUB. G_MISS_LINE_PRICE_ATT_TBL;

    p_old_Line_Price_Att_tbl OE_ORDER_PUB. Line_Price_Att_Tbl_Type: = OE_ORDER_PUB. G_MISS_LINE_PRICE_ATT_TBL;

    p_Line_Adj_Att_tbl OE_ORDER_PUB. Line_Adj_Att_Tbl_Type: = OE_ORDER_PUB. G_MISS_LINE_ADJ_ATT_TBL;

    p_old_Line_Adj_Att_tbl OE_ORDER_PUB. Line_Adj_Att_Tbl_Type: = OE_ORDER_PUB. G_MISS_LINE_ADJ_ATT_TBL;

    p_Line_Adj_Assoc_tbl OE_ORDER_PUB. Line_Adj_Assoc_Tbl_Type: = OE_ORDER_PUB. G_MISS_LINE_ADJ_ASSOC_TBL;

    p_old_Line_Adj_Assoc_tbl OE_ORDER_PUB. Line_Adj_Assoc_Tbl_Type: = OE_ORDER_PUB. G_MISS_LINE_ADJ_ASSOC_TBL;

    p_Line_Scredit_tbl OE_ORDER_PUB. Line_Scredit_Tbl_Type: = OE_ORDER_PUB. G_MISS_LINE_SCREDIT_TBL;

    p_old_Line_Scredit_tbl OE_ORDER_PUB. Line_Scredit_Tbl_Type: = OE_ORDER_PUB. G_MISS_LINE_SCREDIT_TBL;

    p_Line_Scredit_val_tbl OE_ORDER_PUB. Line_Scredit_Val_Tbl_Type: = OE_ORDER_PUB. G_MISS_LINE_SCREDIT_VAL_TBL;

    p_old_Line_Scredit_val_tbl OE_ORDER_PUB. Line_Scredit_Val_Tbl_Type: = OE_ORDER_PUB. G_MISS_LINE_SCREDIT_VAL_TBL;

    p_Lot_Serial_tbl OE_ORDER_PUB. Lot_Serial_Tbl_Type: = OE_ORDER_PUB. G_MISS_LOT_SERIAL_TBL;

    p_old_Lot_Serial_tbl OE_ORDER_PUB. Lot_Serial_Tbl_Type: = OE_ORDER_PUB. G_MISS_LOT_SERIAL_TBL;

    p_Lot_Serial_val_tbl OE_ORDER_PUB. Lot_Serial_Val_Tbl_Type: = OE_ORDER_PUB. G_MISS_LOT_SERIAL_VAL_TBL;

    p_old_Lot_Serial_val_tbl OE_ORDER_PUB. Lot_Serial_Val_Tbl_Type: = OE_ORDER_PUB. G_MISS_LOT_SERIAL_VAL_TBL;

    p_action_request_tbl OE_ORDER_PUB. Request_Tbl_Type: = OE_ORDER_PUB. G_MISS_REQUEST_TBL;

    x_header_val_rec OE_ORDER_PUB. Header_Val_Rec_Type;

    x_Header_Adj_tbl OE_ORDER_PUB. Header_Adj_Tbl_Type;

    x_Header_Adj_val_tbl OE_ORDER_PUB. Header_Adj_Val_Tbl_Type;

    x_Header_price_Att_tbl OE_ORDER_PUB. Header_Price_Att_Tbl_Type;

    x_Header_Adj_Att_tbl OE_ORDER_PUB. Header_Adj_Att_Tbl_Type;

    x_Header_Adj_Assoc_tbl OE_ORDER_PUB. Header_Adj_Assoc_Tbl_Type;

    x_Header_Scredit_tbl OE_ORDER_PUB. Header_Scredit_Tbl_Type;

    x_Header_Scredit_val_tbl OE_ORDER_PUB. Header_Scredit_Val_Tbl_Type;

    x_line_val_tbl OE_ORDER_PUB. Line_Val_Tbl_Type;

    x_Line_Adj_tbl OE_ORDER_PUB. Line_Adj_Tbl_Type;

    x_Line_Adj_val_tbl OE_ORDER_PUB. Line_Adj_Val_Tbl_Type;

    x_Line_price_Att_tbl OE_ORDER_PUB. Line_Price_Att_Tbl_Type;

    x_Line_Adj_Att_tbl OE_ORDER_PUB. Line_Adj_Att_Tbl_Type;

    x_Line_Adj_Assoc_tbl OE_ORDER_PUB. Line_Adj_Assoc_Tbl_Type;

    x_Line_Scredit_tbl OE_ORDER_PUB. Line_Scredit_Tbl_Type;

    x_Line_Scredit_val_tbl OE_ORDER_PUB. Line_Scredit_Val_Tbl_Type;

    x_Lot_Serial_tbl OE_ORDER_PUB. Lot_Serial_Tbl_Type;

    x_Lot_Serial_val_tbl OE_ORDER_PUB. Lot_Serial_Val_Tbl_Type;

    x_action_request_tbl OE_ORDER_PUB. Request_Tbl_Type;

    X_DEBUG_FILE VARCHAR2 (500);

    l_line_tbl_index NUMBER;

    l_msg_index_out NUMBER (10);

    BEGIN

    dbms_output. Enable (1000000);

    oe_debug_pub. DEBUG_ON;

    oe_debug_pub. Initialize;

    fnd_global.apps_initialize (0,52862,810);

    mo_global.init ('HAVE'); Context parameter - Muti-org

    MO_GLOBAL.set_policy_context (the of ', 945);

    -MO_GLOBAL. INIT('S',null);

    OE_DEBUG_PUB. G_FILE: = ";

    oe_debug_pub. DEBUG_ON;

    oe_debug_pub. Initialize;

    X_DEBUG_FILE: = OE_DEBUG_PUB. Set_Debug_Mode ('FILE');

    oe_debug_pub. SetDebugLevel (5); -Use 5 for the debug output the most, I warn you there is a lot of data

    oe_debug_pub. Add ('NEW DEBUG START');

    -It's the UPDATE command line

    -l_line_tbl_index: = 1;

    -Modified attributes

    l_header_rec: = OE_ORDER_PUB. G_MISS_HEADER_REC;

    l_header_rec.header_id: = 98393; -order header_id

    l_header_rec. Operation: = OE_GLOBALS. G_OPR_UPDATE;

    l_Header_Payment_tbl (1): = OE_ORDER_PUB. G_MISS_HEADER_PAYMENT_REC;

    l_Header_Payment_tbl (1). PAYMENT_NUMBER: = 1;

    l_Header_Payment_tbl (1) .operation: = OE_GLOBALS. G_OPR_DELETE;

    l_Header_Payment_tbl (1). PAYMENT_COLLECTION_EVENT: = "PREPAY";

    -l_Header_Payment_tbl (1). PAYMENT_TYPE_CODE: = 'CASH '; -"CASH OUT."        -to ask TC to inform the appropriate payment type

    l_Header_Payment_tbl (1). RECEIPT_METHOD_ID: = 1365;          -appropriate received methof

    l_Header_Payment_tbl (1) .payment_amount: = 877;           -amount of the payment

    -l_Header_Payment_tbl (1). PAYMENT_PERCENTAGE: = 100;

    -CALL TO ORDER

    OE_ORDER_PUB.process_order (p_org_id = > 945,

    p_api_version_number = > 1.0, p_init_msg_list = > fnd_api.g_true p_return_values = > fnd_api.g_true,

    p_action_commit = > fnd_api.g_false x_return_status = > l_return_status x_msg_count = > l_msg_count x_msg_data = > l_msg_data

    , p_header_rec = > l_header_rec

    -, p_line_tbl = > l_line_tbl

    -, p_action_request_tbl = > l_action_request_tbl

    , p_Header_Payment_tbl = > l_Header_Payment_tbl

    -SETTINGS

    , x_header_rec = > p_header_rec x_header_val_rec = > x_header_val_rec

    , x_Header_Adj_tbl = > x_Header_Adj_tbl x_Header_Adj_val_tbl = > x_Header_Adj_val_tbl, x_Header_price_Att_tbl = > x_Header_price_Att_tbl x_Header_Adj_Att_tbl = > x_Header_Adj_Att_tbl, x_Header_Adj_Assoc_tbl = > x_Header_Adj_Assoc_tbl, x_Header_Scredit_tbl = > x_Header_Scredit_tbl , x_Header_Scredit_val_tbl = > x_Header_Scredit_val_tbl, x_Header_Payment_tbl = > x_Header_Payment_tbl, x_Header_Payment_val_tbl = > x_Header_Payment_val_tbl, x_line_tbl = > p_line_tbl x_line_val_tbl = > x_line_val_tbl x_Line_Adj_tbl = > x_Line_Adj_tbl, x_Line_Adj_val_tbl = > x_Line_Adj_val_tbl , x_Line_price_Att_tbl = > x_Line_price_Att_tbl x_Line_Adj_Att_tbl = > x_Line_Adj_Att_tbl, x_Line_Adj_Assoc_tbl = > x_Line_Adj_Assoc_tbl x_Line_Scredit_tbl = > x_Line_Scredit_tbl, x_Line_Scredit_val_tbl = > x_Line_Scredit_val_tbl, x_Line_Payment_tbl = > x_Line_Payment_tbl , x_Line_Payment_val_tbl = > x_Line_Payment_val_tbl x_Lot_Serial_tbl = >

    x_Lot_Serial_tbl, x_Lot_Serial_val_tbl = > x_Lot_Serial_val_tbl x_action_request_tbl = > p_action_request_tbl);

    dbms_output.put_line (' OM Debug file: ' | oe_debug_pub.) G_DIR | » /'|| oe_debug_pub. G_FILE);

    -Retrieve messages

    BECAUSE me in 1... l_msg_count

    LOOP

    Oe_Msg_Pub.get (p_msg_index = >, p_encoded = > Fnd_Api.G_FALSE, p_data = > l_msg_data p_msg_index_out = > l_msg_index_out);

    DBMS_OUTPUT. Put_line ('message is: ' | l_msg_data);

    DBMS_OUTPUT. Put_line ('message index is: ' | l_msg_index_out);

    END LOOP;

    -Check return status

    IF l_return_status = FND_API. G_RET_STS_SUCCESS THEN

    dbms_output.put_line ("' updated successfully");

    ON THE OTHER

    dbms_output.put_line ('update Failed');

    END IF;

    END;

    I'm getting ORA-01403: no data available in the package OE_Header_Payment_Util procedure Query_Row error message.

    Can someone help me?

    Thank you

    Aslam

    Hi all

    I added following line and it works fine.

    l_Header_Payment_tbl (1). HEADER_ID: = 98393;

    Thank you

    Aslam

  • IOM API create event of reconciliation for organizations

    I use OIM 11.1.2.2.0

    I need to create a custom jobs planned for the reconciliation of the organizations.

    When a try to use this code doesn't work

    String resourceName = "Xellerate organization";

    Parent map = new HashMap();

    parentdata.put ("name of Org", "TestOrg");

    parentdata.put ("client organization Type", "Department" ");

    reconkey = reconOperationsService.createReconciliationEvent (resourceName, parent, evAtri);

    and displays this error

    Thor.API.Exceptions.tcAPIException: An exception occurred: oracle.iam.platform.kernel.ValidationFailedException: the mandatory Type Customer organization attribute was not provided.

    Have you defined the recon areas on your resource object?  You have them mapped on your definition of process for real fields?  You have created your profile of reconciliation?  You use the same names as your recon fields on the resource object in your event?

    -Kevin

  • Create a flat file reconciliation events - a matter of design

    Hello

    I am currently evaluating an existing implementation of IOM to rebuild using OIM 11 g and have questions about the ideal method to create events for the reconciliation of a flat file.

    The current implementation uses a web service call to process a flat file and creates reconciliation events. It runs every hour.

    Although this looks cool, but I thought there was no need to go as far.

    If IOM cannot consume the flat file directly, which means that if he needs massage data, I can always load the flat file data in an external table, write a pl/sql procedure to transform the data and put it into a global temporary table, and create events of reconciliation like that.

    What would be the ideal method to load data from a flat file in IOM?

    Thank you

    Khanh

    If it is a flat file, then watched GTC option? And why no staged between the two? IOM can read flat files very well either through GTC or write your own recon code.

    -Marie

  • I want to create sub-task "Human task" programmatically by using APIs, any help?

    I want to create sub-task "Human task" programmatically by using APIs, any help?

    Solved

    ' public void createSubTask (String title, String username) survey StaleObjectException, {WorkflowException}

    oracle.bpel.services.workflow.task.model.ObjectFactory objFac = new oracle.bpel.services.workflow.task.model.ObjectFactory ();

    oracle.bpel.services.workflow.metadata.routingslip.model.ObjectFactory rObjFac = new oracle.bpel.services.workflow.metadata.routingslip.model.ObjectFactory ();

    DecomposeTaskModel.IParticipantGenerator generator = null;

    DecomposeTaskModel decomposeTaskModel = new DecomposeTaskModel();

    DecomposeTaskModel.SimpleGenerator simpleGenerator = decomposeTaskModel.new SimpleGenerator();

    generator = simpleGenerator;

    Assignee list = new ArrayList();

    assignee. Add (new TaskAssignee (username, "user"));

    Participants participants = generator.generate (null, null, assignee,);

    DTI DecomposeTaskInfo = objFac.createDecomposeTaskInfo ();

    dti.setTitle (title);

    RoutingSlip rs = rObjFac.createRoutingSlip ();

    rs.setParticipants (participants);

    This.Task is WorklistServiceLocator.getTaskService () .decomposeTask (this.task.getSystemAttributes (.getTaskId ()), rs, wfCtx, dti);.

    }

  • Creating a jar using api

    Hi all

    Using JDK 6, I need to use api jar to create a jar for a simple JavaFX application. I used to use api jar to create files jar for Java applications, but now I need to do the same for JavaFx applications. The problem is the referencing 'Jfxrt.jar' of JavaFX. I can't put it in the directory where the 'jfxrt.jar' is on the way to class because the directory name includes spaces, and the names of entries cannot have spaces, e.g. "c:\Program file...". ». What can I do?

    Thank you

    Hi gen,.

    I don't know what the average pot in the api. Do you mean this api? http://docs.Oracle.com/javase/1.4.2/docs/API/Java/util/jar/package-summary.html

    Or you want to jar file using the command line?

    If you use the command line, then either you can define Class-Path to the "Manifest.MF" or you can run the jar using Classpath

    With the help of the "manifest. MF.

    Manifest-Version: 1.0
    Class-Path: . file:///C:/Program%20Files%20(x86)/Java/jdk1.7.0_09/jre/lib/jfxrt.jar
    Main-Class: test.HelloWorld
    

    For more info goto manifest here: http://docs.oracle.com/javase/tutorial/deployment/jar/defman.html

    With the help of option - cp when running command line Jar

    Syntax: java -cp "current path;path of your jfxrt" -jar JarfileName.jar
    Example: java -cp ".;C:\Program Files (x86)\Java\jdk1.7.0_09\jre\lib\jfxrt.jar" Test.jar
    

    Using one of the above approach can run the jar file containing the class of javafx

    Thank you
    Narayan

  • Create Source for Interface - using API

    You will need to create source for newly created using API interface.

    Tried it with code, get below error below

    During the synchronization of a new object was found through a relationship that was not marked cascade PERSIST:

    Please help on this, thanks.

    Here is my code component,


    The list of ds < DataSet > = next_intr.getDataSets ();
    < DataSet > iterator itr = ds.iterator ();
    DataSet ds_nxt1 = itr.next ();
    String ds_name = ds_nxt1.getName ();
    If (ds_name.equalsIgnoreCase (ds_nxt. GetName()))
    {
    Collection < SourceDataStore > ds_sources = ds_nxt.getSourceDataStores ();
    ds_nxt1.addSourceDataStore (ds_sources. Iterator(). Next());
    }

    http://odiexperts.com/creating-permanent-interface-based-on-model-level-2/

    http://odiexperts.com/creating-interface-for-single-source-and-target/

  • create a UDF by using APIs

    Hello Experts,

    Is it possible to create a UDF by using API? I don't see no related API.


    Thanks and greetings
    INIYA

    Check the DDC table

  • ICF target recon is nto create the event

    Hi all
    I am trying to reconcile the data using the framework of the ICF
    I created the connector object on the side of spi with required attributes
    But is not create the event on the side of the api
    I mean that the connector object appears in the console with the attribute information mapped with values is throgh SPI API
    It is not through any exception
    Someone help me on this issue

    Kind regards

    Nanan Gorrepati

    Hello

    Make sure you pass all of the required fields of the connector object on the side of SPINNAKER and check the maps in the search for reconciliation too...

  • How can I create an event listener for the change of variable shared or similar?

    Hello

    I have a 'big' 6 devices communicating measurement system via the TCP protocol. The system is designed to use REST (the representative State transfer) with JSON (JavaScript object notation).

    Now, I need to add labview program to this environment. I've implemented a solution to 'work' with the help of this forum. Thank you for this! Now, I need to do better (currently no timestamps, large delays, etc.).

    I currently have a web service deployed using http-get as input. My web service .vi is just passing the web entrance to shared variables that are then questioned in real measurement program. Reason is that when I put the measurement program directly to the web service, it does not (something about rights and dependencies). Measurement program includes one third of the owners (Instron) drivers. Also I would not direct access via the network to our mechanical testing device potentially dangerous.

    Now, I want to change the message from the web services .vi commensurate .vi. Currently I have a loop of 10ms to query for changes in the shared variable. Is there a better way to do this? I thought create a listener to the shared variable change events.

    In addition, if you have any ideas (preferably, working code example) how to make the interface between labview and TCP-JSON I would really appreciate it.

    BR,

    Juha

    Currently in LabVIEW, the only way to create an event listener or event NSV is to use the DSC toolkit.  Most of the time the DSC is a very expensive tool that simply encapsulates the functionality that is built into the motor of the PSP and OAS and which is accessible to anyone who can program in LabWindows/CVI.

    http://zone.NI.com/reference/en-XX/help/370051P-01/CVI/libref/cvicnvcreatesubscriber/

    If you want to collaborate, I would like to create a small library of LV that would create a base SV events using a vi LV reminder or possibly passing return user LV event which is how works the DSC toolkit.  I asked OR several times to explain how do this and they're very tight discreet about it.  I guess that they do not want to give users LV less reason to buy the DSC.

  • Can we delete a task once we create an event on this particular task?

    Hi Experts

    We have different levels of tasks in our project as follows:

    Task1

    Task1.1

    Task 1.1.1

    We created an event on task 1.1.1. Now for some reason, we want to remove the task of albums and Middle? Can do us?

    Your reply in this regard is appreciated.

    Thank you.

    Hello

    System does not remove the job from the lowest level.

    The restricted system also pass the task of level lowest to another branch under another greater task.

    He so there no way to change the project structure using forms or the API.

    Dina

  • confused by Create User Event

    I have not done much user events.

    According to the help of LabVIEW,.

    The entry for the function Create User Event is an individual item or a cluster whose name becomes the name of the user event, and whose data type defines the type of data for the event.

    In VI I inherited, the original programmer has a cable of a cluster error (no error) in the event user create.

    What does this do?

    NYC says:

    What does this do?

    Allows someone to send error information using a user event.

  • It s possible to create a Java plug-in to use BBM in a WebWork?

    Hello everyone.

    As the title suggests, "it s possible to create a Java plug-in to use BBM in a WebWork?

    I mean, the java extension BBM will work in a WebWork?

    Thank you

    According to this page, the BBM API for Java are in beta. It is also expressly stated that MDB widget will soon be available, and it was in October.

    It does not seem to be out yet. However, I think that you could develop your own Extension to expose the Beta SDK for use in javascript. There are around the resources to learn how to create your own extensions. This lab is the best.

  • Create the event in burst Analytics

    How to create events in burst Analytics? I use following code but it does not create any event in whirlwind FRO my project.

    FlurryAgent.setLogEvents (true);
    FlurryAgent.onEvent ("MyEvent");

    You call Flurry.onDestroyApp () when the application is closed?   Test yourself on Simulator or device?

Maybe you are looking for