Which Interface table should I select

I require to insert data into the interface tables for the shipping done against the customer order.
I have doubt as to which interface tables are to be selected. I am listing the interface tables which are known to me.
1. WSH_DELIVERIES_INTERFACE
2. WSH_NEW_DEL_INTERFACE
3. WSH_TRIPS_INTERFACE
Are the table names I have listed above are correct. If there are any more tables that I have to select please suggest me
Thanks in advance
Vishwanath

Hi,
Please help me out how to use the WSH_FREIGHT_COSTS_PUB.Create_Update_Freight_Costs API.
I had used the below code but it returns with error.
pub_freight_costs.delivery_id      := Delivery_Id;
     pub_freight_costs.freight_cost_type_id := P_type;
     pub_freight_costs.currency_code := 'USD';
     pub_freight_costs.unit_amount      := nvl(I.shipping_charges, 0);
     p_action_code := 'UPDATE';
APPS.WSH_FREIGHT_COSTS_PUB.Create_Update_Freight_Costs (
     p_api_version_number => 1.0
     , p_init_msg_list => init_msg_list
     , p_commit => p_commit
     , x_return_status => x_return_status
     , x_msg_count => x_msg_count
     , x_msg_data => x_msg_data
     , p_pub_freight_costs     => pub_freight_costs
     , p_action_code => p_action_code
     , x_freight_cost_id => freight_cost_id
Please send the reply to [email protected]

Similar Messages

  • As the per  corresponding to the BSI  which sap table  should be in sync?

    Hi
    As the per  corresponding to the BSI  which sap table  should be in sync? is it BTXRATE?

    Hi Arun,
    You are right. You have to choose MDSD_APPLICATION_AWT only for the mobile ID.
    Best Regards
    Sivakumar

  • Which slide format should I select if I want to play the presentation in 16:9 on a television?

    Hello everyone;
    I have create a little pres in Keynote 8 and exported it to iDVD in order to burn it on a DVD.
    The aim is to play the DVD on a 16:9 TV.
    But when I played the DVD, I had 2 black blocks on each side of the presentation.
    Could anyone tell me which slide format would allow to have the presentation playing in "full screen" instead of 4:3
    Thanks in advance for your help.
    P

    I have attached the fixed code. Well my question is my callbacks doesn't communicate with my instrument which is tge Lock In Amp 7265. The goal of the program is to let the user select the digital analog voltage channel and the amount of voltage they want without hard coding it using ibwrt and sending a string. This code I have written, doesn't accomplish that. I don't understand where I am going wrong since but any insight would be much appreciated. Thanks for the time. 
    Sincerely,
    Attachments:
    SETDAC.c ‏2 KB
    setdacwin.uir ‏3 KB
    setdacwin.h ‏2 KB

  • On which interface should i open ports?

    Hi!
    Got a case from a customer. They want me to open some ports so that one client can use some applications.
    The problem is, I am not sure on which interface i should open the ports. The customer have about 10 interfaces on the ASA. It's a client on the inside network and it should be able to talk to internet through the ports, and anyone on the internet should be able to reach the client on the same ports.
    The client uses a static IP.
    Sent from Cisco Technical Support iPad App

    Hi,
    You need to map the flow of traffic for your customer.  That way you can plan the changes without breaking anything.
    It could be as simple as creating ACL's for the inside and outside interfaces + nat or something more complex.

  • How to load the data from a staging table to interface table

    Hi..
    I have a staging table having these many columns
    invoice_number,invoice_date,vendor_name,vendor_site_code,description,line-amount,line-description,segment1,segment2,segment3,segment4,segment5
    I want to insert data into oracle interface tables
    1st table is ap_invoices_interface which is primary
    and 2nd is ap_invoice_lines_interfaces.
    According to the invoice_id I have to insert the sum of amount in the amount column of primary table
    can anyone plz give the codes .
    any help appreciate

    Hi,
    you need to write pl/sql procedure or package for validiating the data and inserting.
    first u need to know wat r the mandatory colums. and write the code igiving here a simple example
    Create or replace procedure xxstg_po_vendors_int(errbuf out varchar2,retcode out number) IS
    Cursor po_cur IS Select sno,VENDOR_NAME,SUMMARY_FLAG,ENABLED_FLAG From xxstg_po_vendor;
    l_SUMMARY_FLAG Varchar(1);
    l_ENABLED_FLAG varchar(1);
    l_VENDOR_NAME varchar2(240);
    l_err_msg varchar2(240);
    l_flag varchar2(2);
    l_err_flag varchar2(2);
    Begin
    Delete from Ap_suppliers_INT;
    commit;
    for rec_cur in po_cur loop
    l_flag :='A';
    l_err_flag:= 'A';
    Begin
    select summary_flag into l_SUMMARY_FLAG from po_vendors
    where summary_flag = rec_cur.summary_flag;
    Exception
    when others then
    l_summary_flag:= null;
    l_flag:='E';
    l_err_msg:= 'Summary_flag Does not Exist';
    END;
    FND_FILe.PUT_LINE(FND_FILE.LOG,'Inserting data into interface table'||l_flag);
    Begin
    Select enabled_flag into l_enabled_flag from po_vendors
    where enabled_flag = rec_cur.enabled_flag;
    exception
    when others then
    l_enabled_flag:=null;
    l_flag :='E';
    L_err_msg:='Enabled_flag Does not Exist';
    End;
    FND_FILE.PUT_LINE(FND_FILE.log,'Inserting data into interface table'||l_flag);
    FND_FILE.PUT_LINE(FND_FILE.log,'Inserting data into interface table'||l_flag);
    INSERT INTO AP_SUPPLIERS_INT
    ( VENDOR_INTERFACE_ID,VENDOR_NAME,SUMMARY_FLAG,ENABLED_FLAG )
    values(rec_cur.sno,rec_cur.VENDOR_NAME,rec_cur.SUMMARY_FLAG,rec_cur.ENABLED_FLAG);
    l_flag :=null;
    l_err_msg:=null;
    end loop;
    commit;
    end;
    Regards
    Goutham

  • Doubt on inserting data into rcv interface tables

    Hi all,can anyone kindly suggest me what are the mandatory columns in rcv_headers_interface and rcv_transactions_interface tables to insert data so that after running Material Transaction Processor concurrent program the data in these interface tables should populate in rcv_shipment_headers and rcv_shipment_lines.
    I am close on this,but i am getting some errors in po_interface_errors like "transaction_type" is invalid in rcv_transactions_interface table and invalid "shipment_num" in rcv_headers_interface.
    So, someone kindly suggest me what exactly i need to insert into these tables.
    FYI..this is what i inserted
    INSERT INTO rcv_headers_interface
    HEADER_INTERFACE_ID,
    GROUP_ID,
    PROCESSING_STATUS_CODE,
    RECEIPT_SOURCE_CODE,
    TRANSACTION_TYPE,
    AUTO_TRANSACT_CODE,
    LAST_UPDATE_DATE,
    LAST_UPDATE_LOGIN,
    LAST_UPDATED_BY,
    CREATION_DATE,
    CREATED_BY,
    VALIDATION_FLAG,
    COMMENTS,
    SHIPMENT_NUM,
    FROM_ORGANIZATION_ID,
    SHIP_TO_ORGANIZATION_ID,
    EXPECTED_RECEIPT_DATE,
    RECEIPT_HEADER_ID
    SELECT
    landed_cost_interface_s.NEXTVAL,              --Header Interface ID
    landed_cost_interface_groups_s.NEXTVAL,       --Group ID
    'PENDING',                                    --Processing Status Code
    'INVENTORY',                                  --Receipt source Code
    'RECEIVE',                                    --Transaction Type
    'DELIVER'  ,                                   --AUT Transact Code
    lc.last_update_date,                          --last update date
    lc.last_updated_by,                           --last updated by
    fnd.user_id,                                  --Last Update Login
    sysdate,                                      --creation date
    lc.created_by,                                --created by
    'Y',                                          --Validation Flag
    'Receiving Through Interface',                --Comments
    lc.file_number,                                --Shipment Number
    81,                                           --From Org
    82,                                           --To org
    sysdate,                                      --Expected Receipt Date
    regal.regal_inv_landed_cost_seq.nextval       --Receipt Header ID
    FROM   regal.regal_inv_landed_cost_tab lc,
            fnd_user fnd
    WHERE  lc.last_updated_by = fnd.last_updated_by
    AND    lc.file_number='NOV612';
    INSERT INTO rcv_transactions_interface
                 HEADER_INTERFACE_ID,
                 GROUP_ID,
                 INTERFACE_TRANSACTION_ID,
                 TRANSACTION_TYPE,
                 TRANSACTION_DATE,
                 PROCESSING_STATUS_CODE,
                 PROCESSING_MODE_CODE,
                 TRANSACTION_STATUS_CODE,
                 CATEGORY_ID,
                 QUANTITY,
                 LAST_UPDATE_DATE,
                 LAST_UPDATED_BY,
                 CREATION_DATE,
                 CREATED_BY,
                 RECEIPT_SOURCE_CODE,
                 DESTINATION_TYPE_CODE,
                 AUTO_TRANSACT_CODE,
                 SOURCE_DOCUMENT_CODE,
                 UNIT_OF_MEASURE,
                 INTERFACE_SOURCE_CODE,
                 ITEM_ID,
                 UOM_CODE,
                 EMPLOYEE_ID,
                 SHIPMENT_HEADER_ID,
                 SHIPMENT_LINE_ID,
                 TO_ORGANIZATION_ID,
                 SUBINVENTORY,
                 FROM_ORGANIZATION_ID,
                 FROM_SUBINVENTORY,
                 EXPECTED_RECEIPT_DATE,
                 SHIPPED_DATE
    SELECT
         landed_cost_interface_s.CURRVAL,              --Header Interface ID
         landed_cost_interface_groups_s.CURRVAL,       --Group ID
         landed_cost_interface_s.NEXTVAL,              --Interface_transaction_id
         'RECEIVE',                                       --Transaction Type
         sysdate,                                      --Transaction Date
         'PENDING',                                    --Processing Status Code
         'BATCH',                                      --Processing Mode Code
         'PENDING',                                    --Transaction Status Code
         129,                                      --Category ID   
         lc.quantity_received,                          --Quantity
         lc.last_update_date,                          --last update date
         lc.last_updated_by,                           --last updated by
         sysdate,                                      --creation date
         lc.created_by,                                --created by
         'INVENTORY',                                  --Receipt source Code
         'INVENTORY',                                  --Destination Type Code
         'DELIVER' ,                                    --AUTO Transact Code
         'INVENTORY',                                  --Source Document Code
          msi.primary_unit_of_measure ,                --Unit Of Measure
          'RCV',                                       --Interface Source Code
          msi.inventory_item_id,                        --Item ID
          msi.description,                              --Item Description
          msi.primary_uom_code,                         --UOM COde
          fnd.user_id,                                  --User
          V_A,                                         --Shipment Header ID
          V_B,                                         --SHipment Line ID
          82,                                           --To Organization ID
          'Brooklyn',                                     --Sub Inventory ID
          81,                                            --From Organization
          'Vessel',                                      --From Subinventory
          sysdate,                                       --Expected Receipt Date
          sysdate                                        --Shipped Date
      FROM
         regal.regal_inv_landed_cost_tab lc,
         fnd_user fnd,
         mtl_system_items msi
      WHERE
                 lc.organization_id = msi.organization_id
            AND  lc.inventory_item_id = msi.inventory_item_id
            AND  lc.last_updated_by = fnd.last_updated_by
            AND  msi.created_by = fnd.created_by
            AND  lc.file_number='NOV612';Any help is appreciated.
    Thanks in advance!!

    Thanks for your reply Sandeep Gandhi,i followed your advice and went through that metalink note but it didn't help much.Errors are cropping up every time,i am testing with only one value right now.Am i missing something like the flow of the whole process..
    --->First i have loaded data into mtl_interface table
    --->Next,i am trying to insert into rcv_headers_interface and rcv_transactions_interface
    So,is there any link between the data i am passing into mtl interface table and rcv interface tables?
    Thanks in advance!!
    Edited by: sandy on Oct 18, 2011 9:38 PM
    Edited by: sandy on Oct 19, 2011 10:03 AM

  • Bank Statement Import interface tables

    Hi all,
    I'm using OEBS R 12.1.3. Can anybody tells me/some links or info / about the Bank Statement Import Program which interface tables uses as i cannot found or i'm just a bad researcher...? I have to insert data there in order this program to create bank statements.
    Thanks in advance,
    Bahchevanov.

    See http://docs.oracle.com/cd/A60725_05/html/comnls/us/ce/intert01.htm
    and How To Create New Bank Statement Mapping Template To Requirement, Latest Patch [ID 563476.1]
    Sandeep Gandhi

  • Which tables should i refer to know "A task is assigned to which employee?"

    Hi
    Which tables should i refer to know "A task is assigned to which employee?"
    I think pa_tasks.task_manager_person_id refers to the employee who is assigned a task. Please correct me if im wrong.
    Regards
    Vibhuti

    Vibhuti,
    pa_tasks.task_manager_person_id should not necessary be the person whom the task is assigned.
    You can try using following query:
    select distinct c.task_id TASK_ID,b.alias RESOURCE_NAME,c.task_name TASK_NAME
    from pa_resource_assignments a,
    pa_resource_list_members b,
    pa_tasks c
    where a.resource_list_member_id = b.resource_list_member_id
    and a.task_id = c.task_id
    and a.project_id = :project_id;
    --Sumit                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • How to select server in which background job should run

    Hi,
    I want to run my program as background job. I want the user to select the server, in which background job should be run, in the selection screen of my program. When it is sheduled in background the job should run in the selected server.
    How to do this?
    Regards,
    Sriram

    Hi,
    please write the code like as below.
    DATA : D_GROUP like TBTCJOB-JOBGROUP.
    use the function moulde JOB_OPEN.
      D_JOBNAME = SY-REPID.
      D_GROUP- BTCSYSREAX =  " pass the target server name Here
         CALL FUNCTION 'JOB_OPEN'
            EXPORTING
                 JOBNAME          = D_JOBNAME
                 JOBGROUP       =  D_GROUP
            IMPORTING
                 JOBCOUNT         = D_JOBNO
            EXCEPTIONS
                 CANT_CREATE_JOB  = 1
                 INVALID_JOB_DATA = 2
                 JOBNAME_MISSING  = 3
                 OTHERS           = 4.
    submit   <Program name>
                  USER SY-UNAME VIA JOB D_JOBNAME NUMBER D_JOBNO
                  USING SELECTION-SET '  var1 '   " Give varient name
                  AND RETURN.
    CALL FUNCTION 'JOB_CLOSE'
               EXPORTING
                    JOBCOUNT             = D_JOBNO
                    JOBNAME              = D_JOBNAME
                    STRTIMMED            = 'X'
               IMPORTING
                   JOB_WAS_RELEASED     = D_REL
               EXCEPTIONS
                   CANT_START_IMMEDIATE = 1
                   INVALID_STARTDATE    = 2
                   JOBNAME_MISSING      = 3
                   JOB_CLOSE_FAILED     = 4
                   JOB_NOSTEPS          = 5
                   JOB_NOTEX            = 6
                   LOCK_FAILED          = 7
                   OTHERS               = 8.
    Hope this will helps you
    Regards
    Kiran

  • Selected from my iphone "Buy more ringtones"and it has dowloaded as a music file how do i get it to be a ring tone which is what should have happened.  Any ideas on how to fix this?

    selected from my iphone "Buy more ringtones"and it has dowloaded as a music file and is now in itunes on my laptop and in music on my iphone. How do i get it to be a ring tone which is what should have happened in the first place.  Any ideas on how to fix this? As in itunes I cannot see how to a) change it to a ring or b) drag across to the right area...
    I simply followed the prompts on my iphone 4s and would have expected it to end up as a ring tone.. any help, guidance, advice welcome...

    selected from my iphone "Buy more ringtones"and it has dowloaded as a music file and is now in itunes on my laptop and in music on my iphone. How do i get it to be a ring tone which is what should have happened in the first place.  Any ideas on how to fix this? As in itunes I cannot see how to a) change it to a ring or b) drag across to the right area...
    I simply followed the prompts on my iphone 4s and would have expected it to end up as a ring tone.. any help, guidance, advice welcome...

  • HOW TO DECIDE IN A REPORT WHICH TABLE SHOULD LOOP FIRST?

    MY Report contains 3 item table and one header table or 4 header tables then how to decide that this table should loop first.And how could i judge that this table contains duplicate entries.
    HOW TO DECIDE IN A REPORT WHICH TABLE SHOULD LOOP FIRST?
    Moderator message: please search for available information/documentation before asking, do not post in all upper case, these forums are not a substitute for ABAP training.
    Edited by: Thomas Zloch on Dec 6, 2010 12:00 PM

    Hi,
    It is suggested to loop at the header table and then read the item table. Where in if you have multiple entries in the item table that matches, use the parallel cursors concept (Loop from index) as shown below
    Loop at header....
    Read table item with key......
    If sy-subrc EQ 0.
    Loop at item from sy-tabix.
    -- Perform your processing.
    endloop.
    endif.
    endloop.
    Also make sure if you have duplicate entries in your internal tables, Use SORT and then DELETE ADJACENT DUPLICATES so that it avoids the performance issues as well
    Hope this helps you.
    Regards,
    Shiva

  • Which tables should I modify by SE16N for an error posting?

    Hi All,
    an user has posted some customer documents (with tax codes) with wrong document date and posting date.
    I have to modify these data by se16n.
    Which tables should I modify?
    Thanks
    Gandalf

    Hi  u can do 1 thing
    << Very bad advice removed >>
    Thnanks,
      Yog
    Edited by: Rob Burbank on Apr 6, 2009 10:49 AM

  • I want to buy iPad mini wifi  + cellular for indian freind. Which Carrier should i select while buying it online?

    I want to buy iPad mini wifi + cellular for indian freind. Which Carrier should i select while buying it online?
    As far as i know service provider is not a constraint for i pad as ipads are always unlocked. Also, do we need to get nano sim from US or India srvice provider will have it? i am asking this as in Singapore iPads are offering 3 free nano sim cards.

    There is no CDMA in Europe or UK if that influences you, only GSM
    All the UK Carriers offer Data nano sims ,on contract or PAYG
    and this will help on 4G
    http://www.apple.com/ipad/LTE/
    and be aware the warranty is now not international

  • How to upload records  in two different interface tables through WebADI.

    We have created custom integrator with two different interfaces to insert records in AP_INVOICES_INTERFACES and AP_INVOICE_LINES_INTERFACE. Also defined the custom layout in which we mention the header and lines column info to be displayed in the spreadsheet. When I tried to create document to upload the records into the interface tables, could find two different interface for header and lines , when we select the header and upload records into the AP_INVOICES_INTERFACES table it was successfull. But couldn't upload records inserted in Lines interfaces tables. How do we upload records in both the table do we have constraint with Web ADI can insert records to only one interface tables. Any recommendation highly appreciated.

    Raghu,
    Thanks for the reply,
    I have a concern, But if you are connecting a another database you have to create one more subreport and each time am creating connections across databases we have to create subreport and go for the design to show the record. Is it any way to have a common field or union records approach in crystal report 2008.
    For Example :
    Approach 1 :
    Emp name           Emp salary      (Common Header)
    Variable Field1    Variable field2   ( Iterations to be done here for records)
    Variable field 1 contains ---> emptbl(employee name), b.emptbl(employee name) (A database, b database, c database or any .db)
    Variable field2  contains --->  emptbl (salary info between databases)
    Approach 2:
    getting all the records and union all the records 
    Thanks
    Murali Sri

  • R12 Customer Conversion by using TCA API  OR  Standard interface table ?

    R12 Customer Conversion should be done via  TCA API  OR  Standard interface table? Why ?
    Which approach is more suitable  kindly let us know your thoughts.

    We have used interface tables just to have better control and reprocessing abilities. You may need to be little careful about the TCA tables.

Maybe you are looking for

  • I frequently get the "Firefox can't find the server" error message.

    I frequently get the "Firefox can't find the server" error message. Refreshing the page normally causes the page to load, although sometimes it takes more than one try. I have checked my connection settings. IPv6 and DNS prefetching are disabled, as

  • How to move a numeric display

    Id like to know if there any way to move a numeric indicator/(or similar) around the screen to different x,y co-ordinates whilst the program is running, labview 6.1, window 2000 and xp

  • Generating hlp files in RoboHelp HTML

    Is it possible to generate .hlp files from RoboHelp HTML version 9? We're generating help files for an older program that only uses .hlp or .chm files. I've only been able to generate .hlp files from RoboHelp for Word, and I don't really want to use

  • Flash player on consoles: wii + ps3 etc...

    Hi guys. Googled this but the info is very diverse. I want to make my website flash educational games available to students through TV consoles such as wii etc... Does anybody have solid info as to their support. wii - I think somebody mentioned down

  • Lightroom 4 in Creative Cloud

    Hi, all.  Looked in the faqs and such but can't locate anything. I have been using Creative Cloud for over a year now, and along with that I was using Lightroom 4.4. The issue I have is that I had to replace my disk and reinstall.  CC only had LR 5,