Report RV13ANAH could not be generated

Hello Experts,
I have one issue.  In VK13, I give the condtion type and click the Condition information button.  I get the error as Report RV13ANAH could not be generated.  The program RV13ANAH has syntax error which I found out.  The error is table A902 doent have a field KFRST and KBSTAT.  But the program has these two fields in the SELECT statement
  SELECT * FROM A902 into table t_A902
    WHERE KAPPL =  KAPPL
      AND KSCHL =  KSCHL
      AND AUART_SD IN F001
      AND VKORG IN F002
      AND KUNNR IN F006
      AND KFRST IN F007
      AND KBSTAT IN F008.
I need to remove these two fields from the program.  But i believe this can be done only by generating the table or access or access sequence or doing some settings in the customizing.  I do not know what exactly to be done.  Could anyone please let me know what needs to be done.
Cheers,
Balaji

Hello Venkatesh,
In KE4A, I dont get 902 table at all.  any other clue.
Cheers,
Balaji

Similar Messages

  • Code could not be generated because an external component or driver is missing

    Greetings All,
         I've using Labview for a little over a year and I have an interesting situation with regards to Labview that I came across today.  When I left off yesterday (01/11/12) my TestStand sequence was compiling fine.  Today for some reason the compiler told me that one of the VI was broken or missing a sub vi.  When I made my way through all the sub vi's in the vi that seemed to be a problem I came across "Code could not be generated because an external component or driver is missing".
         The problem started on the computer (NI PXI-8101 with WinXP and Labview 2010) located in a PXI-1044 that is in my Test Stand.  I have a complete backup on my laptop and my desktop computer which both compiling successfully with no errors.  I tried installing the directory on another PXI-8101 and got a different set of results.  The first PXI-8101 gave 100+ errors in TestStand pointing to one of my vi's and the other PXI-8101 reported only one (1) error.  The vi is basically using DAQmx vi's to create a "write to one line" action.  I'm kind of stumped as to why it works on the laptop/desktop and not the PXI computers.  All four computer are WinXP professional and Labview 2010.  I saw somethings through google search engine but nothing conclusive.  I'm hoping that someone can give me an explaination as to what is causing the error as described.  Even if I copy over the directory it doesn't fix the problem.  Thank you in advance for an information you provide with this rather interesting problem that I've encountered.  If you require addition information let me know.
    Regards,
    Scott
    Solved!
    Go to Solution.

    Greetings Beau,
         Thank you for the reply.
         I loaded the offending VI into Labview (2010) with TestStand inactive.  Of course this was after I completely shutdown the computer and re-booted to ensure that nothing was resident in memory.  I've included a couple of the error list boxes in this post. 
         It comes down to a subvi that is two (2) subvi's deep.  All these vi's are doing is commanding a write or read to and from the PXI-6509.  When I check the VI at the level that has no broken run arrows (named below), nothing in the block diagram looks out of place as it should since these were installed by Labview installation.  The vi that uses these vi's looks total normal and its block diagram doesn't have anything out of the ordinary yet the run arrow is broken.  The odd part of this is that the top of the window that states the filename of the vi has an astrex at the end of the filename, even though nothing has changed in that vi.  
    Here is a list of the deepest level that has no broken run arrow:
    DAQmx Create Channel (DI-Digital Input).vi
    DAQmx Start Task.vi
    DAQMX Read (Digital Bool 1Line 1Point).vi
    DAQmx Clear Task.vi
    DAQmx Create Channel (DO-Digital Output).vi
    DAQmx Write (Digital U8 1Chan 1Samp).vi
         I guess the real question is what is the error message ("External component or driver missing") really telling me if all of the vi's look right.  I appreciate any information you can send my way that will give me a better understanding of where this error is coming from.  The program I developed had been running without a hitch for a month an all of sudden crash.
    Thank you for your time in this matter.
    Scott
    Attachments:
    Write to one port broken VI error list.JPG ‏47 KB
    Readfrom one line broken VI error list.JPG ‏46 KB
    Broken_VI_Error_Screen.JPG ‏56 KB

  • Error: The report source could not be retrieved from the state object.

    I have been trying to create a report in a JSF page. The relevant parts are below:
    Inside the JSP page, this is the code:
                  <jsp:useBean id="MyBean" class="com.nm.facade.rto.POJOViewerBean" scope="session" />
                    <jsp:setProperty name="MyBean" property="reportLocation" value="Report1.rpt" />
                   <v:reportPageViewer reportSource="#{MyBean.reportSource}"
                                           displayToolbarPrintButton="true"
                                           printMode="ActiveX"
                                           zoomPercentage="100"
                                           displayToolbarExportButton="true"
                                           displayToolbarRefreshButton="true"
                                           viewerName="My Viewer"
                   ></v:reportPageViewer>
    In the backing bean, this is the relevant code:
        public Object getReportSource() throws ReportSDKException
            if (propertiesChanged || reportSource == null)
                propertiesChanged = false;
                if (reportLocation == null)
                    throw new RuntimeException("The reportLocation property must be set before a report source is retrieved");
                ReportClientDocument rcd = new ReportClientDocument();
                rcd.setReportAppServer(ReportClientDocument.inprocConnectionString);
                rcd.open(reportLocation, 0);
                DatabaseController dbc = rcd.getDatabaseController();
                //Create the POJO collection and populate it with data
                ReportData[] data =
                  new ReportData("B.B.", "King", 6, new Date(25, 9, 16)),
                    new ReportData("Muddy", "Waters", 7, new Date(15, 4, 4)),
                    new ReportData("John Lee", "Hooker", 8, new Date(16, 8, 16)),
                    new ReportData("Otis", "Rush", 9, new Date(34, 4, 29)),
                    new ReportData("Buddy", "Guy", 10, new Date(36, 7, 30))
                //Create the result set from the collection of POJOs
                POJOResultSetFactory factory = new POJOResultSetFactory(ReportData.class);
                factory.setVerbose(true);
                POJOResultSet results = factory.createResultSet(data);
                ResultSetMetaData metaData = results.getMetaData();
                //Set the resultset as the report datasource
                      //Get the table name from the 'Set Datasource Location' dialog in the Crystal Reports designer
                String reportTable = "getReportDataDataSource";
                dbc.setDataSource(results, reportTable, reportTable);       
                IReportSource reportSource = rcd.getReportSource();
                if (reportSource == null)
                    throw new RuntimeException("Unable to get a report source.");
            return reportSource;
    In the CRConfig.xml, this is what is there:
    <?xml version="1.0" encoding="utf-8"?>
    <CrystalReportEngine-configuration>
        <reportlocation>../reports</reportlocation>
        <timeout>0</timeout>
        <ExternalFunctionLibraryClassNames>
             <classname></classname>
        </ExternalFunctionLibraryClassNames>
    </CrystalReportEngine-configuration>
    The report template 'Report1.rpt' is packaged under WEB-INF/reports in the war file.
    When I try to generate the report by accessing the JSF page, I am getting an error: "The report source could not be retrieved from the state object. "
    I am not sure what is wrong. Can someone help me in resolving this issue?
    Edited by: renshai on Jul 9, 2009 3:21 AM

    My formatting gets lost and the message looks unintelligible. After some experimentation, I found that if the message exceeds some length, the formatting is removed. Since I couldn't find any way to delete this post, I made another post with the same subject. Please ignore this post and help me to find a solution for the problem posted in the other thread with the same subject. Thanks in advance.

  • Error: Object type '' could not be generated when creating sales order

    Hello Friends,
    I am using a SAP standard ITS service to create sales order.
    When I am creatin SO, it gives me error Object type '' could not be generated.
    Can you plz suggest me what is that issue & how I can reslove it.
    Regards,
    Narendra

    any inputs around this plz??

  • "Some updateing commands could not be generated ....." error

    Hi all,
    I am accessing an Oracle server on which I have READ ONLY rights. I am trying to create a DataSet. When I do so, I get an error:
    Some updating commands could not be generated automatically. The database returned the following error:
    This object has been deleted.
    1) Is this just because my access is readonly?
    2) A different message might be preferred ("code to submit updates was not created due to limited user rights" or some such.
    3) Can I use this even with the error or will I have other problems because the process did not complete correctly?
    Thanks,
    JustMe

    Can't remember how I solved this, but it is solved.

  • Posting rule for assembly order for item 000000 could not be generated

    Hi all,
        While creating production order from sales order system giving an error message 'Posting rule for assembly order for item 000000 could not be generated.'
        Kindly help to resolve the issue.
    SmanS

    Dear SAP PP Consultant ,
    What is the strategy group you are maintained in the material master ?

  • Screen "SAPMJ1IFN" 1110 could not be generated.

    Hi,
    I'm creating sub contracting challen tcode J1IF01.
    Here i'm getting runtime error is Screen "SAPMJ1IFN" 1110 could not be generated.
    Please guide me where i'm mistake in Sub Contracting.
    Regards,
    Balakrishna G

    Hi Sabu,
    The problem is caused by your customizing include, most probably the one in table QMEL.
    Field ZZMTART has been created before in one of these CI structures, but some how was deleted it at later stage.
    .INCLUDE     CI_QMEL
    .INCLUDE     /SAPSMOSS/ATTRIBUTES
    .INCLUDE     CLAIM_MANAGEMENT
    One way to solve the issue, is by recreating this field again in the customizing include. Or you take it out from the screen enhancement of transaction IW21. You can check the screen enhancement in CMOD. Customizing include changes and screen enhancement changes better to be done after office hour, as the activation normally takes quite some time, and will cause short dump if users are running transaction which tables has the customizing include.
    Regards,
    Lim...

  • Some backend documents could not be generated or are incorrect - Contract

    Hi SRM Experts,
    I am trying to create Contract with Carry out Sourcing and reference to Shopping Cart. But, I am able to create Contract with Error like "Some backend documents could not be generated or are incorrect". Please let me know do I need to do any configuration settings or implement OSS Note to fix for my problem.
    Kind Note: System is not updating Purchasing Organisation and Purcgasing Group at Contract Header Level. I treid to use BAdI (change BAdI) to update Organisation details - got Organisation details from Shopping Cart and updated in Contract change BAdI (Org Structure).
    SRM Version: 4.0 with Extended Classic scenario.
    Thanks a lot in advance for your help.
    Thanks,
    Sudarsan

    Hi Muthu / SRM Gurus,
    I removed BAdI implementation for Contract. I am still gettign error message.
    When I create contract from Carry Out Sourcing I am geeting error message "Some backend documents could not be generated or are incorrect" and when I create contract with Process Contract I am not getting any error.
    Can anyone guide me or suggest me to fix this issue?
    Thanks a lot in advance.
    Thanks,
    Koyya

  • Compile error (Code could not be generated)

    When I try to run the attached vi I get the following error message "Code
    could not be generated correctly for this VI."
    I use Labview 7.1 under Windows XP.
    Attachments:
    ParSettings.zip ‏293 KB

    The "Representation" enum is defined differently in the "SDO Par In", "SDO Par", PDO Par In" and "PDO Par" clusters. Labview does apparently not recognice this and crashes instead of warning for incompatible data types.

  • Simulation Loop: Code could not be generated correctly for this VI

    Running LabView Simulation 8.2 on Windows XP laptop.  I have a Simulation Loop that keeps generating the following error message:
    "Simulation Loop: Code could not be generated correctly for this VI"
    The only reference I can find in my searches is to using an RTX target, which does not apply.  When I click on Show Error it just highlights the Sim Loop
    Any ideas on how to debug this?

    Perhaps you can start removing things until you don't get the error any more. How big is the code in the loop?
    Mike...
    Certified Professional Instructor
    Certified LabVIEW Architect
    LabVIEW Champion
    "... after all, He's not a tame lion..."
    Be thinking ahead and mark your dance card for NI Week 2015 now: TS 6139 - Object Oriented First Steps

  • Runtime error Screen "SAPLXQQM" 0100 could not be generated.

    Hi All,
    I have one issue with IW21 transaction code( Create PM Notification: Initial). When I'm trying to crteat a Notification of type L1( GEBS LEV PM request ), its going to dump showing the runtime error as,
    "At the screen generation it was detected that a screen to be generated has a syntax error or could not be generated due to another error."
    Error analysis
        Screen "SAPLXQQM" 0100 could not be generated.
    Trigger Location of Runtime Error
        Program                               SAPLXQQM
        Include                                 LIQS0O90
        Row                                     20
    I'm using ECC 6.0 version.
    When we do syntax check of the progran or screen it is showing syntax error " Field VIQMEL-ZZMTART is not in the data Dictionary'.
    Please help me in this.
    Thanks & Regards,
    Sabu.

    Hi Sabu,
    The problem is caused by your customizing include, most probably the one in table QMEL.
    Field ZZMTART has been created before in one of these CI structures, but some how was deleted it at later stage.
    .INCLUDE     CI_QMEL
    .INCLUDE     /SAPSMOSS/ATTRIBUTES
    .INCLUDE     CLAIM_MANAGEMENT
    One way to solve the issue, is by recreating this field again in the customizing include. Or you take it out from the screen enhancement of transaction IW21. You can check the screen enhancement in CMOD. Customizing include changes and screen enhancement changes better to be done after office hour, as the activation normally takes quite some time, and will cause short dump if users are running transaction which tables has the customizing include.
    Regards,
    Lim...

  • "The PDF could not be generated"

    I need to download a page to my hard drive and when I click "Printer-friendly Version" I get the a pop-up box with the message, "The PDF could not be generated".
    That's it. Any ideas?
    Thanks.
    Staten.islander

    Got a link to the site that has the PDF? Sounds like it's being dynamically generated but there could be something wrong.

  • MS Office 2004 reports "Word could not create the work file."

    I have searched the world for the solution and apparently nobody else has this problem. When opening any document (.doc) Word will report "Word could not create the work file. Check the amount of disk space on your start up drive."
    There are 40 gigs free. There is 2 gig of memory. It's the only app open.
    Is there a solution to this problem other then not using Word at all?

    I'm learning more about the doc file in question.
    Evidently it was created on Windows about 4 years
    ago. If I Save As... the file and click the
    Compatibility button it complains about a missing
    "linked" file. While this might be the cause of the
    problem there doesn't seem to be any way of fixing it
    short of finding a time machine and wacking the
    creator before they wrote a word. If I go ahead and
    save the document Word crashes and corrupts the
    original file (err the back up of the back up of the
    original file).
    I think you may have to give up on this one.
    A "linked file" is a reference pointer within the main word document that tells word to locate another file and incorporate it into the document by reference (but not include the actual contents of the linked file)
    Since you say "If I Save As... the file and click the Compatibility button..." you can get into the document.
    So try turning on invisibles, and find the reference to the linked file. You may also be able to find it by turning on Document Map.
    Delete the link, and that should take care of the crashing problem.
    Of course, your file will not be 'complete' but thats a differnet problem.

  • Web Template URL for Web Template ZTEST could not be Generated

    Hello Experts,
                           I have designed a Template in WAD with the name ZTEST(example) when i am trying to execute it in Browser, it is throwing an error like "Web Template URL for Web Template ZTEST could not generated". I am working on 7.0 WAD
    Please suggest me if there is any settings to done.
    Thanks in Advance,
    Regards,
    Vishnu.

    Hello Mr. Wond,
                                Even if i am Executing using a default Template it is throwing the same error that " Web Template URL could not be generated". Meanwhile when i am working on this issue i found that some Command URLs should be defined, but i am unable to trace where to define this URL Command like <a href=u201Dhttp://myAppServer:myPort/SAP/BW/BEx?pageno=1&request_no=8&cmd=ldoc&template_id=EXAMPLE_TEMPLATEu201C></a>
    Please suggest..................
    Regards,
    Vishnu.

  • Invalid Response Code: (500) WSDL could not be generated

    Hello,
    Im trying to test an endpoint of an enterprise service that is already configured through the Service Registry, but, after I log to the backend thtough WSNavigator the following problem occurs,
    Invalid Response Code: (500) WSDL could not be generated. The requested URL was:"http://smindev0.minsur.com.pe:8000/sap/bc/srt/wsdl/bndg_DF046A5091DCB8F1A0FD0017A4770400/wsdl11/binding/ws_policy/document?sap-client=400"
    In the lg viewer I have this exception detail,
    Invalid response code while loading WSDL:
    http://smindev0.minsur.com.pe:8000/sap/bc/srt/wsdl/bndg_DF046A5091DCB8F1A0FD0017A4770400/wsdl11/binding/ws_policy/document?sap-client=400, responseCode: 500
    [EXCEPTION]
    com.sap.engine.services.webservices.jaxrpc.exceptions.WebserviceClientException: GenericServiceFactory initialization problem. [Problem with WSDL file parsing. See nested message.]
    at com.sap.engine.services.webservices.espbase.client.dynamic.GenericServiceFactory.createService_NewInstance(GenericServiceFactory.java:667)
    at com.sap.engine.services.webservices.espbase.client.dynamic.GenericServiceFactory.createService_NewInstance(GenericServiceFactory.java:130)
    at com.sap.engine.services.webservices.espbase.client.dynamic.GenericServiceFactory.createService(GenericServiceFactory.java:119)
    at com.sap.esi.esp.wsnavigator.ManualTestView.createServiceByWSDL(ManualTestView.java:426)
    at com.sap.esi.esp.wsnavigator.ManualTestView.onEventWSDLSelected(ManualTestView.java:1553)
    at com.sap.esi.esp.wsnavigator.wdp.InternalManualTestView.wdInvokeEventHandler(InternalManualTestView.java:526)
    at com.sap.engine.core.thread.execution.Executable.run(Executable.java:96)
    at com.sap.engine.core.thread.execution.CentralExecutor$SingleThread.run(CentralExecutor.java:314)
    Caused by: com.sap.engine.services.webservices.jaxrpc.exceptions.ProxyGeneratorException: Problem with WSDL file parsing. See nested message.
    at com.sap.engine.services.webservices.espbase.client.ProxyGeneratorNew.loadWSDLapi(ProxyGeneratorNew.java:638)
    ... 93 more
    Caused by: com.sap.engine.services.webservices.espbase.wsdl.exceptions.WSDLException: Invalid Response Code: (500) WSDL could not be generated. The requested URL was:"http://smindev0.minsur.com.pe:8000/sap/bc/srt/wsdl/bndg_DF046A5091DCB8F1A0FD0017A4770400/wsdl11/binding/ws_policy/document?sap-client=400"
    at com.sap.engine.services.webservices.espbase.wsdl.WSDLLoader.loadDOMDocument(WSDLLoader.java:145)
    at com.sap.engine.services.webservices.espbase.wsdl.WSDLLoader.load(WSDLLoader.java:90)
    at com.sap.engine.services.webservices.espbase.wsdl.WSDLLoader.load(WSDLLoader.java:79)
    at com.sap.engine.services.webservices.espbase.client.ProxyGeneratorNew.loadWSDLapi(ProxyGeneratorNew.java:632)
    ... 97 more
    Caused by: com.sap.engine.services.webservices.jaxrpc.exceptions.InvalidResponseCodeException: Invalid Response Code: (500) WSDL could not be generated. The requested URL was:"http://smindev0.minsur.com.pe:8000/sap/bc/srt/wsdl/bndg_DF046A5091DCB8F1A0FD0017A4770400/wsdl11/binding/ws_policy/document?sap-client=400"
    Please help.
    Thanks & Regards
    SU

    Hello Christian,
       I put the same url in the browser as you said and it shows an error:
      "Unexpected error: Incorrect value: Location URL for subject IF " - "Incorrect value: Location URL for subject IF :SupplierBasicDataByIDQueryResponse_In not found".
      I analyzed the url of the SR, it is,
    http://XXXX:XXX/sap/bc/srt/wsdl/bndg_DF046A5091DCB8F1A0FD0017A4770400/wsdl11/binding/ws_policy/document?sap-client=400
    But, if I change the word "binding" for "allinone" it works.
    I have problems with this when I am working in Web Dynpro importing a web service model from the Service Registry (it always call the url - "with binding word").
    Do you know how can I solve this?
    Thanks
    Regards
    SU
    Edited by: soauniverse on Jan 20, 2010 2:56 PM

Maybe you are looking for

  • Mail not saving drafts?

    I am using Mail in OS X 10.4.7. I know it is supposed to save messages as drafts as they are composed. My Mail refuses to do that. Either when i click on Save as Draft or when it autosaves in the background, I get a message saying mail cannot save th

  • Extending JComponent  and creating new derived class

    <!--[if gte mso 9]><xml> Normal 0 false false false EN-US X-NONE X-NONE MicrosoftInternetExplorer4 </xml><![endif]--><!--[if gte mso 9]><xml> </xml><![endif]--> <!--[if gte mso 10]> <style> /* Style Definitions */ table.MsoNormalTable {mso-style-name

  • Restoring my files on a new user profile

    On a macbook 10 i changed the details of the user profile and it automatically upgraded the profile into yosemite mode      How do I retrieve all the files I used to have?

  • Oracle 9.2.0.1 query bug?

    The following test case gives different results on Oracle 9.2.0.1 and 10g. 10g and 3 other competing database products give the answer as FILES_ID VIEW1_ID VIEW2_ID 1 1 1 while Oracle 9.2.0.1 yields FILES_ID VIEW1_ID VIEW2_ID 1 1 1 2 The test case is

  • Rolluptime (LastDataRefresh) on infosets

    Hello, We have in our BW 3.5, infoproviders with information from MIC compontent (Internal Control). These infoproviders are mainly infosets that sometimes join ODS and characteristics (type 1), but sometimes have just characteristics as its componen