Problem : Spool Request 0 does not exist ..

Hi, I have a report to be converted to PDF format and then download the pdf as a local file. The code are as below.
My problem is each time i execute my program, it will show me a message saying "Spool request 0 does not exist". Then i wil have to delete that particular code (the code below), activate the program and then copy and paste back the code (the code below from elsewhere) and activate it again. The code i copied is exactly the same, nothing is changed. But i dont want to practice this method everytime i execute my program.
What are the cause to this problem and how should i solve it ? Please advise me..
Thanks.
Extracted Code ****
*&      Form  print_pdf
FORM print_pdf .
STRUCTURES
  DATA: mstr_print_parms LIKE pri_params,
        mc_valid(1)      TYPE c,
        mi_bytecount     TYPE i,
        mi_length        TYPE i,
        mi_rqident       LIKE tsp01-rqident.
INTERNAL TABLES
  DATA: mtab_pdf    LIKE tline OCCURS 0 WITH HEADER LINE,
        mc_filename LIKE rlgrap-filename.
  CONCATENATE 'c:\EEOReport-' sy-datum '_' sy-uzeit '.pdf' INTO mc_filename.
Setup the Print Parmaters
  CALL FUNCTION 'GET_PRINT_PARAMETERS'
    EXPORTING
      destination    = space
      copies         = '1'
      list_name      = space
      list_text      = space
      immediately    = space
      release        = space
      new_list_id    = 'X'
      expiration     = '1'
      line_size      = 132
      line_count     = 65
      layout         = 'X_65_132'
      sap_cover_page = 'X'
      receiver       = 'SAP*'
      department     = ''
      no_dialog      = 'X'
    IMPORTING
      out_parameters = mstr_print_parms
      valid          = mc_valid.
  IF mc_valid <> space.
    NEW-PAGE PRINT ON PARAMETERS mstr_print_parms NO DIALOG.
    NEW-PAGE PRINT OFF.
  ENDIF .
Make sure that a printer destination has been set up
If this is not done the PDF function module ABENDS
  IF mstr_print_parms-pdest = space.
    mstr_print_parms-pdest = 'LOCL'.
  ENDIF.
Explicitly set line width, and output format so that
the PDF conversion comes out OK
  mstr_print_parms-linsz = 132.
  mstr_print_parms-paart = 'X_65_132'
Find out what the spool number is that was just created
  PERFORM get_spool_number USING sy-repid
             sy-uname
    CHANGING mi_rqident.
Convert Spool to PDF
  CALL FUNCTION 'CONVERT_ABAPSPOOLJOB_2_PDF'
    EXPORTING
      src_spoolid              = mi_rqident
      no_dialog                = space
      dst_device               = mstr_print_parms-pdest
    IMPORTING
      pdf_bytecount            = mi_bytecount
    TABLES
      pdf                      = mtab_pdf
    EXCEPTIONS
      err_no_abap_spooljob     = 1
      err_no_spooljob          = 2
      err_no_permission        = 3
      err_conv_not_possible    = 4
      err_bad_destdevice       = 5
      user_cancelled           = 6
      err_spoolerror           = 7
      err_temseerror           = 8
      err_btcjob_open_failed   = 9
      err_btcjob_submit_failed = 10
      err_btcjob_close_failed  = 11
      OTHERS                   = 12.
  CALL FUNCTION 'DOWNLOAD'
    EXPORTING
      bin_filesize = mi_bytecount
      filename     = mc_filename
      filetype     = 'BIN'
    IMPORTING
      act_filename = mc_filename
    TABLES
      data_tab     = mtab_pdf.
ENDFORM.                    " print_pdf
*&      Form  get_spool_number
FORM get_spool_number  USING    P_SY_REPID
                                P_SY_UNAME
                       CHANGING P_MI_RQIDENT.
DATA: lc_rq2name LIKE tsp01-rq2name.
  SELECT * FROM tsp01 WHERE  rq2name = lc_rq2name
  ORDER BY rqcretime DESCENDING.
    P_MI_RQIDENT = tsp01-rqident.
    EXIT.
  ENDSELECT.
  IF sy-subrc NE 0.
    CLEAR P_MI_RQIDENT.
  ENDIF.
ENDFORM.                    " get_spool_number

Hi.. i've added this line
  submit (sy-repid) to sap-spool without spool dynpro
                                         spool PARAMETERS mstr_print_parms
                                         and return.
added before
*-- Find out what the spool number is that was just created
  perform get_spool_number using sy-repid
             sy-uname
It will keep going back to my selection-screen unless i click the back button. when i click on the back button it will only convert the pdf file and it can be converted succesfully. Is there any way where i can modify the code so that it wont return to the selection-screen again and again when i click one execute ??
Please assist... i need this urgently.. thanks

Similar Messages

  • 'Stream requested does not exist' error while importing MPEG-2 file.

    Hi.
    I received the following error when attempting to import an MPEG-2 file as a Timeline:
    'Stream requested does not exist'
    What does this mean?
    Thanks,
    William Johnston

    Let me introduce you to the SEARCH link
    http://www.adobeforums.com/cgi-bin/webx?126@@.1de98ec0
    Go there and enter
    Stream requested does not exist
    As well as this message thread, there are over a dozen other messages you may read
    If you don't find a solution... come back here and post more information
    Always provide DETAILED computer and software information, including all hardware and software brand/model and version numbers, with DETAILS about the input files you are using and any output files you wish to create, plus read
    How to ask a GOOD Forum question with COMPLETE information
    First message gives 5 specific suggestions (you may do #5 for FREE, depending on your problem and purchase date) and then tells how to ask a question in such a manner that you provide all the information that you WILL be asked, for anyone to be able to provide an answer
    Second message has advice, and links, concerning optimizing a computer for video editing
    Third message concerns things that USED to work, but now do not (and more questions to answer)
    Also, for Premiere Pro, check the
    Wiki FAQ

  • Connect-SPOService : The Application ID (AppID) for which the service ticket is requested does not exist on the system.

    I am trying to connect to SharePoint in my Office 365 environment by following https://support.office.com/article/Set-up-the-SharePoint-Online-Management-Shell-environment-7b931221-63e2-45cc-9ebc-30e042f17e2c and I am getting:
    Connect-SPOService : The Application ID (AppID) for which the service ticket is requested does not exist on the system.
    Is there some setting I need to change on the O365 side? Thanks.

    Hi,
    Based on your description, my understanding is that you want connect SharePoint Online using PowerShell.
    Please make sure that the following software is installed.
    Windows Management Framework 3.0
    SharePoint Online Management Shell
    And then, open the SharePoint Online Management Shell and use the Script below to test
    whether it works.
    $User = "[username]@[tenant].onmicrosoft.com"
    $Pass = "[password]"
    $creds = New-Object System.Management.Automation.PSCredential($User,(ConvertTo-SecureString $Pass -AsPlainText -Force));
    Connect-SPOService -Url https://[tenant]-admin.sharepoint.com -Credential $creds
    Get-SPOSite
    More information:
    http://blog.falchionconsulting.com/index.php/2013/01/using-powershell-to-manage-sharepoint-2013-online/
    Thanks,
    Dennis Guo
    TechNet Community Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Dennis Guo
    TechNet Community Support

  • Getting Error in AppPart "The feed you've requested does not exist."

    I am getting " The feed you've requested does not exist." Error while app-part is getting loaded on
    a page. It works well while we open the app alone. The feed we are using is Yammer feed.
    Ashish Baranwal || To know what you know and what you do not know, that is true knowledge

    Issue confirmed and addressed by MS. From the O365 portal:
    Closure Summary: On Wednesday, September 24, 2014, at approximately 6:40 PM UTC, engineers identified an issue in which some customers may have been unable to use the embed feature in Yammer. The investigation determined that a small portion of infrastructure
    which processes authentication was degraded. Engineers implemented a fix which remediated end-user impact. The issue was successfully fixed on Wednesday, September 24, 2014, at 8:50 PM UTC. Upon analysis of the incident, service impact was determined to be
    limited. Next steps have been identified and will be implemented to ensure that the issue does not reoccur. Please consider this Closure Summary the final update on the event. 
    Our feeds are working now.

  • Yammer open graph feed, "The feed you've requested does not exist."

    When using the open graph embed feed for a page on which there are no comments yet, I am getting "The feed you've requested does not exist." in the embed frame. Once I post a comment (which works fine), the message disappears. I see the
    same in the https://www.yammer.com/widget/configure page. Is this an issue that can be resolved on the Yammer end?

    Hi,
    which is your environment, SharePoint Server 2013 or SharePoint Online?
    For Yammer Embed to work, your SharePoint environment must satisfy the following prerequisites: 
    Your organization should have an active Yammer network (for example: www.yammer.com/contoso.com)
    Your SharePoint farm admin should choose Yammer.com service as the default enterprise social collaboration   platform. Set this option in the SharePoint admin center for SharePoint Online and in SharePoint Central Administration for on-premises
    SharePoint Server 2013.   Choose the yammer.com service and wait for 30 minutes before moving on to the next step.
    For more information,please refer to the blog:
    https://support.office.com/en-us/article/Embed-a-Yammer-feed-into-a-SharePoint-site-4817d2fa-50f6-4f25-88a0-a312745768d4
    http://blogs.msdn.com/b/chhopkin/archive/2013/11/20/yammer-embed-and-sharepoint-2013.aspx
    https://technet.microsoft.com/library/dn270535?f=255&MSPPError=-2147217396
    Best Regards,
    Eric
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Yammer used for page comments in SharePoint Online, initially says "The feed you've requested does not exist"

    I am trying to use Yammer for a per-page comment platform. This seems to require placing a Yammer embed in each page and configuring the embed to use Open-Graph.
    Why does the feed initially say "The feed you've requested does not exist." for every new page? The default should read "There are no messages
    in this feed."
    My embed code looks like this:
    <div id="embedded-feed" style="height:400px;width:500px;"></div>
    <script type="text/javascript" src="https://assets.yammer.com/assets/platform_embed.js"></script>
    <script type="text/javascript"> yam.connect.embedFeed({
    container: "#embedded-feed"
    , network: "myyammernetwork.com"
    , feedType: "open-graph"
    , config: {
    use_sso: false
    , showOpenGraphPreview: false
    , header: false
    , footer: false
    , promptText: "Comment on this page..."
    , objectProperties: { url: window.location.href, type: "page" }
    </script>
    You can see at the following link, following the instructions, it results in "there are no messages in this feed."
    https://support.office.com/en-us/article/Use-Yammer-Embed-instead-of-the-Yammer-app-for-SharePoint-2013-and-SharePoint-Online-812c752b-3586-4f67-accb-49cd3724dcc1?ui=en-US&rs=en-US&ad=US#CommentFeed

    Hi,
    which is your environment, SharePoint Server 2013 or SharePoint Online?
    For Yammer Embed to work, your SharePoint environment must satisfy the following prerequisites: 
    Your organization should have an active Yammer network (for example: www.yammer.com/contoso.com)
    Your SharePoint farm admin should choose Yammer.com service as the default enterprise social collaboration   platform. Set this option in the SharePoint admin center for SharePoint Online and in SharePoint Central Administration for on-premises
    SharePoint Server 2013.   Choose the yammer.com service and wait for 30 minutes before moving on to the next step.
    For more information,please refer to the blog:
    https://support.office.com/en-us/article/Embed-a-Yammer-feed-into-a-SharePoint-site-4817d2fa-50f6-4f25-88a0-a312745768d4
    http://blogs.msdn.com/b/chhopkin/archive/2013/11/20/yammer-embed-and-sharepoint-2013.aspx
    https://technet.microsoft.com/library/dn270535?f=255&MSPPError=-2147217396
    Best Regards,
    Eric
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Stream request does not exist

    Hello,
    I've got Encore 2.0 and Premiere Pro 2.0.
    Whit in Premiere I convert my time line to MPEG2-DVD, in the export using Adobe Media Encoder. What default "PAL"-setting I use, none of them seem to be working in Encore, every M2V-file I import into Encore I get the message "stream request does not exist".
    Thanks

    Thanks for the leads, Jeff. I am not able to export elementary streams using VOB2MPG, and in any case, Encore simply freezes when I import any file from VOB2MPG. I will try one of your suggested solutions.
    Can you explain why the re-name process would work on some homemade DVDs and not others? Does it have anything to do with DVDs authored in non-Adobe programs??
    also, why will the renamed files play perfectly in Windows Media and WinDVD, yet not go into Encore as .mpg assets?
    Lots of questions; just curious as to how things work!

  • Sorry, the page you requested does not exist.

    I've been struggling for a couple of weeks attempting to get my domains hosted with my mobile.me account with little success. After trying about everything and I believe they have me blocked now on Chat support, it is now unavailable due to overwhelming interest in mobile.me. I've created my sites on iWeb and published them and when I go to view them I get "Sorry, the page you requested does not exist." Anyone have any ideas?

    Hi Mark,
    The site may have been unavailable for a short time. The links function correctly for me at the moment. Please confirm if you are still having this issue.
    Regards,
    Les

  • Problem - STD Task does not exist in ECC 6.0

    Hi All,
    While looking for SAP standard Workflows in ECC 6.0, I am able to go to
    Workflow --> Activiy --> Task, but after that I am not able to go inside the task and see the properties/ specifications of the task, its not giving any error msg, but its not navigating to the task screen.
    I have tried other way also, i have copied the task number and pasted it in task with task type as "standard task" in PFTC, n tried to display it , but it is throws the message as "task does not exist".
    Same thing happens if I copy any workflow number , paste it in task with task type as "Workflow Template" n try to display in PFTC.
    Because of this problem I am not able to use any standard task in my zworkflow.
    It will be great if someone can tell the possible cause and solution of this problem.
    Thanks
    Priya

    Hey Priya,
    Its standard Leave workflow's Standard Task, Then as Mark and others said, please check the authorization stuff. Also please remember not to give TS when you select the Standard Task.
    Regards
    <i><b>Raja Sekhar</b></i>

  • Squirrelmail problem - data dir does not exist [solved]

    After install package, configuration (conf.pl) and log in I see error:
    Could not create initial preference file!
    /var/lib/squirrelmail/data/ should be writable by user nobody
    Please contact your system administrator and report this error.
    When I run http://mydomain/squirrelmail/src/configtest.php I see:
    FATAL ERROR: Data dir (/var/lib/squirrelmail/data/) does not exist!
    Of course /var/lib/squirrelmail/data/ exists (created by pacman) and its is owned by nobody.
    Problem is independent of /var/lib/squirrelmail/data/ permission.
    Last edited by qwak (2007-06-18 16:20:50)

    qwak wrote:
    Soved.
    It was php security issue and some changes in http (or php) configuration was required.
    See: http://pl2.php.net/features.safe-mode
    I just set:
    php_admin_value open_basedir /
    in my mail virtual host section.
    I thing that squirrelmail package should include .../extra/http-squirrelmail.conf apache configuration file with required configuration or some info should by typed to user when squirrel package is installed.
    I agree!  I just ran into this same problem!

  • JCoDestination Problem: JCO_ERROR_RESOURCE: Destination does not exist

    Hello Experts,
    I followed the JCo3 tutorial of accessing backend ABAP system.
    I implemented the following code:
    File configuration = new File(JCO_DESTINATION_APP +".jcoDestination");
    if(!configuration.exists() || updateprovider) {
       Properties properties = new Properties();
       properties.setProperty(DestinationDataProvider.JCO_ASHOST, Configuration.getInstance().ashost);
       properties.setProperty(DestinationDataProvider.JCO_SYSNR, Configuration.getInstance().sysnr);
       properties.setProperty(DestinationDataProvider.JCO_CLIENT, Configuration.getInstance().client);
       properties.setProperty(DestinationDataProvider.JCO_USER, Configuration.getInstance().user);
       properties.setProperty(DestinationDataProvider.JCO_PASSWD, Configuration.getInstance().passwd);
       properties.setProperty(DestinationDataProvider.JCO_LANG, Configuration.getInstance().lang);
       properties.setProperty(DestinationDataProvider.JCO_POOL_CAPACITY, "" + Configuration.getInstance().connections);
       properties.setProperty(DestinationDataProvider.JCO_PEAK_LIMIT, "" + Configuration.getInstance().connections);
       FileOutputStream fos = new FileOutputStream(configuration, false);
       properties.store(fos, JCO_DESTINATION_APP);
       fos.close();
    When I execute the following code:
    this.getDestination().getAttributes()
    I get the following error:
    com.sap.conn.jco.JCoException: (106) JCO_ERROR_RESOURCE: Destination JCO_DESTINATION_APP does not exist
         at com.sap.conn.jco.rt.DefaultDestinationManager.update(DefaultDestinationManager.java:163)
         at com.sap.conn.jco.rt.DefaultDestinationManager.searchDestination(DefaultDestinationManager.java:292)
         at com.sap.conn.jco.rt.DefaultDestinationManager.getDestinationInstance(DefaultDestinationManager.java:90)
         at com.sap.conn.jco.JCoDestinationManager.getDestination(JCoDestinationManager.java:61)
         at com.exz.app.common.helper.IntegrationPlatformAccessor.getDestination(IntegrationPlatformAccessor.java:83)
         at com.exz.app.common.helper.IntegrationPlatformAccessor.<init>(IntegrationPlatformAccessor.java:67)
         at com.exz.app.common.helper.IntegrationPlatformAccessor.getInstance(IntegrationPlatformAccessor.java:32)
         at com.exz.app.interfacemng.services.Template_WebService.<init>(Template_WebService.java:34)
         at com.exz.app.interfacemng.services.ConfigurationScenarioServiceClient.<init>(  ...
    What am I missing?
    Regards.

    As a starter it might be best to take try out the examples that ship with the JCo3 distribution. I cannot comment much on your code, as it's an excerpt and doesn't show everything. E.g. I have no clue what the line this.getDestination().getAttributes() means; usually you retrieve destinations via the class JCoDestinationManager and there you always have to at least provide the name of the destination.
    So let me give some generic comments instead:
    <ul style="list-style:circle">
    <li>Properties for destinations can be returned via a class that implements the interface DestinationDataProvider; you can register your own implementation (once) via static method Environment.registerDestinationDataProvider().</li>
    <li>SAP ships the JCo with a generic file handler for providing destination attributes: It basically searches in the current directory (i.e. from where you started your application) for client destinations with the given name and extension ".jcoDestination" (server destinations use extension ".jcoServer"). As far as I remember you can also change the directory where those destination property files are searched for by setting System property "jco.destinations.dir".</li>
    <li>I strongly recommend registering your own DestinationDataProvider (or ServerDataProvider) and so does SAP; this is especially true if you get your properties from somewhere else (as it seems to be in your case) or want some specific processing (e.g. use encrypted passwords in your properties that you decrypt upon loading).</li>
    <li>For troubleshooting your existing coding I'd verify that you did actually create the file with the properties and that the file name (without the extension) matches the name that you use when trying to retrieve the destination.</li>
    </ul>
    Cheers, harald

  • Punch Out Catalog problem business patner does not exists

    Dear experts,
    We configured punch out catalogs. When we check out the portal pages has the error "business patner does not exists".
    How do i resolve this. How to create the business partner on SRM system to get rid of this error.
    Thanks,
    vikas

    Hi Masa,
    I am enclosing the OCI Parameters returned from the external catalog.
    NEW_ITEM-shoppingcartID[1]                               SH95
    NEW_ITEM-DESCRIPTION[1]                                DISPENSER,FLAG&POST-IT
    NEW_ITEM-MATGROUP[1]     
    NEW_ITEM-EXT_CATEGORY[1]              44111501
    NEW_ITEM-EXT_SCHEMA_TYPE[1]              unspsc
    NEW_ITEM-MATNR[1]     
    NEW_ITEM-QUANTITY[1]                                   1.000
    NEW_ITEM-UNIT[1]     EA
    NEW_ITEM-PRICE[1]                                 6.64
    NEW_ITEM-PRICEUNIT[1]                                    1
    NEW_ITEM-CURRENCY[1]                                 USD
    NEW_ITEM-LEADTIME[1]                                    1
    NEW_ITEM-VENDOR[1]                              1000000000
    NEW_ITEM-VENDORMAT[1]                              A2C-313D
    NEW_ITEM-MANUFACTCODE[1]               MMM-C
    NEW_ITEM-MANUFACTMAT[1]              C-313D
    NEW_ITEM-CONTRACT[1]     
    NEW_ITEM-CONTRACTITEM[1]     
    NEW_ITEM-EXT_PRODUCT_ID[1]             A2C-313D
    NEW_ITEM-LONGTEXT_:132             DISPENSER,FLAG&POST-IT
    NEW_ITEM-SERVICE[1]     
    Once the external catalog returns to SRM it is throwing Null Value Exception. Is this exception is in regards to Material Group or something missing in the configuration.
    Error Message:
    The following error text was processed in the system : Access via 'NULL' object reference not possible.
    The termination type was: RABAX_STATE
    The ABAP call stack was:
          Method: /SAPSRM/IF_CLL_MAPPER~REFRESH of program /SAPSRM/CL_CH_WD_DOTM_SC_I_BD=CP
          Method: WDDOMODIFYVIEW of program /1BCWDY/IU0RHDVCLMQ4J466CPJC==CP
          Method: IF_WDR_VIEW_DELEGATE~WD_DO_MODIFY_VIEW of program /1BCWDY/IU0RHDVCLMQ4J466CPJC==CP
          Method: DO_MODIFY_VIEW of program CL_WDR_DELEGATING_VIEW========CP
          Method: MODIFY_VIEW of program CL_WDR_VIEW===================CP
          Method: DO_MODIFY_VIEW of program CL_WDR_CLIENT_COMPONENT=======CP
          Method: DO_MODIFY_VIEW of program CL_WDR_CLIENT_COMPONENT=======CP
          Method: DO_MODIFY_VIEW of program CL_WDR_CLIENT_COMPONENT=======CP
          Method: DO_MODIFY_VIEW of program CL_WDR_WINDOW_PHASE_MODEL=====CP
          Method: PROCESS_REQUEST of program CL_WDR_WINDOW_PHASE_MODEL=====CP
    Please let me know how to fix this.
    Thanks,
    Vikas

  • MIGO Posting problem show material does not exist

    hi,
    in migo i am not able to process it show me the following error message :-
    (Material M11 PLN1 S11 does not exist
    Message no. M7006
    Diagnosis
    For material M11, no material master data exists in plant PLN1, storage location S11.
    Procedure
    Make sure your entries are correct.
    If your entries are correct, then storage location data does not yet exist for the material.
    Storage location data is created when you maintain the Storage view for the material or use the 'Enter Storage Locations' function in the material master menu or post the first goods receipt (provided that automatic creation of storage location data is allowed for the given plant and movement type).
    Please help me out
    Kind regard
    maashish

    Hi,
    Check Material is maintain your plant and storage location with MM03.
    Enter MM03 t-code, enter material code and press enter then check material is maintain your plant and storage location.
    If no than first maintain it with below mention detail.
    Enter MM01 - For Material Master creation.
    Enter your material M11, Plant - PLN1, Storage location - S11.
    And maintain other required detail.
    Then check with migo.
    Regards,
    Mahesh Wagh

  • How to avoid this problem "tablespace 'USERS' does not exist"

    I dont want to create all source tablespaces in target.
    I have given unlimited tablespace priv to user.Still I get this error
    IMP-00003: ORACLE error 959 encountered
    ORA-00959: tablespace 'USERS' does not exist

    The situation, I understand is as follows:
    1. An original export file contains references to the USERS tablespace
    2. You want to import it, but you don't want to create the USERS tablespace
    3. You create a user and assign USERS as its default tablespace, even though you don't have it created and you don't want to create it.
    If you assign a default tablespace to a user, first thing, make sure this tablespace exists, when import is performed if tablespace defined at import file doesn't exist, then import will use the default user's tablespace, in this case the USERS tablespace.
    So, if you want to avoid this behaviour, then assign the user an existing tablespace when defining the default tablespace for this user.
    Once corrected, retry import.
    ~ Madrid

  • Transport request does not exist in production server

    I created a transport request and released it. However, the cofile and datafile are not created in production server. It supposed to appear automatically once I released, but it is not created and I was not able to add this request in the production. May I know what might be the cause? Any setting that is wrong in my development server?

    Hi,
    If you have configured transport route properly then when you will release request then it will automatically come in your production queue (Since you have no quality system). If transport is not coming in production queue, it means there is problem with transport route configured.
    Also, check whether data file or cofile exists in transport directory or not. If there are no files then it means it is a local transport request.
    Thanks
    Sunny

  • Index does not exist in database system DB6

    Hi,
    Problem : <b>Index does not exist in database system DB6</b>.
    I need further explanation why when i transport index from Development Client to Production Client the index is active but does not exist in database system DB6.
    So when the cases is occurs i must re-create the index again in Production Level...
    Can someone give me some ideas?
    Thanks.

    Hi,
    it might be due to some BUG in RDBMS...
    First Check the Secondary index in TEST system
    Look at the Transport Number in DEV system, If this is having error, then it will show you the error details also,
    If that not moved Properly then you need to create another request for the INDEX and move it again
    See the threads with similar problem...
    Warning: Index does not exist in database system MSSQL
    Index does not exist in database system ORACLE??????
    Re creation of database index
    Hope it will solve your problem...
    <b>Reward Points if useful</b>
    Thanks & Regards
    ilesh 24x7

Maybe you are looking for