FND Attachements Conversion

Hi,
I m working on Attachments conversion from 11i to r12, I m getting Attachment in BLOB column from custom table xx_attch_data.
I have seen a sample in online which has below part before calling fnd_attached_documents_pkg.
Since I m getting Attachment from custom table xx_attch_data from BLOB column, how should i handle below part of the code.
    -- Oracle creates BFILE_DIR directory by default in the database
                                    fils := BFILENAME ('BFILE_DIR', l_var_tab(I).file_name_lob);
                                    l_fileisopen := DBMS_LOB.fileisopen (fils);
                                    l_fileexists := DBMS_LOB.fileexists (fils);
                                    DBMS_LOB.filegetname (fils,l_dirname,l_location);
                                    -- Obtain the size of the BLOB file
                                    DBMS_LOB.fileopen (fils, DBMS_LOB.file_readonly);
                                    blob_length := DBMS_LOB.getlength (fils);
                                    DBMS_LOB.fileclose (fils);
Thanks.

Hi Hussein,
Below is my code, could you tell me how to handle the attachment which is coming from BLOB column from staging table.
CREATE OR REPLACE PACKAGE BODY xxath_conv
IS
PROCEDURE Main(errbuf  OUT VARCHAR2
              ,retcode OUT VARCHAR2)
IS
CURSOR cur_fnd_data
IS
SELECT * FROM xx_ap_attach_stg; 
TYPE l_rec_type IS TABLE OF cur_fnd_data%ROWTYPE
INDEX BY PLS_INTEGER;
i                    PLS_INTEGER;
l_var_tab            l_rec_type;
l_empty_tab          l_rec_type;
l_rowid              ROWID;
x_blob               BLOB;
fils                 BFILE;
blob_length          INTEGER;
l_fileisopen         INTEGER;
l_fileexists         INTEGER;
l_dirname            VARCHAR2 (30);
l_location           VARCHAR2 (500);
l_valid_flag         VARCHAR2(1):= 'Y';
l_vendor_exists      ap_suppliers.segment1%TYPE;
l_requis_exists      po_requisition_headers_all.segment1%TYPE;
l_ap_invoice_exists  ap_invoices_all.invoice_num%TYPE;
l_po_exists          po_headers_all.segment1%TYPE;
BEGIN
    OPEN cur_fnd_data;
  LOOP
  FETCH cur_fnd_data BULK COLLECT INTO l_var_tab LIMIT 1000;
  EXIT WHEN l_var_tab.COUNT = 0;
  l_valid_flag        := 'Y';
  l_vendor_exists     := NULL;
  l_requis_exists     := NULL;
  l_ap_invoice_exists := NULL;
  l_po_exists         := NULL;
        FOR i IN 1..l_var_tab.COUNT
        LOOP
     IF l_var_tab(I).entity_name = 'PO_VENDORS'
  THEN
                   --All validations comes here
  END IF;
                  IF l_valid_flag = 'Y'
                  THEN
                  -- how to handle below part, since i m getting attachment file from BLOB column in xx_ap_attach_stg table.
                                    fils := BFILENAME ('BFILE_DIR', l_var_tab(I).file_name_lob);
                                    l_fileisopen := DBMS_LOB.fileisopen (fils);
                                    l_fileexists := DBMS_LOB.fileexists (fils);
                                    DBMS_LOB.filegetname (fils,l_dirname,l_location);
                                    -- Obtain the size of the BLOB file
                                    DBMS_LOB.fileopen (fils, DBMS_LOB.file_readonly);
                                    blob_length := DBMS_LOB.getlength (fils);
                                    DBMS_LOB.fileclose (fils);
      INSERT INTO fnd_lobs
                                          ( file_id
           , file_name
           , file_content_type
           , upload_date
           , expiration_date
           , program_name
           , program_tag
           , file_data
           , LANGUAGE
           , oracle_charset
           , file_format)
                                  VALUES
           ( l_var_tab(I).media_id
           , l_var_tab(I).file_name_lob
           , l_var_tab(I).file_content_type 
           , SYSDATE
           , NULL
           , 'FNDATTCH'
           , NULL
           , EMPTY_BLOB ()
           , 'US'
           , 'UTF8'
           , 'binary')
                                  RETURNING file_data
                                  INTO x_blob;
  -- Load the file into the database as a BLOB
                                  DBMS_LOB.OPEN (fils, DBMS_LOB.lob_readonly);
                                  DBMS_LOB.OPEN (x_blob, DBMS_LOB.lob_readwrite);
                                  DBMS_LOB.loadfromfile (x_blob, fils, blob_length);   -- Close handles to blob and file
                                  DBMS_LOB.CLOSE (x_blob);
                                  DBMS_LOB.CLOSE (fils);
                   COMMIT;
                   --DBMS_OUTPUT.put_line ('FND_LOBS File Id Created is ' || l_var_tab(I).media_id);
              BEGIN
               fnd_attached_documents_pkg.insert_row
                                 ( X_ROWID                        => l_rowid
                                 , X_ATTACHED_DOCUMENT_ID         => l_var_tab(I).attached_document_id 
                                 , X_DOCUMENT_ID                  => l_var_tab(I).document_id
                                 , X_CREATION_DATE                => SYSDATE
                                 , X_CREATED_BY                   => fnd_profile.value('USER_ID')
                                 , X_LAST_UPDATE_DATE             => SYSDATE
                                 , X_LAST_UPDATED_BY              => fnd_profile.value('USER_ID')
                                 , X_LAST_UPDATE_LOGIN            => fnd_profile.value('LOGIN_ID')
                                 , X_SEQ_NUM                      => l_var_tab(I).seq_num
                                 , X_ENTITY_NAME                  => l_var_tab(I).entity_name
                                 , X_COLUMN1                      => NULL
                                 , X_PK1_VALUE                    => l_var_tab(I).pk1_value
                                 , X_PK2_VALUE                    => NULL
                                 , X_PK3_VALUE                    => NULL
                                 , X_PK4_VALUE                    => NULL
                                 , X_PK5_VALUE                    => NULL
                                 , X_AUTOMATICALLY_ADDED_FLAG     => 'N'
                                 , X_DATATYPE_ID                  => l_var_tab(I).datatype_id
                                 , X_CATEGORY_ID                  => l_var_tab(I).category_id
                                 , X_SECURITY_TYPE                => l_var_tab(I).security_type 
                                 , X_SECURITY_ID                  => l_var_tab(I).security_id
                                , X_PUBLISH_FLAG                 => l_var_tab(I).publish_flag
                                 , X_LANGUAGE                     => l_var_tab(I).language
                                 , X_DESCRIPTION                  => l_var_tab(I).description
                                 , X_FILE_NAME                    => l_var_tab(I).file_name
                                 , X_MEDIA_ID                     => l_var_tab(I).media_id
  COMMIT;
  EXCEPTION 
  WHEN OTHERS THEN
  fnd_file.put_line(fnd_file.LOG,'Error after calling fnd_attached_documents_pkg: '||SQLERRM); 
  END;
                  ELSE
                    UPDATE xx_ap_attach_stg
                     SET    upload_flag          = 'N'
                     WHERE  entity_name          = l_var_tab(I).entity_name
                     AND    seq_num              = l_var_tab(I).seq_num
                     AND    pk1_value            = l_var_tab(I).pk1_value
                    AND    attached_document_id = l_var_tab(I).attached_document_id
                    AND    document_id          = l_var_tab(I).document_id;     
                  END IF;
        END LOOP;
  END LOOP;
  CLOSE cur_fnd_data;
EXCEPTION
WHEN OTHERS THEN
fnd_file.put_line(fnd_file.LOG,'Error in Main Procedure: '||SQLERRM);
END Main;
END xxath_conv;

Similar Messages

  • Replacing Oracle EBS FND Attachment functionality with UCM

    I am new to Oracle UCM and wondering about Replacing Oracle EBS FND Attachment functionality (Paper Clip in EBS forms) with UCM. Can we achieve this by simply defining the Attachment Repository using System Administrator Responsibility in EBS? Can you share some documentation on this?
    If we have to customize the forms to re-direct the document repository from FND to UCM, please share the steps to do so.

    Didn't see the link in your post. may have been stripped.
    if you want to use the ebs native attachment lists, what we've done is used a custom bpel composite to load items into the appropriate entity in the fnd_documents and all of those other related ebs tables. this takes webcenter out of it for the most part. you could also load links, similar to the imaging solution's approach. this way, again, uses the ebs attachments, but stores the image in IPM (in the imaging case, that is). there is a link loaded into the fnd tables.
    if you want to leverage the ebs-side attachment lists, managed attachments may not be the approach you want to take. You may want to look into the imaging solution or creating a custom process.
    -ryan

  • Email document distribution PDF attachment conversion error

    I have configured document distribution via emai with an attachment. My DMS documents have a single PDF original attachment.
    The email transmits fine through SAPConnect, however when I open the attachment Adobe tells me the file cannot be opened, and is corrupt.
    The issue seems to be in SAPConnect conversion, converting BIN to PDF. Any suggestions on the conversion function module or sample code for a fm to do the conversion are appreciated.

    Hi,
    regarding the information with the BIN extension I would kindly ask you
    to implement the SAP note 873597.                                                                               
    Further please check the following settings which helped to solve      
    such issue in the past successfully:                                                                               
    1. Go to transaction : FILE                                            
    2. Select DOCUMENT_DISTRIBUTION                                        
    3. Double click on "Syntax group definition"                           
    4. You will find the file length defined for "WINDOWS NT               
    5. Change the length value to 70.                                      
    6. Also for As/400 change the length to 40.                                                                               
    Best regards,
    Christoph

  • FND Attachment Retrival for processing

    Hi All
    We have a requirement to
    1. Upload a file attachment (.csv) to project entity . For this we are using standard Attachment feature to upload the data in PA.
    2. Retrive this file attachment and process the .csv for some data entry. For this we are looking to :
    Question)
    How do we get the file uploaded ? What is the API or query to get the file in CLOB format based on following query
    SELECT * FROM FND_ATTACHED_DOCUMENTS WHERE
    1=1
    AND PK1_VALUE = 33013 ---- This is project_id
    AND entity_name = 'PA_PROJECTS';
    Will it be possible to retrive the object as .csv and process it in PL/SQL?
    Thanks
    Rahul

    Will it be possible to retrive the object as .csv and process it in PL/SQL?You can download/upload the attachment file but I believe you cannot process the file in PL/SQL.
    Please elaborate more on what you are trying to do.
    Thanks,
    Hussein

  • XML Bursting and attaching PDF file to self service page

    Hi All,
    We have developed custom report and implemented XML Bursting Program(not intended to send e-mails). If the output of the concurrent program is producing 100 output files, say 100 pdf HR letters, we need to attach each letters to individual employee HR records(Manager Self service page).
    How can we implement a solutions for the above requirement.
    Thanks in Advance,
    Arun

    Hi,
    I have similar requirement to attach the report output to one entity as an FND attachment. Any examples?
    Thanks,
    Hariharan R.

  • Attachment in Column - giving runtime exception and "FNDDOCUMENTSEO"."error

    I have created a Attachment VO for a VO from the Fusion App: Advanced Supply Chain Management ( 724).
    Using the new gallery wizard for "Attachment View Link" I have succesfully finished all 6 steps, created trough this wizard a Attachments Entity ( named AttachmnetEntityRX2)
    In step 3 I have correctly identifed the primary key of the VO for which I created this attachmentsVO.
    After wizard succesfully finished,
    - I have dropped the data VO in a jspx page as a <af:table>.
    - ran the page succesfully,
    - now I grabbed the details VO from the data control ( AttachmentVO), and dropped it as a "Attachmnet column" in the same table as above.
    Below see the xml of the generated column. The attribute columnLinkTableModel was added by me manually.
    <af:column headerText="#{applcoreBundle.ATTACHMENTS_COLUMN_HEADER}"
    sortable="false" width="200" id="c3">
    <fnd:attachment mode="columnLink"
    attachmentModel="#{bindings['Attachments2']}"
    columnModel="#{row.AttachmAccessor2}" id="a1"
    columnLinkTableModel="#{bindings.ATPAllocationTimeRange2.collectionModel}" />
    </af:column>
    -I ran this pjspx poge again, now I get the table header rendered fine, and I see the column header " attachment" but I ger a run time error:
    ry
    <ViewObjectImpl> <freeStatement> [7654] ViewObject: [oracle.apps.fnd.applcore.attachments.uiModel.view.AttachmentsVO]ATPAllocationAM.ATPAllocationTimeRangeVO_AttachmAccessor2_AttachmnVL2_AttachmentsVO close single-use prepared statements
    <QueryCollection> <buildResultSet> [7655] QueryCollection.executeQuery failed...
    <QueryCollection> <buildResultSet> [7656] java.sql.SQLSyntaxErrorException: ORA-00904: "FNDDOCUMENTSEO"."ENT_APP_SHORT_NAME": invalid identifier
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:462)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:405)
         at oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:931)
         at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:481)
         at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:205)
         at oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:548)
         at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:217)
         at oracle.jdbc.driver.T4CPreparedStatement.executeForDescribe(T4CPreparedStatement.java:947)
         at oracle.jdbc.driver.OracleStatement.executeMaybeDescribe(OracleStatement.java:1283)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1441)
         at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3769)
         at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:3823)
         at oracle.jdbc.driver.OraclePreparedStatementWrapper.executeQuery(OraclePreparedStatementWrapper.java:1671)
         at weblogic.jdbc.wrapper.PreparedStatement.executeQuery(PreparedStatement.java:135)
         at oracle.jbo.server.QueryCollection.buildResultSet(QueryCollection.java:1342)
         at oracle.jbo.server.QueryCollection.executeQuery(QueryCollection.java:993)
         at oracle.jbo.server.ViewObjectImpl.executeQueryForCollection(ViewObjectImpl.java:7181)
         at oracle.apps.fnd.applcore.oaext.model.OAViewObjectImpl.executeQueryForCollection(OAViewObjectImpl.java:2218)
         at oracle.jbo.server.ViewRowSetImpl.execute(ViewRowSetImpl.java:1227)
         at oracle.jbo.server.ViewRowSetImpl.execute(ViewRowSetImpl.java:1068)
         at oracle.jbo.server.ViewRowSetIteratorImpl.ensureRefreshed(ViewRowSetIteratorImpl.java:2810)
         at oracle.jbo.server.ViewRowSetIteratorImpl.ensureRefreshed(ViewRowSetIteratorImpl.java:2787)
         at oracle.jbo.server.ViewRowSetIteratorImpl.getAllRowsInRangeInternal(ViewRowSetIteratorImpl.java:2173)
         at oracle.jbo.server.ViewRowSetIteratorImpl.getAllRowsInRange(ViewRowSetIteratorImpl.java:2220)
         at oracle.jbo.server.ViewRowSetImpl.getAllRowsInRange(ViewRowSetImpl.java:3072)
         at oracle.adf.model.binding.DCIteratorBinding.getAllRowsInRange(DCIteratorBinding.java:2349)
         at oracle.jbo.uicli.binding.JUCtrlHierNodeBinding.executeQueryIfNeeded(JUCtrlHierNodeBinding.java:475)
         at oracle.jbo.uicli.binding.JUCtrlHierNodeBinding.getChildren(JUCtrlHierNodeBinding.
    Since the attachment link is created by wizrads in a UI, and developers do not edit/insert/update fdndocumnetsEO, I do not know how to fix this problem.
    I need some help atthis time. Thank you.

    Are you and Oracle employee? if so, please post your question on the internal FA forum.
    Thanks
    Juan C.

  • Function to send fax the attachment of the pur. order when i output control

    Hi friends,
    when i output control purchase order -
    user want to send also the attachment documents when i click on output push button.
    is anyone know how can i do that?
    wich function can send the attachmant to fax?(it could be image, document,excel...etc).
    thanks in advanced,
    Michal.

    Hi,
    Which FAX server software do you use?
    PO output with attachment is standard function in SRM.
    SRM -> PO with attachment via SMTP -> FAX server (attachment conversion) -> FAX protocol -> Vendor
    Regards,
    Masa

  • Email Conversions to PDF With Attachments

    It has been a while since I checked on this, but has Adobe found a way to fix the email with attachment conversion "problem"?  What I want and need is when I convert an email from Outlook to an Adobe PDF, I want the attachments to convert as well.  So the finished product would look like email on a page, then the pages behind that email are whatever was attached to the email.
    Yes, I know that when it converts the attachments are connected to the PDF via the Paperclip on the bottom left side of the page.  This would be incredibly useful in the legal field.
    I'm using Adobe Acrobat Pro.
    Any help would be greatly appreciated!

    let me rephrase that.. if I send to one email it keeps the security. but when I
    send to more than one person it doesn't keep the security.

  • Import attachment thru Order Import Process

    Hi all,
    we are importing sales order thru concurrent process : ORDER IMPORT successfully.
    Now I want to import attachment attached along with order header & line level.
    How it possibe thru ORDER IMPORT process ?
    regards
    sanjay

    Insert records into following tables you should be able to import attahments
    p_status := 'S';
    p_message := 'Attachment created successfully';
    IF p_operation_code = 'INSERT' THEN
    BEGIN
         SELECT fnd_documents_short_text_s.NEXTVAL
         INTO v_media_id
         FROM dual;
    EXCEPTION
    WHEN OTHERS THEN
         p_message := 'Unable to get short text next value';
         RAISE e_stop_process;
    END;
    BEGIN
         SELECT fnd_documents_s.NEXTVAL
         INTO v_doc_id
         FROM dual;
    EXCEPTION
    WHEN OTHERS THEN
         p_message := 'Unable to get fnd documents next value';
         RAISE e_stop_process;
    END;
    BEGIN
         SELECT datatype_id
         INTO v_data_type_id
         FROM fnd_document_datatypes
         WHERE name = 'SHORT_TEXT';
    EXCEPTION
    WHEN OTHERS THEN
         p_message := 'While finding datatype id '||SQLERRM;
         RAISE e_stop_process;
    END;
    BEGIN
         SELECT category_id
         INTO v_cat_id
         FROM fnd_document_categories_tl
         WHERE user_name = p_cat_name;
    EXCEPTION
    WHEN OTHERS THEN
         p_message := 'While finding category id '||SQLERRM;
         RAISE e_stop_process;
    END;
    BEGIN
         INSERT INTO fnd_documents
         (document_id,
         creation_date,
         created_by,
         last_update_date,
         last_updated_by,
         datatype_id,
         category_id,
         security_type,
         publish_flag ,
         usage_type,
         start_date_active)
         VALUES
         (v_doc_id,
         p_creation_date,
         v_user_id,
         p_last_update_date,
         v_user_id,
         v_data_type_id,
         v_cat_id,
         4,
         'Y',
         'O',
         SYSDATE);
    EXCEPTION
    WHEN OTHERS THEN
         p_message := 'While inserting data into fnd documents '||SQLERRM;
         RAISE e_stop_process;
    END;
    BEGIN
         INSERT INTO fnd_documents_tl
         (document_id,
         creation_date,
         created_by,
         last_update_date,
         last_updated_by,
         LANGUAGE,
         description,
         media_id,
         source_lang)
         VALUES
         (v_doc_id,
         p_creation_date,
         v_user_id,
         p_last_update_date,
         v_user_id,
         'US',
         p_description,
         v_media_id,
         'US');
    EXCEPTION
    WHEN OTHERS THEN
         p_message := 'While inserting data into fnd documents_tl '||SQLERRM;
         RAISE e_stop_process;
    END;
    BEGIN
         SELECT fnd_attached_documents_s.NEXTVAL
         INTO v_att_doc_id
         FROM dual;
    EXCEPTION
    WHEN OTHERS THEN
         p_message := 'Unable to get fnd attached documents next value';
         RAISE e_stop_process;
    END;
    BEGIN
         INSERT INTO fnd_attached_documents
         (attached_document_id,
         document_id,
              creation_date,
              created_by,
              last_update_date,
              last_updated_by,
              seq_num,
              entity_name,
              pk1_value,
              automatically_added_flag)
         VALUES
         (v_att_doc_id,
         v_doc_id,
         p_creation_date,
         v_user_id,
         p_last_update_date,
         v_user_id,
         p_seq_num,
         p_entity_name,
         p_pk_value,
         'N');
    EXCEPTION
    WHEN OTHERS THEN
         p_message := 'While inserting data into fnd attached documents '||SQLERRM;
         RAISE e_stop_process;
    END;
    -- Fnd_File.put_line(Fnd_File.LOG,'The Values '||v_media_id||','||p_note);
    BEGIN
         INSERT INTO fnd_documents_short_text
              VALUES (v_media_id,
                   p_note,
                   NULL);
    EXCEPTION
    WHEN OTHERS THEN
         p_message := 'While inserting data into fnd_documents_short_text '||SQLERRM;
         RAISE e_stop_process;
    END;
    ELSIF p_operation_code = 'UPDATE' THEN
    BEGIN
    UPDATE fnd_documents_short_text
    SET short_text = p_note
    WHERE media_id IN (SELECT media_id
                   FROM fnd_attached_documents fad,
                        fnd_documents fd,
                        fnd_documents_tl fdt,
                        fnd_document_categories_tl fdct
                   WHERE fad.document_id = fd.document_id
              AND fd.document_id = fdt.document_id
              AND fd.category_id = fdct.category_id
                   AND fad.entity_name = p_entity_name
                   AND fad.pk1_value = p_pk_value
                   AND fdct.user_name = p_cat_name);
    EXCEPTION
    WHEN OTHERS THEN
         p_status := 'E';
         p_message := 'SQL Error while updating note :'||SQLERRM;
    END;
    END IF;

  • Oracle AP Invoice Attachment

    Hello Experts!
    I am trying to see if there are any SQL queries that can be written so that whenever the Open Invoice Interface is run, if that can also pull in and attach the associated invoice that we have on a shared drive and attach it to the corresponding invoice? We want to be able to attach invoices automatically so that we do not have to go in and click on the paper clip every time and add the scanned or electronic invoices manually. Is there any cost effective way of doing this without having to implementing another Oracle solution? We are currently in Oracle 11.5.10.2.
    Thanks!
    Edited by: 990255 on Feb 25, 2013 2:48 PM

    Option #1: This is an UNSUPPORTED SOLUTION. Manually insert records into the FND attachment tables once the invoice gets created.
    Option #2: Keep the file in shared folder and send the file URL/link in one of the attribute value to the interface; Enable Zoom function in the custom.pll to launch the URL/LINK when user clicks ZOOM button. Also you can try with forms personalization to launch URL / Link instead of customization.

  • Exporting attachments attached with a PO

    Anyone has an idea about how to export attachment documents from a PO to desktop?
    They are stored in fnd attached documents table..Is there a way to export BLOB files using pl sql and utility pkg?
    thanks
    kp

    Hi Walter,
    In NACE transaction, select Application EF , then select your P.O Message ( standard is NEU ) .
    Then in "processing routing" parts check that there is an entry for medium 5 ( external send ) , if not please set it with corresponding print program, from routine and forms to use .
    Then in "Mail Title and Text" parts  you can define your mail title with variable and your mail body . Please find below a sample for this. To define the mail body just click on the icon for text ( it's like sapscript text ).
    Mail Title : "Your P.O &EKKO-EBELN"
    Mail Body : "Please find enclosed our P.O &EKKO-EBELN....."
    That's all for NACE parts.
    After this you have to define thru condition that the medium will be used for each P.O. For this check with functionnal consultant if everything is ok and the same that for medium 1.
    Then when you create a P.O, SAP will generate a mail with supplier e-mail adress define in his masterdata . The forms will be converted according to your customizing in transaction SCOT ( node SMTP , Support address type parts) .
    Of course you also have to define a job for sending the mail .
    Hope this help you
    Regards
    Bertrand

  • Sender File with FCC coming with empty file

    Hi Experts,
    Scenario: File(FCC) to Proxy
    Error: CSV file picking up from source directory but its showing empty in sender CC (Actual file contains data in source directory) and find below attached Conversion parameters. Please let me know if any changes in the configuration.
    Document Name: MT_Legacy
    Document Name space: http://retails.com/pi/LEGACY/Purchasing/TECHNICAL_DATA
    Recordset structure: Header,,Items,
    Recordset sequence: Ascending
    Keyfiled names: NumFacture,Constant
    ignoreRecordsetName----
    true
    Header.fieldNames----
    a,s,d,f,g,e
    Header.keyFieldInStructure----
    ignore
    Header.keyFieldValue----
    05
    Header.endSeparator----
    nl
    Header.fieldSeparator----
    Similar to Items also
    Query: is this error related to source file (unexpected format) or Sender File CC configuration.
    Regards,
    FHM

    Hi HK,
    I see that there are two keyfield names in your content conversion. Are they for different nodes?
    " Keyfiled names: NumFacture,Constant "
    Yes...those are coming from two different nodes like one from Header and another one from Items.
    And also the you have provided key field value as 05 and what about the other key field?
    Another key field value have given 43
    one more thing Key filed value must be always constant right?
    Thanks,

  • Oracle Payables Integration With Documentum Content Managment System

    Hi there,
    I'm working for a customer who has the requirement to add "attachments" to invoices in Oracle Payables. The attached documents will not be stored in Oracle, but will be links to documents stored in the Documentum content management system. Clicking on the link will retrieve the document and display it.
    The problem is I am a complete novice when it comes to developing for Oracle Payables. Documentum provides an extensive java API that I have a lot of experience using but can I get at that from within Payables?
    Can anyone point me at the correct documentation/websites to get me going?
    Many Thanks
    Paul

    You can attach a URL to an invoice using standard attachments, just query up an existing invoice and click on the "paperclip" attachments icon in the toolbar, enter the sequence, category, description and enter "Web Page" as the data type, then put the URL in the File or URL field.
    You could also do the above steps automatedly via PL/SQL (or Java) by calling the appropriate FND attached documents API to insert the data into the required tables.
    Gareth
    Blog: http://garethroberts.blogspot.com
    Web: http://www.virtuate.com

  • Can anyone help with a timestamp filter problem

    Hello
    I need to filter all times before 09:30 and all times after 15:30.  The filtering that takes place in the attached VI filters the dates properly up to 46 days but then 4:30 becomes 09:30 and 09:30 no longer appears  approx element 327 in the right array set.
    Any suggestions would be appreciated.  I have expirimented with the local vs standard time settings but things never get filtered properly.
    Thanks
    Tim C.
    1:30 Seconds ARRRGHHH!!!! I want my popcorn NOW! Isn't there anything faster than a microwave!
    Attachments:
    Stock Data File Feed Filter Error.vi ‏204 KB

    I used the attached conversion VI (found on NIs website and modified slightly) and replaced all the code in your FOR LOOP. I ran this and the final time stamps look good. Your original VI modified is attached.
    By the way, your code is strewn all over the place, I would suggest modularizing with sub-VIs...you could shrink your block diagram WAY down (to something that would fit on my 1680x1050 screen).
    The attachments are for LabVIEW 8.5. What version are you using?
    Message Edited by Bill@NGC on 09-24-2007 10:34 PM
    “A child of five could understand this. Send someone to fetch a child of five.”
    ― Groucho Marx
    Attachments:
    Convert_String_to_TimeStamp.vi ‏16 KB
    Stock Data File Feed Filter Error-1.vi ‏193 KB

  • Migrating CSS to CSM

    Hi,
    I am a newbee. I am migrating from CSS to CSM. I have attached conversion config. Can some one please verify that I am doing the right conversion?
    Thanks

    actually there is a mistake.
    Here is what it should look like
    real XX1
    address x.x.x.x
    inservice
    real XX2
    address x.x.x.x
    inservice
    serverfarm YYY
    nat server
    no nat client
    real name XX1
    inservice
    real name XX2
    inservice
    probe tcp
    sticky 1 ssl timeout 60
    vserver YYY
    virtual xx.xx.xx.03 tcp http
    serverfarm YYY
    inservice
    vserver YYY1
    virtual xx.xx.xx.03 tcp https
    serverfarm YYY
    sticky 60 group 1
    inservice
    Gilles.

Maybe you are looking for

  • How do you assign multiple values to a single element in an array?

    I'm probably not wording the question right. I have an array, let's call it M[], and for each element in the array (we'll say M[1]), I need assign three integers: row, col and value. I need to set it up so I can do something like this: A.row = M[i].c

  • Windows 8.1 Not Working Properly after Updating Boot Camp Drivers to 5.1

    Hi all! Recently I had a problem with the sound in Windows 8.1 using BC v5. That problem was resolved by updating the Boot Camp Drivers to 5.1. Now I've more problems than before. 1. Some service are not loading at all at the startup (which did befor

  • How can I get rid of a "speck" on the inside  of my iMac's display? please help me. T_T

    I have a Mid 2011 21.5 baseline iMac which I bought in March 2012. I noticed it just a couple of days ago, there's a tiny grey "speck" in the middle of my screen. I initially thought it was a speck of dust, which I tried to clean off with a microfibe

  • Self assinged IP address when going thru a Workgroup HUB

    Hello Thank your for reading this post. This is my set up: (Please keep in mind I have only modest networking exp. but I was told this hub would be fine. We used to use it (previously we had 2 discrete IP addresses however, but I thought a HUB could

  • Extremely Frustrating!

    I keep getting this message: the itunes library file cannot be saved. An unknown error occurred (-50). How do I fix this? I'd like to be able to add music and have it stay in my library, but with this error, every time that I close iTunes, everything