Is there anything to be taken care of while using GUI_DOWNLOAD in ITS?

Hi All,
         I have a requirement on which I am using GUI_DOWNLOAD for downloading a file into a network Drive.In the foreground I am executing using ITS.When I click on 'SUBMIT' button it goes to "Interpreter failed ...Internal error code: 0x2101".Till the point of GUI_DOWNLOAD its working fine.When I am executing from SAP system,its working fine.Once I execute from browser only problem comes.Have anybody faced a similiar situation and if so please help me.
Thanks in Advance,
   Anjaly

Hi Anjaly,
this means that the template could not be found. I assume you are using the ITS 620, in the integrated ITS this error would result in an ABAP runtime error.
Ok, how to solve? Please examine the ITS trace files especially that one for the Bussiness HTML interpreter. Its is Agate<N>_sapjulep.trc.
best regards
Tobias

Similar Messages

  • My phone was hacked at a wifi hotspot, and my email address logged in the mail centre was compromised.. Could they have installed a keylogger on my phone? Is there anything I have to do to my phone to ensure its safe from this particular attack?

    I changed all my passwords, but I'm just wondering if that's all I have to do.. Is there any extra measures you would take? Could they have installed malware on my phone? I will never connect to a wifi hotspot ever again. I'll just use 3G!

    I have this really old email account that I haven't used properly in years, it was automatically set to log in the mail centre of this old iPhone I barely use, and was only using because my other phones battery had died, and I was at the park, bored, so I got the old phone out of my bag, I use it as an emergency phone for when my battery dies, but anyway, I logged into the hot spot, then a few days later my old email account had sent out a mass email saying "I am stranded in Thailand, please send money to this account" to my entire contact list, my sister sent me a text notifying me, and I quickly logged on and it said "looks like someone else is using your account" so I got texted a code, entered the code and regained access to my hotmail account, checked the sent folder and there were tons of sent messages..haven't used this account for many months before that, and I never log into public hotspots usually, it was a one off thing I did from that old phone because I thought I had no email account logged in, or any personal information, since I hadn't used it in ages, but I was wrong, as I learnt afterwards! So I'm absolutely certain, without a doubt, that it occurred at the hot spot. I looked it up online and apparently it is quite common, so I'm just wanting to make sure they can't still access my data.

  • I've just bought my 1st iMac for home and I need to do a presentation for work. I'm struggling to find anything on my computer. On my old HP laptop I obviously had powerpoint..... is there anything already on the iMac I can use?

    Ive just bought my 1st iMac for my home. I need to do a presentation for work but having only ever used my old work HP laptop I'm struggling to find how to do a powerpoint presentation. Can anyone help?

    Keynote is fantastic. If you'd like a few tutorials to help get going go to MacMost.com type keynote in the seaarch box and Gary will have some easy to to follow videos for you as quick start. Seriously you will love Keynote once you find your way around it. I've used it to make presentations that I turned into video for YouTube.  Lots of luck.

  • Setting default member of attribute hierarchy in MDX script. Default member not taken into account while using user defined hierarchy

    Hi all
    I have a date dimension that (type time) with attributes
    - [FiscalYear] (type years)
    - [FiscalMonth] (type months)
    - [FiscalWeek] (type weeks)
    In addition to the attributes used in the natural hierarchy, I have an attribute [PerType] containing one member comming from the relational table 'WTD' which corresponds to 'Current Date'. All other members of this attribute hierarchy are calculated members (defined in the MDX script). Examples:
    --Last year
    CREATE MEMBER CURRENTCUBE.[Date].[PerType].[LY] AS NULL,
    VISIBLE = 1;
    SCOPE([Date].[PerType].[LY]);
    SCOPE(DESCENDANTS([Date].[Fiscal].[All], [Date].[Fiscal].[Year], SELF_AND_AFTER));
    THIS = ([Measures].CurrentMember, [Date].[PerType].[WTD], ParallelPeriod([Date].[Fiscal].[Year], 1));
    END SCOPE;
    END SCOPE;
    --Month to date
    CREATE MEMBER CURRENTCUBE.[Date].[PerType].[MTD] AS NULL,
    VISIBLE = 1;
    SCOPE([Date].[PerType].[MTD]);
    SCOPE(DESCENDANTS([Date].[Fiscal].[All], [Date].[Fiscal].[Week], SELF_AND_AFTER));
    THIS = Aggregate(CrossJoin({[Date].[PerType].[WTD]}, MTD([Date].[Fiscal].CurrentMember)));
    END SCOPE;
    END SCOPE;
    --Year to date
    CREATE MEMBER CURRENTCUBE.[Date].[PerType].[YTD] AS NULL,
    VISIBLE = 1;
    SCOPE([Date].[PerType].[YTD]);
    SCOPE(DESCENDANTS([Date].[Fiscal].[All], [Date].[Fiscal].[Period], SELF_AND_AFTER));
    THIS = Aggregate(CrossJoin({[Date].[PerType].[WTD]}, YTD([Date].[Fiscal].CurrentMember)));
    END SCOPE;
    END SCOPE;
    The defalut member of FiscalWeek attribute hierarchy is set dynamically in the MDX script:
    ALTER CUBE CURRENTCUBE UPDATE DIMENSION [Date].[FiscalWeek], DEFAULT_MEMBER =
    Filter(
    [Date].[FiscalWeek].Members,
    [Date].[FiscalWeek].Properties( "FiscalWeekStartDate", TYPED) <= DateAdd("d", -2, CDate(CStr(Month(Now())) + "/" + CStr(Day(Now())) + "/" + CStr(Year(Now()))))
    AND
    [Date].[FiscalWeek].Properties( "FiscalWeekEndDate", TYPED) >= DateAdd("d", -2, CDate(CStr(Month(Now())) + "/" + CStr(Day(Now())) + "/" + CStr(Year(Now()))))
    )(0).PrevMember;
    If I run the following query:
    with member
    measures.x as [Date].[Fiscal].DefaultMember.Name
    measures.y as [Date].[FiscalWeek].DefaultMember.Name
    select
    measures.x,
    measures.y
    } on axis(0)
    from [GLWeekly]
    it gives me back correctly the default member set over the MDX script.
    I order the statements in the MDX Script so that the default period (week) is set at the beginning of the script (just after the calculate).
    I do not understand why creating the following calculated member I am obliged to specify [Date].[Fiscal].CurrentMember in the tuple to have correct results:
    MEMBER [Account].[CoA].[Standard Engagement Revenue (MTD)] AS ([Account].[CoA].[Standard Engagement Revenue], [Date].[PerType].[MTD], [Date].[Fiscal].CurrentMember)
    I would expect that:
    ([Account].[CoA].[Standard Engagement Revenue], [Date].[PerType].[MTD])
    is sufficient.
    If the default week is specified in the slicer using a member of the natural hierachy (=> [Date].[Fiscal].x) it works.
    Why can't SSAS use the default member if it is must defined in the MDX script?
    Can someone explains me this. Thanks a lot in advance.

    Hi Ina,
    have you thought about adding a dynamic statement inside the MDX script? You could define the default member like this:
    ... DEFAULT_MEMBER = iif( Day( Now() ) = 3, <expression for previous month>, <expression for current month> );
    This way you don't need to change it everytime by running a script.
    By the way, what do you mean it doesn't update the default member? When you execute this MDX what does it says?
    with member measures.x as [Dimension].[HierarchyName].DefaultMember.Name
    select { measures.x } on 0 from Cubename
    If this returns the correct name, then the problem is somewhere else. I believe it should return you the correct name. Look here, test this on Adventure Works, statement by statement and see what happens.
    ALTER
    CUBE [Adventure Works]
    UPDATE
    DIMENSION [Product].[Product Categories],
    DEFAULT_MEMBER = [Product].[Product Categories].[Category].&[1]
    with
    member measures.x
    as [Product].[Product Categories].DefaultMember.Name
    select measures.x on 0
    from [Adventure Works]
    ALTER
    CUBE [Adventure Works]
    UPDATE
    DIMENSION [Product].[Product Categories],
    DEFAULT_MEMBER = [Product].[Product Categories].[All Products]
    with
    member measures.x
    as [Product].[Product Categories].DefaultMember.Name
    select measures.x on 0
    from [Adventure Works]
    I think you can see which members are default (on related hierarchies) using
    MDX Studio. This should help you detect which attributes have not moved accordingly and hence cause problems in your report. The usual suspects are those attributes used in your last month reports. If that's too much for you, just copy paste the definition
    of the measure x and use .CurrentMember instead .DefaultMember. And so for all related hierarchies of your dimension. You can run it as one query, just put enough measures (x1, x2, ...), one for each hierarchy, ok?
    Here's a test for Day():
    with
    member measures.y
    as
    iif( Day(Now()) = 28, 'Yes', 'No' )
    select
    measures.y on 0
    from [Adventure Works]
    Today this returns Yes, tomorrow it will be No.
    Ups, I just checked one more thing. When you run the script, it sets the default member only for that session. If you execute the first two of the four statements that I've sent you, it will set the default member on Bikes and show you that.
    But, if you open another query windows and execute that select statement (only), you'll see All member instead. So, it has set it to Bikes only for the currect session. Consequence? You reports are not aware of it. So, better use dynamic statement in
    your MDX script.
    Regards,
    Tomislav Piasevoli
    Business Intelligence Specialist
    www.softpro.hr

  • On my itouch 4th gen, I use imessage and message many people, but sometimes when i send a message the send bar on top will go almost all the way and stop. This will happen for some time and then work later. is there anything to avoid the freezinginsending

    On my itouch 4th gen, I use imessage and message many people, but sometimes when i send a message the send bar on top will go almost all the way and stop. This will happen for some time and then work later. is there anything to avoid the freezing problem while it sends

    See:
    iOS: Troubleshooting Messages
    However, I suspect it is just a tempery network problem beyond your control

  • Ipod 2G is unreadable in my car. Is there anything I can do?

    ipod 2G is unreadable in my car. Is there anything I can do?

    If you restored the iPod to factory defaults/new iPod and are still having prtoblem then you are out of luck (assumine you are using the dock connector).
    You can use the headphone jack to input to the car's AUX in if it has one or purchase an FM transmitter to broadcast to the car's FM radio.

  • I updated my iPhone 4S and my iPad 4 to iOS 7 now they both drop all my contents all my notes go missing I keep having to turn it off and on sometimes several times to make a phone call and the scroll rarely works is there anything I can do?

    I updated my iPhone 4S to iOS 7 now my phone constantly deletes all my contacts and takes days to download them from my iCloud again, constantly needs to be turned off and on sometimes several times to make a phone call, the scroll rarely works, is there anything I can do, the apple tech told me it was something I'd just have to get used to, my phone worked perfectly before the update.

    Even if it is a hardware problem they should fix it regardless of warranty. If you buy a car and after 1.5 years the doors fall off due to a failure in their design and construction, do you think the car manufacturer could pull off what Apple is trying to do? Yes the car still delivers its primary objective of driving from A to B, but significant functionality has been lost due to their fault.
    It is the same with this iPhone wifi problem. Apple are a disgrace, I have had significant Apple Hardware failures with my MacBook Pro and iPhone within 2 years of purchase. Pathetic quality.

  • I wanted to extend my AppleCare Protection Plan, but had deadline wrong and missed by one day, is there anything I can do?

    The subject line basically covers it. I've been planning on extending my coverage on my Apple Care Protection Plus from the 1 year to the 3 year, but missed the deadline by ONE DAY and now no longer see extending coverage as an option when I look up my service and support coverage details. Is there anything I can do. Deadline was July 12, today is July 13. Should I go to an apple store/genius bar and beg? I'm in NYC. Thanks ...

    Contact Apple. If you're able to do this, you'll need to contact them anyway.
    (109384)

  • What are the things taken care while using multiple suites?

    Hi all,
    I have created a plugin which sends the current file path to an url,
    its working fine with debugging in Visual studio 2005 and while it is added to the Adobe Illustrator its works only once.
    That is its sending the file path only for one file. While i tried for the second time its not working
    I am using following suits in my plugin
    AIDocumentSuite
    AIFilePathSuite
    AIActionManagerSuite
    AIUnicodeStringSuite
    AIURLSuite
    I am using the "AIURLSuite" for calling the url and it is calling the url multiple times while its used alone, and its only working once with the multiple suites.
    What are the things taken care while using multiple suites? , is it neccessary to release all variables and the suites after completing the task?
    Should they released in the same order in which they are acquired?
    Thanks in advance
    Sreejesh K V

    Hi,
    The problem was with the "sAIDocument->GetDocumentModified(mod);"
    The "GetDocumentModified" is crashing after  executing once, i just removed that statement , and now
    i am forcefully saving the document with out checking the modification status!
    Its working fine now!
    Could you please tell me how can we lock a plugin , or a particular function in a plugin.
    There is any specific standard to use the GetDocumentModified function?
    Thanks and Best Regards
    Sreejesh K V

  • HT201263 My iPhone 4 started to update but got stuck in recovery mode. I've tried everything anyone on the website has told me to do, but nothing has worked. Is there anything I can do? I need my phone

    My iPhone 4 started to update but got stuck in recovery mode. I've tried everything anyone on the website has told me to do, but nothing has worked. When you go to turn it on, it shows the Apple symbol,  then it goes to the connect to iTunes screen. When I do that, it just says error with the code 9006. I've followed what the Apple site has said to do for it, but the phone is still is the same  state. Is there anything I can do? I need my phone back as soon as possible.

    Hello Hester Emily,
    Thanks for using Apple Support Communities.
    I'm sorry to hear about the difficulties you're experiencing after this update process.  I found the following article that has more information on the iTunes error code 9006:
    Resolve specific iTunes update and restore errors
    http://support.apple.com/kb/ts3694
    Configure your security software
    Related errors: 2, 4, 6, 9, 1000, 1611, 9006, 9807, or 9844. Sometimes as a result of this issue, a device might stop responding during the restore process.
    Check your security software and settings, which can block ports and prevent connection to Apple servers during update and restore.
    Take care,
    Alex H.

  • Apple took money out of my account. I had to change debit cards, and they won't get another one so is there anything I can do about this problem. I rather cancel the phone before I have to worry with my bank accoung.

    Apple took money out of my account. I canceled my charge card and will not give them another one. Is there anything else I can do? I will cancel my account before I worry with my bank acount all the time. Now I can't even sign in for free apps

    OK, so I have now found that this is apparently normal for iTunes, to only accept mpeg 4 movie files, all the searching I did before I must have worded it wrong because I couldn't find anything about this, incredibly. Had been looking for why iTunes won't take all the files it previously did, like if it had been changed, and it hasn't, it's allegedly always taken only mpeg 4 files. Also I had been searching for why iTunes crashes every time I try and add/import anything but mpeg 4 files, and even sometimes with mpeg 4 files. That isn't normal, it's supposed to just do nothing apparently as I've just found out. So for these reasons I didn't find the answer despite my searching all over the web.
    So I guess that answers my own question now, but I'm still perplexed as to why I absolutely, definitely, without any doubt, had several hundred movies of a few different video file types loaded, accessible and playable in my iTunes library that everything here claims iTunes never accepted. It apparently shouldn't have been possible for me to have done this, but for probably 10 years it's been this way.
    Perhaps since I don't remember adding these files to iTunes anymore recently than maybe 6 or 7 years ago, the iTunes back then did accept all kinds of file types? Or could I have somehow had some video codecs or software that expanded the capability of my movie players like Quicktime Player that unwittingly also allowed iTunes to take those files as well? All I know is somehow it worked! So now my question is how did I have it working before, so that maybe I can make it work again.

  • So my phone got wet the other day. I dried it out completely, but the touch screen still isnt working. Is there anything I can do short of getting a new phone? Anything that can be done at the nearest Verizon store? I am one of three phones on our plan an

    So my phone got wet the other day. I dried it out completely, but the touch screen still isn't working. Is there anything I can do short of getting a new phone? Anything that can be done at the nearest Verizon store? I am one of three phones on our plan and I am trying not to need to get a new phone before our contract expires next month.

    Hello wetphone!
    We're sorry to hear that your phone isn't working. It's very important to have a functioning touchscreen!  Let's explore your options OK? If the phone is taken to a store, troubleshooting can indeed be done. The store representative can even contact us while you're there.  Do you have insurance on the device? Or, do you maybe have a prior vzw device that can be activated until the upgrade is available? You can also check your My Verizon account to see if your line( or another line on the account) is eligible for an upgrade. VZW always has options for you.
    Thank You,
    ChristinaB_VZW
    VZW Support
    Follow us on Twitter @VZWSupport

  • Is there anything like AlienSkin for Fireworks CS6?

    Is there anything like AlienSkin for Fireworks CS6? I realize there is Fireworks Exchange, but I've found it to be a bit disappointing. In older versions of FW I used a couple AlienSkin products for lightning, fire, chrome, etc effects. Don't care if I have to pay for it or not. I called Adobe support line and they were less than helpful, and after asking a couple questions the lady couldn't answer the call was magically dropped. I'm probably just being dumb and missing something obvious here, but any guidance or feedback would be greatly appreciated.

    Why not download the trial versions to see if they work for you, and whether or not you like them?
    https://app.alienskin.com/downloads/

  • So my phone a 4s is less than two years old, the speakers do not work, and it will not connect to wi-fi, so my question is on the 1st of august why should I re-up my contract and purchase a phone that taken care of did not last the distance of a contract?

    So my phone a 4s is less than two years old, the speakers do not work, and it will not connect to wi-fi, so my question is on the 1st of august why should I re-up my contract and purchase a phone that taken care of did not last the distance of a contract?

    This is a user to user technical support forum.  It is not our responsibility to convince you of anything.
    Do you actually have a technical support question?  If not, post your question on a blog or somewhere more appropriate.
    Best,
    GDG

  • All the photos on my iphone disappeared. Is there anything that I can do?

    There has been a glitch on my iphone where all the photos in my album duplicated itself. So I decided to take the time to delete all the duplicates. Now, all the photos are gone, and I tried plugging it into my Windows computer to restore to the previous backup. As I plugged the phone in, I quickly cancelled the automatic sync. But the back up that shows up on itunes is the back up that was created as I plugged the phone in today. Is there anything I can do to get my photos back ?

    What photos?
    Photos that you synced from your computer to iphone should still be on your computer.
    Camera Roll photos ( taken with iphone)?  You should be importing these regularly to your computer as you would from any digital camera.  If for some reason you have failed to do this, then you would have to be able to restore from a previous backup where the pics were present ( if on exists).  Otherwise they are gone.  Import regularly.

Maybe you are looking for