Dealer Commissions interface file

Hi,
I got a requirement like Process the input interface file from Dealer Commissions to enter GL info into SAP by formatting BDC records which are to be used by transaction F-02 in a batch mode.
can any ony one explain me what is the requirement actually??.
logic is mentioned that
1)process input file
2)load work table ....etc.
can any one help me in this.
thanq.

There are standard programs for uploading/interfacing into the F-02/FB01 transactions.
You have the choice of standard BDC program from SAP - rfbibl00
or class method AcctngGLPosting.Post
or class method AcctngDocument.Post
or bapi BAPI_ACC_DOCUMENT_POST
The rfbibl00 program uses the batch mode (sm35).

Similar Messages

  • Comma Separated File

    Hello Experts,
    I am working on Interface, where i have the data in Internal Table. Now I am required to transfer the internal table data into Comma separated file with extension  '.csv' .
    I used the FM 'SAP_CONVERT_TO_CSV_FORMAT' and provided the de-limiter as ',' . When i downloaded the file in '.xls' format , all fields in row appeared in single cell of excel sheet.
    example : in 1 cell A1 the data was : abc,123,thr,456
    But the needed thing is 'abc' should appear in A1 cell , '123' should appear in B1 column etc...
    Please help me to attain the solution.
    Thanks in advance.
    Regards.

    You can concatenate all your field into a string, separated by ',' and then save the file.
    otherwise, you can save file into a csv where field are separated by tabulator, using the following:
    call function 'GUI_DOWNLOAD'
        exporting
          filename                = i_filename
          filetype                = 'ASC'
          write_field_separator   = 'X'
          dat_mode                = 'X'
        tables
          data_tab                = i_data
          fieldnames              = i_header
        exceptions
          file_write_error        = 1
          no_batch                = 2
          gui_refuse_filetransfer = 3
          invalid_type            = 4
          no_authority            = 5
          unknown_error           = 6
          header_not_allowed      = 7
          separator_not_allowed   = 8
          filesize_not_allowed    = 9
          header_too_long         = 10
          dp_error_create         = 11
          dp_error_send           = 12
          dp_error_write          = 13
          unknown_dp_error        = 14
          access_denied           = 15
          dp_out_of_memory        = 16
          disk_full               = 17
          dp_timeout              = 18
          file_not_found          = 19
          dataprovider_exception  = 20
          control_flush_error     = 21
          others                  = 22.
      if sy-subrc <> 0.
        message id sy-msgid type sy-msgty number sy-msgno
                with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      endif.
    Regards
    Andrea

  • CDC Comms Interface Drivers

    I have an E90 Communicator, which I use to connect to the internet on my PC via a USB cable. It all worked fine with XP, but after upgrading to Vista, I am unable to connect. The latest version of PC suite says that there is no modem found, and Vista keeps asking for CDC Comms Interface drivers, which I cannot locate. I have tried everything I know - using the version of PC suite that worked with XP, uninstalling and reinstalling... etc.
    The handset is seen by XP, I can do everything except connect to the net.
    Please can someone help me before I have a mini-meltdown?

    Hi, I'm sorry if I do mistakes - I'm Polish . I have a Nokia 6120. I had the same problem, after update to 6.86 version. Previous version worked properly.
    I solved this problem (at least on my Windows XP)
    Do this:
    1. Uninstall all Nokia Software (Nokia Connectivity Cable Driver and PC Suite)
    2. Restart
    3. Download newest Nokia PC Suite from: http://europe.nokia.com/A4144905
    4. Download the old version of Cable Driver from: http://rapidshare.com/files/108946848/Nokia_Connec​tivity_Cable_Driver_rel_6_85_10_0_eng.msi.html
    5. Install PC Suite (don't connect phone)
    6. Restart
    7. Close all PC Suite programs (e.g. Nokia Synchro, PC Suite)
    8. Go to Control Panel -> Add/Remove Programs
    9. Uninstall Nokia Connectivity Cable Driver
    10. Restart
    11. Install old version of Cable Driver you downloaded
    12. Now connect phone to PC
    13. Everything should work now.
    Again sorry if I do mistakes. I hope you understand I'm Polish.

  • 9iJSP Report output to a comma seperated file

    Hi,
    Is it possible to create a comma seperated file with output data from a 9iJSP report. If yes, can anyone tell me how ??
    thanks in advance
    Unmesh

    Hello Unmesh,
    If your JSP report has a paper layout, then you can use Reports Builder or the client/servlet/runtime executables to generate the paper layout to CSV formatted output with the DESFORMAT=DELIMITEDDATA and DELIMITER=, command-line options. If you have only a web layout , it will generate its output only in HTML format.
    You can add a paper/web layout to your JSP report, if it already doesn't have one, by opening it in Reports Builder, and inserting a report block in the paper layout view/web source view. This JSP report can then be used both to generate to CSV format using rwservlet, and to the web when deployed as a JSP.
    Thanks,
    The Oracle Reports Team.

  • Hi it is related to field mapping database feild to interface file fields

    Use the following fields from BSIK to map the Pay Header data in the interface file.
    Company code BSIK-BUKRS
    Vendor BSIK-LIFNR
    Fiscal year BSIK-GJAHR
    Document # BSIK-BELNR
    Document Date BSIK-BLDAT
    Currency BSIK-WAERS
    Amount in LC (local currency) BSIK-DMBTR
    Payment Terms BSIK-ZTERM
    Reference BSIK-XBLNR
    Debit/Credit Indicator BSIK-SHKZG
    Business Area BSIK-GSBER
    • No more than 950 lines per header, if lines exceed 950 then need to create a new header, ensuring that the document is fully balanced (Debits = Credits)
    o If the value of BSIK- SHKZG = ‘H’ then
    Map ‘-’ to the subfield SIGN of the Amount_ Document _T&#61607; field
    Assign ‘C’ to the subfield DRCR of the Amount_ Document _T field&#61607;
    o If the value of BSIK- SHKZG = ‘S’ then
    Map ‘+’ to the subfield SIGN of the&#61607; Amount_ Document _T field
    Assign ‘D’ to the subfield DRCR of the Amount_&#61607; Document _T field
    o Save the total amount of each invoice in credit and debit separately.

    Hi,
    You can use this FM to get the list of all files
    TMP_GUI_DIRECTORY_LIST_FILES
      DATA: TBL_FILES LIKE SDOKPATH OCCURS 10 WITH HEADER LINE,
            TBL_DIRS LIKE SDOKPATH OCCURS 10 WITH HEADER LINE.
      CALL FUNCTION 'TMP_GUI_DIRECTORY_LIST_FILES'
           EXPORTING
                DIRECTORY  = P_DIRECTORY
                FILTER         = 'Test*.Txt'   "<< restricts to only TEXT files begining with Test
           TABLES
                FILE_TABLE = TBL_FILES
                DIR_TABLE  = TBL_DIRS.
    After getting the files in the TBL_FILES... loop the table and read the files with GUI_UPLOAD FM
    Thanks,
    Sankar M

  • EDI 850's Interface File Data program errors out

    This is interface dile data program completes in error for EDI 850. Prior to this we had issues saying "error starting toolkit", but that was resolved by the DBA's. Now that error has gone and this error is coming up.
    Below is the error message:
    Version 12.1.3
    DB : 11g
    +-----------------------------
    | Starting concurrent program execution...
    +-----------------------------
    Arguments
    P_TRANSACTION_TYPE='POO'
    P_FILE_PATH='/interface/infvmmci/ECRP2/outgoing'
    P_FILE_NAME='VMMC850.dat.20120702215742'
    P_MAP_CODE='EC_POO_FF'
    Execution options
    VERSION=2.0b ORIENTATION=LANDSCAPE
    Current NLS_LANG and NLS_NUMERIC_CHARACTERS Environment Variables are :
    American_America.US7ASCII
    Enter Password:
    REP-1401: 'p_run_idformula': Fatal PL/SQL error occurred.
    REP-0069: Internal error
    REP-57054: In-process job terminated:Terminated with error:
    REP-1401: 'p_run_idformula': Fatal PL/SQL error occurred.
    Report Builder: Release 10.1.2.3.0 - Production on Mon Jul 2 21:58:53 2012
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Start of log messages from FND_FILE
    End of log messages from FND_FILE
    Program exited with status 1
    Concurrent Manager encountered an error while running Oracle*Report for your concurrent request 5710284.
    Review your concurrent request log and/or report output file for more detailed information.
    Executing request completion options...
    Output file size:
    0
    Finished executing request completion options.
    Kindly help,
    Ganapathy

    Please see if these docs help.
    Interface File Data Program Fails With REP-1401 Error [ID 1415103.1]
    850 POI Inbound EDI ECEPOI Error ORA-29284: file read error. [ID 565059.1]
    Running Interface File Data, Completes With Error. [ID 563879.1]
    How to Ensure Outbound 856 (DSNO) documents are generated [ID 1432829.1]
    Thanks,
    Hussein

  • Outbound interface file for the employeesu0092 deduction information from the d

    How to Create an Outbound interface file for the employees’ deduction information from the different Payroll Companies.
    Thanks in advance.
    Regards
    vamsi.

    Hi,
    The requirement seems to be similar to the one posted in the link https://forums.oracle.com/thread/848476. Please check.

  • Comma delimited file in application server.

    How to extarct a comma delimited file from an internal table in to SAP application server.

    Hi Arun,
    Can you be a bit more clearer? Are you uploading the dat to the appl server or downloading?
    1) Comma separated info from itab to file server.
    loop at itab.
    concatenate itab-field1
                itab-field2
                 itab-field3
    into itab_new-data separated by ','.
    append itab_new.
    clear itab_new.
    endloop. 
    open dataset dsn for output in text mode.
    if sy-subrc = 0.
    loop at itab_new.
    transfer itab_new to dsn.
    endloop.
    endif.
    close dataset.
    2) Comma separated info from file to itab.
    open dataset dsn for input in text mode.
    if sy-subrc = 0.
    do.
    read datset dsn into itab-data.
    if sy-subrc <> 0.
    exit.
    else.
    append itab.
    clear itab.
    endif.
    enddo.
    endif.
    close dataset.
    loop at itab.
    split itab-data at ',' into  itab_new-field1
                itab_new-field2
                 itab_new-field3.
    append itab_new.
    clear itab_new.
    endloop. 
    REgards,
    Ravi

  • 810 Outbound invoice change interface file definition

    Hi
    we are implementing 810 outbound invoice. In the interface file definition we have to customize it so we can reduce the number of columns in the outbound data file.
    do we have to delete the record number or position in order not to appear in the outbound data file. how do we migrate this custom to another instance? it is tedious to do manual updates to the interface file definition sine we dont need most of the columns in the interface file.
    Please advise.

    Hi,
    We are also having a similar situation with our 810 outbound implementation. Were you able to change the file definition?
    If so, did you copy the seeded file definition to create a new file definition or modified the seeded file definition?
    How do you add new interface columns and how do you link it to the backend columns? Do you update the record in ECE_INTERFACE_COLUMNS table?
    I would really appreciate if you can answer my question.
    Thanks in advance.

  • How i can deal with oracle file by using php api

    how I can deal with oracle file by using php api ?

    What has this to do with Reflections and Reference Objects?

  • Comma Seperated Files

    I am trying to read in data from a .CSV file.
    The CSV file contains a list of questions and answers in the
    format;
    Question, option1, option2,option3,option4, correct answer
    My problem is that I can get the whole line into an array but
    I can't find a way of getting each element of the comma seperated
    file into a multi dimensioned array.
    I need to be able to use MyArray[1,1] is equal to
    Question and MyArray[1,2] is equal to
    option1 etc etc
    Hope this makes sense
    Paul

    In your routine you have two loops.
    Either one will work on thier own but as soon i nest them
    then it just stops working........
    The below data is stored as a Data.csv file (Obviously it
    contains a lot more these are the first 3 records.) **Can't count =
    4 records lol)
    ,,B,,,,Lorry,,,,,X,,,,,CC5001 ,Mark one answer,,under 7.5
    tonnes maximum authorised mass,over 7.5 tonnes maximum authorised
    mass,over 7.5 metres overall height,under 7.5 metres overall
    height,,,1111,This sign means no entry for goods
    vehicles,TS4619.eps,CC5001.gif ,Vehicle Weights and Dimensions
    ,,B,,,,Lorry,,,,,X,,,,,CC5002 ,Mark one answer,,either the
    left-hand or middle lane,only the left-hand lane,only the middle
    lane,any of the lanes,,,1111,Your lorry is over 7.5 tonnes maximum
    authorised mass. This sign means you may use,TS4545.eps,CC5002.gif
    ,Vehicle Weights and Dimensions
    ,,C,,,,Lorry,,,,,,X,,,,CC5003,Mark one answer,,30 mph,40
    mph,50 mph,60 mph,,,1111,You are driving a lorry with a maximum
    authorised mass of 7 tonnes. What is the maximum speed limit on a
    single carriageway?,,,Vehicle Weights and Dimensions
    ,,B,,,,Lorry,,,,,X,,,,,CC5004,Mark one answer,,30 mph,40
    mph,50 mph,60 mph,,,1111,What is the national speed limit on a
    single carriageway road for a rigid lorry weighing more than 7.5
    tonnes maximum authorised mass?,,,Vehicle Weights and
    Dimensions

  • How to place Outbound Interface file in APPS SERVER?

    Hi Guys,
             Actually I'm running the below pl\sql procedure for the OutBound interface file.
    CREATE OR REPLACE procedure GE_INV_Out_BAL(Errbuf OUT varchar2,
                                           Retcode ouT varchar2,
                f_id    in number,
                t_id    in varchar2) as
    cursor c1 is select
           msi.segment1 item,
        msi.inventory_item_id Itemid,
        msi.description  itemdesc,
        msi.primary_uom_code Uom,
        ood.organization_name name,
        ood.organization_id   id,
        mc . segment1||','||mc.segment2 Category
        from
        mtl_system_items_b           msi,
        org_organization_definitions ood,
        mtl_item_categories          mic,
        mtl_categories               mc
        where
        msi.organization_id       = ood.organization_id
        and msi.inventory_item_id = mic.inventory_item_id
        and msi.organization_id   = mic.organization_id
        and mic.category_id       = mc.category_id
        and msi.purchasing_item_flag = 'Y'
        and msi.organization_id between f_id and t_id;
    x_id     utl_file.file_type;
    l_count  number(8) default 0;
    begin
              x_id:=utl_file.fopen('/u02/oracle/SUPPORT1','invoutdata.dat','W');
               --select * from v$parameter where name like '%utl_file%'
    for x1 in c1 loop
    l_count:=l_count+1;
    utl_file.put_line(x_id,x1.item    ||'-'||
            x1.itemid  ||'-'||
            x1.itemdesc||'-'||
            x1.uom   ||'-'||
            x1.name   ||'-'||
            x1.id   ||'-'||
            x1.category   );
    end loop;
    utl_file.fclose(x_id);
    Fnd_file.Put_line(Fnd_file.output,'No of Records transfered to the data file :'||l_count);
    Fnd_File.Put_line(fnd_File.Output,' ');
    Fnd_File.Put_line(fnd_File.Output,'Submitted User name  '||Fnd_Profile.Value('USERNAME'));
    Fnd_File.Put_line(fnd_File.Output,' ');
    Fnd_File.Put_line(fnd_File.Output,'Submitted Responsibility name '||Fnd_profile.value('RESP_NAME'));
    Fnd_File.Put_line(fnd_File.Output,' ');
    Fnd_File.Put_line(fnd_File.Output,'Submission Date :'|| SYSDATE);
    Exception
    WHEN utl_file.invalid_operation THEN
      fnd_file.put_line(fnd_File.log,'invalid operation');
      utl_file.fclose_all;
    WHEN utl_file.invalid_path THEN
      fnd_file.put_line(fnd_File.log,'invalid path');
      utl_file.fclose_all;
    WHEN utl_file.invalid_mode THEN
      fnd_file.put_line(fnd_File.log,'invalid mode');
      utl_file.fclose_all;
    WHEN utl_file.invalid_filehandle THEN
      fnd_file.put_line(fnd_File.log,'invalid filehandle');
      utl_file.fclose_all;
    WHEN utl_file.read_error THEN
      fnd_file.put_line(fnd_File.log,'read error');
      utl_file.fclose_all;
    WHEN utl_file.internal_error THEN
      fnd_file.put_line(fnd_File.log,'internal error');
      utl_file.fclose_all;
    WHEN OTHERS THEN
      fnd_file.put_line(fnd_File.log,'other error');
      utl_file.fclose_all;
    End GE_INV_Out_BAL;
                                     It is working nice.The interface file is going and placed in the given path of the DB server.But the Requirement is the file should be placed in the app server.Is their method to place the file Directly in App server.please convey your suggestions.

    Hi,
    The requirement seems to be similar to the one posted in the link https://forums.oracle.com/thread/848476. Please check.

  • Passing data to different internal tables with different columns from a comma delimited file

    Hi,
    I have a program wherein we upload a comma delimited file and based on the region( we have drop down in the selection screen to pick the region).  Based on the region, the data from the file is passed to internal table. For region A, we have 10 columns and for region B we have 9 columns.
    There is a split statement (split at comma) used to break the data into different columns.
    I need to add hard error messages if the no. of columns in the uploaded file are incorrect. For example, if the uploaded file is of type region A, then the uploaded file should be split into 10 columns. If the file contains lesser or more columns thenan error message should be added. Similar is the case with region B.
    I do not want to remove the existing split statement(existing code). Is there a way I can exactly pass the data into the internal table accurately? I have gone through some posts where in they have made use of the method cl_alv_table_create=>create_dynamic_table by passing the field catalog. But I cannot use this as I have two different internal tables to be populated based on the region. Appreciate help on this.
    Thanks,
    Pavan

    Hi Abhishek,
    I have no issues with the rows. I have a file with format like a1,b1,c1,d1,e1, the file should be uploaded and split at comma. So far its fine. After this, if the file is related to region A say Asia, then it should have 5 fields( as an example). So, all the 5 values a1,b1..e1 will be passed to 5 fields of itab1.
    I also have region B( say Europe)  whose file will have only 4 fields. So, file is of the form a2,b2,c2,d2. Again data is split at comma and passed to itab2.
    If some one loads file related to Asia and the file has only 4 fields  then the data would be incorrect. Similar is the case when someone tries to load Europe file with 5 fields related data. To avoid this, I want to validate the data uploaded. For this, I want to count the no. of fields (seperated by comma). If no. of fields is 5 then the file is related to Asia or if no. of fields is 4 then it is Europe file.
    Well, the no. of commas is nothing but no. of fields - 1. If the file is of the form a1,b1..e1 then I can say like if no. of commas = 4 then it is File Asia.But I am not sure how to write a code for this.Please advise.
    Thanks,
    Pavan

  • How to make comma seperated file

    hi
    I have a select statement that looks like below. I want to make comma seperated file for the selected columns. How to write it?
    SELECT MM.DAL_NUMBER,
    '19-NOV-2009' as WSS_CE,
    CPN_INT,
    TRADE_DATE,
    MX_DATE "LAST_DATE",
    CUSTOMER_SPECIF CUST_GID,
    NAME_SHORT CUST_NAME_SHORT
    from my_table;
    if you could provide me with exact query.
    Thanks

    Slightly more generic approach...
    As sys user:
    CREATE OR REPLACE DIRECTORY TEST_DIR AS '\tmp\myfiles'
    GRANT READ, WRITE ON DIRECTORY TEST_DIR TO myuser
    /As myuser:
    CREATE OR REPLACE PROCEDURE run_query(p_sql IN VARCHAR2
                                         ,p_dir IN VARCHAR2
                                         ,p_header_file IN VARCHAR2
                                         ,p_data_file IN VARCHAR2 := NULL) IS
      v_finaltxt  VARCHAR2(4000);
      v_v_val     VARCHAR2(4000);
      v_n_val     NUMBER;
      v_d_val     DATE;
      v_ret       NUMBER;
      c           NUMBER;
      d           NUMBER;
      col_cnt     INTEGER;
      f           BOOLEAN;
      rec_tab     DBMS_SQL.DESC_TAB;
      col_num     NUMBER;
      v_fh        UTL_FILE.FILE_TYPE;
      v_samefile  BOOLEAN := (NVL(p_data_file,p_header_file) = p_header_file);
    BEGIN
      c := DBMS_SQL.OPEN_CURSOR;
      DBMS_SQL.PARSE(c, p_sql, DBMS_SQL.NATIVE);
      d := DBMS_SQL.EXECUTE(c);
      DBMS_SQL.DESCRIBE_COLUMNS(c, col_cnt, rec_tab);
      FOR j in 1..col_cnt
      LOOP
        CASE rec_tab(j).col_type
          WHEN 1 THEN DBMS_SQL.DEFINE_COLUMN(c,j,v_v_val,2000);
          WHEN 2 THEN DBMS_SQL.DEFINE_COLUMN(c,j,v_n_val);
          WHEN 12 THEN DBMS_SQL.DEFINE_COLUMN(c,j,v_d_val);
        ELSE
          DBMS_SQL.DEFINE_COLUMN(c,j,v_v_val,2000);
        END CASE;
      END LOOP;
      -- This part outputs the HEADER
      v_fh := UTL_FILE.FOPEN(upper(p_dir),p_header_file,'w',32767);
      FOR j in 1..col_cnt
      LOOP
        v_finaltxt := ltrim(v_finaltxt||','||lower(rec_tab(j).col_name),',');
      END LOOP;
      --  DBMS_OUTPUT.PUT_LINE(v_finaltxt);
      UTL_FILE.PUT_LINE(v_fh, v_finaltxt);
      IF NOT v_samefile THEN
        UTL_FILE.FCLOSE(v_fh);
      END IF;
      -- This part outputs the DATA
      IF NOT v_samefile THEN
        v_fh := UTL_FILE.FOPEN(upper(p_dir),p_data_file,'w',32767);
      END IF;
      LOOP
        v_ret := DBMS_SQL.FETCH_ROWS(c);
        EXIT WHEN v_ret = 0;
        v_finaltxt := NULL;
        FOR j in 1..col_cnt
        LOOP
          CASE rec_tab(j).col_type
            WHEN 1 THEN DBMS_SQL.COLUMN_VALUE(c,j,v_v_val);
                        v_finaltxt := ltrim(v_finaltxt||',"'||v_v_val||'"',',');
            WHEN 2 THEN DBMS_SQL.COLUMN_VALUE(c,j,v_n_val);
                        v_finaltxt := ltrim(v_finaltxt||','||v_n_val,',');
            WHEN 12 THEN DBMS_SQL.COLUMN_VALUE(c,j,v_d_val);
                        v_finaltxt := ltrim(v_finaltxt||','||to_char(v_d_val,'DD/MM/YYYY HH24:MI:SS'),',');
          ELSE
            v_finaltxt := ltrim(v_finaltxt||',"'||v_v_val||'"',',');
          END CASE;
        END LOOP;
      --  DBMS_OUTPUT.PUT_LINE(v_finaltxt);
        UTL_FILE.PUT_LINE(v_fh, v_finaltxt);
      END LOOP;
      UTL_FILE.FCLOSE(v_fh);
      DBMS_SQL.CLOSE_CURSOR(c);
    END;This allows for the header row and the data to be written to seperate files if required.
    e.g.
    SQL> exec run_query('select * from emp','TEST_DIR','output.txt');
    PL/SQL procedure successfully completed.Output.txt file contains:
    empno,ename,job,mgr,hiredate,sal,comm,deptno
    7369,"SMITH","CLERK",7902,17/12/1980 00:00:00,800,,20
    7499,"ALLEN","SALESMAN",7698,20/02/1981 00:00:00,1600,300,30
    7521,"WARD","SALESMAN",7698,22/02/1981 00:00:00,1250,500,30
    7566,"JONES","MANAGER",7839,02/04/1981 00:00:00,2975,,20
    7654,"MARTIN","SALESMAN",7698,28/09/1981 00:00:00,1250,1400,30
    7698,"BLAKE","MANAGER",7839,01/05/1981 00:00:00,2850,,30
    7782,"CLARK","MANAGER",7839,09/06/1981 00:00:00,2450,,10
    7788,"SCOTT","ANALYST",7566,19/04/1987 00:00:00,3000,,20
    7839,"KING","PRESIDENT",,17/11/1981 00:00:00,5000,,10
    7844,"TURNER","SALESMAN",7698,08/09/1981 00:00:00,1500,0,30
    7876,"ADAMS","CLERK",7788,23/05/1987 00:00:00,1100,,20
    7900,"JAMES","CLERK",7698,03/12/1981 00:00:00,950,,30
    7902,"FORD","ANALYST",7566,03/12/1981 00:00:00,3000,,20
    7934,"MILLER","CLERK",7782,23/01/1982 00:00:00,1300,,10The procedure allows for the header and data to go to seperate files if required. Just specifying the "header" filename will put the header and data in the one file.
    Adapt to output different datatypes and styles are required.

  • E-Commerce Gateway Question about Interface File Definition.

    Hello Gurus,
    Does anyone know if Oracle e-Commerce Gateway (11.5.10.2) deliver the Interface File Definition for Inbound Purchase Orders (850/ORDERS) - _'IN: Purchase Orders (850/ORDERS)'_ out of the box?
    I see Interface File Definition for OPM Purchase Order along with a bunch of other trx sets (like ASNI, INI, INO) but not Purchase Orders (850/ORDERS) in the instance that I am working... so just wanted to verify.
    Thanks
    Dave

    Following are some of the pros of using XML Gateway:
    1) XML is being accepted and more and more technologies are moving towards XML, so that "seems" to a future ready solution
    2) XML processing is real-time.
    3) Most of the maps for universally accepted standards are seeded in Oracle.
    4) You can use Oracle Supplier Network(Free service provided by Oracle) with your XML gateway to transmit/receive xml documents to a supplier who may or may not be accepting the format you are generating(e.g. if your PO is in OAG standard and your supplier is accepting cXML format, OSN takes care of translating your document)
    You might want to consider these points while deciding the technology.
    Nitin S. Darji

Maybe you are looking for

  • Mozilla Firefox crashes more often than a Ford in the winter. What's with this?

    I have been using Mozilla Firefox for quite some time now, until about 2 months ago when it started having random crashes. I shrugged it off as a coincidence, until it began happening anywhere from 5-30 times per session. I had to switch to Google Ch

  • Create a DB-Table through Web Dynpro

    Hi everybody, how can i create a new DB-Table on my Database (oracle) through a Web Dynpro Application. In my Web Dynpro Application i create in the dictionary area a table with some colums. After deploying it into my WAS i opened the SQL-Developer b

  • Iisproxy conf iguratoin in weblogic5.1

              HI group           Am try to configure iisproxy, I am using weblogic5.1 sp6 and iis4.0.           I have the iis and the weblogic server in different machines, on iis machine i put           the iisproxy.dll, iisforward.dll and the iisproxy

  • Executable file won't work in terminal when I'm in it's folder

    I don't get it, I thought I could just go to a folder then I can execute an excutable file in that folder by simply typing it. For some reason terminal wants me to put in the entire path of the file to execute it even if I'm in the folder. Clearly th

  • Corrupted clips in switch to FCP Studio 2

    When I installed FCP Studio 2 and opened a project I discovered that all of the clips with the time remapped were corrupted. What a pain. Luckily everything is backed up but it is really proving difficult to fix these segments. Is this a bug or some