Unspecified error with Member Selection

Hi Experts,
Find the below error and please advice:
We receive an intermittent "Unspecified error" when expanding a Member selection in HFM.
This error was observed when an user was expanding the Custom 2 Dimension members. Can you tell me if this is a know problem with solution? Perhaps, it only happens on one of our two Web servers.
Product version: 11.1.2.1
Thanks in advace.
Any information on this is highly appreciated!
Regards,
SM
Edited by: 866107 on Jun 23, 2011 6:47 AM

Can any one have any idea about this!!!
Pls advice
Thanks,
SM

Similar Messages

  • Error with Member Report

    HI Gurus,
    I have a dimension with single hierarchy, I am able to process the dimension and view the members in a hierarchy on the excel.
    On the admin tool under dimension -> Maintain dimension members -> View member Report gives an error that member report cannot be reviewed because of a circular reference and the application terminates. I am able to perform this activity for rest of the dimensions.
    Any insight on this.
    thanks

    When you select the Dimension, Maintain Dimension Members, the Excel file opens, then click the View Member Report, do you get the interface box that allows you to select the dimension hierarchy and properties to add to your report, or do you get the error only?  If you are getting the box called Make Report, and the information in the box states, cannot generate report, Error, there is a problem in the member which may indicate a circular reference, then there IS an issue with your hierachy and memberset.  I am suprised that the file processes, but I would guess there a bad reference in the existing hierarchy. 
    My advice would be to take a portion of the dimension file, (ie delete some of the hierarchy), process it and test to see if you can build a report.  Once you get to a point where the report may be built successfully, then add back in portions of the hierarchy until you get or find the error or portion of the file that will not allow for a report to be build.  This may be an extreme test, but it should help narrow down the place where the report or hierarchy fails.  I have tested examples in my system, and the report will not be constructed if the dimension is not processed succesfully.

  • Case expression error with a select query in the condition

    Consider the two query below:
    1. The first one use a case expression :
    select case when 3 > (select 1 from dual)*2 then 1 else 0 end from dual
    2. The equivalent with a decode expression:
    select
    decode(sign(3-(select 1 from dual)*2),1,1,0) from dual
    The first query return an ORA-00905 error but not the second one. It seems that the arithmetic operation (select 1 from dual)*2 cause the error. The folowing query doesn't return this error:
    select case when 3 > (select 2 from dual) then 1 else 0 end from dual
    I run the test with Oracle 8.1.7.3 Enterprise Edition. Is it a known bug ?
    Thomas

    ora8174>select case when 3 > (select 1 from dual)*2 then 1 else 0 end from dual;
    select case when 3 > (select 1 from dual)*2 then 1 else 0 end from dual
    ERROR at line 1:
    ORA-00905: missing keyword
    ora8174>select case when 3 > cast((select 1 from dual)*2 as number) then 1 else 0 end from dual;
    CASEWHEN3>CAST((SELECT1FROMDUAL)*2ASNUMBER)THEN1ELSE0END
                                                           1
    1 row selected.
    ora8174>select case when 3 > to_number((select 1 from dual)*2) then 1 else 0 end from dual;
    CASEWHEN3>TO_NUMBER((SELECT1FROMDUAL)*2)THEN1ELSE0END
                                                        1
    1 row selected.
    ora8174>@connect
    Connected.
    ora9204>select case when 3 > (select 1 from dual)*2 then 1 else 0 end from dual;
    CASEWHEN3>(SELECT1FROMDUAL)*2THEN1ELSE0END
                                             1
    1 row selected.

  • Error with Constant Selection on Multiprovider

    Hi All,
    I have a MP, based on 1 IC and 2 DSOs.
    I have created a report like: KPI NO, KPI Decription on rows pane and KPI value in KF pane.
    KPI NO is available in all 3 infopro mentioned above.  KPI description is available only in one DSO. I have restricted the KF (KPI value) by applying constant selection on KPI description. Hopefully this should work for my case. Unfortunately, its not working. Report is displaying only KPI No,  KPI Descrp and KPI value in single col, thats fine. But here, KPI desc is displaying as "Not assigned" instead of the data display what is there in the target. Not able to figure out the cause. Could any one pls suggest what went wrong here (query creation/MP creation).
    Note: KPI desc is a text bearing char InfoObject and this DSO contains only Key fileds.
    Best Regards
    Venkat...

    In Rows:
    KPI No which is present in all three providers - IC, DSO1 & DSO2.
    KPI description - only present in DSO1.
    In Col:
    KPI Value - present in only IC.
    I have restricted this KF with KPI description and applied constant selection to this.
    My report lay should come like as below.
    KPI NO         KPI Descrption           KPI Value
    1                  Invoices pending         25000
    2                  payment over due        15000
    3                  error rate                       2.12
    Unfortunately, the description is not come but its displaying as "not assigned". MP is correct.
    Best Regards
    Venkat...

  • PARM error (shows as mrap) with multiple selections, no error with single selection

    Hello all,
    I am new to Illustrator scripting this is my first script. I am getting a this error " Error 1200: an Illustrator error occurred: 1346458189 ('MRAP'): line 50" which is the line:
    var next_board = doc.artboards.add([next_board_L, next_board_T, next_board_R, next_board_B]); 
    It only occurs when I have multiple selections and never when I have only one selection. After a little research I have found the error is actually PARM, but I don't see any uninstantiated variables or other  issues that could be throwing this error. I am on a mac Illustrator CC. I would appreciate any help on the matter. Below is the full script.
    #target Illustrator
    // This script was made to take all selected objects
    // Create a new arboard for all Selected objects
    // At a user specified width and height then
    // Scale the object to the artboard size and center
    var doc = app.activeDocument;
    var select = doc.selection;
    if (select.length > 0) {
         var title = "Fit Selected Object(s) to Artboard(s)";
         var msg = "Enter the width and height of artboards (single number)";
         var board = Number(Window.prompt (msg, 0, title));
         for(var i = 0; i < select.length; i++) {
              var selectW = select[i].width;
              var selectH = select[i].height;
              if(selectH >= selectW) {
                   if(board > selectH) {
                        scale = board/selectH*100;
              } else {
                   scale = board/selectW*100;
              var boardIdx = doc.artboards.getActiveArtboardIndex();
              var boardSrc = doc.artboards[boardIdx];
              var boardSrc_L = boardSrc.artboardRect[0];
              var boardSrc_T = boardSrc.artboardRect[1];
              var boardSrc_R = board;
              var boardSrc_B = -board;
              var moveX = 10;
              var next_board_L = boardSrc_R + moveX; 
              var next_board_T = boardSrc_T; 
              var next_board_R = next_board_L + (boardSrc_R - boardSrc_L); 
              var next_board_B = boardSrc_B;
              var next_board = doc.artboards.add([next_board_L, next_board_T, next_board_R, next_board_B]); 
              select[i].resize(
                  scale, //this is a percentage of current width 
                  scale, //this is a percentage of current height 
                  true, // changePositions 
                  true, // changeFillPatterns 
                  true, // changeFillGradients 
                  true, // changeStrokePattern 
              var selPosX = select[i].left;
              var selPosY = select[i].top;
              var selBoardDiffX = next_board_L - selPosX;
              var selBoardDiffY = next_board_T - selPosY;
              var toCenter = 0;
             select[i].translate (
                       selBoardDiffX,
                       selBoardDiffY,
                       true,
                       true,
                       true,
                       true
             var boardH = next_board.artboardRect[2] - next_board.artboardRect[0];
              var boardW = next_board.artboardRect[3] - next_board.artboardRect[1];
             if( boardH > select[i].height ) {
                  toCenter = (boardH-select[i].height)/2;
                      select[i].translate (
                                0,
                                -toCenter,
                                true,
                                true,
                                true,
                                true
             var NegSelectW = select[i].width * -1; //Must be a negative number
             if ( boardW < NegSelectW ) {
                  toCenter = (boardW+select[i].width)/2;
                      select[i].translate (
                                -toCenter,
                                0,
                                true,
                                true,
                                true,
                                true

    Ah I finally understand. I looked into that post a little more an started experimenting. I used the function posted to create my artboards. Its a lot easier if you can think
    (x, y, width, height). So yes the issue was with my variable but not in the way I was thinking.
    for those who need it here is the function posted in that thread
    var newRect = function(x, y, width, height) { 
        var l = 0; 
        var t = 1; 
        var r = 2; 
        var b = 3; 
        var rect = []; 
        rect[l] = x; 
        rect[t] = -y; 
        rect[r] = width + x; 
        rect[b] = -(height - rect[t]); 
        return rect; 

  • CX_SY_DYNAMIC_OSQL_SEMANTICS error with dynamic SELECT statement

    Hello Gurus,
    We have a dynamic SELECT statement in our BW Update Rules where the the Selection Fields are populated at run-time and so are the look-up target and also the WHERE clause. The code basically looks like below:
              SELECT (lt_select_flds)
                FROM (lf_tab_name)
                INTO CORRESPONDING FIELDS OF TABLE <lt_data_tab>
                FOR ALL ENTRIES IN <lt_source_data>
                WHERE (lf_where).
    In this instance, we are selecting 5 fields from Customer Master Data and the WHERE condition for this instance of the run is as below:
    WHERE: DIVISION = <lt_source_data>-DIVISION AND DISTR_CHAN = <lt_source_data>-DISTR_CHAN AND SALESORG = <lt_source_data>-SALESORG AND CUST_SALES = <lt_source_data>-SOLD_TO AND OBJVERS = 'A'
    This code was working fine till we were in BW 3.5 and is causing issues after we moved to BW 7.31 recently. Ever since, when we execute our data load, we get the CX_SY_DYNAMIC_OSQL_SEMANTICS. THE ERROR TEXT SAYS 'Unable to interpret '<LT_SOURCE_data>-DOC_NUMBER'.
    Can you pleasesuggest what can we do to this code to get is working correctly ? What has changed in ABAP Objects that has been introduced from BI 7.0 that could be causing this issue?
    Would appreciate any help we can get here.
    Thanks
    Arvind

    Hi,
    Please try this.
    data: lv_where type string.
    concatenate 'vbeln' 'in' 'r_vbeln' into lv_where separated by space.
    select *from table into itab where (lv_where).
    Also please check this sample code.
    REPORT ZDYNAMIC_WHERE .
    TABLES: VBAK.
    DATA: CONDITION TYPE STRING.
    DATA: BEGIN OF ITAB OCCURS 0,
    VBELN LIKE VBAK-VBELN,
    POSNR LIKE VBAP-POSNR,
    END OF ITAB.
    SELECT-OPTIONS: S_VBELN FOR VBAK-VBELN.
    CONCATENATE 'VBELN' 'IN' 'S_VBELN.'
    INTO CONDITION SEPARATED BY SPACE.
    SELECT VBELN POSNR FROM VBAP INTO TABLE ITAB
    WHERE (CONDITION).
    LOOP AT ITAB.
    WRITE 'hello'.
    ENDLOOP.
    Regards,
    Ferry Lianto

  • Error with 'At Selection-Screen' in Infoset query (Urgent)

    Hi All,
    I have defined a field as a selection criteria in Selections tab of Infoset & written a few lines of code. The syntax is ok, but when i try to run the query, the system prompts the message as below & terminates:
    'Local SELECT-OPTIONS are not allowed (FORM routine or GET event is active).'
    I would like to know what code should i enter in the GET / GET LATE section. Can someone help me?
    Edited by: Vivek on Dec 31, 2007 10:27 AM

    Mr. Atish,
    Thanks for the reply, but wish to inform you, i have not written any code in GET / GET-LATE section of the infoset. I just read the SAP help files, where it mentions that i need to maintain some check code in GET / GET-LATE section if i have defined selection criteria in selections tab.
    May i know what code should i maintain?
    In selections tab i have defined 2 selection criterias, for one criteria i have maintained the code & for the other in Extras field i have maintained a Default value & entered 'NO-DISPLAY'.
    Await your inputs to resolve this problem.
    Vivek

  • Hyperion Financial Reports - Member selection issue

    Hi,
    We are using Hyperion suite 9.2.0.3. We get an error during Member selection in POV when executing a book or report. The member selection window looks blank.
    We have tried restarting the services of Financial report and Essbase. But no luck.
    Can someone help us in getting this issue resolved.
    Thanks,
    Sethu

    I'm not sure I have a good answer for you, but in my experience blank screens are usually caused by failing weblogic, apache, or a firewall setting.
    You might have better success getting an answer in the Hyperion Query and Reporting forum.
    Hyperion Query and Reporting
    Good Luck,
    Tim Young

  • "Unspecified Error" or "Runtime Error" 7 when launching application with AcroPDF on Secured Vista PC.

    We have a client application written in Visual Basic 6 that uses the AcroPDF ActiveX DLL to view PDF files in our app.  The app works fine the clients secured Windows XP SP 3 PC, and on my Windows Vista Business 32 bit Virtual Machine.  However, the application will not launch on the client's highly secured Vista Enterprise 32 bit PC's.  The form with the Acrobat Browser control does not even initialize before a "Runtime Error 7: Out of Memory" message is presented.  I created a VB 6 test app that has just the form and the Acrobat Browser control on it, and this test application will not initialize either.  It gets an "System Error &H80004005 (-2147467259). Unspecified Error" message on attempting to launch.  I get the same error message if I attempt to add the Acrobat Browser control to a form in an MS Excel Macro in Excel 2003 on the same PC.  Test VB6 applications using the other controls and references in the application launch fine.
    The Acrobat installed on these PC's is Acrobat Professional 9.0.0 and/or 9.1.0.  In two cases, we have been able to have the application load after uninstalling /reinstalling Acrobat 9.x on the PC, but ONLY for the profile that did the installation.  And in one case, after removing that user profile and then logging back on, that user started getting the same errors above.
    What policy or registry setting is needed to get this control to initialize on a secured Vista PC for all users?

    I have done the following on my Vista Business VM and I still have not been able to duplicate the error that I see at the client site.
    1.  Enabled UAC.
    2.  Implemented Software Restriction Policies.
    3.  Set the Default Security Level to Basic User (except for Local Administrators).
    4.  Lowered the Integrity Level on my AcroTest1.EXE and on my actual executable to "Low".
    The sample application and the user application loaded the form and initialized the AcroPDF control when logged in as a normal user account (the account is only a member of the "Users" group on the local Vista PC).
    Since this application is an actual Windows application (not an Internet Browser plug in), the default integrity level should be "Medium".

  • Windows 2008 r2 SP1 installation failed with unspecified error 0x80004005 - E_FAIL

    Hi Team,
    We have SQL data base server with Win 2008 r2 OS.When trying install Sp1 it fails after reboot with unspecified error -0x80004005 - E_FAIL.
    Server having snap drive connected with 6 SQL data bases. Sp1 installation running 7 hrs and falling after couple of reboot.
    Any help appreciated.CBS log attached.
    ================================ 2015-01-24 18:48:22, Info CBS Starting TrustedInstaller initialization. 2015-01-24 18:48:22, Info CBS Loaded Servicing Stack v6.1.7601.17514 with Core: C:\Windows\winsxs\amd64_microsoft-windows-servicingstack_31bf3856ad364e35_6.1.7601.17514_none_678566b7ddea04a5\cbscore.dll
    2015-01-24 18:48:23, Info CSI 00000001@2015/1/24:18:48:23.137 WcpInitialize (wcp.dll version 0.0.0.6) called (stack @0x7fee8d4e94d @0x7fee9079839 @0x7fee90434d3 @0xff03e94c @0xff03d769 @0xff03daff) 2015-01-24 18:48:23, Info CBS Could not load SrClient DLL
    from path: SrClient.dll. Continuing without system restore points. 2015-01-24 18:48:23, Info CSI 00000002@2015/1/24:18:48:23.139 WcpInitialize (wcp.dll version 0.0.0.6) called (stack @0x7fee8d4e94d @0x7fee90c6806 @0x7fee9092a9c @0x7fee90435a9 @0xff03e94c @0xff03d769)
    2015-01-24 18:48:23, Info CSI 00000003@2015/1/24:18:48:23.139 WcpInitialize (wcp.dll version 0.0.0.6) called (stack @0x7fee8d4e94d @0x7fee9988728 @0x7fee9988856 @0xff03e444 @0xff03d7ae @0xff03daff) 2015-01-24 18:48:23, Info CBS Ending TrustedInstaller initialization.
    2015-01-24 18:48:23, Info CBS Starting the TrustedInstaller main loop. 2015-01-24 18:48:23, Info CBS TrustedInstaller service starts successfully. 2015-01-24 18:48:23, Info CBS SQM: Initializing online with Windows opt-in: False 2015-01-24 18:48:23, Info CBS
    SQM: Cleaning up report files older than 10 days. 2015-01-24 18:48:23, Info CBS SQM: Requesting upload of all unsent reports. 2015-01-24 18:48:23, Info CBS SQM: Failed to start upload with file pattern: C:\Windows\servicing\sqm\*_std.sqm, flags: 0x2 [HRESULT
    = 0x80004005 - E_FAIL] 2015-01-24 18:48:23, Info CBS SQM: Failed to start standard sample upload. [HRESULT = 0x80004005 - E_FAIL] 2015-01-24 18:48:23, Info CBS SQM: Queued 0 file(s) for upload with pattern: C:\Windows\servicing\sqm\*_all.sqm, flags: 0x6 2015-01-24
    18:48:23, Info CBS SQM: Warning: Failed to upload all unsent reports. [HRESULT = 0x80004005 - E_FAIL] 2015-01-24 18:48:23, Info CBS No startup processing required, TrustedInstaller service was not set as autostart, or else a reboot is still pending. 2015-01-24
    18:48:23, Info CBS NonStart: Checking to ensure startup processing was not required. 2015-01-24 18:48:23, Info CSI 00000004 IAdvancedInstallerAwareStore_ResolvePendingTransactions (call 1) (flags = 00000004, progress = NULL, phase = 0, pdwDisposition = @0x136f6c0
    2015-01-24 18:48:23, Info CSI 00000005 Creating NT transaction (seq 1), objectname [6]"(null)" 2015-01-24 18:48:23, Info CSI 00000006 Created NT transaction (seq 1) result 0x00000000, handle @0x23c 2015-01-24 18:48:23, Info CSI 00000007@2015/1/24:18:48:23.144
    CSI perf trace: CSIPERF:TXCOMMIT;1211 2015-01-24 18:48:23, Info CBS NonStart: Success, startup processing not required as expected. 2015-01-24 18:48:23, Info CBS Startup processing thread terminated normally 2015-01-24 18:48:23, Info CSI 00000008 CSI Store
    3877440 (0x00000000003b2a40) initialized 2015-01-24 18:48:23, Info CBS Session: 30423046_1416810351 initialized by client RMT. 2015-01-24 18:48:24, Info CSI 00000009@2015/1/24:18:48:24.057 CSI Transaction @0x1761b90 initialized for deployment engine {d16d444c-56d8-11d5-882d-0080c847b195}
    with flags 00000002 and client id [26]"TI5.30423046_1416810351:1/" 2015-01-24 18:48:24, Info CSI 0000000a@2015/1/24:18:48:24.059 CSI Transaction @0x1761b90 destroyed 2015-01-24 18:48:24, Info CBS Appl: DetectUpdate, Package: Microsoft-Windows-SecureStartup-OC-Package~31bf3856ad364e35~amd64~~6.1.7600.16385,
    Remote Parent: DirectoryServices-DomainController-Tools, Intended State: Staged 2015-01-24 18:48:24, Info CBS Appl: DetectUpdate, Package: Microsoft-Windows-SecureStartup-OC-Package~31bf3856ad364e35~amd64~~6.1.7600.16385, Remote Parent: DirectoryServices-DomainController-Tools,
    Intended State: Staged 2015-01-24 18:48:24, Info CBS Appl: Evaluating applicability block(detectUpdate part), disposition is: Staged, applicability: NotApplicable, result applicability state: Staged 2015-01-24 18:48:24, Info CBS Appl: Package: Microsoft-Windows-SecureStartup-OC-Package~31bf3856ad364e35~amd64~~6.1.7600.16385,
    Update: BdeAducExtTool, Applicable: NeedsParent, Dis 2015-01-24 18:48:24, Info CBS Appl: DetectUpdate, Package: Microsoft-Windows-WMI-SNMP-Provider-Package~31bf3856ad364e35~amd64~~6.1.7600.16385, Remote Parent: SNMP, Intended State: Installed 2015-01-24 18:48:24,
    Info CBS Appl: Evaluating applicability block(detectUpdate part), disposition is: Staged, applicability: Applicable, result applicability state: Installed 2015-01-24 18:48:24, Info CBS Appl: Package: Microsoft-Windows-WMI-SNMP-Provider-Package~31bf3856ad364e35~amd64~~6.1.7600.16385,
    Update: WMISnmpProvider, Applicable: Applicable, Dis 2015-01-24 18:48:24, Info CBS Appl: DetectUpdate, Package: Microsoft-Windows-IIS-WebServer-Package~31bf3856ad364e35~amd64~~6.1.7600.16385, Local Parent: IIS-WebServerRole, Intended State: Staged 2015-01-24
    18:48:24, Info CBS Appl: Evaluating applicability block(detectUpdate part), disposition is: Staged, applicability: NotApplicable, result applicability state: Staged 2015-01-24 18:48:24, Info CBS Appl: Package: Microsoft-Windows-IIS-W

    Appreciate your suggestion Dave,
    Any idea what could be cause of this failure.?Do you see anything from the CBS logs.
    This server attached with SNAP drive luns,is there something or SQL application preventing this installation ?
    After reboot it revert the installation...it shows "Failure config service pack..reverting changes,do not not turn off your computer".
    Surprisingly it happens both of our SQL data base server.
    Do you think Increasing MaxNumFilters to
    14 shall work ?
    =====================
    =================================CheckSUR.Log==========
    Checking System Update Readiness.
    Binary Version 6.1.7601.22471
    Package Version 26.0
    2015-02-01 09:37
    Checking Windows Servicing Packages
    Checking Package Manifests and Catalogs
    Checking Package Watchlist
    Checking Component Watchlist
    Checking Packages
    Checking Component Store
    Summary:
    Seconds executed: 555
     No errors detected

  • I have downloaded whats app/brave temple run but using netsafe card. well now it shows 1.98$ is pending , though m trying with new netsafe card to pay it is showing error saying Pls select valid method for payment. i used same method as i did earlier

    i have downloaded whats app/brave temple run but using netsafe card. well now it shows 1.98$ is pending , though m trying with new netsafe card to pay it is showing error saying Pls select valid method for payment. i used same method as i did earlier

    I have recently started having this problem in PSE8. The Adobe workaround
    did work, but I don't fancy having to re register each time I use it.
    What I have discovered is that it's nothing to do with the image metadata as it occurs before any image is opened.
    It SEEMS to only occur if you use file/open with to open an image in the editor - IE start PSE with that command.
    If you close elements down, and start it using programs/PSE/Elements (or your desktop shortcut) - the panorama feature magically works.
    Each time I've opened the editor 'automatically' using image/open with, it seems to create the problem.
    Hope this helps

  • Error "Parent Member is found in dimension from selection"

    Hi,
    while running the export transaction data package we are getting the error " Parent Member is found in Dimension from selection".
    We cannot manually select each member as there are around 64K records which will have to manually selected. Is there a work around for the same?
    Regards
    Varun

    Hi Varun,
    The first thing is that if you are using the standard export DM package, then you should not be able to select any parent members. If you look at the advanced script of this package, the first statement will be SELECTINPUT. This will restrict the selection only to base level members. Technically, you should not select the parent members, because, the parent lelve members doesnt hold any data.
    Hope this helps.

  • Error  with select stmt.

    Hi All,
    I am getting this error , can you please tell me what I am doing wrong with the select stmt.
    SELECT AFKDAT ANETWR B~KZWI1
                         FROM VBRK AS A INNER JOIN VBRP AS B ON
                              AVBELN = BVBELN
                              INTO (IOUT-FKDAT, IOUT-NETWR, IOUT-KZWI1)
                              WHERE B~VBELN = IOUT-VBELV
                              AND   B~POSNR = ISDOC-POSNR.
    Incorrect nesting: Before the statement "ENDIF", the structure          
    introduced by "SELECT" must be concluded by "ENDSELECT". -
    Thanks
    Veni.

    Hi All,
    I tried INTO CORRESPONDING FIELDS OF IOUT
    but with this also same error is comming. I am sending part of code.
    Please help me.
    Thanks
    Veni.
    TABLES: VBAK, VBAP, KNA1, VBRK, VBRP, VBFA.
    DATA: BEGIN OF ISDOC OCCURS 0,
            VBELN LIKE VBAK-VBELN,
            POSNR LIKE VBAP-POSNR,
            KUNNR LIKE VBAK-KUNNR,
            ERDAT LIKE VBAK-ERDAT,
            BSTNK LIKE VBAK-BSTNK,
            MATNR LIKE VBAP-MATNR,
            ARKTX LIKE VBAP-ARKTX.
    DATA: END OF ISDOC.
    DATA: BEGIN OF IOUT OCCURS 0,
            VBELN LIKE VBAK-VBELN,
            POSNR LIKE VBAP-POSNR,
            KUNNR LIKE VBAK-KUNNR,
            NAME1 LIKE KNA1-NAME1,
            ERDAT LIKE VBAK-ERDAT,
            BSTNK LIKE VBAK-BSTNK,       
            MATNR LIKE VBAP-MATNR,
            ARKTX LIKE VBAP-ARKTX,
            VBELV LIKE VBRP-VBELN,
            FKDAT LIKE VBRK-FKDAT,
            NETWR LIKE VBRK-NETWR,
            KZWI1 LIKE VBRP-KZWI1.
    DATA: END OF IOUT.
    FORM getdata.
      SELECT A~VBELN B~POSNR A~KUNNR A~ERDAT A~BSTNK B~MATNR B~ARKTX
             FROM VBAK AS A INNER JOIN VBAP AS B ON A~VBELN = B~VBELN
             INTO TABLE ISDOC
             WHERE A~AUART IN SAUART
             AND A~ERDAT IN SERDAT
             AND A~KUNNR IN SKUNNR.
               SORT ISDOC BY VBELN POSNR.
      LOOP AT ISDOC.
        MOVE-CORRESPONDING ISDOC TO IOUT.
        CLEAR: KNA1.
        SELECT SINGLE * FROM KNA1 WHERE KUNNR = ISDOC-KUNNR.
        IF SY-SUBRC = 0.
          MOVE KNA1-NAME1 TO IOUT-NAME1.
        ENDIF.
        SELECT VBELN INTO IOUT-VBELV FROM VBFA WHERE VBELV = ISDOC-VBELN
                                               AND   POSNV = ISDOC-POSNR
                                               AND   VBTYP_N = 'O'.
          IF SY-SUBRC = 0.
            SELECT A~FKDAT A~NETWR B~KZWI1
                   FROM VBRK AS A INNER JOIN VBRP AS B ON A~VBELN = B~VBELN
                   INTO CORRESPONDING FIELDS OF IOUT
    *               (IOUT-FKDAT, IOUT-NETWR, IOUT-KZWI1)
                         WHERE B~VBELN = IOUT-VBELV
                         AND   B~POSNR = ISDOC-POSNR.
              APPEND IOUT.
              CLEAR IOUT.
            ENDIF.
          ENDLOOP.
        ENDFORM.                    " getdata

  • Im a CC member , when i chose to download an app , i have error with adobe application manager pop up ?

    im a CC member , when i chose to download an app , i have error with adobe application manager pop up ?

    Abdulla Mohd what specific error message are you receiving?

  • Unspecified error (80004005) with LONG datatypes

    Hi,
    I am trying to create a recordset (using ADO/ASP) which has two or more LONG fields returned but an Unspecified error (80004005) is returned by the browser.
    Any help/hints on why this happening and whether this can be worked around.
    Thanks.
    null

    insert into temp values ('abc');
    cannot (must not) work, when the column is type long (thats a numeric type!!)
    -> here you get an ora- 00911 errorcode
    that the select doesn't work then should be clear.
    mfg f.humer

Maybe you are looking for

  • What's New in Adobe InDesign CC | Creative Cloud for Design | Adobe TV

    Terry White, Adobe worldwide evangelist, shows you the exciting new features in InDesign CC, including the new dark UI, an improved New Document dialog box, and font menu enhancements that make searching for fonts easier than ever and let you see liv

  • SD Related Queries

    Hello all, In our project we are using Automotive Industry module. so now i want to take Automotive module BW SD related queries from [http://help.sap.com/erp2005_ehp_04/helpdata/EN/50/296fe7bf1a474f84d5955cedefa0a3/frameset.htm] Please tell me BW sd

  • Where is the "Send" tab?

    We have a free account and send 3-4 agreements each month. Suddenly the "Send" tab is completely missing. How can I send contracts? I've logged in and out using Firefox and Explorer.

  • Leopard initial login problem!

    I just upgraded to Leopard from Tiger and everything went well in the installation, but I got the the login screen and tried to login but everytime it says, "your file-vault protected home folder did not open and needs to be repaired". So I tell it t

  • Has anyone ever heard of hearing aids in the same bag as an ipad causing the iPad to reset?

    Hi,  We have one user who's iPad keeps resetting itself and deleting all user setting and data.  This has happened several times, we have even traded out the iPad for a different one, same issue.  Apparently it is working when they put it into the ca