Seq operator

Hi,
can we use multiple sequence operator in same mapping? if yes, i need the result like,,,, all the target tables which i have used in the same mapping that assigned key should start with 1,2,3,4..... for every particular table.can we use in this situations...

Hi,
Since you want the same start numbers for all the target tables, u need to have 1 sequence dedicated for each target table. just create them in the DB, import it into OWB and you can use it in the mapping.
Curious though, why do you want the same number to be assigned to each of your target table?
Regards,
Bharadwaj Hari

Similar Messages

  • How  to attach more than one department (operation sequence) for an component

    Routing For Assembly-A
    Opeartion Seq Dept ...
    10 DEPT-1
    20 DEPT-2
    30 DEPT-3 AND THE ASSEMBLY-B GOES THROUGH ALL DEPARTMENTS
    For example the BOM is like this
    Assembly-A
    10 Assembly-B
    WHEN ROUTING IS ATTACHED TO BOM IS IT CORRECT TO DO LIKE THIS.
    ITEM SEQ OPER.SEQ
    10 10
    10 20
    10 30. IF THIS IS CORRECT THEN INDENTED BILL WE DIFFERENT ALSO SAME ITEM WILL REPEAT. CLARIFY

    Could you pls. put your question in detail?

  • Oracle triggers for auditing

    Let us say I want to audit data updates, deletes on existing table EMP_TAB that
    has a few hundred thousands of records.
    I created a shadow table Emp_tab_audit and added few audit columns
    Emp_tab (
    Empno NUMBER NOT NULL,
    Ename VARCHAR2(10),
    Job VARCHAR2(9),
    Mgr NUMBER(4),
    Hiredate DATE,
    Sal NUMBER(7,2),
    Comm NUMBER(7,2),
    Deptno NUMBER(2) NOT NULL);
    CREATE TABLE Emp_tab_audit (
    seq number
    operation varchar2(3),
    user varchar2(20),
    Timestamp date,
    ip_address varchar2(25),
    Terminal varchar2(10,
    Empno NUMBER NOT NULL,
    Ename VARCHAR2(10),
    Job VARCHAR2(9),
    Mgr NUMBER(4),
    Hiredate DATE,
    Sal NUMBER(7,2),
    Comm NUMBER(7,2),
    Deptno NUMBER(2) NOT NULL);
    I am mostly interested in UPDATES and DELETES but I decided to add INSERTS to have full history for
    each eomplyee in one table (audit schema) instead of querying two tables all the time (production
    table and audit table) to see the changes.
    I created this AFTER INSERT, UPDATE, DELETE trigger.
    I decided to copy the :NEW values for INSERT and UPDATE and :OLD values for DELETE.
    see attached.
    so when insert happens, the first audit row is created in EMP_TAB_AUDIT.
    when update happens, the 2nd new row is created in EMP_TAB_AUDIT.
    The problem I am facing is the old records that curently exist. If someone updates an old row I am
    copying the :NEW values so I won't have a copy of the :OLD values unless I create 2 ROWS (one for
    the old and one for the new).
    Do you think I should copy all the hundreds of thousands of records to the AUDIT tables for this to
    work. I am hesitant to do that.
    ANy better ideas. I am applying this solution to several tables (not just one).
    This is also in 9i and i dont flexibility other than using a trigger to track data changes.
    CREATE OR REPLACE TRIGGER TRG_EMP_AUDIT
    AFTER INSERT OR DELETE OR UPDATE ON EMP_TAB
    FOR EACH ROW DECLARE
    v_operation VARCHAR2(10) := NULL;
    v_user VARCHAR2(20);
    v_timestamp Date;
    v_ip_address VARCHAR2(25),
    v_terminal VARCHAR2(10);
    BEGIN
    v_user := USERENV(user);
    v_timestamp := SYSDATE;
    v_ip_address := USERENV(ip_address);
    v_terminal := USERENV(terminal);
    IF INSERTING THEN
    v_operation := 'INS';
    ELSIF UPDATING THEN
    v_operation := 'UPD';
    ELSE
    v_operation := 'DEL';
    END IF;
    IF INSERTING OR UPDATING THEN
    INSERT INTO EMP_TAB_AUDIT (
    seq,
    operation,
    user
    timestamp,
    ip_address,
    terminal,
    empno,
    job,
    mgr,
    hiredate,
    sal,
    comm,
    deptno )
    VALUES (
    audit_seq.nextval,
    v_operation,
    v_user,
    v_timestamp,
    v_ip_address,
    v_terminal,
    :new.empno,
    :new.job,
    :new.mgr,
    :new.hiredate,
    :new.sal,
    :new.comm,
    :new.deptno);
    ELSIF DELETING THEN
    INSERT INTO EMP_TAB_AUDIT (
    seq,
    aud_action,
    user
    timestamp,
    ip_address,
    terminal,
    empno,
    job,
    mgr,
    hiredate,
    sal,
    comm,
    deptno )
    VALUES (
    audit_seq.nextval,
    v_operation,
    v_user,
    v_timestamp,
    v_ip_address,
    v_terminal,
    :old.empno,
    :old.job,
    :old.mgr,
    :old.hiredate,
    :old.sal,
    :old.comm,
    :old.deptno);
    END IF;
    END;
    *******************************************************************************

    For auditing normailly you do AFTER triggers (not BEFORE) as ther could be other triggers that change the :NEW data stored in the row.
    You can capture :OLD in AFTER too, but the issue you are saving the updated values. You are storing an image of the OLD row so you still need to check the current row to find out what has been updated. My preference was to store NEW values on updates.

  • Routing Component Allocation and Assignment of Operation/Seq to components

    Hi everyone,
    We are creating a Order Bom (uses variant configuration) and Sales order routing using CU51.
    When in routing component allocation screen using CA02 , we can assign the operation and sequence to the components manually. Requirement is to automate this manual process and assign the operation and sequence to components based on master routing ( template created manually). I have not been able to find any objects (BAPI, FM) which will do this. I see that when operation/sequence is assigned manually to components, the records are created in PLMZ table. But I have not been able to find any objects (BAPI, FM) which will creates records in PLMZ table that can be used to automate this w/o worrying about loosing the integrity of data. If no objects are available , what other information I should make sure that I update along with update to PLMZ table. Going through the recording, I don't see BDC an option for this. Has anyone done this before ? Any ideas on whats the best way to automate this ?
    Thanks
    Raghu

    Hello Munukala Rao,
    I m also stuck up with same problem  so please share code your BDC code .

  • Query to find attachement information for wip operation seq number

    Hi Experts,
    I am working on EBS 11.5.10 and database 9i. I want table link to find attachments for particular operation sequence number.
    Navigation:
    WORK IN PROCESS --> DISCRETE JOBS --> OPERATIONS --> ATTACHMENTS(IN MENU YOU CAN FIND).
    In operations screen, for each operation sequence number, you can have attachement.In attachement, i want to pick the remarks column.
    Table: OPERATIONS -- WIP_OPERATIONS
    ATTACHEMENTS - FND_ATTACHED_DOCS_FORM_VL
    REMARKS - fnd_documents_short_text
    Link between FND_ATTACHED_DOCS_FORM_VL and fnd_documents_short_text is media_id. But i am not able to find the link between wip_operations and fnd_attached_docs_form_vl.
    Could anybody help me how to get attachement data for a particular operation sequence number.
    Thanks in advance.

    The link is
    entity_type = 'WIP_DISCRETE_OPERATIONS' and
    pk1_value =wip_entity_id and
    pk2_value = operation_seq_num and
    pk3_value = organization_idHope this answers your question,
    Sandeep Gandhi

  • RMAN Restore Error - media recovery requesting unknown log: thread 1 seq 7

    Im using RMAN to copy a database to another server. The new server is IDENTICAL to the old one. By identical I mean it has the same sever name, ip address, operating system, Oracle version and directory structure.
    The new server already has the instance created, (same name as the old server instance, paths etc)
    The backup files have been manually restored to the new server, same locations as they were on the old one. ( RMAN did an automatic controlfile backup and also the archivelogs on the old server ).
    Ive restored the control file on the new server from the RMAN backup pieces.
    Ive catalogued the RMAN backup pieces on the new server.
    I know the last sequence available in the archivelogs backup by running on the new server :
    list backup of archivelog all;
    List of Backup Sets
    ===================
    BS Key Size Device Type Elapsed Time Completion Time
    5 14.43M DISK 00:00:03 11-MAY-11
    BP Key: 9 Status: AVAILABLE Compressed: NO Tag: TAG20110511T163502
    Piece Name: C:\ORACLE\PRODUCT\10.2.0\FLASH_RECOVERY_AREA\SAT\BACKUPSET\
    011_05_11\O1_MF_ANNNN_TAG20110511T163502_6WOC5833_.BKP
    List of Archived Logs in backup set 5
    Thrd Seq Low SCN Low Time Next SCN Next Time
    1 2 550217 10-MAY-11 556559 11-MAY-11
    1 3 556559 11-MAY-11 559776 11-MAY-11
    1 4 559776 11-MAY-11 560093 11-MAY-11
    1 5 560093 11-MAY-11 560794 11-MAY-11
    BS Key Size Device Type Elapsed Time Completion Time
    7 15.50K DISK 00:00:01 11-MAY-11
    BP Key: 10 Status: AVAILABLE Compressed: NO Tag: TAG20110511T163653
    Piece Name: C:\ORACLE\PRODUCT\10.2.0\FLASH_RECOVERY_AREA\SAT\BACKUPSET\
    011_05_11\O1_MF_ANNNN_TAG20110511T163653_6WOC8PMP_.BKP
    List of Archived Logs in backup set 7
    Thrd Seq Low SCN Low Time Next SCN Next Time
    1 6 560794 11-MAY-11 560851 11-MAY-11
    So far its all going swimmingly well.
    Now I want to restore the datafiles and recover. So I ran :
    RMAN run { restore database; recover database; alter database open resetlogs; }
    This gave me the output below which goes great but I get a final error, I think the error is because its looking for an archive log thats not in the backup set, but it should be. However, I think SCN 560851 is for a log that hadnt been created yet on the old server when the backup was ran ?
    How do I address resolving the error ? Its worth pointing out log, "archive log filename=C:\ORACLE\PRODUCT\10.2.0\FLASH_RECOVERY_AREA\SAT\ARCHIVELOG
    \2011_05_11\O1_MF_1_6_6WOK1X4W_.ARC recid=10 stamp=750881741" isnt on the old server either which is why its not in the backup set.
    I can do a alter database open reset logs but Id prefer to know why its failing.
    Any help would be much appreciated.
    RMAN> run { restore database; recover database; alter database open resetlogs; }
    Starting restore at 11-MAY-11
    using channel ORA_DISK_1
    channel ORA_DISK_1: starting datafile backupset restore
    channel ORA_DISK_1: specifying datafile(s) to restore from backup set
    restoring datafile 00001 to C:\ORACLE\PRODUCT\10.2.0\ORADATA\SAT\SYSTEM01.DBF
    restoring datafile 00002 to C:\ORACLE\PRODUCT\10.2.0\ORADATA\SAT\UNDOTBS01.DBF
    restoring datafile 00003 to C:\ORACLE\PRODUCT\10.2.0\ORADATA\SAT\SYSAUX01.DBF
    restoring datafile 00004 to C:\ORACLE\PRODUCT\10.2.0\ORADATA\SAT\USERS01.DBF
    channel ORA_DISK_1: reading from backup piece C:\ORACLE\PRODUCT\10.2.0\FLASH_REC
    OVERY_AREA\SAT\BACKUPSET\2011_05_11\O1_MF_NNNDF_TAG20110511T163507_6WOC5CM7_.BKP
    channel ORA_DISK_1: restored backup piece 1
    piece handle=C:\ORACLE\PRODUCT\10.2.0\FLASH_RECOVERY_AREA\SAT\BACKUPSET\2011_05_
    11\O1_MF_NNNDF_TAG20110511T163507_6WOC5CM7_.BKP tag=TAG20110511T163507
    channel ORA_DISK_1: restore complete, elapsed time: 00:00:55
    Finished restore at 11-MAY-11
    Starting recover at 11-MAY-11
    using channel ORA_DISK_1
    starting media recovery
    channel ORA_DISK_1: starting archive log restore to default destination
    channel ORA_DISK_1: restoring archive log
    archive log thread=1 sequence=6
    channel ORA_DISK_1: reading from backup piece C:\ORACLE\PRODUCT\10.2.0\FLASH_REC
    OVERY_AREA\SAT\BACKUPSET\2011_05_11\O1_MF_ANNNN_TAG20110511T163653_6WOC8PMP_.BKP
    channel ORA_DISK_1: restored backup piece 1
    piece handle=C:\ORACLE\PRODUCT\10.2.0\FLASH_RECOVERY_AREA\SAT\BACKUPSET\2011_05_
    11\O1_MF_ANNNN_TAG20110511T163653_6WOC8PMP_.BKP tag=TAG20110511T163653
    channel ORA_DISK_1: restore complete, elapsed time: 00:00:01
    archive log filename=C:\ORACLE\PRODUCT\10.2.0\FLASH_RECOVERY_AREA\SAT\ARCHIVELOG
    \2011_05_11\O1_MF_1_6_6WOK1X4W_.ARC thread=1 sequence=6
    channel default: deleting archive log(s)
    archive log filename=C:\ORACLE\PRODUCT\10.2.0\FLASH_RECOVERY_AREA\SAT\ARCHIVELOG
    \2011_05_11\O1_MF_1_6_6WOK1X4W_.ARC recid=10 stamp=750881741
    unable to find archive log
    archive log thread=1 sequence=7
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of recover command at 05/11/2011 18:15:42
    RMAN-06054: media recovery requesting unknown log: thread 1 seq 7 lowscn 560851
    RMAN>
    Edited by: user12173666 on 11-May-2011 10:28

    You need to do incomplete recovery i.e. to ask RMAN to restore/recover to some specific point in time. This is usually done with some UNTIL clause or SET UNTIL statement. Example in your case:
    SET UNTIL SEQUENCE 7;See http://download.oracle.com/docs/cd/B19306_01/backup.102/b14194/rcmsynta065.htm#RCMRF160.

  • Export FCP seq in a way that will work on Windows Media Player (good grief)

    Hello all (again).
    Before getting down to business I wanted to thank “FxDude,” TopoTone,” and “governor” for their assistance to my recent posts. By the way- (to all) sorry for the double postings. I was in a time crunch and kind of panicked.
    With that said- here’s my deal…
    I’ve created a short (5min) commercial for a community college. The project was “dirty work” (which I think is the industry term for taking low quality video from multiple sources, cameras, and formats, and turning it into a single decent looking video). If it isn’t the term- perhaps it should be. Note to self – wow, that was way more work than I ever want to do again. Anyway, I digress. The video is done and looks great as a DVD playing on TV’s or projector etc. Cool? Cool.
    Now, although the school will be using the DVD (in most cases) via the mediums of TV and projection, they have also informed me that in many cases, they will be playing the DVD on their various PC laptops and PC desktops alone – aka viewing the DVD on their actual computer screen. Of course, being a community college in California- it’s all PC and all Windows Media Player for them. Further, being a community college- they all run basic versions of WMP with no QuickTime or any other plugins that would facilitate many of Mac’s avi codecs, and they’re not allowed to download such things (at least on the machines owned and operated by the school). Poop I say… POOP!
    Of course, as we all know- (in general) most “dirty work” SD videos formatted for NTSC look like dog crap when played on a computer screen (especially full screen modes) mainly because of interlacing etc etc. Since I worked my butt off trying to make crap look decent and succeeded, im sure u can understand my desire to not move back to crap.
    What I need- (what I think I need?)
    1. I need a version of the video that will play easily on a standard PC via a standard version of Windows Media Player.
    2. I need it to look as good a possible.
    What I know so far- (what I think I know so far)
    1. I need to export a deinterlaced version of the original FCP timeline (sequence).
    2. I need the final version to be .wmv file
    What I don’t know- (pretty sure I don’t this)
    1. What’s the best method of achieving the above? Currently, (based on what I do know and what I have loaded on my mac) I have three
    options for achieving the above. FYI- I have a working version of the plugin flip4mac which offers a wmv export option in both my QuickTime conversion window as well as my compressor.
    a. Export using QuickTime conversion > choosing wmv, and messing around with the settings to get the best quality.
    b. Export using Compressor > choosing wmv, and messing around with the settings to get the best quality
    c. Convert a high quality version of the video (perhaps h264 or some other good looking avi using mpeg streamclip to wmv.
    My questions- (bless all of you for reading this far- good grief)
    1. What’s the best way to do the above?
    2. Is there a way, workflow, codec, setting, or religion I can use to get this done in the least amount of steps?
    3. I’ve been told that there are some codecs that are by their nature deinterlaced- h264?, is this correct?
    4. Based on my issue, what do you think I should do?
    My Specs
    Sequence Settings
    F = 720 x 480, AR NTSC DV(3:2). PAR= NTSC – CCIR 601 / DV (720x480), Anamorphic Checked, FD= Lower / Even, ET= 29.97,
    Comp.= DV / DVCPRO-NTSC
    Advanced Seq Settings
    All same with the addition of quality set to Highest, Scan Mode = Interlaced, and AR set to 16x9.
    Clip Settings = same as Seq settings
    Once again-
    Thanks you guys (as always) for you time-
    Terry

    Hey Terry
    in the corporate world wee have to contend with clients who are all windows based and prevented from installing anything on their systems.
    I use Flip4Mac, Studio Pro HD, with the following mix of settings;
    Open clip in QT, I do also use compressor but for some reason I like using QT for exporting to WMV.
    File/Export
    Export:movie to windows media
    Use: One pass VBR, Presentation (high), 16:9
    Options>
    Advanced... input type: interlace Lower field first(DV), output type: progressive
    Coding method: Two pass VBR
    Give this a shot and then tweak to suit your needs, oh and you can save your settings as a preset for QuickTime.
    Within Compressor there is no export to WMV, so you have to start with another setting and create your own saving it for future use.
    Tony

  • Get the filename after an outbound file adapter operation

    Hello,
    I am calling an outbound file adapter operation in BPEL (10.1.3.3) - using a filename mask with a sequence (i.e. po_%SEQ%.xml). I would like to provide the filename created at run-time (i.e. po_123.xml) to my BPEL process so I can send this in an e-mail. Is this possible?
    Thanks in advance!
    Rod
    Message was edited by: Rod - fixed a typo
    Rod Tunnels

    Well, I took a different approach - which looks like it will work. Instead of letting the adapter decide the filename - I'm generating that in BPEL and passing that to the adapter using the header variable. So ... nevermind. ;-)

  • How do I redirect execution to a specific step in the upper most sequence (Main.seq) from however deep th

    e program may be in the call stack when an operator makes a selection on the LabVIEW operator interface? My goal is to allow an operator to break out of multiple nested loops, while insuring the completion of the remainder of the upper most level sequence.I cannot put these (remainder) items in the Cleanup group because they contain multiple nested loops themselves.
    Thank-you

    e program may be in the call stack when an operator makes a selection on the LabVIEW operator interface? My goal is to allow an operator to break out of multiple nested loops, while insuring the completion of the remainder of the upper most level sequence.Hi Jacy,
    I've done this through the PostStep Engine callback. I use a flag set at the appropriate level (in the attached example it's a file global) and I look at this, plus the name of the current sequence and the current step's step group to find out if I should set the Runstate.Caller.Runstate.NextStepIndex to the last step (actually ) in the current step group. (Make sense? - Although I have a Parameters.Step in the callback sequence, I need to find out the sequence that called it to control where that sequence goes next)
    This then does a globalised "skip" on every step so that it exits back up to the top level. You could check for other flags, such as a list of critical sequence names that have to execute, or even skip out of a cleanup by modifying t
    he precondition of the statement step in the SequencePostStep callback.Each of the steps have a little comment.
    If you wanted to check a flag again, insert a step at the end of each sequence, and change the PostStep callback sequence's statement step to go one step less than the end of the sequence.
    Hope this helps
    Sacha
    // it takes almost no time to rate an answer
    Attachments:
    fast_quit.seq ‏38 KB

  • ORA-22285 - non-existent directory or file for FILEOPEN operation

    Hello
    I want to insert the xmldata from a xmlfile to the a table, with this scirpt:
    #!/bin/sh
    set -x
    for i in `find . -name "dspevent*.xml"| awk -F"/" '{print $NF}'`
    do
    echo $i
    fname_old=$i
    fname_neu=`ls $i | awk '{print "OK_"$0}'`
    cat $i | sed 's/aps://g' >$fname_neu
    echo $fname_neu
    rm $i
    #insert_xml $fname_neu
    INSERT_XML=`sqlplus -s username/passwort@database <<EOF
    INSERT INTO event_xml (name,
    dtsysl,
    hrsysl,
    dtcptl,
    nusesi,
    dsp_step,
    dsp_state,
    bat_class,
    bat_program,
    bat_seqi,
    bat_state)
    SELECT *
    FROM XMLTABLE (
    'Operations/Event'
    PASSING xmltype (BFILENAME ('EVENT_DIR', '$fname_neu'),
    NLS_CHARSET_ID ('CHAR_CS'))
    COLUMNS name VARCHAR (40) PATH 'name',
    dtsysl DATE PATH 'dtsysl',
    hrsysl NUMBER PATH 'hrsysl',
    dtcptl DATE PATH 'dtcptl',
    nusesi NUMBER PATH 'nusesi',
    dsp_step VARCHAR (40) PATH 'DSP/step',
    dsp_state VARCHAR (40) PATH 'DSP/state',
    bat_class VARCHAR (40) PATH 'BAT/class',
    bat_program VARCHAR (40) PATH 'BAT/program',
    bat_seqi NUMBER PATH 'BAT/seqi',
    bat_state VARCHAR (40) PATH 'BAT/state');
    EOF
    `
    done
    But the problem is, that I have always this error message:
    ORA-22285 -> non-existent directory or file for FILEOPEN operation
    I'd create a direcotrie and over utl_file.fopen I can write a file to this directorie, but this works over the path, not over the directory name. the utl_file_dir parameter was also set to the correct path. Whats wrong or how can I debug this problem?
    thanks.
    roger

    - the name of the directory is correct.
    - how can I check, that the user can use the directory?
    - in this logfile you can see that, the file name will replace correctly:
    ./dspevent.sh
    + awk -F/ {print $NF}
    + find . -name dspevent*.xml
    + echo dspevent_db_20110503030448_10641.xml
    dspevent_db_20110503030448_10641.xml
    fname_old=dspevent_db_20110503030448_10641.xml
    + awk {print "OK_"$0}
    + ls dspevent_db_20110503030448_10641.xml
    fname_neu=OK_dspevent_db_20110503030448_10641.xml
    + sed s/aps://g
    + cat dspevent_db_20110503030448_10641.xml
    + echo OK_dspevent_db_20110503030448_10641.xml
    OK_dspevent_db_20110503030448_10641.xml
    + rm dspevent_db_20110503030448_10641.xml
    + sqlplus -s username/passwort@db
    INSERT INTO event_xml (name,
    dtsysl,
    hrsysl,
    dtcptl,
    nusesi,
    dsp_step,
    dsp_state,
    bat_class,
    bat_program,
    bat_seqi,
    bat_state)
    SELECT *
    FROM XMLTABLE (
    'Operations/Event'
    PASSING xmltype (BFILENAME ('EVENT_DIR', 'OK_dspevent_db_20110503030448_10641.xml'),
    NLS_CHARSET_ID ('CHAR_CS'))
    COLUMNS name VARCHAR (40) PATH 'name',
    dtsysl DATE PATH 'dtsysl',
    hrsysl NUMBER PATH 'hrsysl',
    dtcptl DATE PATH 'dtcptl',
    nusesi NUMBER PATH 'nusesi',
    dsp_step VARCHAR (40) PATH 'DSP/step',
    dsp_state VARCHAR (40) PATH 'DSP/state',
    bat_class VARCHAR (40) PATH 'BAT/class',
    bat_program VARCHAR (40) PATH 'BAT/program',
    bat_seqi NUMBER PATH 'BAT/seqi',
    bat_state VARCHAR (40) PATH 'BAT/state');
    INSERT_XML= PASSING xmltype (BFILENAME ('EVENT_DIR', 'OK_dspevent_db_20110503030448_10641.xml'),
    ERROR at line 15:
    ORA-22285: non-existent directory or file for FILEOPEN operation
    ORA-06512: at "SYS.XMLTYPE", line 296
    ORA-06512: at line 1
    + echo dspevent_db_20110502190712_10641.xml
    dspevent_db_20110502190712_10641.xml

  • Operation sequence in BOM

    Hi friends,
    while defining Bill of material, operation sequence number is populating by default as 1, does it really matter to exactly use operation sequence number (10) from routing?
    Will it be any issue from planning or mfg perspective If I setup bill of materials with operation sequence as 1 (as default) and operating sequence numbers in routing are set up as 10, 20, 30 etc... ???
    Please let me know.
    Regards,
    kumar

    Hi,
    Benefits of keeping Operation sequence as 10, 20, 30 etc.
    1. End user will know at which operation particular material from BOM is required
    2. In case of Operation Pull, material will be consumed at appropriate operation sequence (This will not matter if you are using Assembly Pull, Push or any other Supply Type). This will impact costing.
    3. You will be able to add same components against different operations
    4. In case of planning, planning engine will give appropriate suggestions (if Mfg lead time is short then this will not matter)
    5. You will be able to print pick slips based on operation seq. i.e. If you want to issue components required at operation 10 only then you can achieve that using this method
    6. You will be able to scrap components effectively
    etc.
    Regards,
    swapnil Mehar

  • Clear report in report window of simple operator interface

    Hello,
    hello I want to clear the report-window of the simple operator interface at the beginning of each UUT test.
    I want that there is nothing inside this window while testing a UUT. Only at the end of a test I want to show the actual report
    How is this possible?
    regards samuel

    Report.Reset should replace the current report data with the data in the string you specify, which in your case should be blank.
    Do you have a PreUUT Sequence in your Client Sequence File?
    If not try adding the first step in the attached sequence below the Report.Reset step in your PreUUT sequence.  You may need to add the second step as well (below both new steps).  Not sure if the second step is required.  The first step tells the teststand engine that the report has changed, the second tells it to refresh all windows.
    Regards
    Steve
    There are 10 types of people in the world that understand binary, those that do and those that don't.
    Attachments:
    UI Update.seq ‏18 KB

  • Operation branch: Table for field  VORNR1

    Dear all:
    In some routings (CA01, 02, 03) we have different sequences, namely parallel sequences. As you know, these sequences have normally an operation wherein the parallel sequences branches off, or where an "alternative sequence" somehow replaces the normal reference sequence vector. This operation is the operation branch.
    I have a requirement where this "Branch operation" field must become empty instead of showing the applicable branch operation (namely 0020, 0040, whatever).
    To do this, a possible approach is to select all sequences of all routings that have a branch operation determined. So I found that the field is VORNR1 and table is PLFLD. But then I find out that this is a structure.
    My simple question, is in which table I can find this field "branch operation" so to search in this table (via SE11 for example) or do a query (SQ01) using tables MAPL -> PLKO -> PLFL  or both processes and see what happens
    Thanks in advance!

    3 tables involved.
    PLFL - Sequences, PLAS - Operation assignment, and PLPO - Operation.
    1. In your task list type (PLNTY), task list key (PLNNR), group counter (PLNAL) and sequence number (PLNFL) = 0, you will get the reference sequence (BEZFL), reference node for start of sequence - Branch operation (BKNT1) and reference node for end of sequence (BKNT2).
    2. Go to PLAS which is the link between PLFL (sequence) and PLPO (Operation).  You will obtain internal counter (ZAEHL) by select task list type (PLNTY), task list key (PLNNR), sequence (PLNFL should equal reference sequence BEZFPL from step 1), and node (PLNKN should equal reference node of start seq. BKNT1).
    3. Select PLPO with key PLNTY, PLNNR, PLNKN, ZAEHL.
    Hope it helps.

  • Executing web service operation with complex input - Please help

    Hi All,
    I am working on invoking a web service through ADF. The request format for the webservice consists of multiple occurance of same element. Below is sample request. here <index> is repeating n number of times.
    <soapenv:envelope>
    <soapenv:Body>
              <ns6:StoreDocumentRequest>
                   <ns6:docFileType>ABC</ns6:docFileType>
                   <ns6:Metadata>
                        <ns6:index>
                             <ns6:indexType>Format_Type</ns6:indexType>
                             <ns6:indexValue>ACROBAT</ns6:indexValue>
                        </ns6:index>
                        <ns6:index>
                             <ns6:indexType>Buyer_No</ns6:indexType>
                             <ns6:indexValue>1234567</ns6:indexValue>
                        </ns6:index>
                        <ns6:index>
                             <ns6:indexType>Document_Type</ns6:indexType>
                             <ns6:indexValue>101A</ns6:indexValue>
                        </ns6:index>
                        <ns6:index>
                             <ns6:indexType>Capture_Location</ns6:indexType>
                             <ns6:indexValue>XYZ</ns6:indexValue>
                        </ns6:index>
                   </ns6:Metadata>
                   <ns6:Content>XXXXXXXXXXXX</ns6:Content>
              </ns6:StoreDocumentRequest>
         </soapenv:Body>
    </soapenv:envelope>
    now I need to populate these values thrugh Operation binding in my managed bean class. I have also dragged these parameters and operation on my jsf page to get hold of those in my managed bean context. I am having following code in my managed bean to set these parameters.
    BindingContainer bindings = BindingContext.getCurrent().getCurrentBindingsEntry();
    OperationBinding storeDocumentBinding = bindings.getOperationBinding("StoreDocument");
    storeDocumentBinding.getParamsMap().put("docFileType", filetype);
    storeDocumentBinding.getParamsMap().put("Content", filecontents);
    storeDocumentBinding.getParamsMap().put("indexType", filecontents);
    storeDocumentBinding.getParamsMap().put("indexValue", filecontents);
    storeDocumentBinding.getParamsMap().put("indexType", filecontents);
    storeDocumentBinding.getParamsMap().put("indexValue", filecontents);
    storeDocumentBinding.execute();
    Here I am facing some issues:
    1. The operation is not picking values put from ParamMap(). It is taking values as empty (as in my .jspx page form, I have made it hidden though). It takes value from my jspx page form, which is blank.
    2. when I am manually entering values in the .jspx page form, for <indexValue> and <indexType> tags, it is taking only one value (last one) for creating the request.
    3. the storeDocument() function is a SOAP based service. How can I check for SOAP response after operationBinding.execute(). I checked for response after execution, it sends an object as result. How to get a SOAP response from it.
    I need to fetch few values from the SOAP response and display it on screen.
    Please help me out. I am noob in ADF.
    regards,
    Rajan

    Hi Puthanampatti,
    I followed the link and did exactly as mentioned. Here is my code
    public String downloadDocument(FacesContext context, OutputStream out) throws IOException {
    BindingContext bctx = BindingContext.getCurrent();
    BindingContainer bindings = bctx.getCurrentBindingsEntry();
    OperationBinding retrieveDocumentBinding = bindings.getOperationBinding("RetrieveDocument");
    DCIteratorBinding attachmentsIterator = (DCIteratorBinding)bindings.get("AttachmentsIterator");
    String documentId = attachmentsIterator.getCurrentRow().getAttribute("Seq").toString();
    System.out.println(customSoapProvider.getRequest()); // getting null here
    AttributeBinding docFileTypeVal = (AttributeBinding)bindings.getControlBinding("docId");
    docFileTypeVal.setInputValue(522117);
    Object result = retrieveDocumentBinding.execute();
    System.out.println(customSoapProvider.getResponse()); //getting null here
    but I am getting a null response in the last line.
    what am I missing here.
    regards,
    Rajan
    Edited by: Rajan M on Jan 5, 2013 11:27 AM

  • How can I enter user defined info into a seq file

    I would like to insert some user defined information that I can extract either viac C-code (step invoked) or from the Operator Interface once the seq file has been loaded into memory.

    Hi hurst,
    You probably want to create a dialog panel that will allow the user to enter the information.
    Where you store this information really depends on how much of the sequencefile needs to have access to this information.
    If its global then writing it to either StationGlobals or to FileGlobals. Writting to StationGlobals means it going to be available after the execution of your sequencefile has finished. Writing to FileGlobals means its only going to be available during the execution of your sequencefile and also only in scope for the sequencefile its contained in. Unless you change the default setting so that all sequencefiles use the same FileGlobals.
    To get the information to the SequenceFile will be by TestStand API calls using the PropertySetValue.
    Another way would be to use the propertyloader.
    There are plenty of examples either with TestStand or on the NI website on transferring data of all types from a step during execution.
    This is a bit general. Maybe if you can expand on your query.
    hope this helps
    Regards
    Ray Farmer
    Regards
    Ray Farmer

Maybe you are looking for

  • How to refer standard component to create customize component?

    Dear experts, Can any one guide me how to refer a standard component to understand the flow of the event of with in the views and there are various methods are present to change properties of a field property. How can we refer the standard code for c

  • Reading sequence of characters in Java-----HELP!!!

    I need help with this program here..Im new to Java and struggling to get this to work..here's the problem.. The program monitors a possibly infinite stream of characters from the keyboard (standard input). If it detects the sequence "www" it outputs

  • WebService - RFC - WebService Scenario

    Hello All, I have the following scenario: An external program wants to send customer data to R/3. in R/3 I have to run an RFC that creates a customer with this data and return the new customer number back to the external program. The external program

  • Problems after installing 10.6

    I just installed 10.6, and now my Time Machine keeps powering off, and I have no Internet.  I have no idea how to fix this issue.  Please help, if you know what to I..

  • If I execute the query on a cube now my OLAP processor where will come

    hi can any body help regarding this If I execute the query on a cube now my OLAP processor where will come first(SID table or Fact Tbl or Dimension Tbl)