Can I bring in Invoice Memo Text using Invoice Interface Tables?

Is there's a way to bring in Memo Lines using Invoice Interface tables. I got a need of converting around 5000 characters from legacy system to Oracle into Multiple Memo lines. I know that each memo line at the invoice level has 2000 character limit.
Please advise.

If I understood properly, you can use AR_MEMO_LINES_PKG.INSERT_ROW to inset to rows to AR_MEMO_LINES_ALL_B.
In RA_INTERFACE_LINES_ALL, column MEMO_LINE_ID is used to import this reference.
I hope this helps.
Bilal SARIOZ

Similar Messages

  • Can I withold my number when texting using iPhone 3 in the UK with O2

    Can I withold my number when texting using iPhone 3 in the UK with O2

    BlueEyedVivi12 wrote:
    Is the iPhone 5 (at least on verizon, which mine is) really unlocked?
    The sim slot in all Verizon iPhone 5's is officially unlocked out of the gate. The phone will work just fine in the UK using any compatible carriers's sim.
    If it will work in the UK, what type of sim would I need? I think I saw the mention of a nano sim- is that correct?
    You need a Nano sim card which you can get from any supported iPhone carrier in the UK.
    You don't need to do anything with Verizon but fulfill your existing contract.
    Bear in mind, warranty/support will only be valid in the US, & the phone will not support LTE using any UK sim.

  • How can i  change the column label text in a alv table display

    how can i change the column label text in a alv table display??
    A similar kinda of question was posted previuosly where the requirement was the label text was needed and following below code was given as solution :
    <i>*  declare column, settings, header object
    DATA: lr_column TYPE REF TO cl_salv_wd_column.
    DATA: lr_column_settings TYPE REF TO if_salv_wd_column_settings.
    DATA: lr_column_header type ref to CL_SALV_WD_COLUMN_HEADER.
    get column by specifying column name.
    lr_column = lr_column_settings->get_column( 'COLUMN_NAME1' ).
    set Header Text as null
    lr_column_header = lr_column->get_header( ).
    lr_column_header->set_text( ' ' ).</i>
    My specific requirement is i have an input field on the screen and i want reflect that value as the column label for one of the column in the alv table. I have used he above code with slight modification in the MODIFYVIEW method of the view since it is a process after input. The component gets activated without any errors but while run time i get an error stating
    <i>"The following error text was processed in the system CDV : Access via 'NULL' object reference not possible."</i>
    i have checked in debugging and the error occured at the statement :
    <i>lr_column = lr_column_settings->get_column( 'CURRENT_YEAR' ).</i>Please can you provide me an alternative for my requirement or correct me if i have done it wrong.
    Thanks,
    Suri

    I found it myself how to do it. The error says that it is not able to find the reference object i.e  it is asking us to refer to the table. The following piece of code will solve this problem. Have to implement this in WDDOMODIFYVIEW method of the view. This thing works comrades enjoy...
      DATA : lr_cmp_usage TYPE REF TO if_wd_component_usage,
             lr_if_controller  TYPE REF TO iwci_salv_wd_table,
             lr_cmdl   TYPE REF TO cl_salv_wd_config_table,
             lr_col    TYPE REF TO cl_salv_wd_column.
      DATA : node_year  TYPE REF TO if_wd_context_node,
             elem_year  TYPE REF TO if_wd_context_element,
             stru_year  TYPE if_alv_layout=>element_importing,
             item_year  LIKE stru_year-i_current_year,
             lf_string    TYPE char(x),
      DATA: lr_column TYPE REF TO cl_salv_wd_column.
      DATA: lr_column_header TYPE REF TO cl_salv_wd_column_header.
      DATA: lr_column_settings TYPE REF TO if_salv_wd_column_settings.
    Get the entered value from the input field of the screen
    node_year  = wd_context->get_child_node( name = 'IMPORTING_NODE' ).
    elem_year  = node_year->get_element( ).
      elem_year->get_attribute(
       EXPORTING
        name = 'IMPORT_NODE-PARAMETER'
       IMPORTING
        value = L_IMPORT_PARAM ).
      WRITE L_IMPORT_PARAM TO lf_string.
    Get the reference of the table
      lr_cmp_usage  =  wd_this->wd_cpuse_alv( ).
      IF lr_cmp_usage->has_active_component( ) IS INITIAL.
        lr_cmp_usage->create_component( ).
      ENDIF.
      lr_if_controller  = wd_this->wd_cpifc_alv( ).
      lr_column_settings = lr_if_controller->get_model( ).
    get column by specifying column name.
      IF lr_column_settings IS BOUND.
        lr_column = lr_column_settings->get_column( 'COLUMN_NAME').
    set Header Text as null
        lr_column_header = lr_column->get_header( ).
        lr_column_header->set_text( lf_string ).
    endif.

  • What is the basic use of Interface Tables

    Hi there,
    We are trying to connect and send data to the EBS Oracle System.
    We are facing different scenarios and I don't know which one to use in which scenario?
    So if I add a vendor for instance, should I use the Interface tables or call a stored procedure?
    When using interface tables would I have a feedback? Success/Failure and if there is a failure would I have a detailed exception (Name too long, id mendatory...etc.)
    Same question for stored procedure
    A simple answer would be very helpful, and a link to any documentation would be great
    Thanks

    Hi,
    using interface tables is - normally - accompanied by a concurrent request, which does data validation, generation of a report and data import as well.
    So - if you are using correct data structures - using interface tables and running matching concurrent request might save you a lot of time.
    Most concurrent requests which are processing open interface tables are generating some detailled reports on records being processed or having
    failed validation. In addition you normally have some kind of status flag in open interface tables indicating processing state and sometimes error codes
    as well (see gl_interface table or ap_invoices_interface tables).
    When using api packages, you may have more flexibility (sometimes more features, when looking at the TCA apis), but you have to do some extra
    coding for validation, populating default values and so on.
    API Packages do always return a success/error state, which can be extracted in detail by using fnd_msg_pub package - but you have to code it by
    yourself.
    I would say open interface tables are a bit easier to handle whereas some of the api packages need more experience (e.g. when talking about TCA apis,
    there are some steps to do in the right order to get a customer created).
    Regards

  • How to create Payment against the invoices in R12 using API/Interface table

    Hi Experts,
    I need your help.
    As per my requirement , we need to create the payments against the invoices using the payment information provided.
    Earlier the Payments against the invoice is done by (3rd party system) in 11i.
    But, as a part of R12 implementation,
    The requirement is like now they are going to provide us and flat file(having below payment information) and we need to create the payment with these information.
    COLUMNS PROVIDED
    SOURCE
    INVOICE INTERNAL NUMBER #
    ACCOUNTING SEGMENTS
    DEBIT/CREDIT
    AMOUNT
    CURRENCY
    BANK ACCOUNT
    PAYMENT DATE
    DUE DATE
    PAYMENT METHOD
    PAYMENT TERMS
    BATCH ID
    We need to create an inbound interface to achieve the below requirement.
    1. Create the payments in oracle R12 with the above payment information. (unable to find the way please suggest).
    2. Creating the Journal entries. -> We are having GL_INTERFACE & Journal Import program to import the journals.
    3. Finally we have to posting the same into GL.-- Interface & Import programs available.
    Is there any api or interface tables can be used to create the payment against the invoices in r12?
    Could you please help me to achive my above requirements.
    Any sample code or reference will be a great help for me.
    Waiting for your response.
    Thanks,
    Thiru.

    Hi Thiru,
    Perhaps these links can help:
    http://ccchuanblog.blogspot.in/2010/12/oracle-ap-payment-api.html
    http://oracle.ittoolbox.com/groups/technical-functional/oracle-apps-l/ap-invoice-payment-need-help-4037407
    See "Understanding Oracle Payments APIs" here:
    http://docs.oracle.com/cd/B40089_10/current/acrobat/120ibyig.pdf
    If this answers your question, please mark the post. Thanks.
    Kristofer Cruz
    Edited by: Kristofer Cruz on Sep 5, 2012 2:41 PM

  • How can I communicate the instrumnet in labview using RS485 interface?

    I am using NI USB RS485 to connect the instrument, but I donot have instrument driver,I have to use VISA write and read data. the connection and serial setting are correct, I used a software ModScan32 from win-tech, the communication works well. I want to use the labview as my platform, How can I use VISA? please give me any clue or sample code. the instrument has a Modbus commmunication protocol.ThankS!

    Hi,
    VISA allows you to send/receive string data to/from the instrument. Serial communication with RS-485 is just like RS-232, so any of the labVIEW examples on serial will work. For serial you basically need to use VISA Read and write, that's it.
    If you need information on what to send, you can check out the modbus website (www.modbus.org) and the documentation for the device.
    Hope this helps.
    DiegoF
    National Instruments.

  • Can't get a signal into garageband using firewire interface? Help

    Hi, I'm using a presonus fire studio mobile with a shure sm 57 connected into my mic input 1. The interface is correctly receiving the signal however when I choose the input in garageband i can't get anything. I tried all the input options (mono and stereo) but still nothing. I don't understand why.

    Hey Buddy,
    Does your interface have a software program that supports it? For example: Apogee has Maestro.
    Is the mic a phantom mic? Perhaps tha phantom feature has not been engaged?
    Did you double check the audio settings in the Garage Band>Preferences>Audio section?
    Another trick might be to restart Garage Band AND/OR restart the machine with the interface connected.
    Double check you input settings (ie, Line 1 or Line 2 or Stereo). Make sure the monitor is set to the "on" position. Click the grid icon next to the "monitor on/off" setting and double check your connections.
    Hope on of these helps.

  • AR Invoice Interface Tables....

    Hello all,
    If I need to upload AR Invoice from data file, what are the table that I need to update in R12.1.3.
    Is there any interface for AR Invoice...?
    Please guide me to achieve this task..
    Thanks and Regards,
    Muthu

    Hi Ivruksha,
    Thank you for your response...
    I correct as you told. But while running interface (N) Interfaces > Autoinvoice, Autoinvoice Master Program program is running and completed successful.
    But invoices are not created.
    I herewith attached the log output.
    Please tell me what i'm missing...
    Receivables: Version : 12.0.0
    Copyright (c) 1979, 1999, Oracle Corporation. All rights reserved.
    RAXMTR module: Autoinvoice Master Program
    Current system time is 18-FEB-2013 14:21:46
    raagtr()+ Current system time is 18-FEB-2013 14:21:46
    crb->raaucrpn = RAXTRX
    crb->raaucrcr =
    crb->raaucrnt = 0
    crb->raaucrml = 10
    raagtr()- Current system time is 18-FEB-2013 14:21:46
    raampa()+ Current system time is 18-FEB-2013 14:21:46
    raampa()- Current system time is 18-FEB-2013 14:21:46
    raamcw()+ Current system time is 18-FEB-2013 14:21:46
    raaasf()+ Current system time is 18-FEB-2013 14:21:46
    raaasf()- Current system time is 18-FEB-2013 14:21:46
    raaasf()+ Current system time is 18-FEB-2013 14:21:46
    raaasf()- Current system time is 18-FEB-2013 14:21:46
    raaasf()+ Current system time is 18-FEB-2013 14:21:46
    raaasf()- Current system time is 18-FEB-2013 14:21:46
    raaasf()+ Current system time is 18-FEB-2013 14:21:46
    raaasf()- Current system time is 18-FEB-2013 14:21:46
    raaasf()+ Current system time is 18-FEB-2013 14:21:46
    raaasf()- Current system time is 18-FEB-2013 14:21:46
    raacrf()+ Current system time is 18-FEB-2013 14:21:46
    raacrf()- Current system time is 18-FEB-2013 14:21:46
    raacrf()+ Current system time is 18-FEB-2013 14:21:46
    raacrf()- Current system time is 18-FEB-2013 14:21:46
    raacrf()+ Current system time is 18-FEB-2013 14:21:46
    raacrf()- Current system time is 18-FEB-2013 14:21:46
    raacrf()+ Current system time is 18-FEB-2013 14:21:46
    raacrf()- Current system time is 18-FEB-2013 14:21:46
    raacrf()+ Current system time is 18-FEB-2013 14:21:46
    raacrf()- Current system time is 18-FEB-2013 14:21:46
    raacrf()+ Current system time is 18-FEB-2013 14:21:46
    raacrf()- Current system time is 18-FEB-2013 14:21:46
    raacrf()+ Current system time is 18-FEB-2013 14:21:46
    raacrf()- Current system time is 18-FEB-2013 14:21:46
    raacrf()+ Current system time is 18-FEB-2013 14:21:46
    raacrf()- Current system time is 18-FEB-2013 14:21:46
    raacrf()+ Current system time is 18-FEB-2013 14:21:46
    raacrf()- Current system time is 18-FEB-2013 14:21:46
    raaasf()+ Current system time is 18-FEB-2013 14:21:46
    raaasf()- Current system time is 18-FEB-2013 14:21:46
    raaasf()+ Current system time is 18-FEB-2013 14:21:46
    raaasf()- Current system time is 18-FEB-2013 14:21:46
    raaasf()+ Current system time is 18-FEB-2013 14:21:46
    raaasf()- Current system time is 18-FEB-2013 14:21:46
    raaasf()+ Current system time is 18-FEB-2013 14:21:46
    raaasf()- Current system time is 18-FEB-2013 14:21:46
    raaasf()+ Current system time is 18-FEB-2013 14:21:46
    raaasf()- Current system time is 18-FEB-2013 14:21:46
    raaasf()+ Current system time is 18-FEB-2013 14:21:46
    raaasf()- Current system time is 18-FEB-2013 14:21:46
    raaasf()+ Current system time is 18-FEB-2013 14:21:46
    raaasf()- Current system time is 18-FEB-2013 14:21:46
    raaasf()+ Current system time is 18-FEB-2013 14:21:46
    raaasf()- Current system time is 18-FEB-2013 14:21:46
    raaasf()+ Current system time is 18-FEB-2013 14:21:46
    raaasf()- Current system time is 18-FEB-2013 14:21:46
    raaasf()+ Current system time is 18-FEB-2013 14:21:46
    raaasf()- Current system time is 18-FEB-2013 14:21:46
    raaasf()+ Current system time is 18-FEB-2013 14:21:46
    raaasf()- Current system time is 18-FEB-2013 14:21:46
    raaasf()+ Current system time is 18-FEB-2013 14:21:46
    raaasf()- Current system time is 18-FEB-2013 14:21:46
    raaasf()+ Current system time is 18-FEB-2013 14:21:46
    raaasf()- Current system time is 18-FEB-2013 14:21:46
    raaasf()+ Current system time is 18-FEB-2013 14:21:46
    raaasf()- Current system time is 18-FEB-2013 14:21:46
    raaasf()+ Current system time is 18-FEB-2013 14:21:46
    raaasf()- Current system time is 18-FEB-2013 14:21:46
    WHERE NVL(INTERFACE_STATUS, '~') != 'P'
    AND (REQUEST_ID IS NULL
    AND BATCH_SOURCE_NAME = 'ARIMP BATCH SOURCES'
    AND DECODE(82, -99, ORG_ID, 82) = ORG_ID
    AND LINK_TO_LINE_ATTRIBUTE1 IS NULL
    AND LINK_TO_LINE_ATTRIBUTE2 IS NULL
    AND LINK_TO_LINE_ATTRIBUTE3 IS NULL
    AND LINK_TO_LINE_ATTRIBUTE4 IS NULL
    AND LINK_TO_LINE_ATTRIBUTE5 IS NULL
    AND LINK_TO_LINE_ATTRIBUTE6 IS NULL
    AND LINK_TO_LINE_ATTRIBUTE7 IS NULL
    AND LINK_TO_LINE_ATTRIBUTE8 IS NULL
    AND LINK_TO_LINE_ATTRIBUTE9 IS NULL
    AND LINK_TO_LINE_ATTRIBUTE10 IS NULL
    AND LINK_TO_LINE_ATTRIBUTE11 IS NULL
    AND LINK_TO_LINE_ATTRIBUTE12 IS NULL
    AND LINK_TO_LINE_ATTRIBUTE13 IS NULL
    AND LINK_TO_LINE_ATTRIBUTE14 IS NULL
    AND LINK_TO_LINE_ATTRIBUTE15 IS NULL
    len = 700
    raamcw()- Current system time is 18-FEB-2013 14:21:46
    SELECT /*+ parallel(l) */ COUNT(*)
    from ra_interface_lines_all l
    WHERE NVL(INTERFACE_STATUS, '~') != 'P'
    AND (REQUEST_ID IS NULL
    AND BATCH_SOURCE_NAME = 'ARIMP BATCH SOURCES'
    AND DECODE(82, -99, ORG_ID, 82) = ORG_ID
    AND LINK_TO_LINE_ATTRIBUTE1 IS NULL
    AND LINK_TO_LINE_ATTRIBUTE2 IS NULL
    AND LINK_TO_LINE_ATTRIBUTE3 IS NULL
    AND LINK_TO_LINE_ATTRIBUTE4 IS NULL
    AND LINK_TO_LINE_ATTRIBUTE5 IS NULL
    AND LINK_TO_LINE_ATTRIBUTE6 IS NULL
    AND LINK_TO_LINE_ATTRIBUTE7 IS NULL
    AND LINK_TO_LINE_ATTRIBUTE8 IS NULL
    AND LINK_TO_LINE_ATTRIBUTE9 IS NULL
    AND LINK_TO_LINE_ATTRIBUTE10 IS NULL
    AND LINK_TO_LINE_ATTRIBUTE11 IS NULL
    AND LINK_TO_LINE_ATTRIBUTE12 IS NULL
    AND LINK_TO_LINE_ATTRIBUTE13 IS NULL
    AND LINK_TO_LINE_ATTRIBUTE14 IS NULL
    AND LINK_TO_LINE_ATTRIBUTE15 IS NULL
    len = 777
    No data found
    Total rows for current operating unit: 1
    Batch source [ARIMP BATCH SOURCES]: 0
    Start of log messages from FND_FILE
    End of log messages from FND_FILE
    Executing request completion options...
    ------------- 1) PRINT   -------------
    Printing output file.
    Request ID : 498704
    Number of copies : 0
    Printer : noprint
    Finished executing request completion options.
    Concurrent request completed successfully
    Current system time is 18-FEB-2013 14:21:46
    Thanks and Regards,
    Muthu

  • Use of open interface tables in R12

    Hello,
    Can someone tell me the status of using open interface tables in release 12. Is this still a supported mechanism for importing data into the product, or must you use a PL/SQL/Java API, XML gateway etc?
    iREP for 11.5.10 lists these open interface tables, but they are missing from the embedded iREP in R12. However, looking in the database for the RA_CUSTOMERS_INTERFACE_ALL shows that the tables exists. Is it supported to still use open interface tables, or are they just there for legacy upgrade purposes? If it is supported, where is the documentation for these R12 open interface tables?
    I wish to integrate into various modules using Oracle Data Integrator and it seems to only have 'integration knowledge modules' to support open interface tables.
    i look forward to your response.
    Cheers,
    John

    Hi Helios,
    Thanks for your response. Two of the links do not work.
    All I really need to know for sure is that R12 supports open interface tables.
    Perhaps I didn't use the embedded R12 iRep correctly - the standard view by product family certainly didn't show any open interface table, and they did not appear in the 'interface type' drop down list. However, I notice from an example on the web that you can pivot the results by interface type. I will try that when the environment becomes available again.
    cheers,
    John

  • I can't send a text using imessage from my iphone to an ipad

    I can't send or receive a text using imessage from my iphone to an ipad

    The Ipdas are using IOS 6 and can text to other iphones by phone number or apple id. I have tried hard resets and did a full restore and still no success. I am using IOS 6.0.1 and have had the phone checked at our local Apple dealer and I took it to the local ATT store to be sure my phone plan was not an issue.

  • How can I bring 2 photos in Creative Cloud to work on?  I would like one as a background the other I want to cut something out to put in the background.

    How can I bring in 2 photos to use in Creative Cloud to work on?  I would like one as a background and the other I would like to cut something out and put it in the background picture.  Help Please!

    Creative Cloud is not a program, it is a marketing and delivery process
    http://www.adobe.com/products/creativecloud/faq.html
    http://helpx.adobe.com/creative-cloud/help/install-apps.html to install or uninstall
    http://forums.adobe.com/community/download_install_setup/creative_cloud_faq
    What it is http://helpx.adobe.com/creative-cloud/help/creative-cloud-desktop.html
    Cloud Getting Started https://helpx.adobe.com/creative-cloud.html
    So... what is the name of the program you are using?

  • Blocked Invoices in Table VFX3 KNVV table ?

    Hi All,
    Can someone please tell me how i can realease a blocked invoice in table VFX3 KNVV ?
    Thank you
    Priya
    Points will be assigned

    Without more information that is a difficult question to answer.  There are mulriple reasons why an invoice may have been blocked for posting?
    I am assuming that you are meaning the transaction VFX3 or are you meaning table KNVV.
    The transaction VFX3 is traditionally used to clear up all billing blocks.  In order to clear a blocked invoice, you would highlight the specific row for that invoice and hit the flag icon to release.  There may still be issues why it is blocked and you may have to go back a step to unblock.  If you would like to share more information, I would be happy to help.

  • Search text for keywords - innodb table

    I have a longtext column in a table that I need to search
    through for keywords. The table is in innodb format. I dont want to
    change it to myisam because I can't afford to have it lock at the
    table level... I prefer the row level of innodb.
    How can I build a search around this? It would be nice to
    have all words, any words, and exact phrase as an option, as seen
    in tom mucks extension (which i own)... however, this recordset has
    so many arrays, it's completely hand coded and they extension isn't
    suppose to work with anything but default recordsets.
    Any suggestions? How can I have a more comprehensive search
    using a innodb table?

    tom mucks extension lets you use keywords 3 ways... all
    words, any words, and exact phrase.
    http://www.tom-muck.com/extensions/help/DynamicSearchPHP/

  • How to use temporary interface in another interface as derived table in 10g

    Hi ,
    Can somebody please tell me how to use temporary interface in another interface as derived table in 10g.
    I have an option in odi 11g to this task.But i am working on odi 10g for my project.So that please help me to do this task.
    I can able to create temporary interface in 10g ,but i dont know how to use that temporary interface in another inerface as derived table.
    Thanks in Advance
    Thanks,
    Srikanth A

    A temp interface CANNOT be used as a derived table in ODI 10g.
    All you can do is to drag and drop the temp interface as the source in the mapping.
    PS. Please remember to assign correct/helpful points to the people who help you in the forum.

  • Use of base table concept in form developer

    can i get any white paper on use of base table concept in form developer.

    have a look at the quick tours in the online help they will show you how to do it.

Maybe you are looking for