Reports server time out

hi
j have the same trouble that you .
j have a big reports which takes a lot of times to run completely and the delay(time out) of the reports server is not enough.
how can j increase it.
thanks

Hi Gary
The issue you are referring may have been resolved in the latest Reports patch. Try applying the patch and see if it solves your problem.
If not, contact Oracle Support.
Regards
Sripathy

Similar Messages

  • Report server times out for 3 mb of excel

    I'm using a report viewer control in our application and it is working fine while displaying data and exporting it in different format by clicking export button provided by the report viewer.
    I have another page but there will be a normal asp button to generate same report. so i am using report viewer control and calling the public method .Render exposed by the report viewer.
        byte[] bytes = rptViewver.ServerReport.Render("Excel", deviceInfo, out mimeType, out encoding, out extension, out streamids, out warnings);
    this time i am getting below exception.
        Exception :System.Net.WebException: The request failed with HTTP status 504: Connection Timed Out.
        at System.Web.Services.Protocols.SoapHttpClientProtocol.ReadResponse(SoapClientMessage message, WebResponse response, Stream responseStream, Boolean asyncCall)
        at System.Web.Services.Protocols.SoapHttpClientProtocol.Invoke(String methodName, Object[] parameters)
        at Microsoft.SqlServer.ReportingServices2005.Execution.ReportExecutionService.Render(String Format, String DeviceInfo, String& Extension, String& MimeType, String& Encoding, Warning[]& Warnings, String[]& StreamIds)
        at Microsoft.SqlServer.ReportingServices2005.Execution.RSExecutionConnection.Render(String Format, String DeviceInfo, String& Extension, String& MimeType, String& Encoding, Warning[]& Warnings, String[]& StreamIds)
        at Microsoft.Reporting.WebForms.ServerReport.Render(String format, String deviceInfo, String& mimeType, String& encoding, String& fileNameExtension, String[]& streams, Warning[]& warnings)
        at Reports_GenerateReport.DisplayReport(Boolean IsExport) in f:\Sunil\View Reports\Login\Reports\GenerateReport.aspx.cs:line 1702
    My doubt is like, why it is getting time outs while leveraging same report viewer control internally.
    any suggestions to get rid of this?

    Hi sGudivada,
    Please check the ExecutionLog view in ReportServer database to learn more information about the report. The report server execution log contains information about the reports that execute on the server or on multiple servers in a scale-out deployment. For
    example:
    TimeDataRetrieval fields. Record number of milliseconds spent retrieving the data.
    TimeProcessing fields. Record number of milliseconds spent processing the report.
    TimeRendering fields. Record number of milliseconds spent rendering the report.
    Reference:
    http://msdn.microsoft.com/en-us/library/ms159110(v=sql.110).aspx
    There is an article about troubleshooting report performance, you can refer to it.
    http://msdn.microsoft.com/en-us/library/bb522806(v=sql.105).aspx
    Thanks,
    Alisa Tang
    Alisa Tang
    TechNet Community Support

  • SMS 2008 Server time out same time every hour

    Our server times out at the same time every hour. Any computer connected to our network at exactly xx:53, any program or anything you are attempted to do goes to the loading circle and says not responding. It stays that way until xx:54. Every hour, every
    day. However, nothing shows up on the error reports.

    Hi MNQWolfe,
    Based on your description, I suggest that you should firstly check if there any program or feature (such as antivirus program, update, backup and so on) started
    working at that time. Also, please monitor the Task Manager or Resource Monitor to check if any process was started at that time.
    In addition, it seems to be a network issue. Please run a sniffer on the server. You can use Microsoft Network Monitor 3.4 to monitor and then check ARP messages
    and so on.
    Microsoft Network Monitor 3.4
    http://www.microsoft.com/en-us/download/details.aspx?displaylang=en&id=4865
    Hope this helps.
    Best regards,
    Justin Gu

  • Performance issue in Report (getting time out error)

    Hi experts,
    I am doing Performance for a Report (getting time out error)
    Please see the code below and .
    while looping internal table IVBAP after 25 minutes its showing  time out error at this poit ->
    SELECT MAX( ERDAT ) .
    please send alternate code for this .
    Advance thanks
    from
    Nagendra
    Get Sales Order Details
    CLEAR IVBAP.
    REFRESH IVBAP.
    SELECT VBELN POSNR MATNR NETWR KWMENG WERKS FROM VBAP
       INTO CORRESPONDING FIELDS OF TABLE IVBAP
         FOR ALL ENTRIES IN IVBAK
           WHERE VBELN =  IVBAK-VBELN
           AND   MATNR IN Z_MATNR
           AND   WERKS IN Z_WERKS
           AND   ABGRU = ' '.
    Check for Obsolete Materials - Get Product Hierarhy/Mat'l Description
      SORT IVBAP BY MATNR WERKS.
      CLEAR: WK_MATNR, WK_WERKS, WK_PRDHA, WK_MAKTX,
             WK_BLOCK, WK_MMSTA, WK_MSTAE.
      LOOP AT IVBAP.
          CLEAR WK_INVDATE.                                   "I6677.sn
          SELECT MAX( ERDAT ) FROM VBRP INTO WK_INVDATE WHERE
          AUBEL EQ IVBAP-VBELN AND
          AUPOS EQ IVBAP-POSNR.
          IF SY-SUBRC = 0.
              MOVE WK_INVDATE TO IVBAP-INVDT.
              MODIFY IVBAP.
          ENDIF.                                               "I6677.e n
          SELECT SINGLE * FROM MBEW WHERE             "I6759.sn
          MATNR EQ IVBAP-MATNR AND
          BWKEY EQ IVBAP-WERKS AND
          BWTAR EQ SPACE.
          IF SY-SUBRC = 0.
             MOVE MBEW-STPRS TO IVBAP-STPRS.
             IVBAP-TOT = MBEW-STPRS * IVBAP-KWMENG.
             MODIFY IVBAP.
          ENDIF.                                      "I6759.en
        IF IVBAP-MATNR NE WK_MATNR OR IVBAP-WERKS NE WK_WERKS.
          CLEAR: WK_BLOCK, WK_MMSTA, WK_MSTAE, WK_PRDHA, WK_MAKTX.
          MOVE IVBAP-MATNR TO WK_MATNR.
          MOVE IVBAP-WERKS TO WK_WERKS.
          SELECT SINGLE MMSTA FROM MARC INTO MARC-MMSTA
            WHERE MATNR = WK_MATNR
            AND   WERKS = WK_WERKS.
          IF NOT MARC-MMSTA IS INITIAL.
            MOVE '*' TO WK_MMSTA.
          ENDIF.
          SELECT SINGLE LVORM PRDHA MSTAE MSTAV FROM MARA
            INTO (MARA-LVORM, MARA-PRDHA, MARA-MSTAE, MARA-MSTAV)
            WHERE MATNR = WK_MATNR.
          IF ( NOT MARA-MSTAE IS INITIAL ) OR
             ( NOT MARA-MSTAV IS INITIAL ) OR
             ( NOT MARA-LVORM IS INITIAL ).
             MOVE '*' TO WK_MSTAE.
          ENDIF.
          MOVE MARA-PRDHA TO WK_PRDHA.
          SELECT SINGLE MAKTX FROM MAKT INTO WK_MAKTX
            WHERE MATNR = WK_MATNR
              AND SPRAS = SY-LANGU.
        ENDIF.
        IF Z_BLOCK EQ 'B'.
          IF WK_MMSTA EQ ' ' AND WK_MSTAE EQ ' '.
            DELETE IVBAP.
            CONTINUE.
          ENDIF.
        ELSEIF Z_BLOCK EQ 'U'.
          IF WK_MMSTA EQ '' OR WK_MSTAE EQ ''.
            DELETE IVBAP.
            CONTINUE.
          ENDIF.
        ELSE.
          IF WK_MMSTA EQ '' OR WK_MSTAE EQ ''.
            MOVE '*' TO WK_BLOCK.
          ENDIF.
        ENDIF.
        IF WK_PRDHA IN Z_PRDHA.                                    "I4792
          MOVE WK_BLOCK TO IVBAP-BLOCK.
          MOVE WK_PRDHA TO IVBAP-PRDHA.
          MOVE WK_MAKTX TO IVBAP-MAKTX.
          MODIFY IVBAP.
        ELSE.                                                     "I4792
          DELETE IVBAP.                                           "I4792
        ENDIF.                                                    "I4792
        IF NOT Z_ALNUM[] IS INITIAL.                              "I9076
          SELECT SINGLE * FROM MAEX                               "I9076
            WHERE MATNR = IVBAP-MATNR                             "I9076
              AND ALNUM IN Z_ALNUM.                               "I9076
          IF SY-SUBRC <> 0.                                       "I9076
            DELETE IVBAP.                                         "I9076
          ENDIF.                                                  "I9076
        ENDIF.                                                    "I9076
      ENDLOOP.

    Hi Nagendra!
    Get Sales Order Details
    CLEAR IVBAP.
    REFRESH IVBAP.
    check ivbak is not initial
    SELECT VBELN POSNR MATNR NETWR KWMENG WERKS FROM VBAP
    INTO CORRESPONDING FIELDS OF TABLE IVBAP
    FOR ALL ENTRIES IN IVBAK
    WHERE VBELN = IVBAK-VBELN
    AND MATNR IN Z_MATNR
    AND WERKS IN Z_WERKS
    AND ABGRU = ' '.
    Check for Obsolete Materials - Get Product Hierarhy/Mat'l Description
    SORT IVBAP BY MATNR WERKS.
    CLEAR: WK_MATNR, WK_WERKS, WK_PRDHA, WK_MAKTX,
    WK_BLOCK, WK_MMSTA, WK_MSTAE.
    avoid select widin loop. instead do selection outside loop.u can use read statement......and then loop if required.
    LOOP AT IVBAP.
    CLEAR WK_INVDATE. "I6677.sn
    SELECT MAX( ERDAT ) FROM VBRP INTO WK_INVDATE WHERE
    AUBEL EQ IVBAP-VBELN AND
    AUPOS EQ IVBAP-POSNR.
    IF SY-SUBRC = 0.
    MOVE WK_INVDATE TO IVBAP-INVDT.
    MODIFY IVBAP.
    ENDIF. "I6677.e n
    SELECT SINGLE * FROM MBEW WHERE "I6759.sn
    MATNR EQ IVBAP-MATNR AND
    BWKEY EQ IVBAP-WERKS AND
    BWTAR EQ SPACE.
    IF SY-SUBRC = 0.
    MOVE MBEW-STPRS TO IVBAP-STPRS.
    IVBAP-TOT = MBEW-STPRS * IVBAP-KWMENG.
    MODIFY IVBAP.
    ENDIF. "I6759.en
    IF IVBAP-MATNR NE WK_MATNR OR IVBAP-WERKS NE WK_WERKS.
    CLEAR: WK_BLOCK, WK_MMSTA, WK_MSTAE, WK_PRDHA, WK_MAKTX.
    MOVE IVBAP-MATNR TO WK_MATNR.
    MOVE IVBAP-WERKS TO WK_WERKS.
    SELECT SINGLE MMSTA FROM MARC INTO MARC-MMSTA
    WHERE MATNR = WK_MATNR
    AND WERKS = WK_WERKS.
    IF NOT MARC-MMSTA IS INITIAL.
    MOVE '*' TO WK_MMSTA.
    ENDIF.
    SELECT SINGLE LVORM PRDHA MSTAE MSTAV FROM MARA
    INTO (MARA-LVORM, MARA-PRDHA, MARA-MSTAE, MARA-MSTAV)
    WHERE MATNR = WK_MATNR.
    IF ( NOT MARA-MSTAE IS INITIAL ) OR
    ( NOT MARA-MSTAV IS INITIAL ) OR
    ( NOT MARA-LVORM IS INITIAL ).
    MOVE '*' TO WK_MSTAE.
    ENDIF.
    MOVE MARA-PRDHA TO WK_PRDHA.
    SELECT SINGLE MAKTX FROM MAKT INTO WK_MAKTX
    WHERE MATNR = WK_MATNR
    AND SPRAS = SY-LANGU.
    ENDIF.
    IF Z_BLOCK EQ 'B'.
    IF WK_MMSTA EQ ' ' AND WK_MSTAE EQ ' '.
    DELETE IVBAP.
    CONTINUE.
    ENDIF.
    ELSEIF Z_BLOCK EQ 'U'.
    IF WK_MMSTA EQ '' OR WK_MSTAE EQ ''.
    DELETE IVBAP.
    CONTINUE.
    ENDIF.
    ELSE.
    IF WK_MMSTA EQ '' OR WK_MSTAE EQ ''.
    MOVE '*' TO WK_BLOCK.
    ENDIF.
    ENDIF.
    IF WK_PRDHA IN Z_PRDHA. "I4792
    MOVE WK_BLOCK TO IVBAP-BLOCK.
    MOVE WK_PRDHA TO IVBAP-PRDHA.
    MOVE WK_MAKTX TO IVBAP-MAKTX.
    MODIFY IVBAP.
    ELSE. "I4792
    DELETE IVBAP. "I4792
    ENDIF. "I4792
    IF NOT Z_ALNUM[] IS INITIAL. "I9076
    SELECT SINGLE * FROM MAEX "I9076
    WHERE MATNR = IVBAP-MATNR "I9076
    AND ALNUM IN Z_ALNUM. "I9076
    IF SY-SUBRC 0. "I9076
    DELETE IVBAP. "I9076
    ENDIF. "I9076
    ENDIF. "I9076
    endloop.
    U have used many select queries widin loop-endloop which is a big hindrance as far as performance is concerned.Avoid such practice.
    Thanks
    Deepika

  • Bug report: Screen times out when other side is no...

    Bug report: Screen times out when other side is not sharing video. The phone locks and of course the other party cannot see anything. Please fix.
    Using WP 8.1.1 Developers Preview.

    Hi and welcome to the Skype Community,
    Can you please share which platform and which device you are on?
    Also are you referring about a one-way video call here where only you are sending video, but the other party doesn't send their video back?
    Follow the latest Skype Community News
    ↓ Did my reply answer your question? Accept it as a solution to help others, Thanks. ↓

  • Edge Animate causing Server Time Out Error and other problems

    Site is not verifying due to Server Time Out error. Also menu which was created with Adobe Edge Animate does not show up as navigation in a site map or when bots read the site. Site won't verify or index in google.
    Suggestions on how to fix this would be helpful and appreciated.
    This is the website address. please type in Without any spaces:
    louis place cafe DOT com DOT au

    Site is not verifying due to Server Time Out error. Also menu which was created with Adobe Edge Animate does not show up as navigation in a site map or when bots read the site. Site won't verify or index in google.
    Suggestions on how to fix this would be helpful and appreciated.
    This is the website address. please type in Without any spaces:
    louis place cafe DOT com DOT au

  • Connection to server times out

    Hi, I know I've seen somewhere that you can set how long before your connection to your remote server times out in DW. After a few minutes of editing files, and then when I go to upload them to my host, It takes forever just to make a connection. I used CS3 for a while, then upgraded to CS5. CS3 didnt seem to have this issue.
    Another issue I seem to have is when I DO put files to my remote, sometimes the files dont seem to reflect changes I made. For instance, I added an id attribute to a firm field, uploaded my file to the remote, hard refreshed my browser viewing the same page and viewed source. The form field id was not there! So I clicked the expand local and remote files button and pulled the file over to the remote manually!
    Maybe these are issues with my hosting company? Anything I can do to ensure my remote connection stays connected, at least for an extended period of time if not indefinately. Thanks in advance!

    Hi Nancy, thats for the tips and info. I've tried most of what you suggested. One thing I never thought about though was toggling passive mode on and off. For some reason I just always assumed this should be on by default. So I will try that and see how it goes over the next day or so.
    Also the FTP optimize performance was checked. Seems like I had an issue with this a while back, so I unchecked it as well.
    Now the other issue of why updated files arent showing up on my remote. Yes I always use ctrl+F5 to refresh my browser. Again, this morning when I did that very thing, and then viewed source, the updated code was not there. The code I am referring to was about 20 lines of javascript that was showing in dw code view, but not in ff source view. So not sure about that one. As you said its possibly my host provider. Thanks again!

  • Email stuck in Outbox - Server times out

    I sent an email with an attached pdf - should have checked the size of the pdf first. After about 5 to 10 minutes I get a Server Time out error. I closed and opened the email program and it tries to send the email again.... How can I delete the email with out opening the program?
    Thanks in advance. Dale
    G3   Mac OS X (10.3.9)  

    Dale,
    Welcome to the Discussions.
    Quit Mail, if running. In the Finder, open Home/Library/Mail/Mailboxes and locate the Outbox.mbox file, and delete it. Mail will create a new one, when next you go to send.
    Are there any messages in the Outbox you wish to save? If so, don't delete, but only drag out to be on the Desktop, and post back.
    Ernie

  • BPC Optimization Server Time Out error message

    We’re using BPC 7.5 MS and on patch level 111.02
    There’s two front-end servers and one back-end.
    When completing a full optimization with compression on an application we immediately get the optimization popup screen with no processing information only a “Server Time Out” error message.
    Optimization was taking a long to time run and sometimes timed out.  To try and resolve this issue we have just updated indexes and statistics and during our test in production we now receive the “Server Time Out” error message immediately. However, the records from tbl.Factwb and tbl.Fac2 did move to the tbl.Fact.
    Our development environment test ran fine.
    Any suggestions?
    Thanks.

    Hi Michael,
    please look in the logs maybe you will found more informations regarding the timeout and eventually share it.
    There are several notes about a timeout in 10 version,
    1394533 - 'Server Time Out' error when performing Modify Application, Full Process of a dimension, or Full Optimize this is related with NLB
    but it could be also related with the web.config 1628908 - How to fix Optimize with compress time-out failure
    or if you reach the max number of connection
    1635749 - Error Message: Timeout expired. The timeout period elapsed prior to obtaining a connection from the pool
    Regards
         Roberto

  • Why does my Fieldpoint OPC server time out?

    I'm using Fieldpoint Explorer 3.01 with 1600 ethernet modules. I'm using Wellspring Solutions' Object Automation as an OPC client to read and write to I/O. Everything works fine on one computer running Win NT 4.0. Another computer, however, is running NT Server 4.0, and the OPC reads/writes from Object Automation work for exactly 1759 seconds (or approx. 121 minutes), and then the Fieldpoint Server "times out", and the only way to get it to work again is by shutting down and restarting Object Automation, assumedly this somehow reinitializes communication with the server. This is a repeatable error that occurs at exactly the same time, every time. This only happens with the National Instruments Fieldpoint OPC server (I'm
    using several) on one of the machines. I tried reinstalling the Fieldpoint OPC Server several times to no avail. I've used other OPC clients (from OPTO22, or Rockwell, Matrikon, Kepware) and can't communicate until Object Automation is shutdown and restarted. Any help or ideas on how to further troubleshoot would be appreciated, thanks.

    Aaron, attached are 3 log files generated in a test that I ran. The test used Object Automation to turn on and off a relay channel (OPC item: Common FP Res\FP-RLY-420 @4\Channel 1) every 10 seconds. I used the Matrikon OPC delegator with the OPTO22 Test Client (written by Rockwell) to monitor the channel at the same time (the delegator would NOT work with Object Automation directly). The OPCDelegatorOPTO22TestClient.txt file is the log file for this client. Basically, the test started around 13:07 and lasted the usual 121 minutes. Then the OPC writes stopped around 15:08, at which time I tried to manually read and write to the channel using the OPTO22 client, generating the errors towards the end of the logfile. Incidentally, I don't k
    now what the errors at the beginning of the file are, but there are no noticable problems until after 121 minutes. I then tried to use the Kepware OPC test client with delegator to read and write to the channel but this also did not work, and the logfile OPCDelegatorKepwareTestClient.txt is for that test. The other logfile (OAlogfile.txt) is the logfile generated by OA, see the end of file for the error. They should all be text files, not sure why one of them is listed as binary below. Let me know if this helps or if there is anything else I can provide.
    Attachments:
    OAlogfile.txt ‏526 KB
    OPCDelegatorKepwareTestClient.txt ‏50 KB
    OPCDelegatorOPTO22TestClient.log ‏517 KB

  • Server time out by full Optimize application process

    Hello,
    we have problem with full optimize application processing. We have got error message "Server time out"  on the Processing OLAP Database.
    our test environment on the VM x64bit, Server 2008
    Please anybody helps me to solve this issue.
    P.S. other optimize processes are workable (lite and Incremental)
    Thanks
    Arai

    Hi,
    Please see Note 1277009.
    This might resolve your issue.
    Karthik AJ

  • TS1368 I can't connect to the iTunes store with my Apple TV. I can see what movies are on offer but when trying to access my account i am advised "Can't connect to server" (times out).

    I can't connect to the iTunes store with my Apple TV. I can see what movies are on offer but when trying to access my account i am advised "Can't connect to server" (times out).

    I have the same problem with my 3rd gen Apple TV. I can preview iTunes movies, stream from my Mac, Airplay from my other devices but I cannot rent a movie on iTunes. Every time I try I get "Can't connect to ITunes" and "Unable to sign in". Had technical support review the problem over the phone and they agreed to send me a new one. Same problem. Interestingly enough my 2nd gen Apple TV works just fine.

  • Server time-out issue - unable to start "hello - world" application

    Hi Team,
    I am doing the exercise of week 1 of "Intro to SAP HANA Cloud platform (Repeat) " -
    I am unable to start the application - I get the server time out error - also I tried increasing the timeout in server editor to 600 - I still
    get the error as shown below
    Please help me in resolving this.
    Thanks in advance!
    -Manju

    1. I meant look for any errors in the logs, for something related to your app.
    2. Just go to Java Applications in Cockpit. BTW, do you know the help center SAP HANA Cloud Documentation? That should be your first stop for any questions around HCP along with the SAP HANA Cloud Platform Developer Center and http://hcp.sap.com/.
    3. There should be more details in that log file about the reason the app could not start.
    HTH!
    --Vlado

  • My email on hotmail does not load. Server times out

    When i attempt to log on to my hotmail account once i have logged in the emails do not load and the server times out. this has happened on other websites also. This a brand new computer.

    Hi Ryan, this has worked for a few...
    Make a New Location, Using network locations in Mac OS X ...
    http://support.apple.com/kb/HT2712
    10.7 & 10.8…
    System Preferences>Network, top of window>Locations>Edit Locations, little plus icon, give it a name.
    10.5.x/10.6.x/10.7.x instructions...
    System Preferences>Network, click on the little gear at the bottom next to the + & - icons, (unlock lock first if locked), choose Set Service Order.
    The interface that connects to the Internet should be dragged to the top of the list.
    Instead of joining your Network from the list, click the WiFi icon at the top, and click join other network. Fill in everything as needed.
    For 10.5/10.6, System Preferences>Network, unlock the lock if need be, highlight the Interface you use to connect to Internet, click on the advanced button, click on the DNS tab, click on the little plus icon, then add these numbers...
    208.67.222.222
    208.67.220.220
    Click OK.
    Also, turn off IPv6:
    System Preferences » Network » AirPort » TCP/IP tab » Configure IPv6
    Or whatever Interface you use.
    http://support.apple.com/kb/HT2712

  • Outgoing server times out - can't send any emails and don't know what to do

    I receive emails just fine in my MobileMe account but when I try to send them they get stuck in outbox ****. It is an IMAP account and I have tried the connection doctor - which shows the server times out - as does the message box that pops up. I have a Genius Bar appointment for tomorrow but this is driving me crazy. Any insight would be much appreciated!

    I had this occur several times before, some time ago & wish I wrote down the fix. I too am experiencing the same issue for the last 2 days; so my guess is it must not be my computer since nothing has been changed except I did a "sync" & that is the only thing different in the last few days.

Maybe you are looking for

  • IPad VGA Adapter

    Hello All, I have a problem with connecting iPad with my Philips TV (42PFL5405H/12) using VGA connector (Apple VGA Adapter). Unfortunately, quality of picture on TV is not good as you can see on the pictures: https://picasaweb.google.com/WojtekK...gC

  • ""  No authorization for number range object type GTIN and activity SHOW ""

    While creating number range in number  range administration for GTIN system showing the error ""  No authorization for number range object type GTIN and activity SHOW "" Pls help me to solve this issue

  • Transfer R/3 Quality Notifications to CRM

    Hello CRM Fellows, has anyone tried to Transfer R/3 Quality Notifications to CRM? Quality Notifications are store in the R/3 Table QMEL. A search in the CRM Table SMOFTABLES returns no Results for the Key QMEL in the field R3TABNAME. So it seems that

  • Saving a score on jumpdrive to print on pc?

    hey all...newbie question...i unfortunately do not have a printer on the mac yet and need to get some sheet music to some musicians...as well i dont have internet yet either...can i save on a jumpdrive and print from a pc? what are my options? i just

  • Deploy in different instances

    Hi, We have 3 database instances(all r clones) in our server and we always face alignment problems between the 3, where we forget to deploy the codes across all instances. Is there any way we could possibly make a code to deploy the package/programme