Issue Related  to Deletion of entries

HI,
I am not able to delete an entry from table v_503_all as there is no delete option there.
Thks.

Ok,
Its mean someone has already try to delete it. You do one thing Maintain the same personnel area again in table t500p.
After that First delete the personnel subarea from table   V_T001P under that personnel area \, then delete the personnel area from t500p.
Then it will be alright

Similar Messages

  • Issue related to planning file entries.

    Daily around 50,000 materials are getting flagged with the planning file entries ( NETCH , NETPL & BOM Expl ) in around 10 - 20 sec .
    As this is imapcting the MRP run , we need to now the reason why these planning file entries are created .
    Note :-
    *)   All these materials has been linked to the configurable material in MRP view
    *)   There are no changes in these materials
    *)   There are no changes in the config mat , BOM , routing .
    *)   There are no batch jobs or Idocs processed at the specific time when planning file entries are created
         Assuming that the Time stamp of last update for planning file entry in DBVM is in UTC (Universal time)
    *)   We have also execute the program for consistency check of planning file entries , however even this did not help

    Hi Anupam
    We just upgraded from 4.6 to ECC.
    In 4.6 , the number of entries flagged with NETCH per day was around 3000 & the MRP run was taking around 30 min to finish .
    After upgrade the MRP run is taking around 8 hrs to finish
    As per our analysis , the main reason for the MRP performance is the number of planning file entries flagged with NETCH , NETPL & BOM re-explode indicator .
    When we checked the update time stamp in table DBVM for all the 50,000 entries , we observed that all these entries were updated within a time duration of 15 - 20 sec.
    In this paticular time duration , we checked whether there were any batch job or idocs getting procesed , but there were none .
    As these entries are updated almost daily & there is no centain time when this happens , we need to know whether there is a mechanish with which we can find the specific program which created the planning file entries .
    If we find the program , we can debug it .
    As planning file entries are created in a number of cases ( may be creation /changing of master data or transaction data ) , we are totally clueless which standard program or Z program is causing the issue

  • How to delete the entries from NAST table

    Hi,
    Please help me out by providing any function module that delete's the entries from hte NAST table.
    Regards,
    Kiran.L

    REPORT ZSCD_TEST13.
    delete from nast where VSTAT = '1'.
    =====
    If you see the FM : NAST_DELETE_OBJECT, its only useful when NACHA = 7 (i.e. message transmission medium = Simple Mail)
    For others its not useful.
    We had similar issue few days back and after long RnD, we straightaway deleted the entries using the Zprogram.
    regards,
    Edited by: Pranu Pranu on Aug 19, 2008 1:42 PM

  • How to delete duplicate entries in table for the object DNL_CUST_BASIS2

    Hi All,
    I am trying to download the object DNL_CUST_BASIS2.
    In the SMQ2 the status is SYSFAIL.
    I checked in the ST22 for dumps.It says about the error while accessing the table T006.
    While analysing this,i found some duplicate entries in the related tables of this object.
    Can somebody help me how to delete these duplicate entries?
    Thanks,
    Senthil.

    Delete them directly from the table using se16:
    select the entries in the classic view (not ALV or grid view).
    activate the debugger.
    press the view button. --> you'll enter in the debugger
    press F7
    locate the sy-ucomm variable & change it to "DELE".
    press F8
    delete the entries.
    Trick-shots
    but it works!
    Michael.

  • Performance issues -- related to printing

    Hi All,
    I am haviing production system performance issues related to printing. endusers are telling the printing is slow for almost printers. We are having more that 40 to 50 printers in landscape.
    As per my primary investigation I didnt find any issues in TSP01 & TSP02 tables. But I can see the table TST01 and TST03 table having many number of entries (more that lakh). I dont have idead about this table. Is ther eany thing related to this table where the print causes slowness or any other factors also makes this printing issue .. Please advice ..
    thanks in advance

    Hai,
    Check the below link...
    http://help.sap.com/saphelp_nw70/helpdata/en/c1/1cca3bdcd73743e10000000a114084/content.htm
    http://help.sap.com/saphelp_nw70/helpdata/en/fc/04ca3bb6f8c21de10000000a114084/frameset.htm
    http://help.sap.com/saphelp_nw70/helpdata/en/86/1ccb3b560f194ce10000000a114084/content.htm
    TemSe cannot administer objects that require more than two gigabytes of storage space, regardless of whether the objects are stored in the database or in the file system. Spool requests of a size greater than two gigabytes must therefore be split into several smaller requests.
    It is enough if you perform the regular background jobs and Temse consistency checks for the tables.
    This will help in controlling the capacity problems.
    If you change the profile parameter rspo/store_location parameter value to 'G' this will make the performance better. The disadvantages are TemSe data must be backed up and restored separately from the database using operating system tools, In the event of problems, it can be difficult to restore consistency between the data held in files and the TemSeu2019s object management in the database. Also you have take care of the Hard disk requirements because in some cases, spool data may occupy several hundred megabytes of disk storage. If you use the G option, you must ensure that enough free disk space is available for spool data.
    Regards,
    Yoganand.V

  • Unable to delete last entry in Custom table

    Hi,
    I have one custom table which allows only some specific entries to be maintained in the table.I have used a standard table as a check table for dis.I found no issue while maintaining entries in the table.But when i try to delete the last entry in the table i get the message "No entry exist".Long textNo entries were found when importing data from the database.
    Kindly help.

    Hi,
    If it is not possible through table maintainence then write a small Z program to delete the entries in devlopment system and then if then if you want you can transfer those to other systems.
    delete from ZTABLE where {give your condition for the last record}.
    Regards,
    Sandipan

  • Deleting Duplicate entries from Internal tbale

    Hi All,
    I have used this code to delete duplicate entries from an internal table.
      DELETE ADJACENT DUPLICATES FROM IT_KOSTL COMPARING KOSTL hours.
    After this statment, still the internal table will remain with a duplicate row.
    Earlier table content before the delete statement:
    Lno  KOSTL                PRCTR                       hours                      hours1 
    1    2081010205     0000208101                 5525.000          1574.500
    2    2081010105     0000208101       105162.000     73854.750
    3    2081010105     0000208101       105162.000     73854.750
    4    2081010205     0000208101        5525.000     1574.500
    The Table gets modified after execution of DELETE statement as follows.
    Lno  KOSTL                PRCTR                       hours                      hours1 
    1    2081010205     0000208101                 5525.000          1574.500
    2    2081010105     0000208101       105162.000     73854.750
    3    2081010205     0000208101        5525.000     1574.500
    Why the line 3 is still present in the table?
    I hope as per that syntax, this line too should get delete.... Is it right?
    Basically i would like to delete both line 3 and line 4 from....
    How to resolve this issue?
    Please help me out....
    Regards
    Pavan
    What might be the reason?

    >
    Pavan Sanganal wrote:
    >   DELETE ADJACENT DUPLICATES FROM IT_KOSTL COMPARING KOSTL hours.
    > Why the line 3 is still present in the table?
    >
    > I hope as per that syntax, this line too should get delete.... Is it right?
    >
    Let me answer you all doubts.
    Why the line 3 is still present in the table?
    Actually it's not 3rd line, it's 2nd line.3rd line were deleted.
    when delete adjecent duplicates trigger than it would delete lower line(3rd in your case) not upper line.
    I hope as per that syntax, this line too should get delete.... Is it right?
    NO.

  • Deleting duplicate entries in iCal?

    How do I delete duplicate entries in iCal (identical entries on the same date)?

    Todd,
    I suspected a more serious problem because the answer was too easy.
    Thousands of duplicate entries...Is this what happened?
    According to, Mac OS X 10.4: Stay away from the SyncServices folder: As if it were a swarm of bees, you should stay away from the SyncServices folder in Mac OS X 10.4. Removing or modifying anything in it—or in subfolders within it—may cause unexpected issues. (This folder is located in your Application Support folder, in your Library folder, in your Home folder.)
    Deleting or modifying things in the SyncServices folder may cause unexpected results such as:
    • Duplicate contacts in Address Book or appointments in iCal.
    • Data loss in Address Book or iCal.
    Important: Any lost or duplicate data could propagate to other devices and computers via iSync and .Mac sync. This means data could be lost on other computers.If that is your problem, I suspect that without a backup, duplicate entry deletion will at best be tedious, and at worst fraught with frustration. You may be better off starting from scratch.
    ;~)

  • Deleting an entry in an IDM Configuration Object

    Does anyone know of a way using Express or Express/Java to delete an entry in an IDM configuration object (not the configuration object itself)? For example, if an IDM Configuration object has a Hashmap with 6 entries and we want to delete entry number 4, is there a way to do this? Thanks!

    Hi Mohammed,
    Are you really facing authorization issue or you mention to say that the delete option in grey out.
    Generally, it won't allow you to delete the entries in TCOLL table.
    Steps to delete entry in a table:
    1.) First, you have to select the entry and press display.
    2.) Enter in debugging mode by pressing /h.
    3.) For code variable it will be CODE="show". Change show to DELE and press F8(Execute).
    4.) Now the delete button will be enabled. After deleting, go out of T-code and again enter into SE16 and      check the table TCOLL.
    Regards
    Sudhir Sadhu

  • Delete an entry in ASMD table

    Hi Experts,
    Can anyone help me in how to delete a entry in SAP standard table ASMD.
    This table consist of service master data.I tried to create service master data using LSMW tool,but the service master data was created without service number.
    Due to this I'm unable to execute tcode AC03,which gives a short dump .
    the system I'm using doesn't have development access.
    Thanks in advance.

    Hi,
    You can create a DDL trigger. (a trigger that fire after a DROP command for example):
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14200/statements_7004.htm#i2235611
    In this trigger you can look for a specific event (use the ora_sysevent, ora_dict_obj_owner, ora_dict_obj_name system variables if you only wnat to track the drop of users.
    you have a such example here:
    http://psoug.org/reference/ddl_trigger.html
    I suggest you to start with a trigger that log all drop command and then you issue different drop command and see how the trigger is logging the different events ..
    Edited by: user11268895 on Aug 16, 2010 10:44 AM

  • Issue related to CATS

    Hi all,
    Requesting your help on the below issue related to CATS.
    Currently we use CATS to book employee hours on WBS elements and Internal orders.
    In the HR master record of the employee under the info type 0315 ( Time sheet defaults ) we assign u2018Activity type u2018 and the u2018sender cost centeru2019.
    This u2018Activity typeu2019 is defaulted from the HR master data.
    The New  requirement is to allow different  entries of u2018Activity typeu2019 i.e. we should be able to edit this field in CAT2 screen
    If the activity type above is edited with some other , it gives an error u201C Activity type entered is different from the one maintained in the HR master recordu2019.
    Is there any modifications I could make in the Data entry profile to enable this ? or any other suggestions?
    Note :1)  I have tried not to maintain info type 315 and then make entry ..but dint work.
             2) i tried to not maintain activty type in info type 315..it dint work ..same error message.     
    Requesting your valuable inputs on this.
    Thanks and regards
    Sandeep

    Hi ,
    Appreciate your help.
    But i have already tried this , it dint work.
    regards
    Sandeep

  • Issue Related to BDC Program against Recording

    Hi,
    I have a issue related to <b>BDC Programming</b>.
    Here My Transaction is related to <b>VX22</b>.
    First I did <b>Recording[SHDB]</b> for This Transaction<b>[VX22].</b>
    Then I had added same code from <b>Recording[SHDB]</b> in my Program.
    The Transaction which was going through <b>SHDB</b> Correctly, Not Working from My Program.
    Can any body tell me the Reason for this.
    I am adding <b>SHDB[Recording]</b> as well as Programming Code out here for checking.
    If anybody knows the diffrence please reply me.
    <b>SHDB - RECORDING</b>
    <b>    PERFORM bdc_dynpro      USING 'SAPMV52G' '0100'.
        PERFORM bdc_field       USING 'BDC_CURSOR'
                                      'RV52G-SELKZ'.
        PERFORM bdc_field       USING 'BDC_OKCODE'
                                      '/00'.
        PERFORM bdc_field       USING 'VBAK-VBELN'
                                      record-vbeln_001.
        PERFORM bdc_field       USING 'RV52G-SELKZ'
                                      record-selkz_002. " space
        PERFORM bdc_dynpro      USING 'SAPLV52E' '0500'.
        PERFORM bdc_field       USING 'BDC_CURSOR'
                                      'RV52G-SELKZ(02)'.
        PERFORM bdc_field       USING 'BDC_OKCODE'
                                      '=DETA'.
        PERFORM bdc_field       USING 'RV52G-SELKZ(02)'
                                      record-selkz_02_003.
        PERFORM bdc_dynpro      USING 'SAPLV52E' '0520'.
        PERFORM bdc_field       USING 'BDC_CURSOR'
                                      'VBEX-MODCO'.
        PERFORM bdc_field       USING 'BDC_OKCODE'
                                      '/00'.
        PERFORM bdc_field       USING 'VBEX-ALNUM'
                                      record-alnum_004. "Space
        PERFORM bdc_field       USING 'VBEX-EMBGR'
                                      record-embgr_005. "Space
        PERFORM bdc_field       USING 'VBEX-GENNR'
                                      record-gennr_006. "Space
        PERFORM bdc_field       USING 'VBEX-MODCO'
                                      record-modco_007. "Space
        PERFORM bdc_dynpro      USING 'SAPLV52E' '0520'.
        PERFORM bdc_field       USING 'BDC_CURSOR'
                                      'VBEX-MODCO'.
        PERFORM bdc_field       USING 'BDC_OKCODE'
                                      '=BACK'.
        PERFORM bdc_field       USING 'VBEX-GENNR'
                                      record-gennr_008. "Value passed
        PERFORM bdc_field       USING 'VBEX-MODCO'
                                      record-modco_009. "Value Passed
        PERFORM bdc_dynpro      USING 'SAPLV52E' '0500'.
        PERFORM bdc_field       USING 'BDC_CURSOR'
                                      '*VBEX-VBELN'.
        PERFORM bdc_field       USING 'BDC_OKCODE'
                                      '=SICH'.
        PERFORM bdc_transaction USING 'VX22'.</b>
    <b>In Program Code Added:</b>
    <b>  CLEAR v_line_item.
      PERFORM f_bdc_dynpro      USING 'SAPMV52G' '0100'.
      PERFORM f_bdc_field       USING 'BDC_CURSOR'
                                      'RV52G-SELKZ'.
      PERFORM f_bdc_field       USING 'BDC_OKCODE'
                                      '/00'.
      PERFORM f_bdc_field       USING 'VBAK-VBELN'
                                      i_data-vbeln.
      PERFORM f_bdc_field       USING 'RV52G-SELKZ'
                                      v_space.
      CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
        EXPORTING
          input  = i_data-sno
        IMPORTING
          output = i_data-sno.
      SHIFT i_data-sno LEFT DELETING LEADING space.
      CONCATENATE c_line i_data-sno c_cl_b INTO v_line_item.
      PERFORM f_bdc_dynpro      USING 'SAPLV52E' '0500'.
      PERFORM f_bdc_field       USING 'BDC_CURSOR'
                                      v_line_item.
      PERFORM f_bdc_field       USING 'BDC_OKCODE'
                                      '=DETA'.
      PERFORM f_bdc_field       USING v_line_item
                                      c_x.
      PERFORM f_bdc_dynpro      USING 'SAPLV52E' '0520'.
      PERFORM f_bdc_field       USING 'BDC_CURSOR'
                                      'VBEX-MODCO'.
      PERFORM f_bdc_field       USING 'BDC_OKCODE'
                                      '/00'.
      PERFORM f_bdc_field       USING 'VBEX-ALNUM'
                                      v_space.
      PERFORM f_bdc_field       USING 'VBEX-EMBGR'
                                      v_space.
      PERFORM f_bdc_field       USING 'VBEX-GENNR'
                                      v_space.
      PERFORM f_bdc_field       USING 'VBEX-MODCO'
                                      v_space.
      PERFORM f_bdc_dynpro      USING 'SAPLV52E' '0520'.
      PERFORM f_bdc_field       USING 'BDC_CURSOR'
                                      'VBEX-MODCO'.
      PERFORM f_bdc_field       USING 'BDC_OKCODE'
                                      '=BACK'.
      PERFORM f_bdc_field       USING 'VBEX-GENNR'
                                      i_data-gennr.
      PERFORM f_bdc_field       USING 'VBEX-MODCO'
                                      'A'.
      PERFORM f_bdc_dynpro      USING 'SAPLV52E' '0500'.
      PERFORM f_bdc_field       USING 'BDC_CURSOR'
                                      '*VBEX-VBELN'.
      PERFORM f_bdc_field       USING 'BDC_OKCODE'
                                      '=SICH'.
      PERFORM f_bdc_call_transaction USING 'VX22'.</b>
    Can Anybody tell me the Diffrence B/N Recording and Program.
    only <b>v_line_item</b> is added extra in program to find out specific line item and select that line item that is working Correctly.
    <b>Issue#1</b>
    The issues in above come in first Initial Screen[100] Where i need to Remove Check for <b>'RV52G-SELKZ'</b> that is first thing that is not happening.
    Next it woking correctly for <b> 500</b> Screen [By Selecting Correct line item and then Details for it].
    <b>Issue#2</b>
    Then it is going to Screen <b>502</b> where first it need to clear all the enabled field i passed <b>space</b> to them. but still it is showing values in all fields. After Clearing i should Re-Add 2 fields among Those fields.
    Then other things will happen.
    Can anybody tell me what is reason in program code is not working - I had tried in all <b>'A/E/N'</b> Modes but it's not working!
    If anybody knows reason please help me out.
    One More thing i had tried by making <b>PARAMETER ID'S</b> of few fields BLANK. But by this way also it is not working.
    <b>  SET PARAMETER ID 'ALN' FIELD v_space.
      SET PARAMETER ID 'EMB' FIELD v_space.
      SET PARAMETER ID 'GNR' FIELD v_space.</b>
    Can anybody give me the solution.
    Thanks in advance.
    Thanks & Regards,
    Prasad.

    Hi,
    I had tried in Ravi's way also.
    I will explain the process once more.
    It's a DE-Assign Process - Main purpose is to make the External Licence number blank.
    For that process is as follows:
    First user will Trigger <b>VX22</b> transaction,
    In the initial screen <b>100</b> he will give <b>Sales Order Number[VBELN]</b> then remove Check Box against <b>Blocked Items(Legal Control)</b> Then Press Enter.
    It will take user to <b>Change Licen Data [500]</b> Screen.
    There from the line items he will select specific line item which is already filled in with <b>ASSIGN</b> process.
    He will select check box against that Line item then will hit on <b>Details[F2]</b> from the Tool Bar.
    It will take user to <b>502 screen</b> There he will be deleting all the data in change mode one by one in order of <b>Exp.Ctrl.Class</b>, <b>Grouping</b>, <b>License Number</b>, <b>Change ID</b> Then he will hit on enter then by that <b>Ext.License No</b> which is in display mode - value against that field will get deleted.
    Then he will again provide <b>License Number, Change ID</b> and then <b>hit Enter, Enter, Then Back Button</b> then it will take us back to previous screen <b>[500]</b> there he will hit on <b>SAVE</b> button. Then Order will be saved.
    ABove is the actual process.
    Anybody having the solution for above as BDC is initially not making screen fields blank initially.
    how we can do this by SET PARAMETER ID's.
    Thanks & Regards,
    Prasad.

  • Problem deleting track entry on iTunes

    I have a problem deleting a couple of entries on iTunes 7.1.1.5. I had already erased the songs that were related to this few entries but I couldn't the entries off the library like I normally could.
    A common point of these few songs is that they're all incomplete tracks and that their tags cannot be modified at all.
    I tried the delete button and Right-click > delete but both couldn't work. What should I do?
    Compaq Presario   Windows XP  

    Today, I tried deleting the entry off iTunes and it worked. Wonder why it refused to delete it yesterday, no matter what I did. Hmmm. I hope that this does not happen again.
    (Anyway, I could still delete an entry from iTunes even if the file is read-only.)
    Thanks for your help anyway! I'm touched that the folks are so helpful here!
    Compaq Presario Windows XP

  • Issues related to Error - 6

    Hi,
    From 02.04 2010 the loads are failing from various R/3 systems to BW with an error: Error-6 in the update. All the failures were related to u201Ctime conversion from 0calday to 0ifscper (fiscal year GL) failed with the value 20100403u201D. No new routines, etc had been modified.
    In the request it was found there were transferred numbers but no added numbers and load in red status. We had to run the transfer global setting for each systems and load the data again, only then the load was successful. THis is done every day from 02nd till date
    We had created a process chain to load Fiscal Year Variantsfor various systems on 1st april (process chain starts at 10pm IST and the loads starts the next day at 4am IST)  which were successful with the ABAP program RSIMPCUST but the loads were failing from 2nd April with the said error.
    We had stopped this load thinking this was the issue on 6th April. But the issue repeated the next day too. I.e. on 7th..
    Again the global setting was executed and the load was runu2026.WHY DOES THIS HAPPEN DURING THIS APRIL (any thing related to financial year) CAN YOU PLEASE ADVICE A PERMENANT SOLUTION FOR THIS ISSUE.
    Similar issues are seen BW system itself, load happening in BW itself (ODS to CUBE), only after replication of the system and the load is run, the load becomes successful, if not it also fails with the same error as above. WHAT IS THE WAY TO GO FOR THE TRANSFER GLOBAL SETTING FOR MYSELF BW SYSTEM WHEN WE DONT FIND THAT OPTION IN RSA1
    Request your guidence on these issues
    Regards.
    Raj

    Hi,
    The issue related to u201CTime conversion from 0CALDAY to 0FISCPER (fiscal year 15 ) failed with value 20080930u201D is resolved now.
    I should have used Update table for T1 and P3 in transfer global setting for updating the table T009B (the sequence of R/3 production was T1 first, second Y4 and third P3. I had used Rebuild tables for Y4, T1 and P3 as well. Since it was in a sequence, the P3 table was rebuilt with its entries in the table T009B, since it was last in the sequence, but it did not have YP4 and TP1 entries.
    Regards.
    Raj

  • How to fix issues related to static electricity

    I had my iPad connected to a headphone jack for an external player. There was a small static shock when I touched and unplug it. My iPad mini seems to now be having issues related to static electricity. I am clearly having a issue with the audio output thru the headphones. It works normal until the volume scroller gets to 3/4 up, then there is a very irritating static like noise mixed into the other outgoing sounds.
    Also the battery seems to be losing power at twice or three times as fast as before. I've only had it a month and half. Can this be fixed somehow?

    Hi
    I have Iphne 4s/5.0.1 and I'm also stuck with same problem from last 5 days. I have restored/backup/updated the phone as many times as possible. I have been with Vodafone Customer Care (India) and now everyone knows my problem there, but there is no solution.
    I have read and tried most of the solutions provided here. Please help me out.
    Problem -
    1. 3G / Edge working when restore as new phone
    2. 3G / Edge stops working as soon as backup is restored
    3. Copied and verified both of the files (8218978e4ab0a48035bb92653145a6be872ea858 (Restored new iphone & Restored backup iphone) have different settings. Replacing part of this file or even complete text of this file, changes the date/time stamp of file and on backup restoration it says "Corrupt backup" and phone restarts.
    4. I dont want to Jailbreak the phone
    5. Using any third party software to install new APN says "Only One APN can be installed"
    6. Profile doesnt show any other APN
    Is there any other way to delete this file (com.apple.managedCarrier.plist) or just change the section where in string value is "Portalnmms" to required value "iphone" along with key?
    Please help me out.
    thanks

Maybe you are looking for

  • How to fetch newly updated item data in BADI  ME_PROCESS_PO_CUST?

    Hi Everyone, While changing a PO, I have a requirement where I need to only modify fields of newly added items of a purchase order and keep the values of existing items as it is. I have implemented the BADI ME_PROCESS_PO_CUST for this. but not able t

  • Custom Integrator - Date Picker/LOV does not return a value to the cell

    Hi, I have configured a webADI template with a date picker in it. Though the picker is rendered when i double-click on the cell, the selected date is not populated back. Same happens for any other list of values may render in the integrator. Any sugg

  • Scoll panel zooming

    I want to add zoom feature to the scroll panel. As the zoom button is pressed, I have to increase scrolling area. I tried the following sample code. If you run the sample, you can see the image size is increasing, but the scrolling area is same. I wa

  • Paid for applications dissapeared completely!!

    I plugged my iPhone in to my laptop to charge it through a USB cable. I didn't want to Sync my iPhone at that point so clicked what I thought was no, and left it to it. When i later unplugged my iPhone, 6 of my apps had disappeared. I Synced my iPhon

  • Tech Stack Validation Patch 4318672 - appsutil.zip issue

    I am working on upgrading 11.5.9 - 11.5.10.2. I recently installed rollup patch 8217898. +(Pre-Update step #3)+ The install went successfully, I created the appsutil.zip, moved it to the DB server unpacked everything looked normal. The next step said