Error WLS 10901 - when I add prompt in query from SAP in QAAWS

Hello,
I am accessing a Universe who's source is SAP -BEX Query. When I add a charecteristics and key figure I get data, however when I add a prompt or filter condition to my query in QAAWS - I get an error. I tried the same in Live Office and get the same error when I add the prompt  in the query.
Error: WLS 10901 - getdocument information- A database error occurred - Error in MDData - Get_Leading_Column_data(see long text) --
Why does this happen when I add a prompt to the query?

HI Abhi,
The Issue seem to be not from BO Universe. Can you please go and check the data at Bex report and to apply same condition over there.
This might help us to track where exactly the error is happening.
Since the flow is from Cubes to Bex Queries to Universe to QaaWS or Weni Reports.
So its always better to track the data flow from source. In our scenario its Bex.
Hope this may help you now and in future.
Regards,
AnjaniKumar C.A.

Similar Messages

  • I am getting an error message -42110 when I try to download anything from Itunes on my new MacBook Pro

    I am getting an error message -42110 when I try to download anything from Itunes Store on my new MacBook Pro.

    Maybe a more appropriate place to post
    iTunes
    And if you want to discuss your MBP:
    MacBook Pro

  • HT201413 itune appear "error occur (21)" when i restore off line update from ios 7.0.4 to  8.1.2

    itune appear "error occur (21)" when i restore off line update from ios 7.0.4 to  8.1.2.

    Hi Myo Ko Ko Aung,
    When iTunes reports this error during the restoration of an iOS device, it typically indicates a conflict with security software.
    Related errors: 2, 4, 6, 9, 1000, 1611, 9006. Sometimes security software can prevent your device from communicating with either the Apple update server or with your device.
    Check your security software and settings to make sure that they aren't preventing a connection to the Apple servers.
    Resolve iOS update and restore errors
    http://support.apple.com/en-us/TS3694
    Sincerely,
    Allen

  • Out of office message when sending mail to Lotus Notes from SAP

    Hi,
    Is it possible to have an 'out of office' message when sending mail to Lotus Notes from SAP?
    I'm sending account statements by mail via a modified version of function FI_OPT_ARCHIVE_CORRESPONDENCE. The SAP username is send as a parameter, and later converted to the e-mail saved in the user profile. This works, - but I would like to have an out of office reply if the user I send to is out of office.
    Hope someone can help...
    Regards,
    Lene

    As Thomas pointed out, you can use regular SMTP mail to send the contents to Lotus Notes. You can use the function module SO_OBJECT_SEND or any of the SAP Office function modules to do this.
    Only thing to remember is that the SMTP may have been disabled by your basis team due to security risks involved. An alternative could be a lotus notes connector available from IBM.
    Srinivas

  • Printing several copies when we only want only one.from SAP to UNIX.

    Hi, we have a problem when printing from sap to unix queue.....
    There is a program in abap that only indicates to send one printing .. but in unix we see that the queue sends sometimes 3, 4, 5 or two copies of the same printing.
    do you know if there is a note in SAP that can solve this issue?
    a test: when we send only one copy from sap (spad - sp01), in unix we saw 5:
    u2665$ while true
    > do
    > lpstat TEST1022
    > sleep 1
    > done
    no entries
    no entries
    no entries
    no entries
    TEST1022-767 USER1 priority 0 Apr 6 15:15 from SERVER1 on TEST1022
    005xud4T.PR3 5 copies 34178 bytes
    no entries
    no entries
    no entries
    no entries
    thanks in advance.
    DM

    Hello
    The flag to pass copies may be set as follows in SPAD:
    SPAD -> Output Device -> <Output Device name> -> Output Attributes ->
    You can refer to SAP note below for more information:
    3748 - Multiple print does not work everywhere
    Regards.

  • QuickTime 7 error: changes duration when performing Add and Scale

    Sometimes, when using "Edit - Add to Selection & Scale" to place an image over a portion of a movie, QuickTime Player 7 will incorrectly change the duration of the movie, sometimes increasing the time by HOURS!
    This may be an old problem, but I couldn't find any mention of it in the past year on the forum.
    To make it easy to reproduce, I created the following AppleScript. Usually I can only get 5 to 10 iterations before failure.
    (* Demonstrate QuickTime bug
    This script demonstrates an error that QuickTime Player 7 commits when adding an image to a movie.
    (This error also occurs when performing this operation manually, but it's faster to use AppleScript to demonstrate it.)
    R. Lougheed, December 2010
    set maxTestCount to 90 -- QuickTime has a limit of 99 tracks
    set sampleMovie to (choose file with prompt "Select a movie" default location (path to movies folder) without invisibles)
    tell application "QuickTime Player 7"
    activate
    close every document saving ask
    open sampleMovie
    set movieRef to (a reference to document 1)
    -- get a frame to paste in
    tell movieRef
    set movieDuration to duration
    tell me to set midTime to round (movieDuration / 2)
    set current time to midTime
    copy
    end tell
    end tell
    set inTime to round (movieDuration / 3)
    set outTime to 2 * inTime
    set successCount to 0
    set newMovieDuration to movieDuration
    repeat until ((newMovieDuration ≠ movieDuration) or (successCount > maxTestCount))
    with timeout of (1 * hours) seconds -- default timeout is 2 minutes
    tell application "QuickTime Player 7"
    activate
    tell movieRef
    select at inTime to outTime
    add with scaled -- this should NOT change the duration of the movie
    set newMovieDuration to duration
    if newMovieDuration = movieDuration then set successCount to successCount + 1
    end tell
    end tell
    end timeout
    end repeat
    activate
    if newMovieDuration = movieDuration then
    display dialog ("QuickTime Player successfully ran " & successCount & " Add-with-scale operations.") buttons {"Great!"} default button 1
    else
    display dialog ("QuickTime Player erroneously changed the movie duration after " & successCount & " successful operations.") buttons {"Bummer"} default button 1
    end if

    Thank you very much Hiroto !! But I've still some issue that I can't resolve by my self...
    I don't understand how to take this script (who works very well) and to use it in a different file. Actually, I wanna ask this script by 6 different other applescript file with a different movie (one in English, one in French, one in German, one in Dutch, one in Spanish and one in Italian). So I try an applescript like this :
    set FR to LancerFilm()
    tell FR
    quitQT()
    set x to "/Desktop/Robin.des.bois.2010.DVDrip.VF.XVid.avi"
    setFilm(x)
    startFilm()
    end tell
    I tried this code at the end of the file who contains the main script and in an other file. For the first one, I receive an error message who says me : +Can't find the file /Desktop/Robin.des.bois.2010.DVDrip.VF.XVid.avi+. And for the second one (wich is the solution that I wanna have for the final script), the system says me : +<<scrip>> doesn't understand the message LancerFilm+.
    If somebody can help me it will be awesome.
    I have an other question. At the end of the movie what must I do to launch another movie, automatically (so in the same script) in loop ?
    PS: Sorry for my pour English

  • Error "Conversion failed when converting date and/or time from character string" to execute one query in sql 2008 r2, run ok in 2005.

    I have  a table-valued function that run in sql 2005 and when try to execute in sql 2008 r2, return the next "Conversion failed when converting date and/or time from character string".
    USE [Runtime]
    GO
    /****** Object:  UserDefinedFunction [dbo].[f_Pinto_Graf_P_Opt]    Script Date: 06/11/2013 08:47:47 ******/
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    CREATE   FUNCTION [dbo].[f_Pinto_Graf_P_Opt] (@fechaInicio datetime, @fechaFin datetime)  
    -- Declaramos la tabla "@Produc_Opt" que será devuelta por la funcion
    RETURNS @Produc_Opt table ( Hora datetime,NSACOS int, NSACOS_opt int)
    AS  
    BEGIN 
    -- Crea el Cursor
    DECLARE cursorHora CURSOR
    READ_ONLY
    FOR SELECT DateTime, Value FROM f_PP_Graficas ('Pinto_CON_SACOS',@fechaInicio, @fechaFin,'Pinto_PRODUCTO')
    -- Declaracion de variables locales
    DECLARE @produc_opt_hora int
    DECLARE @produc_opt_parc int
    DECLARE @nsacos int
    DECLARE @time_parc datetime
    -- Inicializamos VARIABLES
    SET @produc_opt_hora = (SELECT * FROM f_Valor (@fechaFin,'Pinto_PRODUC_OPT'))
    -- Abre y se crea el conjunto del cursor
    OPEN cursorHora
    -- Comenzamos los calculos 
    FETCH NEXT FROM cursorHora INTO @time_parc,@nsacos
    /************  BUCLE WHILE QUE SE VA A MOVER A TRAVES DEL CURSOR  ************/
    WHILE (@@fetch_status <> -1)
    BEGIN
    IF (@@fetch_status = -2)
    BEGIN
    -- Terminamos la ejecucion 
    BREAK
    END
    -- REALIZAMOS CÁLCULOS
    SET @produc_opt_parc = (SELECT dbo.f_P_Opt_Parc (@fechaInicio,@time_parc,@produc_opt_hora))
    -- INSERTAMOS VALORES EN LA TABLA
    INSERT @Produc_Opt VALUES (@time_parc,@nsacos, @produc_opt_parc)
    -- Avanzamos el cursor
    FETCH NEXT FROM cursorHora INTO @time_parc,@nsacos
    END
    /************  FIN DEL BUCLE QUE SE MUEVE A TRAVES DEL CURSOR  ***************/
    -- Cerramos el cursor
    CLOSE cursorHora
    -- Liberamos  los cursores
    DEALLOCATE cursorHora
    RETURN 
    END

    You can search the forums for that error message and find previous discussions - they all boil down to the same problem.  Somewhere in your query that calls this function, the code invoked implicitly converts from string to date/datetime.  In general,
    this works in any version of sql server if the runtime settings are correct for the format of the string data.  The fact that it works in one server and not in another server suggests that the query executes with different settings - and I'll assume for
    the moment that the format of the data involved in this conversion is consistent within the database/resultset and consistent between the 2 servers. 
    I suggest you read Tibor's guide to the datetime datatype (via the link to his site below) first - then go find the actual code that performs this conversion.  It may not be in the function you posted, since that function also executes other functions. 
    You also did not post the query that calls this function, so this function may not, in fact, be the source of the problem at all. 
    Tibor's site

  • Error when trying to delete a query from production

    Hi Experts,
    When i tried to delete a query from <b>production system</b> using RSZDELETE, I am getting an error message like " Query object 42BYOKUXDNZBZKMC2VHR5Z19H is blocked. Deletion has been cancelled."
    i went to E071 table using SE16,and found out the transports which contains this particular object.This transports have returned error code 8.
    Can anyone help me on deleting this object entry from these requests?
    <b>How will I delete this particular object entry from these transport requests?</b>
    Thanks alot
    Shobin

    Hi Venkat,
    Thanks alot for your quick reply.
    I tried that also. But even those transports are not successful.
    I would like to know <b>what is the standard procedure to delete objects from a transport request in production</b>.
    Already, I unlocked the transport request to Modifiable status.
    Thanks alot
    Shobin

  • Error code -51 when I attempt to transfer files from Mac to PC over network

    I just upgraded to Mavericks - I saw some threads that people are having the same problem. When I attempt to transfer files from my Windows 7 PC to my Mac laptop, it freezes, then I get an error code -51. No, it's not firewall, and no it's not sharing permissions in the PC. Help!!

    Same here as well. MacBook Pro 13" laptop with OSX 10.9. Can transfer small files (e.g. Mp3s, MS Word Docs, PDFs etc) on the network to a server running Windows 2008 R2 server eg MP3 files....but transfering larger files eg TV shows or films produces a failure after about 1.5MB and I get the following error message:
    "...The operation can’t be completed because an unexpected error occurred (error code -51)...."
    I previously had a MacBook Air laptop with OSX 10.8 and did not have this problem at all. Also currently have a Mac Mini with OX 10.6 and that machice continues to play just fine with the same server.
    So the issue must most likely be a problem specific to OSX 10.9...

  • Microsoft word is printed very time when I add A/R invoice in SAP B1

    When I add A/R invoice SAP B1 will print Microsoft word every time.
    I want to disable it. How can I do?
    Thank you

    Hi,
    Please, check to see what is set up in your database:
    Go to Administration >>> Set up >>> General >>> User : choose the user. Click to drilldown at "Default" field to open a window. In Print tab, choose Document : AR Invoice and uncheck "Add button will also export to MS Word"
    Hope this helps,
    Son.

  • A-Office 7.1 error when try to open a query: Filter: SAP BI Add-in has disconnected all data sources

    Hi,
    I'm facing a issue when try to consume a BW 7.4 query using A-Office 1.4 SP 7 Patch 1.
    The error is:
    Source type \CLASS=CL_RSBOLAP_VARIABLE_CHARACTERI is not compatible, for the purposes of assignment, with target type (RS_EXCEPTION-000)
    Print Attached:
    Any inputs of how to solve this?
    Thanks,
    Rodrigo.

    Hi Rodrigo - I haven't seen this in a while; since you are an SAP employee you may want to try the internal team, and it might be something in the BW back end.

  • Getting Error Code S8VLP8HS when trying to open BI Publisher from  Answers

    Hi
    When i am trying to open BI Publisher from Oracle Answers ( OBIEE ) it's giving
    following error
    "Error Codes: S8VLP8HS
    Location: saw.httpserver.request, saw.rpc.server.responder, saw.rpc.server, saw.rpc.server.socketServer, saw.threadPool, saw.threadPool, saw.threads "
    Please tell me how to resolve this issue.
    Thanks
    Sachin

    wmv is a Windows Media format.  I don't know why Realplayer is coming into it since that deals primarily with Real format files and maybe a few generic formats.
    You need
    Free Flip4mac QuickTime player components - http://www.microsoft.com/windows/windowsmedia/player/wmcomponents.mspx
    After installation a new Flip4Mac pane will appear in System Preferences.  Make sure you set the boxes to ensure that it will play WMV files in Quicktime.
    or play the files with VLC
    VLC media player - http://www.videolan.org/vlc/ - general media player that plays just about anything.
    While you're at it you might install:
    Perian codecs for Quicktime - http://www.perian.org - plugins to add functionality to Quicktime for playing additional audio and video formats
    Quicktime audio problems, Perian, VLC - http://discussions.apple.com/message.jspa?messageID=9013669 - read note about uninstalling prior DIVX support before installing Perian.
    Perian doen't do WMV but it's handy to get many things to play in Quicktime.
    Note, if these are protected WMV, nothing on a Mac will play those (unless you also have Windows installed).

  • I get an error message 400 when trying to sign into Adobe from PE9

    I am using Adobe Premiere Elements 9. I have a valid Adobe ID because I can use it to log into adobe.com successfully. However, when I try to use it to sign in from PE9 ("Sign In With Your Adobe ID" at bottom left of opening screen), it gives me: "Error: Photoshop.com services are currently unavailable. Please try again later or check your network connections. Error 400."

    FredVid
    Do not "Sign In" to Premiere Elements 10 and earlier. "Sign In" is gone along with the photoshop.com and photoshop.com plus feature.
    Also, be aware that you probably still see content associated with photoshop.com plus members only. Even though you see that content as
    thumbnails, the content is no longer available to you. It went with photoshop.com and photoshop.com plus.
    Bottom Line:
    Don't
    Please try again later or check your network connections. Error 400."
    Just do not go through the "Sign In" ritual and instead (after any indicated Cancel) proceed to import, editing, and export.
    Any questions, please do not hesitate to ask.
    Thanks.
    ATR

  • Using Windows 7, I get an error message 4310 when trying to burn a CD from a playlist.  I ran diagnostics and everything was ok.  Please help.  Reading previous posts haven't helped.

    I have read all of the other postings and they haven't helped.
    When I ran diagnostics here is what I got:
    Microsoft Windows 7 x64 Home Premium Edition Service Pack 1 (Build 7601)
    Dell Inc. Inspiron 5720
    iTunes 11.0.4.4
    QuickTime not available
    FairPlay 2.4.14
    Apple Application Support 2.3.4
    iPod Updater Library 10.0d2
    CD Driver 2.2.3.0
    CD Driver DLL 2.1.3.1
    Apple Mobile Device 6.1.0.13
    Apple Mobile Device Driver 1.64.0.0
    Bonjour 3.0.0.10 (333.10)
    Gracenote SDK 1.9.6.502
    Gracenote MusicID 1.9.6.115
    Gracenote Submit 1.9.6.143
    Gracenote DSP 1.9.6.45
    iTunes Serial Number 0015B7001238F790
    Current user is not an administrator.
    The current local date and time is 2013-08-11 10:02:22.
    iTunes is not running in safe mode.
    WebKit accelerated compositing is enabled.
    HDCP is supported.
    Core Media is supported.
    Video Display Information
    Intel Corporation, Intel(R) HD Graphics 4000
    **** External Plug-ins Information ****
    No external plug-ins installed.
    Genius ID: 2a1c5ee63a68f4be6bc96c5266eed869
    iPodService 11.0.4.4 (x64) is currently running.
    iTunesHelper 11.0.4.4 is currently running.
    Apple Mobile Device service 3.3.0.0 is currently running.
    **** CD/DVD Drive Tests ****
    LowerFilters: iaStorF (11.5.0.183),
    UpperFilters: GEARAspiWDM (2.2.3.0),
    D:   PLDS DVD+/-RW DS, Rev 
    Audio CD in drive.
    Found 11 songs on CD, playing time 42:48 on Audio CD.
    Track 1, start time 00:02:00
    Track 2, start time 03:52:30
    Track 3, start time 06:59:54
    Track 4, start time 11:40:47
    Track 5, start time 15:15:38
    Track 6, start time 19:31:39
    Track 7, start time 22:52:55
    Track 8, start time 26:38:36
    Track 9, start time 30:28:61
    Track 10, start time 33:35:27
    Track 11, start time 38:20:39
    Audio CD reading succeeded.
    Get drive speed succeeded.
    The drive CDR speeds are:   8 16 24 32 40.
    The drive CDRW speeds are:   8.
    The drive DVDR speeds are:   8.
    The drive DVDRW speeds are:   8.
    The last failed audio CD burn had error code 4310(0x000010d6). It happened on drive D:   PLDS DVD+/-RW DS on CDR media at speed 24X.

    Hello Princess Lynne Anne,
    Thank you for using Apple Support Communities
    First I recommend taking a look at this article named iTunes: Music purchased from iTunes Store cannot be burned to MP3 format CD found http://support.apple.com/kb/TS1476.
    Songs purchased from the iTunes Store may either be in AAC format or AAC Protected format depending on when they were purchased (older songs used AAC Protected format). You can convert AAC songs to MP3 format allowing them to be burned to an MP3 format CD, however AAC Protected songs can not be converted. You can, however, back them up to a data CD or DVD, or you can burn them to an audio CD (which can be played in a CD player).
    And if your issue still persists after converting any of these purchases, then I would recommend this part of the article named Disc Burning Quick Assist found here http://support.apple.com/kb/HT1152#learn2:
    Top troubleshooting tips
    In addition to the following tips, check out these articles:
    Solving problems with burning discs
    If the disc burning options are dimmed or unavailable
    If a burn does not succeed, check the disc or try another disc
    Eject the disc from the drive and inspect it to see if the surface is dirty or scratched, or if it already has data written on it (the shiny surface is slightly darker where data has already been burned). If it's dirty, wipe it clean with a soft, damp cloth and try burning again. If the disc already contains data, try another disc. If you're using a rewritable disc that already contains data, be sure to erase it before burning data on it again. Small flaws or surface inconsistencies can cause an unsuccessful burn. Try burning your content to another disc or try a different brand of disc (if possible).
    Make sure that your optical drive can record discs
    If your drive is built into your Mac, make sure that you have at least a Combo Drive if you want to burn a CD or a SuperDrive if you're trying to burn a DVD (or CD). Consult your Mac manual or your third-party manufacturer's disc drive manual for more information.
    Check the disc type
    Make sure that your disc drive is capable of writing to your media at hand. For example, you won't be able to burn a DVD+RW disc with an older Apple SuperDrive. Consult your Apple or third-party product manual for your drive's supported media specifications. You should also use discs that are rated for the burn speed of your drive.
    Slow things down
    In the Burn dialog, specify a burn speed that is slower than the maximum speed rating for your disc drive (if you can) and try burning another disc.
    Free up some memory
    If you've got other applications open, quit the ones that you're not using (or quit them all except for the one from which you're burning your disc). Allow the disc to burn before doing other things on your computer.
    Check your hard drive's available space
    When you burn a disc, your Mac temporarily sets aside an amount of hard disk space equal to the amount of data being burned to the disc. If you're burning a large amount of data, you may run out of room on your hard disk if it's almost full, which may prevent a disc from burning. To free up space, throw out unwanted files or back up files to an external drive.
    Restart your computer
    Sometimes a simple restart can resolve issues. Once you've restarted your Mac, try burning another disc again.
    Update your software
    Use Software Update (from the Apple menu, choose Software Update) to check for, download, and install the latest versions of your Apple software. If you're using a third-party burner, visit the manufacturer's website for the latest software updates for your model.
    Check your connections
    If you're using an external disc writer, make sure that all of your cable connections are secure and that the optical drive is powered on.
    Cheers,
    Sterling

  • Getting error " Conversion failed when converting date and/or time from character string."

    Hello Experts,
    I am getting the above error, when i try to execute the query. 
    DECLARE @START AS DATETIME
    DECLARE @END AS DATETIME
    SET @START = CONVERT(VARCHAR(10), GETDATE()-1,101) + '00:00:00'
    SET @END = CONVERT(VARCHAR(10), GETDATE()-1,101) + '23:59:59'
    Any suggestions as to how to get out of this error.
    Appreciate any help/suggestions.
    Thanks!
    Rahman

    Thanks Latheesh,
    I am able to execute the above query, but when i implement the same in my query, i am getting another error.
    Invalid column name 'DATETIME'.
    Invalid column name 'DATETIME'.
    Invalid column name 'DATETIME'.
    Invalid column name 'DATETIME'.
    DECLARE @START AS DATETIME
    DECLARE @END AS DATETIME
    SET @START = CONVERT(VARCHAR(10), GETDATE()-1,101) + ' 00:00:00'
    SET @END = CONVERT(VARCHAR(10), GETDATE()-1,101) + ' 23:59:59'
    SELECT
    SUBSTRING(A1.TGT,2,4) SATC,
    SUBSTRING(DGT,2,4) COFS,
    (CASE WHEN SG.S_G_E_NM LIKE '%S%' THEN 'SALES' WHEN SG.S_G_E_NM LIKE '%U%' THEN 'SUPPORT' WHEN SG.S_G_E_NM LIKE '%S%' THEN 'CUSTSERV' ELSE 'UNKNOWN' END) SKILL,
    COUNT(*) TOTAL,
    AVG(T1.NET) AS A,
    AVG(T1.TALK + T1.HOLD + T1.WORK) AVGHTIME
    FROM
    SELECT * FROM TABLE WHERE (1=1)
    AND DATETIME >= @START
    AND DATETIME <=@END
    AND PERIPH_ID IN (1111,2222,3333)
    AND TGT_ID NOT IN (12457)
    ANDSEQ_NBR IN (2)
    AND DGT LIKE '8%2400'
    AND TALK > 0
    ) AS T1
    Any guesses as to what could be going wrong here?
    Rahman

Maybe you are looking for