Function EXPORT_TO_SPREADSHEET? How does it work?

Hi all again.
I have another problem...I am trying to use the function EXPORT_TO_SPREADSHEET, but for any reason the excel document (that I want to use like a template) is not filled with the data that I put in the data_table of the function? Does somebody has a working example of this function?
Thanks again,
Marcelo Moreira

Hi marcelo,
1.  I what to fill the corresponding field of the template with data from my internal table.
For that, u will have to use ole technology,
where we can open excel as an object,
and MANIPULATE the contents,
CELL WISE.
2. I don't think there is any FM,
where u can work with templates.
3. GUI_DOWNLOAD is the best way
  to put the raw data of internal table
  into excel, AS IT IS.
4. But working with templates,
   ie. manipulating cell wise with ole technology
  will be quite cumbersome for anybody !
regards,
amit m.

Similar Messages

  • Partner Function screening - how does it work?

    Dear Experts,
    I would appreciate some input concerning the following issue we are facing:
    We have currently set-up Embargo screening as such:
    -- Determination Procedure: LEEMB
    -- Partner Group Export: ZEMBEX
    -- Legal Regulation: ZEMBW
    -- Country Groups: CTNTRYG_ALL (both from / to)
    -- Embargoed country: SY as top level country embargo
    -- Activation of Legal Regulation "Excluding Domestic' vs "Including Domestic"
    Partner Groups contains the following 5 partner functions:
    --  AG / RE / RG / WE (Standard 4: Ship-to / Bill-to / Payer / Sold-TO )
    --  ZE (End - User)
    We are experiencing issues when executing the following sales transaction:
    Case 1:
    Sales from DUBAI to DUBAI but with ZE partner Function to country SY.
    When using the setting 'Exclude Domestic' the system does not trigger any embargo situation as Dubai-Dubai is not embargoed not taking into account ZE partner function country SY.
    Case 2:
    Sales from DUBAI to DUBAI but with ZE partner Function to country  SY.
    When using the setting 'Include Domestic' the system does trigger an embargo situation as SY is embargoed.
    We were expecting the Embargo situation in "Case 1" as we were expecting the system to loop through all partner functions activated (all 5), find SY on the ZE partner function (thus being Export) and hitting the SY embargo ban.
    Could someone explain why case one is seen as an "domestic trade" in GTS not hitting Embargo checks or explain the logic for the Partner Function screening? It seems that even though the 5 partner are activated in the partner group they are not all checked...
    Any thoughts are welcome...
    regards

    Hi Mark,
    This looks to be correct behaviour, In case 1, you are excluding a domestic scenario from the checks for the activated embargo regulation. A domestic scenario is based on ship-to being in the same country so DUBAI to DUBAI is clearly a domestic one so the system wont run through the check on other PFs.
    Case 2 is exactly the same, only you are saying that you want to include domestic scenarios like DUBAI to DUBAI. In this case the check of the countries of the partner functions contained in partner group occurs and embargo is seen on SY.
    I think the configuration is behaving exactly as designed here. Anymore questions let me know.
    Michael

  • How does it work the reading (list) function on a mac?

    Hello there,
    Well, I was wondering how does it work, I mean, What's necessary to get this funtion work.. When you're reading something you see that there's is an options it lets you to get in a reading mode but sometimes some web pages won't let you do that
    Why?
    How does it work?
    Shortcuts:
    To show reading mode (shift + comand + R)
    To show the list bookmarks (shift + cmd + L)
    Thank you very much

    Then there's something going on with Safari on your Mac.
    Try troubleshooting Safari extensions and third party plugins.
    From the Safari menu bar click Safari > Preferences then select the Extensions tab. Turn that OFF, quit and relaunch Safari to test. If that helped, turn one extension on then quit and relaunch Safari to test until you find the incompatible extension then click uninstall.
    If it's not an extensions issue, try troubleshooting third party plug-ins.
    Back to Safari > Preferences. This time select the Security tab. Deselect:  Allow all other plug-ins. Quit and relaunch Safari to test.
    If that made a difference, instructions for troubleshooting plugins here.

  • af:statusIndicator how does it work?

    <af:statusIndicator> how does it work?
    i want, call a function javascript when <af:statusIndicator> changed icon from ""reconnecting"" to "connected".
    where do javascript functions change icons?
    please help me
    Edited by: Mehdi Jalali on Dec 31, 2012 10:31 AM

    yes, i know.
    but i want add my js and update my style pagecontent after partial-refreshed (completed ajax)
    Edited by: Mehdi Jalali on Dec 31, 2012 11:01 AM

  • How Does MINUS Work?

    Hi,
    I want to do a count(*) table 1 minus count(*) table 2 in a test case. How does minus work in functions?
    create table count1( col1 number);
    create table count2( col2 number);
    truncate table count1;
    truncate table count2;
    insert into count1 values(1);
    insert into count1 values(2);
    insert into count1 values(3);
    insert into count1 values(4);
    insert into count1 values(5);
    commit;
    insert into count2 values(1);
    insert into count2 values(2);
    insert into count2 values(3);
    insert into count2 values(5);
    commit;
    SQL> select * from count1
      2  minus
      3  select * from count2;
          COL1
             4
    SQL>
    SQL> select count(*) from count1
      2  minus
      3  select count(*) from count2;
      COUNT(*)
             5
    SQL>

    select * from count1
    minus
    select * from count2;Means all rows of count1 not present in count2, that is to say one row (4).
    select count(*) from count1
    minus
    select count(*) from count2;Means number of rows of count1 if it is different from number of rows of count2, no rows if count1 and count2 contains the same number of rows
    select count(*) from (
    select * from count1
    minus
    select * from count2
    );Means number of DISTINCT rows of count1 that are not present in count2
    select count(a.rowid) - count(b.rowid)
      from count1 a full outer join count2 b on a.rowid=b.rowid;Means number of rows of count1 - number of rows of count2, where - is arithmetic minus (not minus as defined in set theory).
    Try inserting some duplicate values and you'll get it.
    Max
    [My Italian Oracle blog|http://oracleitalia.wordpress.com/2010/01/02/query-gerarchiche/]

  • GET bsid. How does it work?

    Hi guys,
    How does GET works?
    GET bsid.
    bsid is an logical database...
    Thanks a lot!
    Rgds,
    Mark

    Hi,
    When you link a logical database with an executable program, the GET statements determine the depth to which the logical database is read. When you call the function module LDB_PROCESS, you determine the depth by specifying a node name in the CALLBACK parameter. For each node for which you request data, a callback routine can be executed at two points. These correspond to the GET and GET LATE events in executable programs. In the table parameter CALLBACK, you specify the name of the callback routine and the required execution point for each node. A callback routine is a subroutine in the calling program or another program that is to be executed at the required point.
    For the GET event, the callback routine is executed directly after the data has been read for the node, and before the subordinate nodes are processed. For the GET_LATE event, the callback routine is processed after the subordinate nodes have been processed.
    The line type of the table parameter CALLBACK is the flat structure LDBCB from the ABAP Dictionary. It has the following components:
    LDBNODE
    Name of the node of the logical database to be read.
    GET
    A flag (contents X or SPACE), to call the corresponding callback routine at the GET event.
    GET_LATE
    A flag (contents X or SPACE), to call the corresponding callback routine at the GET LATE event.
    Also chk this for sample code
    [http://help.sap.com/saphelp_nw70/helpdata/en/9f/db9aa335c111d1829f0000e829fbfe/content.htm]
    Pls. reward if useful...

  • How does 'RHPH_STRUCTURE_READ' work ?

    Hi all,
    I am using function RHPH_STRUCTURE_READ to find my system objects, but I don't understand how it exactly works, on attribute WEGID precisely !
    Here is the list of what I need to find :
    - O objects
    - SM linked to O
    - SE linked to SM
    - E linked to SE or E linked to CE
    For the first one, I use wegid 'O-S-P' (but I don't see what it does mean).
    For the two followers, I use otype 'O' and resp. wegid 'O-SM' and 'O-SE'. Is there a way to do from SM to SE without using otype 'O' and this wegid ?
    For the last one, I didn't find how to perform it !
    Someone can explain me how does it works ? My way to test it is really risky !
    Last question, is there a way to find all my O objects without notify an objid ?
    Thanks for your help
    Regards

    DATA:  v_wegid  LIKE t778a-wegid.
    DATA: T_PLVAR LIKE P1000-PLVAR,
          T_OTYPE LIKE P1000-OTYPE,
          T_OBJID LIKE P1000-OBJID,
          T_BEGDA LIKE P1000-BEGDA,
          T_ENDDA LIKE P1000-ENDDA,
    get data for 2 levels
      CALL FUNCTION 'RHPH_STRUCTURE_READ'
           EXPORTING
                plvar             = t_plvar
                otype             = t_otype
                objid             = t_objid
                wegid             = v_wegid
                begda             = t_begda
                endda             = t_endda
              PUP_INFO          = 'X'
              WITH_STEXT        = 'X'
                tdepth            = '3'
           TABLES
                stru_tab          = orgstru_tab
           EXCEPTIONS
                catalogue_problem = 1
                root_not_found    = 2
                wegid_not_found   = 3
                OTHERS            = 4.

  • How does this work?

    This is not a complaint, but a confused sigh of admiration. I've got an email account at the university where I teach. When I got my iBook, it took me a while, and a few conversations with IT at the school, to get this account working in the Mail application. (Since I have a Verizon DSL at home, I had to include that SMTP as the outgoing server.) Anyway, I synched this mail account (along with my AOL and .Mac accounts) onto the iPhone, and it works perfectly, both incoming and outgoing. I didn't have to change any of the settings. I thought I was computer savvy, but I can't wrap my mind around this. It seems like magic. How does it work?

    The sync process with iTunes transfers the email account settings (for your chosen accounts via your iPhone sync preferences) from the Mail application on your Mac to the iPhone's email application.
    The iPhone is running OS X and the iPhone's email client can be considered a mobile version of the Mail application.

  • My iPhone was stolen and I have contacted the police who are using the meid number to locate.  How does this work and what are my chances of getting the phone back?

    My iPhone was stolen.  I used Find My iPhone app to lock it and display a message.  The phone has not connected to the internet to locate it.  I contacted the police and they have taken my meid number.  How does this work and what are my chances of getting the phone back?  Are there other ways the theif can use it.  I was told once they put in a new sim card and use it, whatever software the police have, it will show up.

    Honestly? In the US (I can't speak to other countries, though I doubt it works much differently in a lot of the world) The police took your report and filed it either in their computers or, on paper. They will now not think of this again. The only time it will cross anyones mind is if, in the course of entering information into evidence about items recovered or seized at a crime scene, the serial number of an iPhone that was found/seized happens to match yours, in which case you will be contacted.
    The police in the US can and will do nothing to 'blok' the phone and it's not worth their time to try and locate it unless you know for a fact that it was stolen by a big time drug lord, master criminal, or some other such prime target and they can get a court order to track the location of the phone in order to locate this individual for your own purposes.  If they do that, they'll probably keep him under surveilance for a year or so before they act.
    Basically, the police don't care about your phone. If they find it, they will give it back to you. They are not, however, going to go looking for it. They have better things to do.
    I'm sorry, but that's the way it is.

  • Was told a USB device would create a PDF automatically from the data contained within when plugged into my USB port. Doesn't seem to work. How does this work and how can I fix the device I received?

    Acrobat is not on the USB device - only Adobe Reader needed on the PC. How does this work? How can I fix this device if at all?

    You need to ask the people who sold it to you. Doesn't sound like it has anything to do with Reader.
    However, you should be wary of devices that automatically try to open files when plugged in. They can also infect your computers with all kinds of viruses or malware.

  • HT2357 So how does this work on Mountain Lion? I cannot seem to ignore the iTunes 11 updates, which now seem to appear every 5 minutes!!

    So how does this work on Mountain Lion? I cannot seem to ignore the iTunes 11 updates, which now seem to appear every 5 minutes!!

    Fantastic!  Didn't work at first so restarted App store and tried again.  This time it asked 'ignore update'.  All gone!

  • TS1425 My co worker has given me his iPod to take home and transfer his music to my laptop, however, I am unable to access his music to download it to my computer.  How does this work?

    My co-worker has given me his iPod to take home and transfer his music to my laptop, however, I am unable to access his music to download it to my computer.  How does this work?

    You need to transfer the iTunes Library from the most recent backup you made before the hard drive was replaced.
    You can't transfer the full iTunes Library from the iPad back to iTunes.
    There are third-party Windows applications that will transfer data from an iOS device, but they don't re-create the iTunes Library exactly as it was before.

  • How does Remote work with Apple TV?

    How does Remote work with Apple TV?
    1. Does Remote, "Play" the music that resides on your iPod Touch>Apple TV>Home Speakers.
    OR
    Does Remote "Control" the music that resides on Apple TV HD>Home Speakers.
    (If so... say you have a iPod Touch that only holds 8GB's but your music collection on your Apple TV exceeds that amount.
    Will Remote still "Control" the larger music collection on Apple TV or your computer?)
    2. Will iPod Wifi work on a patio outside a home to control Apple TV inside the home?
    thank you in advance, Tom

    Remote is a way to control iTunes on either your computer or Apple TV using a WiFi connection. See this article for complete instructions.

  • I got a itunes gift card and when i try and buy some thing it asks me for my credit card details how does that work when i have £15 on my fone that i got on a gift card?

    i got a itunes gift card and when i try and buy some thing it asks me for my credit card details how does that work when i have £15 on my fone that i got on a gift card? as i am trying to buy a song and it is starting to really cheese me of now where it keeps asking for credit card details is there a way round it with out having to use a credit card?

    Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact

  • I would like to know which app/software in MAC gives us the same feature that is provided by System Restore in Windows, and how does that work

    I would like to know which app/software in MAC gives us the same feature that is provided by System Restore in Windows, and how does that work.

    Time Machine is one such program, although it is a recursive backup program which offers limited archive capability, based on the capacity of the backup destination, and it requires you set it up before you start editing your files.   Some programs are also Versions aware, which offers a kind of restore capability by file.  Again needs to be setup before you start editing.
    Just a for-your-info:
    Mac is not an acronym, it is a nickname for Macintosh.

  • Itunes 11.1.5 will not sync new apps with iPhone 5 iOS 7.0.6 and gives grayed out "install" no message?  How does one work around this?

    Itunes 11.1.5 (MacBook Pro,OS 10.6.8) will not sync new apps with iPhone 5 iOS 7.0.6 and gives grayed out "install" no message?  How does one work around this?

    Just reboot your laptop... While its rebooting try to reboot your phone also by holding the home and power buttonn for 10-15 seconds...When your phone is turned off try to connect it to iTunes and it will recognize your phone in recovery mode.
    If you have the .ipsw file for iOS 7.0.6 saved in your desktop then in itunes press shift and click on Restore.
    Select the ipsw file and let it restore.
    If you dont have it downloaded then simply click on restore.
    I hope it works
    Cheers !

Maybe you are looking for

  • J1IS      No account is specified in item 0000000002      Message no. F5670

    Hello While making Vendor Return Excise Invoice through J1IS I am getting the following message No account is specified in item 0000000002     Message no. F5670 What could be the possible reason for the error. With Regards Niti Narayan

  • Allowing Java Updater to run while using SRP/ The use of wildcards in a UNC path

    Recently I have deployed Software Restriction Policies to block certain paths from being able to run *.EXEs .  I have found this to be extremely successful and easy to manage with one exception: Java.  Here is what I have implemented as of now.  Plea

  • My instant messages do not appear. Please help.

    I am using an AIM account on my iChat and my messages that I'm sending are not showing up. I type something, press the enter/return button and it still shows me just thinking. The people I've been sending them to tell me they have received the messag

  • Express Edition Install fails infinite loop

    If you try to install the Oracle 10g Express Edition and it does not work ( and I have yet to see it do so) you can't get to the database admin page. But you can ask for help on the forum. But no you can't , because to get to the forum, well, let's q

  • SAOP ADAPTER EXCEPTION

    Hi guys, I am configuring a scenario SAPR3(PROXY)-XI-WEBSERVICE, I have configured my SOAP adapter, but in SXMB_MONI i get error xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="1">   <SAP:Category>XIAdapter</SAP:Category>