IBOT - can we put the Repository Variable in the filename

Hi,
In an IBOT i use the Advanced - custom script option to export the extract to a server. instead of altering the javascript, i was hoping to add the timestamp to the filname by including a Repository dynamic variable in the 'Other Parameters' fields when contructing the name, is this possible
e.g. can anything like this work... file_@{biServer.VARIABLES['sTodayDate']}.xls
thanks
Edited by: SQhell on Jan 16, 2013 11:15 AM

I'm not sure about your approach but going with batch file or shell script is more easy. Look for the file created with system date then change the filename as needed.

Similar Messages

  • I can not put the data of a field(LONG RAW) consulted into a item of a data block

    I want to query a field that is LONG RAW(it's a image) and put the data into a item of a data block (in Forms Builder), when i write ":BLOCK.FOTO:=vfoto" i recieve this errors: "bad bind variable ....". How can i put the data of field of my DB and put the data in a item of a data block(in Forms Builder)?.
    I can store a image in a table of my DB, but i want to query a image stored in my DB and put it into anothers table, all this on FORMS BUILDER.

    You have to base the image item on a base table and use EXECUTE_QUERY on that block. You can't do a direct select in PL/SQL into the item

  • HT4528 Can I put the same information on two different i-phones with different numbers and different ID's?

    Can I put the same information on two different i-phones with different numbers and different ID's?

    Yes and no it really depends on what information you are putting on the devices.

  • How can we put the report which is generated by the program into spool??

    How can we put the report which is generated by the program into spool??
    I had generated a file in Unix which had the report but now the requirement has changed.
    Regards,
    Shashank.

    Hi Shashank,
    If the program is executed in the background and it has the write statement then the spool will automatically generated.
    Reward points if useful.
    Regards,
    Atish

  • Can you put the sim card in without the tray on the iPhone 3GS?

    Can you put the sim card in without the tray on the iPhone 3GS?
    I don't have the tray, I have ordered a new one but would like to still use my iphone for the next few weeks

    Don't....wait until you get a tray...never a good idea to rig something up

  • How can I put the report generated by a program into a File?

    Hi all,
       How can I put the report generated by a program into a File?It can be in TXT format or excel format which ever is possible.
    I need to export this file to memory,How can I do that??
    Regards,
    Shashank.

    Hello Shashank,
    Please ignore my previous answer... Ofcourse it works...
    There are several ways to do this...
    two of them are
    1. List -> Save -> File and press enter..
        it will ask for the format, then path where to save it. Just give the path.
    2. Using function module 'GUI_DOWNLOAD'.
    I'm giving the example bellow which explains the usage of both GUI_UPLOAD and GUI_DOWNLOAD.
    To do this... you need to have folder with name 'TEST' and a .txt file in it with name 'test'. And contents of it are :
    TEST1             ,BOT 
    TEST2             ,BOT 
    TEST3             ,BUT 
    with spaces.
    REPORT zssr_bdc .
    DATA: BEGIN OF g_t_itab OCCURS 0,
            matnr LIKE mara-matnr,
            maktx LIKE makt-maktx,
          END OF g_t_itab.
    DATA: g_t_bdcdata TYPE TABLE OF bdcdata.
    DATA: path TYPE string,
          path1 type string.
    path = 'C:\Documents and Settings\ssr3kor\Desktop\TEST\test.txt'.
    path1 = 'C:\Documents and Settings\ssr3kor\Desktop\TEST\test1.txt'.
    *contents of test.txt    *
    *TEST1             ,BOT  *
    *TEST2             ,BOT  *
    *TEST3             ,BUT  *
    CALL FUNCTION 'GUI_UPLOAD'
      EXPORTING
        filename = path
      TABLES
        data_tab                      = g_t_itab.
    LOOP AT g_t_itab.
      WRITE:/1(18) g_t_itab-matnr, 20(40) g_t_itab-maktx.
    ENDLOOP.
    CALL FUNCTION 'GUI_DOWNLOAD'
      EXPORTING
       filename = path1
       filetype                      = 'ASC'
      TABLES
        data_tab                      = g_t_itab.
    Now you will get one .txt file with name 'TEST1.TXT' in the TEST folder.
    <b>REWARD POINTS IF IT IS HELPFUL</b>
    Regards
    Sasidhar Reddy Matli

  • Hello, I have an iPad Mini WiFi Cellular white 16Gb and I puted my sim inside it but, I cant read the text message that I recieve in the Sim. What can i do? And I can't put the sim in a cellphone coz it doesn't recognize it. Please help me! Thank you.

    Hello, I have an iPad Mini WiFi Cellular white 16Gb and I puted my sim inside it but, I cant read the text message that I recieve in the Sim. What can i do? And I can't put the sim in a cellphone coz it doesn't recognize it. Please help me! Thank you.

    iPads do not do SMS.

  • Can you put the small DVD discs from a camcorder in the DVD slot of the iMac?

    Stupid question...can you put the small DVDs from a camcorder in the DVD slot of the iMac?

    That could be a challenge. If I am not mistaken that camera strictly records to DVD - RW and has no digital output connectors, is that right?
    My only experience with a camera like that was a bad one. I was able to get the video off the disc using a tray-loading iMac but it was painfully slow.
    iMovie (for example) is designed to work with camcorders such as those specified in this reference:
    http://help.apple.com/imovie/cameras/en/index.html
    I cannot find the DCR-DVD92 in that database
    You might consider finding an external USB slot-loading DVD drive, but as I say my experience was painfully slow, and you might run into file format compatibility challenges.
    I am sure it's possible but it won't be as easy as importing video from something like an iPad or iPhone. I still use a camcorder on occasion but it has a FireWire port. That's easy.

  • HT5035 Can you put the balance that you have redeemed off of a card onto your iTunes account back onto the same/new card ?

    Can you put the balance that you have redeemed off of a card onto your iTunes account back onto the same/new card ? I do not wish to use this balance and have not deducted from the original balance and wish to put back on to the card.

    Only the iTunes Store staff can. Click here and request assistance.
    (89001)

  • Can we put the bunch of object into List ?

    List.add(int indexkey , Object obj.)
    Class Customer
    here my question is that ... can we put the bunch of Customer object like : c1, c2 , c3 into List as object as a second argument with single index .. ???

    You can't do that. What you can do is insert in your list an Costumer array ...
    List myWeirdCostumerList = new ArrayList();//I like ArrayList. Pick your preffered one...
    Costumer[] myCostumers = new Costumer[x];
    //fill your array
    myWeirdCostumerList.add(indexKey, myCostumers);...or even another list of Costumer
    List myWeirdCostumerList = new ArrayList();//I like ArrayList. Pick your preffered one...
    List myCostumers = new ArrayList();
    myCostumer.add(new Costumer(...);
    myCostumer.add(new Costumer(...);
    myCostumer.add(new Costumer(...);
    //...keep filling
    myWeirdCostumerList.add(indexKey, myCostumers);But, as georgemc said, you may be in trouble retrieving a certain Costumer object...

  • HOW CAN I PUT THE AMOUNT WITH THE SIGN OF DOLLAR?

    HI!
    HOW CAN I PUT THE AMOUNT WITH THE SIGN OF DOLLAR?
    BECAUSE WHEN I WRITE THE DATA THE AMOUNT OVERWRITE THE SIGN.
    THANKS PEOPLE

    THIS IS THE WRITE PART:
    [code]
    WRITE:
              /97 t_bsid-dmbtr,          "Invoice Amount
              104 '$',
              104 t_bsid-fecha,          "Payment Date
              114 t_bsid-pago,           "Payment Amount
              116 '$'.
    [/code]

  • Kids have disabled iPad now I can't put the right passcode in.I do not have a laptop anymore.

    Kids have disabled iPad and I can't put the right passcode in.I don't have laptop anymore.Will it give me chance to put it in?

    iOS: Device disabled after entering wrong passcode
    http://support.apple.com/kb/ht1212
    How can I unlock my iPad if I forgot the passcode?
    http://tinyurl.com/7ndy8tb
    How to Reset a Forgotten Password for an iOS Device
    http://www.wikihow.com/Reset-a-Forgotten-Password-for-an-iOS-Device
    Using iPhone/iPad Recovery Mode
    http://ipod.about.com/od/iphonetroubleshooting/a/Iphone-Recovery-Mode.htm
    Saw this solution on another post about an iPad in a school enviroment. Might work on your iPad so you won't lose everything.
    ~~~~~~~~~~~~~
    ‘iPad is disabled’ fix without resetting using iTunes
    Today I met my match with an iPad that had a passcode entered too many times, resulting in it displaying the message ‘iPad is disabled – Connect to iTunes’. This was a student iPad and since they use Notability for most of their work there was a chance that her files were not all backed up to the cloud. I really wanted to just re-activate the iPad instead of totally resetting it back to our default image.
    I reached out to my PLN on Twitter and had some help from a few people through retweets and a couple of clarification tweets. I love that so many are willing to help out so quickly. Through this I also learned that I look like Lt. Riker from Star Trek (thanks @FillineMachine).
    Through some trial and error (and a little sheer luck), I was able to reactivate the iPad without loosing any data. Note, this will only work on the computer it last synced with. Here’s how:
    1. Configurator is useless in reactivating a locked iPad. You will only be able to completely reformat the iPad using Configurator. If that’s ok with you, go for it – otherwise don’t waste your time trying to figure it out.
    2. Open iTunes with the iPad disconnected.
    3. Connect the iPad to the computer and wait for it to show up in the devices section in iTunes.
    4. Click on the iPad name when it appears and you will be given the option to restore a backup or setup as a new iPad (since it is locked).
    5. Click ‘Setup as new iPad’ and then click restore.
    6. The iPad will start backing up before it does the full restore and sync. CANCEL THE BACKUP IMMEDIATELY. You do this by clicking the small x in the status window in iTunes.
    7. When the backup cancels, it immediately starts syncing – cancel this as well using the same small x in the iTunes status window.
    8. The first stage in the restore process unlocks the iPad, you are basically just cancelling out the restore process as soon as it reactivates the iPad.
    If done correctly, you will experience no data loss and the result will be a reactivated iPad. I have now tried this with about 5 iPads that were locked identically by students and each time it worked like a charm.
    ~~~~~~~~~~~~~
    Try it and good luck. You have nothing more to lose if it doesn't work for you.
     Cheers, Tom

  • Can I put the 2Gb RAM (X2) from my MacBook Pro into my MacBook 5,1? The intel is different (2Ghz not 2.3) and the speed is 1067 not 1333. But they are both DDR3.

    Can I put the 2Gb RAM (X2) from my MacBook Pro into my MacBook? The intel is different (2Ghz not 2.3) and the speed is 2000 not 1333. But they are both DDR3.
    I have just upgraded the Pro to 16Gb and the MacBook is SO slow. Just wondering if I could use the old RAM.

    Full specification of MB5.1 RAM;
    204-pin PC3-8500 (1066 MHz) DDR3 SO-DIMM, non-ECC (non parity), unbuffered.
    MBP8.1, 8.2 or 8.3;
    204-pin PC3-10600 (1333 MHz) DDR3 SO-DIMM, non-ECC (non parity), unbuffered.
    PC3 is the same as DDR3. the number is peak transfer rate (approximated).
    Further reading suggests your swap may work, but it's not guaranteed. If you get 3 beeps on start up (or the sleep light flashing in bursts of 3), first check it's correctly seated, but be prepared to swap them back.
    If you encounter any instability or kernel panics, change them back.

  • In the restrictions you can not put the call to voicemail?

    with the next update, in the restrictions you can not put the call to voicemail?

    so I have to delete the message?

  • I have premiere pro cc and i can't put the speech analysis models spanish for adobe premiere pro cc

    I have Premiere Pro CC and I can't put the Speech Analysis Models Spanish for Adobe Premiere Pro CC, they're installing on the folder CS6 and when I try to analyze it only appears on english... If anybody can help me

    the messsage is for forum housekeeping and is not a message directed to you.

Maybe you are looking for

  • Mobile me contacts screwed up with IOS4

    I upgraded to IOS4 with no problem. However, my contacts were messed up. I did not previously sync my contacts with Outlook on my PC - I synced with Mobile me. After the upgrade, iTunes sync'd my contacts with Outlook and I had ovber 200 duplicates a

  • Fm to convert XSTRING TO STRING in SRM 7.0

    HI All ,             i have created a web dynpro application for Uploading excel . Now i am not getting any workaround to convert X STRING to STRING . In SAP there is a FM HR_KR_XSTRING_TO_STRING but its not there in SRM so when i tried to copy the s

  • Can't duplicate Final Cut Project to La Cie Rugged Triple (1 Terabyte)

    Ok. So I couldn't share/save project to any blank DVDs, and so I bought a new La cie rugged. Now trying to "duplicate" project, but when I go to select the source as the la cie, as opposed to the hard drive, the rugged does not appear as an option. O

  • Muted microphone

    My internal microphone has become muted on Fact Time, and the mute setting is greyed out in the Video drop-down.  How can I un-mute it? It IS working in other applications.

  • Migration from SAPDB 7.4 to MaxDB 7.6 (7.7)

    Hello, I hope I'm right here to find a solution for my migration problem. I have the SAPDB 7.4 in my own application. Now I want to migrate it to a newer Community version 7.6 or 7.7. Since MaxDB is back to SAP I will post my question here. In a MySQ