R/3 Looking for generic RFC to post internal table as CSV to SAP XI/PI

Hi everybody,
does anybody know a RFC to send a internal table to XI/PI?
Thanks
Regards Mario

> do you really know all RFC to claim there is no such RFC?
I appriciate this question.
Well at least I don't know all RFCs.  But one thing I know if you are populating your data in your internal table by using some select query then you have to create your own ZRFC because for that there is no standard RFC.
So this was the reason I said there is no such RFC. If you know some RFC then please let me know to add in my knowledge database.
Regards,
Sarvesh

Similar Messages

  • Looking for generic WebService for update date & time in my C# WinForm program

    hi
    looking for generic WebService for update date & time in my C# WinForm program
    thanks

    hi
    looking for generic WebService for update date & time in my C# WinForm program
    thanks
    Hello,
    I agree with Cor that since this forum is for issues related to winodws form controls and features, but this issue is mainly related to the webservice which is working for updating time, you could consider posting this issue on other site, or you could
    also consider creating your webservice by checking this document
    Your first C# Web Service.
    If you get any issues when create your webservice, you could post this issue in the following forum.
    http://forums.asp.net/28.aspx/1?WCF+ASMX+and+other+Web+Services
    Regards.
    Carl
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • RFC - delay in internal table update/refresh

    Hello,
    We have an RFC call. The end of the function call returns an internal table with new rows appended to it.However, when we check at the invoking code, i could see that it takes a while for the newly appended rows to be refreshed in the internal table. In order to avoid this, i have introduced a 'Wait upto' statement. However, this is proving to be a performance overhead. Can you please suggest if there is any other alternative to achieve this?
    Thanks and regards,
    Deepthi.

    Hi,
    If you are using nested loops, the better way to use the internal table, is always use READ statement. When you use read statement, you will be mentioning all the key fields like READ table itab with key f1 = k1.....
    a) So first see in all your internal tables while comparing entries are you mentioning all the key fields in the read statements.
    b) While you compare data between 2 internal tables inside a loop. Always check whether entries exist in both the tables, like if the values are initial for a particular internal table.
    c) check sy-subrc = 0 for all the entries and internal tables.
    d) try using continue inside your loop .... endloop.
    Because, if there is no entry in the top level internal table, you can immediately give a continue statement there, so that system shall not check all the internal tables. It will exit from the current loop entry and the checking shall immediately start for the next table index.
    This shall drastically reduce your processing time logic.
    Lakshminarayanan
    P.S. Mark all helpful answers for points

  • How to process a block for each row in an internal table....

    Hi experts....
    In po approval workflow the scenario is like this.... for each po there may be more than one approver. approvers list i am maintaining in the ztable. list of approvers(no of approvers) is decided by the po value. I have collected these approvers into internal table. now i have to process a block ( approving or rejecting the po... )in the workflow for each row in the internal table.
    how can i do this. based on the decision of the 1st approver  approves the po then it should go to next approver in the internal table...otherwise end the workflow.....
    Please help me......

    i have created an internal table in the workflow container in which i am getting the list of approvers....
    how can i loop the internal table in the workflow...?
    how can i know the index of the loop in the workflow.....(will sy-index work here....? so that i can use loop until step in the main workflow to call the subworkflow..so that if sy-index is greater than no of entires in the itab then i can come out of the loop)

  • Gui_download for transferring the data from internal table to excel sheet.

    hi all,
    i am using gui_download for transferring the data from internal table to excel sheet.
    I have a internal table with 3 columns col1,col2,col3 and I am getting the file at the specified path,but my problem is that,in the excel sheet(path specified) all the 3 columns values are printed in one column.Please help me.
    Thanks in advance.

    Hi Venkata,
    plz use FM 'SAP_CONVERT_TO_XLS_FORMAT' :
      call function 'SAP_CONVERT_TO_XLS_FORMAT'
        exporting
    *   I_FIELD_SEPERATOR          =
    *   I_LINE_HEADER              =
          i_filename                 = p_file
    *   I_APPL_KEEP                = ' '
        tables
          i_tab_sap_data             = t_mbew
    * CHANGING
    *   I_TAB_CONVERTED_DATA       =
    * EXCEPTIONS
    *   CONVERSION_FAILED          = 1
    *   OTHERS                     = 2
      if sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      endif.
    Hope this helps,
    Erwan

  • Extract Cube data for all entries of an internal table

    Hi
    I want to fetch the data from the cube for all entries of another internal table.
    Scenario : Fetching the COMPANY_CODE and DATE into an internal table and for those company codes and Dates, I have to fetch the records of the Cube.,
    I am using the Function Module : RSDRI_INFOPROV_READ
    But not sure how to accommodate the multiple selections condition for this.
    Selection Required:
                                    *For all entries of it_cc
                                      where comp_code = it_cc-comp_code and
                                                  date = it_cc-date.*
    Please help me how to such multiple conditions and "for all entries" functionality for fetching the data from the cube.
    Thanks.
    Veera Karthik G

    HI
    You can try like this
    LOOP AT lt_donotcall_old .
    <ls_donotcall>-examination_date = sy-date.
    <ls_donotcall>-examination_time = sy-time.
    ENDLOOP.
    append it_donotcall_old.
    Reward all helpfull answers
    Regards
    Pavan

  • Looking for BAPI which can post condition records.

    Hi ,
    I am looking for a bapi which can post the condition records. I need to post Maximum Condition Base Value KONP-MXKBAS along with other fields. I found already one bapi BAPI_PRICES_CONDITIONS which has this field but if I execute
    the bapi with BAPI_TRANSACTION_COMMIT it is not posting any data at all. So could any one please help me out of this or if any other alternate BAPI* or any other solution is possible here. But one thing to mention here that LSMW,BDC is not possible to use.
    Thanks in advance.
    Best Regs
    Somnath

    Hi!
    In most common, standard BAPIs are working correctly.
    Here are a the following cases if they aren't:
    - standard fault, mostly has a correction note at OSS (very rare case)
    - the BAPI is not finishing succesfully. In this case, you always have to check the return table of the BAPI (BAPIRET2, or RETURN, etc...). In this table there is the error. Mostly it occurs due to incorrect customizing settings.
    Please check the return table of your BAPI, and you'll find out the problem.
    Regards
    Tamá

  • Looking for a Notes app that I can import CSV files into?

    As the title says, I'm looking for a good notes application for my iPhone that I can import CSV files into. I have tried both Appigo and Notespark, but I can't easily scroll through them, as I have 2,000+ notes. Is there any app that I can import my notes into and also scroll through quickly? I'd like something that works similarly to how you scroll through songs on the iPhone/iTouch, with the column on the right where you can skip to songs (notes, in this case) that start with a certain letter.
    Thanks!

    Hi Tx Tar Heel,
    I've been using Office2HD: https://itunes.apple.com/us/app/office2-hd/id364361728?mt=8
    Its cheaper than Numbers and it also works for Word and PowerPoint files too. I like the Dropbox integration. I can start on my Office docs (Word, Excel, PowerPoint) in the office and then edit those files with Office2HD when I'm out of the office. Files saves right back to Dropbox so that when I get back to the office the files are already updated. Not bad for a $7.99 app!
    Hope this helps!
    ~Joe

  • Look for 'Purchase Order' and 'Due date' Tables

    Hi Everyone,
    iam creating a Form for an automatic payment and i have some difficulties to find the table of these fields :
    - Purchase Order (EBELN)
    - Due date (NETDT)
    Please can u help me?
    Regards.

    I hope you checked these tables.
    I found these on Where-used for your NETDT field, Alos these tables have field BELNR which might intrests you.
      Table Fields                     Short descriptn
      BWPOS                            Valuations for Open Items
      FAEDT                            Due Date for Net Payment
      DKKOP                            Balance Audit Trail
      NETDT                            Due Date for Net Payment
      DKOKP                            Open Item Account Balance Audit Trail
      NETDT                            Due Date for Net Payment
      DSKOP                            Balance Audit Trail
      NETDT                            Due Date for Net Payment
      MHND                             Dunning Data
      FAEDT                            Due Date for Net Payment
    good luck,
    ags.

  • Using for all entries of two internal tables in where clause of the select

    Hi experts,
    My requirement is, need to select Marc-minbe and wrpl-sobst, for all the entries of the two internal tables it_mara , and it_t001w.
    here is the select queries i have used,
    select matnr normt from  mara into it_mara for all entries in it_data where normt = it_data-normt.
    select konnr werks from t001w into it_t001w for all entries in it_data where konnr = it_data-konnr.
    now i need to select minbe of marc table and sobse of wrpl table for all the entries of above internal tables, it_mara and it_t001w, using both matnr of it_mara and werks of it_t001w in where condition.
    Pls advise how i can do it.
    Thanks.
    Moderator message: very basic, please work on this yourself first, these forums are not a substitute for ABAP training.
    Edited by: Thomas Zloch on Dec 6, 2010 9:38 AM

    Hi
    call SE16 with table TFTIT in order to get a full list (it will be long...)
    A list of FMs with parameters can be found in table FUNCT.
    Finally go to sm37rsdf4
    that will give you all the function modules with description
    Here is the list:
    http://www.erpgenie.com/abap/functions.htm
    hope this helps...
    Regards
    CSM Reddy

  • For all entries with 2 internal table

    HI experts.
    How to use  2 for all entries in a select statement.
    Below refer to my below code.
    select vbeln matnr lfimg vgbel posnr from lips into corresponding fields of table
      it_lips for all entries in  it_likp   where
                  vbeln = it_likp-vbeln and
                  matnr = it_mara-matnr.
    I want to add another for all entries it_mara.
    Please help me .Thanks in advanced.

    hi,
    it is possible....
    use this query...
    declare another internal table of the same type as it_lips.
    data : it_lips_final like it_lips.
    select vbeln matnr lfimg vgbel posnr from lips into corresponding fields of table
    it_lips for all entries in it_likp where
    vbeln = it_likp-vbeln .
    loop at it_lips.
      read table it_mara into it_mara with key matnr = it_lips-matnr.
      if sy-subrc = 0.
        append it_lips to it_lips_final.
      endif.
    endloop.
    refresh it_lips[].
    it_lips[] = it_lips_final[]
    what the above code does is selects all the entries of vbeln from lips and filters it in the loop reading it from mara checking for matnr value and finally
    all the entries according to your requirement is there in it_lips_final which we move it to it_lips again...
    this is something similar to writing a for all entries for 2 table.... but in another fashion
    Regards
    Siddarth

  • Looking for an App with 'Post-It Note'-Type Capability

    I facilitate multi-day workshops, and frequently have to lug overstuffed four-inch binders around with me. Sometimes more than one.
    The challenge here is, I have to modify the pages each time I facilitate, based on client specifics, new learnings/research, etc. I have a system where I have five different colours of Post-It notes that I swap in and out on the pages. Some pages have had the same Post-Its on them for years, some change weekly.
    What would be ideal would be, is if I could scan the pages - without the Post-It notes on them - and load them on my iPad, and then add some kind of virtual Post-It notes to each page. (Of course, I'd need my five colours). So some way to add colour-coded notes that are editable and re-positionable to a PDF is exactly what I'd like to see.
    Surely such a thing exists!

    iAnnotate looks pretty good, but for highlighting. And it's ten bucks just to try it... Wish there was a trial option. Good Reader also looks worth exploring.
    Alright, now I know what I'm doing this weekend.
    (I'll take more suggestions, if they exist)
    Thank you, Meg.

  • Looking for VCDIFF (RFC 3284) algorithm implemented in LabVIEW

    Hello forum,
    I am looking to see if anyone knows of a publicly available implementation of the VCDIFF binary differencing algorithm in native LabVIEW (G) ? 
    Here is a link to a paper on the RFC 3284 standard for those interested: http://tools.ietf.org/html/rfc3284
    There are a number of open source implementations in C/C++, but I would like to locate one in LabVIEW if possible.
    Regards!

    Implementing binary algorithmes in LabVIEW and especially compression algorithmes, while possibe is not a very smart idea. Aside from possible perfomance problems when you start to shuffle around on bit level, there is also the issue about how to proof the correctness of your implementation. Those open source C/C++ solutions have been used, peer reviewed and what else many times and all that has uncovered various flaws and bugs during the process.There is only a very small adience that will go and use your LabVIEW algorithme and even a much smaller one who is able to do any significant form of peer review.
    So all in all you are likely to end up with a somewhat to almost working implementation that nobody is going to use, for the gain of bragging that you did it in LabVIEW.
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

  • New member looking for best place to post in the community for variety of topics

    Hi. My name is Tony and I've just received a new Lenovo EDGE 15 (NOT a Thinkpad!) and have been test driving it for a few days. It is generally a very nice and flexible system - Model number is 80K9000AUS and is listed under the FLEX series on the shopping site. This is my first post ever.
    My background is in the IT industry, primarily in the programming and support with 30 years in IBM and several more recent years in laptop support with a smaller company. Funny that I am now at the "Fanfold Paper" level here in the forums, since I started with IBM in 1968 and relied on fanfold paper and punched cards at that time.
    I am quite famiiar with the older Thinkpad lines since I've supported models 600, 770 T21, T23, T30, ,,, up to T500 which I own 2 of. This is my first experience with Windows 8 as I'm coming from XP (no yelling please <g>). Not as bad as I've been led to believe, just different ...so far.
    These newer non-Thinkpad laptops don't seem to come loaded with very useful support tools like the Thinkpads do. I was wondering if there are any tools like the ThinkVantage series of tools that will run on these non-Thinkpad laptops to provide similar assistance?
    The Lenovo Companion "APP" that came pre-installed on the EDGE 15 informed me (via the Lenovo Messenger) that I should download and install the Lenovo System Update tool and it displayed a link which I clicked on which took me to the ThinkVantage System Update download page. After reading the "Readme" document I saw that my system was not specifically (or tangentially) supported on this software.
    I called support and after 50 minutes with 4 different people the question could not be answered. I was advised to download and install it and see what happened. So here I am.
    I welcome any guidance regarding the specific question and pointers to other Forum sections to either post or search in to get info regarding software and/or hardware questions. I am aware of the Flex section for specifics.
    Thanks in advance.
    Forgot to mention that Superfish was installed on this preload - installation date was 2/4/2015. I uninstalled from the add/remove (old terminology) programs list. Went to delete the Root Cert and it wasn't there, so I assume the builder of this preload deleted the root cert, or uninstall deleted the cert (which I doubt). Either way, quite misleading since we were told it would not appear after January.

    YouTube is as easy as anything else.

  • Looking for PL/SQL to edit simple tables

    Does anyone have some pl/sql written
    which is a simple table editor?
    I have a some 3 or 4 column tables
    that I need to be maintaind by an
    end user. (100 rows)
    I'm not in a windows envirionment!
    Any help so that I don't have to do
    this from scratch is appreicated!
    Thanks,
    Robert Leonard

    Does anyone have some pl/sql written
    which is a simple table editor?
    I have a some 3 or 4 column tables
    that I need to be maintaind by an
    end user. (100 rows)
    I'm not in a windows envirionment!
    Any help so that I don't have to do
    this from scratch is appreicated!
    Thanks,
    Robert Leonard

Maybe you are looking for

  • XML CLOB out from a stored procedure

    I'm using Oracle 8.1.7 and OO4O(Oracle Objects for OLE) 8.1.7.0.1 I'm generating an XML string in a CLOB using the XSU in a stored procedure. I'm then trying to pass the CLOB as an out parameter for that procedure to an ASP page using OO4O. I get the

  • Sending Email with Attch

    Hi, i'm trying to send a mail with an attch file to a external recipient, using the function ''SO_NEW_DOCUMENT_ATT_SEND_API1". I'ts working fine, with one exception. I'am trying to send a file that could be open by the Excel. But when i try to open'i

  • Shocked ! Featured apps in adobe market place - 30 downloads quanp slideshow

    Hi, I am confused, how does adobe choose the featured app in adobe market place. I am shocked to see today morning that quanp slideshow an app which was downloded only 30 times and not even rated once was in featured app, now it has 90 downlods. Same

  • Create Group Email Account in OIM

    Hi, I have a requirement to create Group Email Account in AD from OIM. I am able to create Group Accounts in AD using the OOB Resource Object "AD Group". Though I am not sure how to mail enable the group Account from OIM. Please give me ur valuable s

  • Unable to open EMC : Initialization failed in Ex2010

    Dear Expert I have the problem in below. but I follow this technet reference but it does not work, http://blogs.technet.com/b/whats_on_scotts_mind_today/archive/2012/12/07/exchange-2010-unable-to-open-exchange-management-console-initialization-failed