Routing data to be collected

Plese explain me routing data to be collected and uploaded into sap system

Hi Balaji
You have to collect the following data for routing:
1.Operations & their sequences
2. work centers used for the operations
3.stansdard values for the respective operations with base( batch) qtys
4. Operation details like splitting, external operations etc
You have to identify the respective fields for the same.
You can take the help of Technical ( ABAP) consultant for this purpose.
Regards
YMREDDY

Similar Messages

  • Creating a collection from a query in Apex 4.2 is not populating the data into the collection.

    I have a process that creates a collection with data from multiple tables. The query returns multiple rows in 'Sql commands' tab. The same query is used to create the collection in 'Before Header' and when i create a region with Region source as
    Select * From apex_collections Where collection_name = 'load_dashboard';
    At the time of rendering the page shows me 'no data found'.
    what could be the problem? Are there any prerequisites before creating the collection?
    Thanks in Advance,
    Sriram

    Hi Denes,
    Below is my code for creating and saving data into the collection.
    if apex_collection.collection_exists(p_collection_name =>'load_dashboard') then
       apex_collection.delete_collection(
             p_collection_name =>'load_dashboard');
    end if;
    apex_collection.create_collection_from_query(
        p_collection_name => 'load_dashboard',
        p_query => 'select a.rowid
                   ,b.first_name
                   ,b.last_name
                   ,c.job_title
                   ,d.parent
                   ,d.child_level_1
                   ,d.child_level_2
                   ,a.resource_allocation
                   ,a.person_id
                   ,a.month_id
                   ,a.oracom_project_id    ,wwv_flow_item.md5(a.rowid,b.first_name,b.last_name,c.job_title,d.parent,d.child_level_1,d.child_level_2,a.resource_allocation,a.person_id,a.month_id,a.oracom_project_id)
    from oracom_resource_management a, oracom_people b,oracom_job c ,oracom_project d where a.supervisor_id=886302415 and a.month_id=201312 and a.oracom_job_id=c.job_id and a.person_id=b.person_id and a.oracom_project_id=d.oracom_project_id',
       p_generate_md5 => 'YES'
    Sriram.

  • Facing problem during uploadation of Routing data using CA01-BDC - URGENT

    Dear All,
    When I am trying to upload Routing data using CA01 in the Table Control scenario, then I am facing problem as my last 2 records are not getting uploaded from my Test file.
    For example, I am having 47 records in my Test File and after setting ‘Default size’ parameters (to avoid screen resolution problem)
    I have 15 table control line items data per page. The Page down logic ('=P+') is working fine, but my below BDC code failed to take
    the remainder last 2 records from the Test File.
    Analysis: When I am running my “Call Transaction” bdc in foreground, then the 1st page down occurs after 15th record, 2nd page down occurs after 29th record( as in Table Control 1st page’s 15th record is coming on the Top of 2nd page). 3rd page down occurs after 43rd record
    (as 2nd page’s 29th record is coming on the top of 3rd page). In the 4th Table Control Page 43rd record of previous page is coming on top, and then it’s taking 44th & 45th records from the Test File and then it is triggering SAVE (=BU). Thus, our last 2 records
    (i.e. 46th, 47th record) are not getting uploaded in the routing screen from our Test File.
    If anybody has encountered this scenario previously, please help me URGENTLY in fixing the bugs here. It’s VERY, VERY URGENT…
    FYI. For others 45 successful records already uploaded, all the screen fields values are coming properly in the routing screen, and here there is no issue.
    Thanks very much…
    Thanks & Regards
    Sudipta – Project Lead
    Volvo Client Location
    I am pasting my BDC source code below:
    REPORT ZRT1_UPLOAD_CA01_F
                           NO STANDARD PAGE HEADING
                           LINE-SIZE 255.
                            I N C L U D E S                              *
    Include for Data Declarations
    INCLUDE zrout_top.
    Include for Forms
    INCLUDE zrout_form.
    INCLUDE zrout_include_f_ca01.
    *AT SELECTION-SCREEN ON VALUE-REQUEST FOR <field>
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR P_FILE.
    Attaching F4 help with filename
      PERFORM F1001_GET_F4.
               S T A R T   -   O F  -  S E L E C T I O N                 *
    START-OF-SELECTION.
    Perform to read the input file
      PERFORM f_read_file.
    Perform to fill the BDC data
      PERFORM f_fill_bdctab.
                   E N D   -   O F  -  S E L E C T I O N                 *
    END-OF-SELECTION.
      FREE: i_bdcdata,
            i_messtab,
            i_record.
    x----
    *&  Include           ZROUT_TOP                                        *
                      D A T A B A S E    T A B L E S                     *
    TABLES: t100.          "Messages
                    D A T A    D E C L A R A T I O N S                   *
    T A B L E    T Y P E S *****************************
    For input data
    TYPES: BEGIN OF ty_record,
            matnr(18),  "Material Number
            werks(4),   "Plant
            verwe(3),   "Usage
            statu(3),   "Status
            arbpl(8),   "Work Center
            steus(4),   "Control Key
            ltxa1(40),  "Description of Operation
            bmsch(13),  "Base Quantity
            meinh(3),   "Unit of Measure
            vgw01(11),  "Machine
            vge01(3),   "Unit of measure of activity
          END OF ty_record.
    I N T E R N A L    T A B L E S ***********************
    Internal Table for input file name
    DATA: i_file_tab  TYPE STANDARD TABLE OF sdokpath   INITIAL SIZE 0.
    Internal Table for BDC Data
    DATA: i_bdcdata   TYPE STANDARD TABLE OF bdcdata    INITIAL SIZE 0.
    Internal Table for BDC Messages
    DATA: i_messtab   TYPE STANDARD TABLE OF bdcmsgcoll INITIAL SIZE 0.
    Internal Table for Input file
    DATA: i_record TYPE STANDARD TABLE OF ty_record INITIAL SIZE 0.
    W O R K      A R E A S *************************
    Work Area for input file name
    DATA: wa_file_tab LIKE sdokpath.
    Work Area for BDC Data
    DATA: wa_bdcdata LIKE bdcdata.
    Work Area for BDC Messages
    DATA: wa_messtab LIKE bdcmsgcoll.
    Work Area for Input file
    DATA: wa_record TYPE ty_record.
    V A R I A B L E S ****************************
    DATA: v_filename TYPE string,
          v_fnam(40) TYPE c.
    DATA: wa_opt TYPE ctu_params.
    C O N S T A N T S ***************************
    CONSTANTS: c_werks TYPE rc27m-werks VALUE 'tp',
               c_steus TYPE plpod-steus VALUE 'PP01'.
    *Selection Screen.
    SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001.
    PARAMETERS:
              Input file name
                P_FILE TYPE rlgrap-filename OBLIGATORY. " DEFAULT 'C:\'.
    SELECTION-SCREEN END OF BLOCK B1.
    x----
    *&  Include           ZROUT_FORM                                       *
    *&      Form  f_fill_bdctab
          Form to fill the BDC Data
    FORM f_fill_bdctab.
      TABLES mapl.          "Assignment of Task Lists to Materials
      DATA: l_cnt_item(3)  TYPE n VALUE 1.    "Line item counter
      DATA: first(3)  TYPE n VALUE 16.    "Line item counter
      DATA: next(3)  TYPE n .    "Line item counter
      DATA: lin(3) TYPE n .    "Line item counter
      DATA: l_v_bmsch(13),   "Base qty
            l_v_meinh(3),    "Unit of Measure
            l_v_vgw01(11),   "Machine
            l_v_vgw02(11),   "Labour
            l_v_vge01(3).    "Unit of measure of activity
      DATA l_v_nextline TYPE sy-tabix.
      DATA wa_temp TYPE ty_record.
        Initialize Counter
          l_cnt_item = 1.
      SORT i_record BY matnr.
      LOOP AT i_record INTO wa_record.
    AT NEW matnr.
        REFRESH: i_bdcdata,
                 i_messtab.
        SET PARAMETER ID 'PLN' FIELD space.
        SET PARAMETER ID 'PAL' FIELD space.
        PERFORM f_bdc_dynpro      USING 'SAPLCPDI' '1010'.
        PERFORM f_bdc_field       USING 'BDC_OKCODE'
                                        '/00'.
      Material Number
        PERFORM f_bdc_field       USING 'RC27M-MATNR'
                                        wa_record-matnr.
       Plant
        PERFORM f_bdc_field       USING 'RC27M-WERKS'
                                        c_werks.
        PERFORM f_bdc_field       USING 'RC271-PLNNR'
      Check if routing already exits for the material
        SELECT * FROM mapl
                      INTO mapl
                                WHERE matnr EQ wa_record-matnr
                                  AND werks EQ c_werks
                                  AND plnty EQ 'N'.
          IF sy-subrc EQ 0.
            PERFORM f_bdc_dynpro      USING 'SAPLCPDI' '1200'.
            PERFORM f_bdc_field       USING 'BDC_OKCODE'
                                            '=ANLG  '.
          ENDIF.
        ENDSELECT.
        perform f_bdc_dynpro      USING 'SAPLCPDA' '1200'.
        perform f_bdc_field       USING 'BDC_OKCODE'
                                  '=VOUE'.
    Group Counter
        perform f_bdc_field       USING 'PLKOD-PLNAL'
      Usage
        PERFORM f_bdc_field       USING 'PLKOD-VERWE'
                                        '1'.
      Status
        PERFORM f_bdc_field       USING 'PLKOD-STATU'
                                        '4'.
    ENDAT.
        PERFORM f_bdc_dynpro      USING 'SAPLCPDI' '1400'.
      Check if page is full
        IF l_cnt_item EQ '16'.
        Page down
          PERFORM f_bdc_field       USING 'BDC_OKCODE'
                                               '=P+'.
          l_cnt_item = 1.
    ELSE.
    PERFORM f_bdc_field       USING 'BDC_OKCODE'
                                  '/00'.
    ENDIF.
       CLEAR v_fnam.
      Populate item level details
    Work Center
        CONCATENATE 'PLPOD-ARBPL(' l_cnt_item ')' INTO v_fnam.
        PERFORM f_bdc_field       USING v_fnam
                                        wa_record-arbpl.
      Control Key
        CONCATENATE 'PLPOD-STEUS(' l_cnt_item ')' INTO v_fnam.
        PERFORM f_bdc_field       USING v_fnam
                                        c_steus.
      Description of Operation
        CONCATENATE 'PLPOD-LTXA1(' l_cnt_item ')' INTO v_fnam.
        PERFORM f_bdc_field       USING v_fnam
                                        wa_record-ltxa1.
      Base Quantity
        CONCATENATE 'PLPOD-BMSCH(' l_cnt_item ')' INTO v_fnam.
        PERFORM f_bdc_field       USING v_fnam
                                        wa_record-bmsch.
      Unit of Measure
        CONCATENATE 'PLPOD-MEINH(' l_cnt_item ')' INTO v_fnam.
        PERFORM f_bdc_field       USING v_fnam
                                        wa_record-meinh.
      Machine
        CONCATENATE 'PLPOD-VGW01(' l_cnt_item ')' INTO v_fnam.
        PERFORM f_bdc_field       USING v_fnam
                                        wa_record-vgw01.
      Labour
       CONCATENATE 'PLPOD-VGW02(' l_cnt_item ')' INTO v_fnam.
       PERFORM f_bdc_field       USING v_fnam
                                       wa_record-vgw02.
      Unit of measure of activity
        CONCATENATE 'PLPOD-VGE01(' l_cnt_item ')' INTO v_fnam.
        PERFORM f_bdc_field       USING v_fnam
                                        wa_record-vge01.
          l_cnt_item = l_cnt_item + 1.
       CLEAR wa_record.
    AT END OF matnr.
         PERFORM f_bdc_field       USING 'BDC_OKCODE'
                                  '/00'.
          PERFORM f_bdc_field         USING 'BDC_OKCODE'
                                  '=BU'.
         wa_opt-DISMODE = 'A'.
         wa_opt-DEFSIZE = 'X'.
         wa_opt-UPDMODE = 'S'.
        PERFORM f_bdc_transaction USING 'CA01'.
       Initialize Counter
         l_cnt_item = 1.
    ENDAT.
      ENDLOOP.
    ENDFORM.                    " f_fill_bdctab
    x----
    *&  Include           ZROUT_INCLUDE_F_CA01                             *
    *&      Form  f_read_file
          Form to read the file from presentation server
    FORM f_read_file .
    To get the file name
      DATA l_v_file TYPE string.
    l_v_file = P_FILE.
    CALL FUNCTION 'GUI_UPLOAD'
          EXPORTING
            filename                = l_v_file
            filetype                = 'ASC'
            has_field_separator     = 'X'
          TABLES
            data_tab                = i_record
          EXCEPTIONS
            file_open_error         = 1
            file_read_error         = 2
            no_batch                = 3
            gui_refuse_filetransfer = 4
            invalid_type            = 5
            no_authority            = 6
            unknown_error           = 7
            bad_data_format         = 8
            header_not_allowed      = 9
            separator_not_allowed   = 10
            header_too_long         = 11
            unknown_dp_error        = 12
            access_denied           = 13
            dp_out_of_memory        = 14
            disk_full               = 15
            dp_timeout              = 16
            OTHERS                  = 17.
        IF sy-subrc <> 0.
          MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                  WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        ENDIF.
    ENDIF.
    ENDFORM.                    " f_read_file
    *&      Form  f_bdc_dynpro
          Form to populate BDC Tab for new screen
         -->fp_program   Screen program name
         -->fp_dynpro    Screen Number
           Start new screen                                              *
    FORM f_bdc_dynpro USING fp_program fp_dynpro.
      CLEAR wa_bdcdata.
      wa_bdcdata-program  = fp_program.
      wa_bdcdata-dynpro   = fp_dynpro.
      wa_bdcdata-dynbegin = 'X'.
      APPEND wa_bdcdata TO i_bdcdata.
    ENDFORM.                    "f_bdc_dynpro
    *&      Form  f_bdc_field
           Insert field                                                  *
    FORM f_bdc_field USING fp_fnam fp_fval.
      IF NOT fp_fval IS INITIAL.
        CLEAR wa_bdcdata.
        wa_bdcdata-fnam = fp_fnam.
        wa_bdcdata-fval = fp_fval.
        APPEND wa_bdcdata TO i_bdcdata.
      ENDIF.
    ENDFORM.                    "f_bdc_field
    *&      Form  f_bdc_transaction
          Call transaction and error handling
         -->fp_tcode   Transaction code
    FORM f_bdc_transaction  USING fp_tcode.
      DATA: l_mstring(480),
            l_color         TYPE i,
            l_mode          TYPE c.
      REFRESH i_messtab.
    CALL TRANSACTION fp_tcode USING i_bdcdata
                       OPTIONS FROM wa_opt
                       MESSAGES INTO i_messtab.
    Messages during upload
      LOOP AT i_messtab INTO wa_messtab.
        CASE wa_messtab-msgtyp.
          WHEN 'S'.
            l_color = 5.
          WHEN 'E'.
            l_color = 6.
          WHEN 'W'.
            l_color = 3.
        ENDCASE.
        FORMAT COLOR = l_color.
        SELECT SINGLE * FROM t100 WHERE sprsl = wa_messtab-msgspra
                                  AND   arbgb = wa_messtab-msgid
                                  AND   msgnr = wa_messtab-msgnr.
        IF sy-subrc = 0.
          l_mstring = t100-text.
          IF l_mstring CS '&1'.
            REPLACE '&1' WITH wa_messtab-msgv1 INTO l_mstring.
            REPLACE '&2' WITH wa_messtab-msgv2 INTO l_mstring.
            REPLACE '&3' WITH wa_messtab-msgv3 INTO l_mstring.
            REPLACE '&4' WITH wa_messtab-msgv4 INTO l_mstring.
          ELSE.
            REPLACE '&' WITH wa_messtab-msgv1 INTO l_mstring.
            REPLACE '&' WITH wa_messtab-msgv2 INTO l_mstring.
            REPLACE '&' WITH wa_messtab-msgv3 INTO l_mstring.
            REPLACE '&' WITH wa_messtab-msgv4 INTO l_mstring.
          ENDIF.
          CONDENSE l_mstring.
          WRITE: / wa_messtab-msgtyp, l_mstring(250).
        ELSE.
          WRITE: / wa_messtab.
        ENDIF.
        FORMAT COLOR OFF.
      ENDLOOP.
      SKIP.
    ENDFORM.                    " f_bdc_transaction
    FORM F1001_GET_F4.
      CALL FUNCTION 'KD_GET_FILENAME_ON_F4'
           EXPORTING
                PROGRAM_NAME  = SY-REPID
                DYNPRO_NUMBER = SY-DYNNR
                FIELD_NAME    = P_FILE
           CHANGING
                FILE_NAME     = P_FILE
           EXCEPTIONS
                MASK_TOO_LONG = 1
                OTHERS        = 2.
      IF SY-SUBRC <> 0.
      File is not selected
       MESSAGE I000 WITH TEXT-M01.
      ENDIF.
    ENDFORM.                    " F1001_GET_F4

    Sudipta,
    Would request you to post this to ABAP-Forum for Immediate response.
    I had this problem, but the ABAP guy did something to correct this...it was more of screen resoultion difference between the recorded system and uploading system. Please try to use the same system which was used to record and try.
    Regards,
    Prasobh

  • How do I get routing data from the Map App (powered by TomTom) so I can display the point-to-point annotations (turn-by-turn navigation) without leaving my own application.

    I have a tableView displaying a list of contacts from a Cloud Database.  After selecting a contact, I push to a programmatically created MKMapView.  Then I display the initial region (the view) that includes the users current location (starting point) and their selected destination (end point).
    Now I want to display annotations (as described in the Location Awareness Programming Guide) that displays polylines which will represent the turn-by-turn navigation IN MY OWN APPLICATION, and not in the Map App currently used in IOS6. 
    Due to licensing and its becoming depricated in IOS 6, I do not want to get routing data from the Google Maps API.  How do I get routing data from the IOS 6 Map App (powered by TomTom) so I can display the point-to-point annotations (turn-by-turn navigation) without leaving my own application?
    I checked out Stack Overflow and other forums which basically left me with the impression that this is not possible. I also checked out the TomTom iPhone Mobile SDK User Guide from the TomTom Developer Portal and am still confused.  It must be possible to retrieve routes, since the Map App can display turn-by-turn directions.  How can I retrieve turn-by-turn data that I may display as a route within my own application?

    Thanks Michael. Apologies for the slow reply I was away for a bit (holiday blitz at work and visiting family madness etc.etc.) back now, I set both options you requested to "never " and retried the CMS software with no change. 
    I do have progress of a sort though, as a test I took a separate test PC and put a clean install of Win7 on and loaded up the CMS software (it worked perfectly) and then took the version of ole32.dll off that machine and put it onto the computer I had built
    for her (using Linux) and...
    got a new error code. Darn I was so sure I had found a clever solution this time lol.
    Anyway now when the CMS fails it gives me a similar error but the offending module is "ntdll.dll" sooo... I tried taking the "working" version of ntdll.dll from the test box and moving it over (making sure to back up the existing ones
    first so I could put them back if needed) to her new PC and the PC would not boot. 
    It seems to want the original versions of a few Dynamic Link Libraries and if I could somehow give it those while not breaking Win7 it should theoretically work seeing as it no longer errors with ole32.dll. 
    ntdll.dll however seems necessary for Win7 to boot.
    So what I am wondering now is:
    Is there some way to have both versions of the DLL file in the system32 folder (bypassing the "cannot have two files with the exact same name in the same folder" thing) or rename the original DLL's something else and somehow make the CMS look for
    the new named versions so the system has the updated DLL's it needs to boot/run and the CMS has the old ones it wants to run or is there someway to have a self contained install of the CMS, say on a USB flash drive and give it it's own E:/windows/system32/needed
    dll's  path to the files it needs? 
    Willing to try any other options or settings you may have come up with as well.
    Thanks again for your reply and my apologies for not answering sooner.

  • How can I best analyze data that were collected in an Acrobat XI Pro form in a variety of ways?

    I would like to analyze the data that I collect using an Acrobat XI Pro form using a variety of numerical and statistical methods.  I assume the first step would be to export the data to a program such as Microsoft Excel.  I am wondering if there are any free or inexpensive programs I can use to perform the analyses.  i have SPSS, but I am looking for something free or inexpensive that my colleagues can use.

    Yes, you can export the data as a tab-delimited text file, which you can then process in Excel.
    What you do after that point is not really related to the subject of this forum.

  • Inserting Data into a Collection

    Hi
    Can anybody suggest how to Insert data into a Collection from another Collection Using Bulk Binds in PLSQL?
    My scenario :-
    CREATE OR REPLACE PACKAGE te_ar IS
    TYPE srm_rec IS RECORD (col1 <table>.<col1>%TYPE, col2 <table>.<col2>%TYPE);
    TYPE srm_rec_list IS TABLE OF srm_rec INDEX BY BINARY_INTEGER;
    FUNCTION z_srm_rec RETURN srm_rec_list PIPELINED;
    END te_ar;
    CREATE OR REPLACE PACKAGE BODY te_ar IS
    FUNCTION z_srm_rec RETURN srm_rec_list PIPELINED IS
    v_srm_rec srm_rec;
    TYPE col1_t IS TABLE OF <table>.<col1>%TYPE INDEX BY BINARY_INTEGER;
    TYPE col2_t IS TABLE OF <table>.<col2>%TYPE INDEX BY BINARY_INTEGER;
    col1_tt col1_t;
    col2_tt col2_t;
    CURSOR c1
    IS
    SELECT col1, col2 FROM table;
    BEGIN
    OPEN c1;
    FETCH c1 BULK COLLECT INTO col1_tt,col2_tt;
    FORALL i IN 1 .. c1%ROWCOUNT
    v_srm_rec.col1(i) := col1_tt(i);
    v_srm_rec.col2(i) := col2_tt(i);
    PIPE_ROW(v_srm_rec);
    CLOSE c1;
    RETURN;
    END;
    END te_ar;
    I have created a Record Type in which I am trying to insert rows using bulk bind and return it using a pipelined function.
    This approach is throwing me errors in which I am unable to use both Pipelining and Bulk Binds together so that I can make the Performance of the entire bit better.
    Please suggest the way forward.
    Any other relevant info I am ready to supply.
    Thanks
    Arnab

    FORALL is used for bulk DML statements and will not work for your collections. http://download.oracle.com/docs/cd/B19306_01/appdev.102/b14261/forall_statement.htm#LNPLS01321. I think you may want to use a regular FOR loop.

  • Save data into multiple collections in Data Control

    Hi,
    In another post (https://forums.oracle.com/message/11094155) I asked how to merge data from multiple collections and show it into a table. FrankNimphius gave me the correct answer. I have now my table with data merged from some collections from my data control. But now I have the opposite request: the table must allow insert new rows and store the data in the model that is represented by all those collections.
    I saw this blog https://blogs.oracle.com/jdevotnharvest/entry/how_to_add_new_adf, and is great, but works with one collectionModel, but the idea is exactly the same, just with multiple collectionModels inside a parent one.
    The table is not bounded to one collectionModel, it is bounded to a List<MyObject> in my managed bean, so the built-in Create/Delete data control operations of the parent collection don't work.
    Another thing is: for me the model is a black box, I don't know anything about the model, I just know the datacontrol.
    Thanks!
    AAPDL

    Hi Frank,
    I tried calling the create built-in operation for each collection.
    I insert the row in the parent RowSetIterator and set it as the currentRow, then call the create operation. Later insert rows in each children and call the create operation of each one. Finally I call the commit operation.
    I tried and it worked, but you said that there would be a tricky part. I don't know if in the code bellow I did that, please let me know.
    In the bellow code the PersonasBinding2 is bind to the iterator of the parent collection, and the PersonaNaturalBinding2 and IdentificacionBinding2 are bind to the children collections.
                DCBindingContainer bindingContainer = (DCBindingContainer)BindingContext.getCurrent().getCurrentBindingsEntry();
                JUCtrlHierBinding personasBinding = (JUCtrlHierBinding)bindingContainer.findCtrlBinding("PersonasBinding2");
                RowSetIterator personasRowSet = personasBinding.getIteratorBinding().getRowSetIterator();
                Row nuevaFilaPersona = personasRowSet.createRow();
                nuevaFilaPersona.setAttribute("Id",15);
                nuevaFilaPersona.setAttribute("TipoPersona",0);
                OperationBinding createPersonaOperation = bindingContainer.getOperationBinding("CreatePersona");
                createPersonaOperation.execute();
                personasRowSet.setCurrentRow(nuevaFilaPersona);
                JUCtrlHierBinding personaNaturalBinding = (JUCtrlHierBinding)bindingContainer.findCtrlBinding("PersonaNaturalBinding2");
                RowSetIterator personaNaturalRowSet = personaNaturalBinding.getIteratorBinding().getRowSetIterator();
                Row nuevaFilaPersonaNatural = personaNaturalRowSet.createRow();
                nuevaFilaPersonaNatural.setAttribute("IdPersona",15);
                nuevaFilaPersonaNatural.setAttribute("PrimerApellido","PA");
                nuevaFilaPersonaNatural.setAttribute("PrimerNombre","PN");
                nuevaFilaPersonaNatural.setAttribute("SegundoApellido","SA");
                nuevaFilaPersonaNatural.setAttribute("SegundoNombre","SN");
                OperationBinding createPersonaNaturalOperation = bindingContainer.getOperationBinding("CreatePersonaNatural");
                createPersonaNaturalOperation.execute();
                JUCtrlHierBinding identificacionBinding = (JUCtrlHierBinding)bindingContainer.findCtrlBinding("IdentificacionBinding2");
                RowSetIterator identificacionRowSet = identificacionBinding.getIteratorBinding().getRowSetIterator();
                Row nuevaFilaIdentificacion = identificacionRowSet.createRow();
                nuevaFilaIdentificacion.setAttribute("IdPersona",15);
                nuevaFilaIdentificacion.setAttribute("NumeroIdentificacion","NI");
                nuevaFilaIdentificacion.setAttribute("TipoIdentificacion","TI");
                OperationBinding createIdentificacionOperation = bindingContainer.getOperationBinding("CreateIdentificacion");
                createIdentificacionOperation.execute();
                OperationBinding commitOperation = bindingContainer.getOperationBinding("Commit");
                commitOperation.execute()
    By other side, in the delete operation I guess that I must delete the childrens before the parent. I know that ADF supports the delete cascade operation only if in the database is configured in that way, but as I said, I don't know how is the model.
    Thanks!
    AAPDL

  • Update Routing data after change in Work Center

    Hello All,
    I have just modified the Costing Data for 100 Work Centers CR02, setting a new "Activity Type" and "Activity Unit".  But the Routing Data CA02 does not get updated correspondingly.  I would like to ask is there any standard program which can help me to do the mass processing as to update the data to the corresponding routing?
    Thanks.

    1) You can change as per Mr Anupam sharma Said
    or
    2) YOU can also Update the data IN CA85N
    In selection criteria enter the respective work center and Plant
    and In new Value Give
    Same work center, Plant,  activity value , Unit  and activity type
    execute
    select the all the work center  and then click mass change
    Edited by: Sundaresan . E. V on Nov 12, 2010 10:25 AM

  • Transferring Route Data to PC

    An iPhone 5 has a built in GPS system, OK?
    So your iPhone keeps "track" of where you are? [Actually where the iPhone is! ]  Now I assume that it stores the route you took to get to where you are in some format? My question is really twofold: Can I somehow recover the route data and transfer it to a PC or LapTop be used in a program like ArcGis or ArcView? (ii)  If it can be done, how do I do it? I ask the questions as I wish to keep track of wanderings during guinea fowl counting activities. My current system of using a separate GPS and subsequent data transfer is a bit cumbersome. If my iPhone can do it, it sure will make my life quite a bit easier!
    Any help appreciated.
    Andrew McLaren

    The native Maps app does not support this.

  • Routing data from web ovi map TO my mobile device

    How can I transfer the route data from web ovi map to my cell phone (E66) an using it for navigation?

    within your phone application you can synch.
    Depends on your phone's map-version, where that is... check the menu-area "favourites"...

  • Routing Data Report

    Dear Experts,
    We have generated the routing data report similar to CA51.
    FS is as follows: Pass MATNR(Material),WERKS(Plant) & PLNTY(Task list type) to Table MAPL fetch PLNNR(Group) & PLNAL(Gr. Counter).Pass Group & Gr. Counter through Table PLAS and fetch Node(PLNKN) and pass Group(PLNNR) and Node(PLNKN) into Table PLPO.
    The problem in the Report is for e.g., 3 materials are assigned to the same group & group counter,
    it displays only one material instead of 3 materials. So is there anything I need to change in the FS? Can anybody suggest the possible solution.
    Regards,
    Mahesh
    Edited by: maheshbr1234 on Aug 5, 2011 11:41 AM

    Hi Mahesh,
                          Can you please try like this mentioned below-
    Pass WERKS(Plant) & PLNTY(Task list type) to Table MAPL fetch PLNNR(Group) & PLNAL(Group Counter)
    Pass Group & Gr. Counter through Table PLAS and fetch nodes and pass nodes (PLNKN) into Table PLPO.
    and again paas the the respective group counter in  PLFL.
    Please try this and revert.
    Regards
    Chandra

  • Table for routing data

    Sir,
       i want to establish a link between material, plant and cost center.For the same i would like to know the table wherein i can get this link. Routing data related table containing workcenter, cost center will do my job.

    Hi,
    a)First get a text download of the material for u r plant thru MARC table.
    u hv now got u r material
    b)input this material data into the MAPL table
    u hv routing/material data
    c)input the material to CRHD table and u will get download the WORK CENTRE adn corresponding ObjectI.D for the wor centre
    u get W/c and its object I.d
    d)Input the Object i.d to table CRCO and u get the cost center.
    u now have the cost centre as well.
    Like our Guru suggested u can write a query to JOIN table.
    I hope this solves u r query.
    Pls update on this
    THNX
    HKR

  • Functional module required to fetch ROUTE data

    Hi ,
    Is there any functional module which fetches Route data , based on Partner number  ( example 4000391) and Partner Role ( example WE ).

    Hello,
    Can you pls let me know what is route data?
    is it routing data?
    raghav

  • Down Loading the BOM & Routing Data from Production client

    Hi,
    Is there any method to download the ALL Material BOM & Routing data in excel sheet from Production client.
    Thanks
    shiv

    for hearder material u can use CA51 for routing in the plant
    For bom header material
    go to cs02
    click F4,
    select the option material by Bill of material
    u will get the list of bom material in the plant
    so that page u can directly download to the excel
    Edited by: sukendar neelam on Mar 5, 2009 8:27 AM

  • Moving data's from collection

    Hi friends,
    I have a APEX form and soon after if i insert via form means, then it will save the details(data's) in the table. But my question is how to move a data from a collection table to a main table. Is there any way of moving the stored data's from the collection to the table.
    Once the data is transferred into the table from collection, the transferred data in the collection has to get deleted. Only the data's which is not transferred to the main table should exist in the collection.
    Once the data is transferred from the collection to the table means, then that transferred data (i.e) row data should not exist in collection..
    Anyways of achieving it friends.
    Brgds,
    Mini

    Dear Jari,
    I have created an example in apex.oracle.com
    http://apex.oracle.com/pls/apex
    Workspace: mini_ws
    Username: [email protected]
    Password: 4i@duppyApplication 11569 - Upload Data File..
    I have two buttons over there..one is Upload and the other one is Upload1
    If u pressed Upload button soon after browsing one csv file with a Separator as ,(comma), then the datas from the .csv file will be saved in the collection..
    And after that if u pressed the Upload1 button means, then the data from the collection will be saved in my custom table named(excel_upload_table).
    What is the problem that im facing here is.
    Suppose if i upload the csv file with an column heading for each column(that is the two column ID, NAME)  means then i couldnt upload the data from collection to my custom table.
    I have two columns in my custom table like
    <li> ID
    <li> Name
    But if i upload the csv file without the column heading for each column(that is the two column ID, NAME) means, then i can upload the data from the collection to the my custom table.
    How i can proceed with this task, so that i can upload the csv file with the column heading for each and every column.
    Brgds,
    Mini

Maybe you are looking for

  • Problem with NIReport.llb\Print HTML Report using IE.vi on different machines

    We have 5 machines here in our workgroup which have the same state regarding security patches and other system updates. We recently found out that there is a problem with the NIReport.llb\Print HTML Report using IE.vi on the different machines. If I

  • How do I get iTunes to play more than one song at a time on my PC?

    I have selected all in a playlist, then click the play button. It plays only the first song in the playlist. How do I get it to play all of those selected?

  • Living with the Mac OS 9

    Hello every one, I have another question, I am truely a Mac fan now. Ok, So I want to live with Mac OS 9 when I get the PowerBook G3, I think Mac OS 9 looks really good and runss really good on the 400MHZ and 256Mb PowerBook, minimun requirements onl

  • All Outlook Express email lost with IOS upgrade

    I upgraded iTunes to the latest version and upgraded IOS from 4 to 6. Now Pocket Earth maps works on my iPod, but my Outlook Express email on my PC has been completely destroyed. All my emails and contacts are gone!!! What can I do? Is there a soluti

  • BATCH CHARCTERISTICS

    Hi All,               i want to know how to access batch characteristics in smartforms using SALES ORDER . Moderator message: please do your own research before asking. Edited by: Thomas Zloch on Jan 6, 2011 9:13 PM