cancel
Showing results for 
Search instead for 
Did you mean: 

sapinst SAPINST_ERRORSTEP=true

Former Member
0 Kudos

Hi gurus,

In the installation process of EP 7.0 we want to skip a step. We try modifying file "keydb.xml" (changing "ERROR" by "OK") but SAPinst don't skip step.

Also we try execute "./sapinst SAPINST_ERRORSTEP=true" but I don't understand because SAPinst begins to execute from the first step. Is it usual?

Are there other ways to skip steps in sapinst?

thanks

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

I think you mean

./sapinst SAPINST_SKIP_ERRORSTEP=true

Former Member
0 Kudos

Hi Graham,

Yes, I wrote bad; "./sapinst SAPINST_SKIP_ERRORSTEP=true"; it must begin again the installation?

Thanks

Former Member
0 Kudos

Hi,

Yes, it will always start from step 1, but it will recognise that those steps have already been performed and should go through them very quickly. When it gets to the error step it should bypass the issue.

Regards,

Graham

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi,

Please let me know where i have to include the below line in the keydb.xml file.

./sapinst SAPINST_SKIP_ERRORSTEP=true

Below is my keydb.xml file.

**************************************************************

"keydb.xml" [Read only] 156225 lines, 4793008 characters

<?xml version="1.0" encoding="UTF-8" standalone="no"?>

<!DOCTYPE tables SYSTEM "keydb.dtd" >

<!-- Installation start: Wednesday, 27 October 2010, 11:00:52; installation directory: /tmp/sapinst_instdir/PATCH/ADA; product

to be installed: Support Package 25> Import Support Package 25 -->

<tables>

<tableset srcid="NO_SRC_ID">

<table name="SAPINST_EXE" namespaces="STANDARD">

<columns>

<column name="COMPONENT">

<defaultproperties>

<property name ="PPMS_COMPONENT_NAME" value ="ind" />

<property name ="PPMS_COMPONENT_RELEASE" value ="ind" />

</defaultproperties>

<properties>

<property name ="DISPLAY_NAME" value ="Support Package 25> Import Support Package 25" />

</properties>

</column>

<column name="OSTYPE">

</column>

<column name="OS">

</column>

<column name="DB">

</column>

<column name="PRODUCT">

</column>

<column name="RELEASE">

</column>

<column name="STEERING_TABLE">

</column>

</columns>

<row>

<fld name="COMPONENT">

<strval><![CDATA[ApplySupportPackage]]>

</strval>

</fld>

<fld name="OSTYPE">

<strval><![CDATA[ind]]>

</strval>

</fld>

<fld name="OS">

<strval><![CDATA[ind]]>

</strval>

</fld>

JPReyes
Active Contributor
0 Kudos

Please let me know where i have to include the below line in the keydb.xml file.

You don't include the line in the xml file, you just execute it as an switch on sapinst

./sapinst SAPINST_SKIP_ERRORSTEP=true

Former Member
0 Kudos

ok, thanks for your explanation