SAP Query missing in upgraded server

Hi All,
Our client has upgraded from SAP R/3 4.6c to ECC 6.0.
After the upgrade, in the new upgraded server some of the programs are missing. But they exist in the old version(4.6c)
The following are programs are missing in upgraded system:
1) AQA0NUCLEAR_OPS=TASKS_BY_DATE=
2) AQA0NUCLEAR_OPS=TASKS_BY_FLOC=
3) AQA0NUCLEAR_OPS=TASKS_BY_BUILD
4) AQA0NUCLEAR_OPS=TASKS_BY_CODE=
5) AQA0ZFI=========ZFIDOC3=======
I hope they are standard programs(Generated from an SAP/ABAP Query)…as they do not start with Y or Z
I would like to know why they are missing in upgraded system and whether they are auto generated programs (Generated by a SAP Query etc…)
IF any related notes are available to restore back on the upgraded system let me know
Regards
Shiva

Hi
These are all Query related programs.
they are not captured in Transport requests
and they are user and client dependent also.
No other way
they have to be developed/generated in ECC6.0 separately.
this is the drawback with the query/s
Reward points if useful
Regards
Anji

Similar Messages

  • PDV and SAP Query - Missing Date Params

    Hello,
    I am working on getting an SAP Query onto our MSS portal using the PDV SAPQuery template.  I want the query to report data as of 1/1/06 but cannot seem to get it to work.  I set up a variant in the system to set the dates but the iview seems to overwrite the date settings at runtime. 
    The function module that is called by this iview seems to be looking for the parameters Begin_Date and End_Date but the iview does not have any such parameters.  Are these supposed to be delivered with the template?  Is there a way to add them?  Has anyone else sucessfully implemented a time sensitive query in the PDV? 
    Thank you,
    Josh

    Hi Josh,
    I ran into the same problem.
    I cannot select any dates. When I run the query without variant, I get results valid only on the system date. If I try to use a query variant with a selected period, I get the message that no dates can be selected.
    Have you or anybody solved the problem?
    Beata

  • Need knowledge on sap upgrade 4.7 to ecc 6.0 in abap reports and sap query

    please give me some ideas and useful links on sap upgrade 4.7 to ecc 6.0 in abap reports and sap query

    Hi Jaya,
    Not very clear with your question.
    Are you looking for changes in areas od ABAP reports & SAP query when we upgrade SAP from 4.7 to ECC 6.0 ??
    If the response is YES, then please refer to SAP solution browser www.sapsolutionbrowser.com
    Define source release and target release .
    You will get module wise details on new features for target release.
    Hope this helps.
    Regards,
    Deepak Kori

  • SAP Query not generated after upgrade

    Hi All,
    Our client has upgraded from 4.6c to ECC 6.0
    In the upgraded server some SAP Queries have not been generated…and others have generated. I wanted to know why all are not generated….
    I also wanted to know if any table name exists which maintains query with generated program name…
    Please let me know your learning’s on SAP Query if any…
    Thanks in advance

    These generated program names are stored in AQLDB for local area and AQGDB for global area. Usually these program names will include the infoset names and the query names.

  • SAP query error - 1). [Microsoft][SQL Server Native Client 10.0][SQL Server]Conversion failed when converting date and/or time from character string.  'Received Alerts' (OAIB)

    SAP query error - 1). [Microsoft][SQL Server Native Client 10.0][SQL Server]Conversion failed when converting date and/or time from character string.  'Received Alerts' (OAIB)
    SELECT    
    CASE WHEN T0.DocStatus = 'O' THEN 'OPEN'
    WHEN T0.DocStatus = 'C' THEN 'CLOSED'  END  AS 'Document Status',
    T0.DocDate AS 'Posting Date',
    T0.DocNum AS 'Doc.No',
    T0.NumAtCard,
    T0.TransId AS 'Trans. No.',
    T0.Comments AS 'Remarks',
    T0.CardCode AS 'Offset Acct',
    T0.CardName AS 'Offset Acct Name',
    sum(T0.DocTotal) + (T0.WTSum) as 'DocTotal',
    T3.DueDate AS 'Cheque Date',
    T3.CheckSum AS 'Amount'
    FROM         ODPO AS T0 LEFT OUTER JOIN
                          VPM2 AS T1 ON T0.ObjType = T1.InvType AND T0.DocEntry = T1.DocEntry LEFT OUTER JOIN
         OVPM AS T2 ON T2.DocEntry = T1.DocNum LEFT OUTER JOIN
                          VPM1 AS T3 ON T2.DocEntry = T3.DocNum
    where T0.DocDate>='[%0]' and T0.DocDate<='[%1]'

    Hi,
    Try this:
    SELECT   
    CASE WHEN T0.DocStatus = 'O' THEN 'OPEN'
    WHEN T0.DocStatus = 'C' THEN 'CLOSED'  END  AS 'Document Status',
    T0.DocDate AS 'Posting Date',
    T0.DocNum AS 'Doc.No',
    T0.NumAtCard,
    T0.TransId AS 'Trans. No.',
    T0.Comments AS 'Remarks',
    T0.CardCode AS 'Offset Acct',
    T0.CardName AS 'Offset Acct Name',
    sum(T0.DocTotal) + (T0.WTSum) as 'DocTotal',
    T3.DueDate AS 'Cheque Date',
    T3.CheckSum AS 'Amount'
    FROM         ODPO  T0 LEFT OUTER JOIN
                          VPM2  T1 ON T0.ObjType = T1.InvType AND T0.DocEntry = T1.DocEntry
    LEFT OUTER JOIN
         OVPM  T2 ON T2.DocEntry = T1.DocNum LEFT OUTER JOIN
                          VPM1  T3 ON T2.DocEntry = T3.DocNum
    where T0.DocDate >= '[%0]' and T0.DocDate <='[%1]'
    group by T0.DocStatus,T0.DocDate ,
    T0.DocNum ,
    T0.NumAtCard,
    T0.TransId ,
    T0.Comments ,
    T0.CardCode,
    T0.CardName ,
    T0.WTSum ,
    T3.DueDate ,
    T3.CheckSum
    Thanks & Regards,
    Nagarajan

  • Sap query output to save on application server

    Hi All,
    I have one requirement, want to save the output of sap query on application server as a text file?
    Is there any work around?
    Regards
    Vasumathi
    Edited by: komma vasumathi on Nov 5, 2009 10:32 AM

    Hi Vasumathi,
    Application server path cannot be accessed unless otherwise using OPEN DATASET. More over, Infoset cannot be executed directly. It can be accessed through SAP Query only.
    Writing Logic for 2 or 3 tables with Inner Join will not be a big deal. Writing Abap program will be optimum for you FTP requirement.
    1. create a folder in AL11 as \sap\common\
    2.  create z program and Declare sel-screen parameters : selopt1, selopt2
    3. Query : Select Afield1 Afield2 Bfield1 Bfield2 from table1 as A inner join table2 as  B on Afield1 eq Bfield1 where Afield1 in selopt1 and Afield2 in selopt2  into corresponding fields of table itab.
    4. creating file  at application sever
          w_fileloc = '\sap\common\file.txt'
         OPEN DATASET w_fileloc FOR OUTPUT IN TEXT MODE ENCODING DEFAULT.
        . Loop itab into wa_itab.
          Transfer wa_itab to w_fileloc.
         clear w_fileloc.
        endloop.
    5. goto AL11 and check the file file.txt in  folder \sap\common
    Please let me know if you need more information or close this thread by offiering the points( If you are satisfied).
    Regards,
    Sakthivel N

  • SAP Query selection screen issues after ECC upgrade

    Hi all
    We have a custom query created and assigned to a custom transaction code, which after upgrade to ECC 6.0 we find that the selection screen layout is different from what was available in 4.6C system.
    All the fields required are available.
    However, the sequence of the fields on the screen is different from the 4.6C after the upgrade.
    Can anyone help identify the issue so that the issue can be resolved?
    Thanks
    Vinodh S

    Hi N_niki
    There is no resolution as such.
    We had raised a Customer message with SAP and were informed that this was expected as the procedure to execute the reports was changed in ECC when compared to 4.6 (technical changes) and hence this issue shall remain for some queries wherein the old changes need to be brought back using an option in the SAP Query.
    Please refer to SAP Note # 723577 which could provide a better explanation for the issue.
    Hope this helps.
    Thanks
    Vinodh Sudhakaran

  • Missing output format radio button in SAP Query

    Hi SAP Gurus
    We have SAP Query which as created in 4,6c. After the upgrade to ECC 6.0 We found that the output format radio button is mising in SAP Query. We are unable to choose teh output format. How can we have the radio button back?
    Appreciate yr help
    Rgds..Sanjay

    Dear Sanjay
    Refer OSS Notes 723577 and 132813, may be this notes helpfull.

  • Message: 'user' missing BI SAP Query Connector Test

    Dear all,
    The BI SAP Connector test to SAP R/3 system D01 results in :
    Portal version is EP7 SP15. Any help will be greatly appreciated.
    Error> occured >Tue Mar 31 13:42:56,777<
    RfcException:
    message: 'user' missing
    Return code: RFC_INVALID_PARAMETER(19)
    error group: 101
    key: RFC_ERROR_PROGRAM
    at com.sap.mw.rfc.api.RfcOptions.checkLogonData
    (RfcOptions.java:201)
    at com.sap.mw.rfc.api.RfcOptions.checkParameters
    (RfcOptions.java:498)
    at com.sap.mw.rfc.api.RfcApi.RfcOpen(RfcApi.java:707)
    at com.sap.mw.jco.MiddlewareJRfc$Client.connect
    (MiddlewareJRfc.java:1018
    at com.sap.mw.jco.JCO$Client.connect(JCO.java:3255)
    at
    com.sap.ip.bi.sdk.dac.connector.sapq.impl.Connection.connectDB(Connec
    tion.java:333)
    at com.sap.ip.bi.sdk.dac.connector.sapq.impl.Connection.connect
    (Connecti
    on.java:128)
    at
    com.sap.ip.bi.sdk.dac.connector.sapq.SapqManagedConnection.<init>(Sap
    qManagedConnection.java:117)
    at
    com.sap.ip.bi.sdk.dac.connector.sapq.SapqManagedConnectionFactory.cre
    ateManagedConnection(SapqManagedConnectionFactory.java:117)
    Best Regards, Neeta

    hi Aamod;
    it seems like you already have your BI SAP Query system working properly, if you can use it in the BI Integration Wizard. what's the problem you're seeing in VC?
    systems created with the BI SAP Query Connector are relational systems and therefore expose tables and fields in VC. via the BI Connector, these systems are 'lent' BI functionality and you can use these tables in the BI Integration Wizard, as you've seen. you might therefore call these "relational BI systems" (just like systems created with the BI JDBC Connector are).
    if you have consulted the System Landscape documentation on configuring properties for a BI SAP Query System (<a href="http://help.sap.com/saphelp_nw04s/helpdata/en/4b/9afe3323d14005a283dee9101c66fc/frameset.htm">here</a>) and you're still having problems connecting with the BI SAP Query Connector, i'd suggest you write up a CSS message.
    hope it helps;
    -m

  • SQ03 - User Groups missing after Upgrade

    Hi,
    Recently we have upgraded to ECC 6. We have noticed that our SAP Query user groups are missing. We have some reports which we need to access. Any clue?
    Thanks in advance
    Regards
    GB

    http://help.sap.com/saphelp_me52/helpdata/EN/47/1e533e5ff4d064e10000000a114084/frameset.htm

  • Error when uploading SAP query in ECC6 from 4.5B system

    Hi expert ,
    I have down loaded SAP Query(infoset) from 4.5B server and now i want to upload this query to ECC6.0.  when i upload this query(infoset) to ECC 6 as follows to download step like from SQ02 .  but after executing i am getting error
    "  infoset ZTEST (import option REPLACE)"
    " F | Error When generating Transport dataset
    I am following all steps even created user group in sq03 which it is in my 4.5b system.
    Thanks
    Chandra

    Hello,
    It won't usually work when you try to download a infoset from a older release and try to upload in a newer version. However there is a workaround for this.
    If you debug the program while uploading, you will notice that certain if conditions fail on a few fields in the file you are trying to upload are missing. What i would suggest you to do is, download any infoset from your ECC 6.0 version and keep it as a reference for filling these missing fields into the older version infoset you are trying to upload.
    Vikranth

  • Batch generation of sap query

    Hello there,
    I am looking for a way to generate program of sap query in one go. There are hundreds of sap queries are used in our system and programs are lost after system upgrade.
    So I am wondering if there is a standard program to do it automatically.
    Any input is welcome.
    Regards,
    Kazuya Imabayashi

    Dear Mathias,
    You have to do the step with the RFC Destination created. Did you select the load type as Initial Download? (Edited to contain the word Download)
    Did you check out the  following notes for SP07: 1263664, 1268773. Please make sure that you apply all the compulsory notes.
    Also try restarting the server and trying the step again.
    Also, just as a confirmation, are you doing it from the client you created or client 000. Are the general post installtion stms, initial profiles done?
    Regards,
    Veera
    Edited by: Veeraraagavan R on Jan 9, 2009 9:05 PM

  • RSA1 DB Connection from SAP BW to external SQL Server databas.

    Hello,
    I am trying to connect our SAP BW system with SQL Server Source System through DB Connect in transaction RSA1.
    Our BW system is running on Windows and MaxDB platform, therefore have I already added the latest dbmssslib.dll library to the kernel for SQL Server.
    But the connection does not work anyhow, I recieve the error "Database error -1 at CON > [DBNETLIB][ConnectionOpen (Connect()).]SQL Server does > exist or access denied." and I am quite sure that my input parameters are correct.
    Therefore I wonder if someone has run into a similar problem and what the problem could be?
    Best Regards,
    Niklas Sandstedt

    Hi,
    I am sorry that my case was assigned to wrong forum.
    That should now have been corrected, however my problem still remains unsolved in one of our systems.
    I found note 178949, which fixed the problem in one system. But even though the system setup seems to be identical, the two systems appears different.
    The following has been done for both systems:
    1. Upgraded kernel to 701 version 111 and added dbmssslib.dll and dbmssslib.pdb files
    2. Created Logical system in BD54.
    3. Tried to create DB connection in transaction DBACOCKPIT.
    In the third step, the setup fails and I receive the following error message when I test the connection:
    Database error -1 at CON > [DBNETLIB][ConnectionOpen (Connect()).]SQL Server does not > exist or access denied.
    Database error -1
    All profile parameters AL11-directories also seems to be correct in both systems, so both should find the dbmssslib.dll file.
    One issue that I see is in DBACOCKPIT, the checkbox for "SAP Systems with basis release" is unchangeble and marked. This however, I think was changed in the other system automatically when the connection was established successfully.
    Has anyone run into the same problem?
    Best Regards,
    Niklas Sandstedt

  • What is the difference in Webintelligence while using SAP BW or MS SQL Server

    Hi Experts,
    What is main difference in using SAP BW and MS SQL server in SAP BO while creating Reports using Web intelligence, Crystal reports. I want to know mostly on Report Level difference.

    Hi,
    I Have not used Crystal with Ms SQL server but webI i can tell .
    SAP BW is OLAP Layer .
    M S SQL Server is Database .
    You can Edit your Web Intelligence Query SQL Code in MS SQL Server .
    Not in SAP BW .
    Combined Query is Disable in SAP BW but it is available in SQL Server .
    Performance wise SAP BW Query is better because it calculates every thing in SAP BW & gives us Required Out .

  • Assigning a SAP Query to Transport Request

    Hi Friends
    I have a SAP Query, now I want it to transport to the other system, while saving the query it is not prompting for transport request. Is there any possibility to assign that SAP Query to a transport request, if yes, please let me know the process.
    Regards
    Praveen

    Dear All,
    This regarding creation of SAP Query .
    Situation:
    Infosets and User Groups were created in a DEV SERVER CLIENT 200 and saved in a request ie.REQ01
    Now i wanted to create a Query QU01 in the Same User Group  in DEV SERVER CLIENT 210  so i tried creating a Infoset but i get this error message
    Note: I am not able to create & save an Infoset.
    Message no. TK414
    Diagnosis
    You cannot edit request D01K901880 of user X00012, since this request is reserved for changes in client 200. You are logged on to client 210.
    Can anyone clear this error? what is the solution?
    Thanking You
    Andrew

Maybe you are looking for

  • Two users on same machine working on same iWeb site

    Hi We have two users on our new iMac because some things we want to keep separate. But we both want to work on our iWeb site when we feel like it, from our own account. I copied the domains file into Users\Shared and it appeared we could both work on

  • Automatic credit release of blocked Sales orders with pre payment

    Hi , We have a requirement as given below.Please suggest a better solution for this. The customers have the 'prepayment ' payment terms with different percentages of the sales order value to be paid before the delivery creation. When the sales orders

  • Facing issue while deploying in oracle 10G application server

    java.lang.NoClassDefFoundError      at com.sun.xml.ws.wsdl.parser.RuntimeWSDLParser.parseBinding(RuntimeWSDLParser.java:460)      at com.sun.xml.ws.wsdl.parser.RuntimeWSDLParser.parseWSDL(RuntimeWSDLParser.java:357)      at com.sun.xml.ws.wsdl.parser

  • CreateSparseDisk error using Convert-WindowsImage.ps1 to create VHD for Windows 10 Preview

    I have been trying to use convert-windowsimage.ps1 to create a Windows 10 .VHD under Windows 8.1 (inside VirtualBox) .\convert-windowsimage.ps1 -Sourcepath .\install.wim -Edition Professional -VHDFormat VHD -DiskType Fixed -SizeBytes 40GB -VHDPath .\

  • Desperate help need with Document Listener

    I'm working on a very cool freeware Java text editor, that is working beautifully, except for the code used to change the color of reserved words, etc, on the fly... At the moment, I use a documentlistener. When text is inserted, I need to color some