Update structure does not contain any elements error

Dear Friends in am a newbie in WDA. My Function Module  has the following decalarations.
TABLES
*"      U_P9006 STRUCTURE  P9006
*"      IT_P9006 STRUCTURE  P9006
IT_P9006 is used to fill all the values in the Table, if the user wants to create a new entry in the table then he will click on the new button and U_9006 will be used to hold the new value and save in the database.
when i binded U_9006-EmployeeNumber to a Input box to accept values and tested the application dumps giving the error
"Adapter error in INPUT_FIELD "TC_1_EMPLOYEE_CODE" of view "ZHOLIDAY.MAINVIEW": Context binding of property STATE cannot be resolved: Node COMPONENTCONTROLLER.1.ZESS_EDU.1.CHANGING_1.1.U_P9006 does not contain any elements "
i have 3 basic questions please help me.
1. Currently the cardinality of the Node U_9006 is 0..n and Selection 0..1 , i reffered few sdn threads where it says change the cardinality to 0..n and issue will resolve , my issue is cardinality is already 0...n and even if i try to change it at the context tab it is not changing.
2. if map the INPUT BOX a String attribute ctx_employee rather than mapping it to the U_P9006-EmployeeNumber the page does not dumps , but how do i assign this ctx_employee value to the u_9006-employeenumber in the coding?
3. any sample of SAVE code so that on those lines i write SAVE coding and try to update the record.
Regards,
Jack

Jack,
Bind_table , bind_element methods are used to insert records into NODE, not into database table.
As you said you want to insert records into custom infotype, you need to use function modules to create .
For infotype tables we use below function module to insert records
HR_INFOTYPE_OPERATION
  DATA return1 TYPE bapireturn1.
DATA: wa_9006 TYPE p9006.
NOW PASS ALL THE VALUES OF WA_9006.
WA_9006-PERNR = LV_EMPID.
    wa_9006-begda = " provide start date'
    wa_9006-endda = ' provide end date
    wa_9006-aedtm = sy-datum.
    wa_9006-uname = sy-uname. ///LY PASS ALL THE VALUES OF P9006 TABLE( CHECK SE11 FOR FIELDS )
THEN CALL BELOW FUNCTION MODULE.
CALL FUNCTION 'HR_INFOTYPE_OPERATION'
               EXPORTING
                        infty                  = '9006'
                         number                 = wa_9006-pernr
*                         subtype                = wa_9006-subty
*               OBJECTID               =
*               LOCKINDICATOR          =
                        validityend            = wa_9006-endda
                        validitybegin          = wa_9006-begda
*               RECORDNUMBER           =
                        record                 = wa_9006
                        operation              = 'INS'
*                TCLAS                  = 'A'
*                DIALOG_MODE            = '0'
*                NOCOMMIT               =
*                 VIEW_IDENTIFIER        =
*                 SECONDARY_RECORD       =
              IMPORTING
                      return                 = return1
*              KEY                    =
Hope this will be useful
Regards
Srinivas
Edited by: sanasrinivas on Feb 13, 2012 12:28 PM

Similar Messages

  • Error:The node does not contain any elements

    Hi Experts,
    I am getting this error.
      The following error text was processed in the system SR6 :  The node does not contain any elements. COMPONENTCONTROLLER.1.ROADMAP
    The error occurred on the application server server6_SR6_00 and in the work process 0 .
    The termination type was: RABAX_STATE
    The ABAP call stack was:
          Method: RAISEELEMENT_NOT_FOUND of program CL_WDR_CONTEXT_NODE===========CP
          Method: IF_WD_CONTEXT_NODE~SET_STATIC_ATTRIBUTES of program CL_WDR_CONTEXT_NODE_VAL=======CP
          Method: WDDOINIT of program /1BCWDY/G25NECI0LTPP66VI3KOI==CP
          Method: IF_WDR_COMPONENT_DELEGATE~WD_DO_INIT of program /1BCWDY/G25NECI0LTPP66VI3KOI==CP
          Method: DO_INIT of program CL_WDR_DELEGATING_COMPONENT===CP
          Method: INIT_CONTROLLER of program CL_WDR_CONTROLLER=============CP
          Method: INIT_CONTROLLER of program CL_WDR_COMPONENT==============CP
          Method: INIT of program CL_WDR_CONTROLLER=============CP
          Method: INIT of program CL_WDR_CLIENT_COMPONENT=======CP
          Method: INIT of program CL_WDR_CLIENT_APPLICATION=====CP
    What is the problem here?
    Thank you.
    Lalitha.

    (Assuming you have created elements for node...)
    Definitely it is cardinality problem, please check that... Try to understand below points to avoid such error.
    When a node is created in the context of a Web Dynpro component, the cardinality of the node is specified. The cardinality defines how often a node is to be instantiated at runtime u2013 that is, how many elements of this node are available at runtime.
    u2022        1u20261          Only one element is instantiated.
    u2022        0u20261          At runtime, no more than one element is instantiated, but it is also possible that no element is instantiated.
    u2022        1u2026n          n elements can be instantiated, but at least one element must be instantiated.
    u2022        0u2026n          The number of instantiated elements of the context node can vary.
    The cardinalities 0..n and 1..n correspond to the declaration of an internal table. The cardinality 1..1 corresponds to the declaration of a structure.
    Thanks,
    Swanand.

  • Context node does not contain any elements

    Hi Masters,
                     I create a node dynamically from structure using CL_WD_DEMO_DYN_MODEL->create_nodeinfo_from_struct method. my code as
    nd_field_info = nd_field->get_node_info( ).
    wd_this->zwd_assist->create_nodeinfo_from_struct( EXPORTING
      parent_info = nd_field_info
      structure_name = dotablename
      is_multiple = abap_true ).
    When am set the data to context then it gives the error like node does not contain any elements, but i verified the attributes using nodeinfo then all attributes will be displayed, but when value inserting time it throws error.
    Waiting for Your Response...
    Advance Thankyou
    Regards,
    Sathya

    Hi sathya ,
    the method you using is absolute , the replacement for the methos is  if_wd_context_node_info->add_new_child_node
    pls refer the sample code to create a dynamic Node .
    DATA: pa0001  TYPE REF TO cl_abap_structdescr,
               comp_tab     TYPE cl_abap_structdescr=>component_table,
               struct_type     TYPE REF TO cl_abap_structdescr,
              ls_pa0001   ?= cl_abap_typedescr=>describe_by_name('P0001').
              comp_tab      = p0001->get_components( ).
              struct_type   = cl_abap_structdescr=>create( comp_tab ).
      struct_type = cl_abap_structdescr=>create( comp_tab ).
    * now the nodeinfo is created
      node_info = wd_context->get_node_info( ).
      node_info = node_info->add_new_child_node(
        name                         = 'MY_NODE'
        IS_MANDATORY                 = ABAP_true
        IS_MULTIPLE                  = ABAP_true
        STATIC_ELEMENT_RTTI          = struct_type
        IS_STATIC                    = ABAP_false
    refer DEMODYNAMIC component for dynamic creation of node
    regards
    Chinnaiya P
    Edited by: chinnaiya pandiyan on Dec 15, 2010 2:07 PM

  • Dump showing that table does not contain any elements.

    Hi All,
    I have a table, with lead select.Based on the row selected, corresponding values of the row are filled in the input fields.
           I filter the table and only those rows are displayed which has status "waiting". Now the problem is when there is only one row with status "waiting", and process it, its status changes to "done", as a result of which there is no row in the table, and i get following error:
    Adapter error in INPUT_FIELD "IF_STATUS" of view "ZPWB.DISTRIBUTE_VIEW": Context binding for property VALUE cannot be resolved: The DISTRIBUTE_VIEW.1.PD_ITEMS_TAB node does not contain any elements
    Can you please help out:)

    I have now the same problem.
    somebody found out what the solution is for that issue?
    if i have an empty context i get a dump due to the context binding. what is the work around?

  • 'Document does not contain any items' error while posting GR from BAPI

    Hello Friends,
    I am trying to post GR from BAPI 'BAPI_GOODSMVT_CREATE' but some time it post successful and some time it does not post..gives error 'Document does not contain any items'....i have search all option but did not get any solution why this error is coming....kindly help me if you have any information regarding that.
    The strange thing is i have alrady posted GR with some test data and later on again am trying to post GR with same test data but it is giving error as above.
    For your information...i am using enhancement spot in standard program for GR posting...could it give any problem.
    Regards,
    Rajkishor.

    Solved by my self...problem was i were using enhancement spot in standard program because of this it was creating problem have search new enhancement spot and put my code out there now it is working fine.
    Thanku very much all of you for your reply.

  • Report painter execution error - GR657 - set does not contain any entries

    Hello,
    During our execution of report we are getting the below error:
    Set 0102PCBT1IPROVDIV in set 0002$ZA13#######ROW0236 does not contain any entries
    Message no. GR657
    Diagnosis
    You cannot use empty sets to define reports.  The single-dimension set contains a basic set that does not contain any values.
    Procedure
    Use a set that contains at least one value, or enter values for the set defined.
    This has been discussed in a similar Thread in May 2010 by puri & Praveen Jagdeesan,
    However I am unable to trace the set & how to delete the blank values.
    0002$ZA13#######ROW0236 or ROW0236 in the system.
    Set 1IPROVDIV is exisitng in system.
    Also when we go to KAH3 - Cost element hierarchy & see in the where used list we are not able to see the set being used in the report whereas the system from where we have exported the report we can see that this set is being used in the report.
    Please could you help in resolving the same.

    Hello Murali,
    Thanks for the reponse. But set 0002$ZA13#######ROW0236 is not available in system.
    Please could you guide me on the same.
    Thanks & Regards
    Shreenath

  • Request does not contain any saved update rules; rollback not possible

    Hi,
    In BW on hana, there's a 3.x flow DSO where it loaded a request from PSA.
    It failed due to activation error SID Generation.  But unfortunately, due to PSA Deletion process chain, it's PSA Request got deleted.
    Now, we couldn't delete the red request(failed request) from the 3.x flow DSO.
    If we try to delete, it shows job has been completed successfully with the following message:
    Job started
    Step 001 started (program RSDELPART1, variant &0000000004233, user ID )
    Delete running: DataStore object ZREBATE, from 630,138 to 630,138
    Delete is scheduled; Selection conditions were substituted
    Request REQU_6412GVIEWBJ0TZZIMZE2TZIOR does not contain any saved update rules; rollback not possible
    Deletion of request REQU_6412GVIEWBJ0TZZIMZE2TZIOR from data target ZREBATE failed
    Deletion of request REQU_6412GVIEWBJ0TZZIMZE2TZIOR from data target ZREBATE failed
    Request REQU_6412GVIEWBJ0TZZIMZE2TZIOR does not contain any saved update rules; rollback not possible
    Job finished
    I went to the table RSICCONT and checked the mentioned request.  But I couldn't find delete option enabled.  Even our basis team doesn't have authorization to delete the  mentioned request from the standard table RSICCONT.
    Request you to please help me how to handle this.
    Regards,
    Antony Jerald.

    Hi Antony,
    Once you have deleted the data in PSA there is no way to reconstruct the request hence you can do below things to correct it
    1) Identify the No of Records which having error , because if you have more records it will take more time as in debug mode we have option to edit only one record at one.
    2) Display only one record in Active table and change it using the Debug option ( not recommended ), but as you are in corner we need to use this
    3) change the records with respective values and active the request again
    Regards
    Jagan

  • Error (Data mining): The specified mining structure does not contain a valid model for the current task.

    I'm trying to run the Cross validation report on a mining structure that contains just Microsoft Association Rules mining model. In Target Attribute, I've tried:
    Actual(Service Description).SE value
    Actual([Service Description]).[SE value]
    Actual(Service Description)
    Actual([Service Description])
    just because i don't know what is the exact correct format, but none of them worked, and I always get the following error:
    Error (Data mining): The specified mining structure does not contain a valid model for the current task.
    the following is my mining model structure

    Association rules does not allow for cross-validation
    Mark Tabladillo PhD (MVP, SAS Expert; MCT, MCITP, MCAD .NET) http://www.marktab.net

  • J1IEX post than made error like does not contain any selectable items

    Respected Sir,
    We have purchase the Goods From SEZ unit and it wil be treated as import made.
    We doing the following activities
    1. Prepared the Import P.O.
    2. released the same P.O.
    3. Doing the MIRO for Custome Vendor
    4. Capture the J1iex
    than we fins the below mention ERROR & Diagnoses and ERROR
    Document 4400000016   does not contain any selectable items
    Message no. M7064
    Diagnosis
    The document or document item entered cannot be adopted.
    Possible reasons for this are:
    u2022     The document items have already been processed
    (Suggest zero lines indicator set?).
    u2022     the document items have been deleted or are blocked.
    u2022     the document items have been created for a different plant.
    u2022     (for reservations only) movements are not yet allowed for the reservation items.
    u2022     (for reservations only) the document items are retrograde components of the order. These are posted using the order confirmations.
    u2022     A confirmation must exist for the document items.
    u2022     The document items must be released first.
    u2022     The document is an R/2 document.
    Procedure
    Make sure your entries are correct.
    u2022     If the system has already processed the total quantity, you can set the Suggest zero lines indicator. The system will suggest the quantity zero for the items that have already been processed.
    u2022     If you have entered a particular item, cancel the item. If you do not enter an item, the system searches all of the open items in the document.
    u2022     If the document is a purchase order, production order or a reservation, you can
    Kindly doneedfull above mention error
    Thanks & Regards
    Bipin Shah

    HI,
    Please check whether all the vendor and excise details have been maintained in J1id.  i.e Excise rate maintainance.
    Hope this helps.
    Regards,
    Prasanna
    Award pls if helpful

  • Error while deploying BPM : DC bpm_0/bl/ddic does not contain any archives for deployment

    Hi All,
            I'm using SAP PO 7.31 single stack. I've created a simple BPM in NWDS. I'm able to successfuly build the BPM which I created but when I "Deploy" it throws the below error.
    DC bpm_0/bl/caf/metadata does not contain any archives for deployment
    DC bpm_0/bl/ddic does not contain any archives for deployment
    DC bpm_0/bl/caf/dictionary does not contain any archives for deployment
    Not sure what/where to check and fix the issue. Can you please help me in fixing the issue?
    Thanks
    Raj.

    Dear Raj,
    I am looking into this.
    In the meantime can you try this also.
    xxx/pr/pm: Deployment error, GD | ABAP, SAP, benX AG, benXBrain,&a…
    Thanks & Regards,
    Patralekha

  • Get an Error window, The source folder does not contain any supported camera raw files

    I am using CS2 and it would not open up my latest RAW files, I was getting a warning Could not complete your request because it is not the right kinds of document. So, I checked the Camera Raw Plug-in and it says Version 3.7. I see that my camera an Olympus E-20 is supported. But it is not opening the Raw files, the day before I took jpeg and they have opened. I will not trash my Adobe Photoshop CS2 because it was a royal pain to install and I don't know where the CD is.
    I installed the latest DNG Converter and when I try to open up the folder which has all the RAW images that didn't open in Adobe, I still get an Error window that says, "The source folder does not contain any supported camera raw files." Why? It says it supports my Olympus E-20. I actually have the E-20n, I don't think that is the problem. My RAW icons usually show up as small image thumbnails and this time they are gray icons only with the incorrect date under the icon. Is there another product I can use without spending money? These images I took in RAW were special and I don't want to lose them. Please help!
    Esther

    Hello, I was using only CS2 with my Olympus E-20n for 5 years, no problem. It just started acting up in RAW this year. I downloaded Picasa that same day and now it seems to be opening up all of my RAW files that didn't open the other day. So, I think Picasa installed a new plug-in adaption to CS2 because now all my RAW icons have a new logo on them, the same one that's in Picasa. Strange, but it works now and I am not complaining anymore. I love CS2 and the many ways I can adjust RAW files, so I am using it, Picasa is a sideline now that I can take a look at many thumbnails and it organized all my photo files by the year and folders. Amazing free software. I have probably 60,000 images in my computer and an external hard drive and Picasa picked them all up and made a library, cool.

  • Error msg after scan "ADF does not contain any pages"

    HP office jet 6600 has worked well for months, but recently 3 out of 5 times that I tried to scan from the ADF, whether one page or many, the scanner runs through its cycle and then gives me the following error: “The scanner automatic document feeder (ADF) does not contain any pages. Insert the pages to be scanned into the ADF and try again.”
    Sometimes I just run it again and it works. I'm using HP scan that came with the 6600 download full driver package; running Windows 7 64-bit. I use the scanner significantly and it has operated perfectly for over a year and I haven't changed anything that I know of.Appreciate any help that somebody can give me… I have cleaned rulers and "flicked the little white thing", and some of the other things that were mentioned for similar problems.

    Hello  I would be happy to help you with the automatic document feeder (ADF)  issue you are having with the Officejet 6600. Even though it's a different issue this document has several steps you can try; Vertical Bands, Lines, or Streaks in Copies, Faxes, or Scans. I've copied the applicable steps here for you. Clean the scanner glass and scanner lid If the scanner glass or the white underside of the lid has fingerprints, smudges, lint, dust, or other debris, this can slow performance and affect copy and scan quality. To resolve this issue, clean the product.Before you begin, gather the following materials:Several clean, soft, lint-free clothsMild glass cleaner
     CAUTION:Use only glass cleaner to clean the scanner glass. Do not use cleaners that contain abrasives, acetone, benzene, or carbon tetrachloride. These substances can damage the product. Avoid isopropyl alcohol (rubbing alcohol) because it can leave streaks on the glass.Press the Power button () to turn off the product.Disconnect the power cord from the rear of the product.Lift the scanner lid.
    Figure : Lift the scanner lid
    Spray a clean, soft, lint-free cloth with mild glass cleaner.
     CAUTION:To protect the scanner, do not spray the glass cleaner directly on the glass.Clean the scanner glass, and the glass strip next to the scanner glass, with the lint-free cloth.
    Figure : Clean the scanner glass and the glass strip
    Clean the white underside of the scanner lid.
    Figure : The underside of the scanner lid
    Dry the scanner glass and the glass strip thoroughly with a clean, dry cloth or chamois to prevent spotting, and then dry the white underside of the scanner lid.
     NOTE:Do not use paper-based wipes or tissues that can leave fiber residue.Close the scanner lid.Reconnect the power cord to the rear of the product.If the product does not turn on by itself, press the Power button () to turn it on.Try to copy, fax, or scan again.If these steps resolved the issue, you do not need to continue troubleshooting.If the issue persists, continue to the next solution.
    Clean the automatic document feeder (ADF)
    Follow these steps to clean the automatic document feeder (ADF), and then make blank copies to check if the issue is resolved.Step one: Clean the ADF rollers and separator padFollow these steps to clean the automatic document feeder (ADF).Gather the following materials:A clean, lint-free cloth, or any cloth that will not come apart or leave fibersDistilled, filtered, or bottled water (tap water might damage the product)Remove any originals from the document feeder tray.
    Figure : Remove any originalsPress the Power button () to turn off the product.Disconnect the power cord from the rear of the product.Lift the cover of the ADF until it stops.
    Figure : Lift the ADF cover
    Locate the pick rollers and the separator pad.
    Figure : Locations of the pick rollers and the separator pad
    The ADF coverThe pick rollersThe separator padLightly dampen a clean lint-free cloth with distilled or bottled water, and then squeeze any excess liquid from the cloth.Use the damp cloth to wipe any residue off of the separator pad.
    Figure : The separator pad
    Use the damp cloth to wipe any residue off of the pick rollers.
    Figure :
    Dry the rollers and the separator pad with a clean, dry, lint-free cloth.Do not close the ADF cover. Continue to the next step to clean the glass strip in the automatic document feeder.
    Clean the glass strip in the automatic document feeder
    Follow these steps to clean the glass strip underneath the mechanism in the automatic document feeder (ADF).
     NOTE:The images in this step might not be of your product, but the steps are the same.If you have not done so already, disconnect the power cord from the rear of the product.Remove any originals from the document feeder tray.
    Figure : Remove any originals
    Open the ADF cover, and then lift the ADF mechanism.
    Figure : Lift the ADF mechanism
    Lightly dampen a clean, soft, lint-free cloth with a mild glass cleaner.Gently clean the glass strip inside the ADF, and then thoroughly dry it to prevent spotting.
    Figure : Clean the glass strip
    Lower the ADF mechanism back into place, and then close the ADF cover.Step three: Make a blank copy using the scannerFollow these steps to make a blank copy using the scanner.Lift the scanner lid.Figure : Lift the scanner lidRemove any originals from the scanner glass.Close the scanner lid.Load unused, plain white paper into the input tray.From the home screen on the product control panel, touch Copy ().Touch Start Black to start the copy.If the copy is clean, continue to the next step to make a copy using the ADF.If the copy has vertical bands, lines, or streaks, there might be dust inside the product, poor internal connections, or the product might be damaged.  Please let me know if these steps resolved your issue, or if there is anything else I can do to help.  I look forward to hearing from you!   Thanks, 

  • Migration from 2003 - 2010, OAB errors on client, and OAB virtual directory does not contain any files.

    Migration from 2003 - 2010, OAB errors on client, and OAB virtual directory does not contain any files. 

    Hi,
    Please re-create the Outlook profile to have a try. If the issue persists, we can do the further checks in Exchange server.
    Please make sure you have changed the OAB generation server to Exchange 2010 and enable Web distribution on the Exchange 2010 Client Access server:
    Move-OfflineAddressBook "Default Offline Address List" -Server <MBX2010>
    If all configurations are correct, please check whether there is any folder in the following path in Exchange sever 2010:
    a. OAB generation in Mailbox:
    \\Program Files\Microsoft\Exchange Server\V14\ExchangeOAB
    b. OAB distribution in Client Access:
    \\Program Files\Microsoft\Exchange Server\V14\ClientAccess\OAB
    Thanks,
    Winnie Liang
    TechNet Community Support

  • Stack file that is generated does not contain any java components

    We are in process of upgrading our ecc6.0 system with ehp4. The enhancement is stuck up in configuration phase for JAVA. Though we have configured Java in solution manager the stack file that is generated does not contain any java components and so the installation is stuck up. Kindly request you to advice us on this issue .
    Attached is the 'Trouble Ticket Report', PREPARE_JSPM_QUEUE_CSZ_01.LOG, and SMSDXML_EA4_20100623144541.375.txt
    ++++
    Trouble Ticket Report
    Installation of enhancement package 1 for SAP NetWeaver 7.0
    SID................: EA4
    Hostname...........: wipro
    Install directory..: e:/usr/sap/EA4
    Upgrade directory..: F:\EHPI\java
    Database...........: Oracle
    Operating System...: NT
    JDK version........: 1.6.0_07 SAP AG
    SAPJup version.....: 3.4.29
    Source release.....: 700
    Target release.....: 700
    Start release SP...: $(/J2EE/StandardSystem/SPLevel)
    Target release SP..: $(/J2EE/ShadowSystem/SPLevel)
    Current usages.....:
    ABAP stack present.: true
    The execution of PREPARE/INIT/PREPARE_JSPM_QUEUE ended in error.
    The stack E:\usr\sap\trans\EPS\SMSDXML_EA4_20100625054857.968.xml contains no components for this system.
    More information can be found in the log file F:\EHPI\java\log\PREPARE_JSPM_QUEUE_CSZ_02.LOG.
    Use the information provided to trouble-shoot the problem. There might be an OSS note providing a solution to this problem. Search for OSS notes with the following search terms:
    com.sap.sdt.j2ee.phases.PhaseTypePrepareJSPMQueue
    com.sap.sdt.ucp.phases.PhaseException
    The stack E:\usr\sap\trans\EPS\SMSDXML_EA4_20100625054857.968.xml contains no components for this system.
    PREPARE_JSPM_QUEUE
    INIT
    NetWeaver Enhancement Package Installation
    SAPJup
    Java Enhancement Package Installation
    ++++++
    PREPARE_JSPM_QUEUE_CSZ_01.LOG>>
    <!LOGHEADER[START]/>
    <!HELP[Manual modification of the header may cause parsing problem!]/>
    <!LOGGINGVERSION[2.0.7.1006]/>
    <!NAME[F:\EHPI\java\log\PREPARE_JSPM_QUEUE_CSZ_01.LOG]/>
    <!PATTERN[PREPARE_JSPM_QUEUE_CSZ_01.LOG]/>
    <!FORMATTER[com.sap.tc.logging.TraceFormatter(%d [%s]: %-100l [%t]: %m)]/>
    <!ENCODING[UTF8]/>
    <!LOGHEADER[END]/>
    Jun 28, 2010 9:21:23 AM [Info]:                      com.sap.sdt.ucp.phases.AbstractPhaseType.initialize(AbstractPhaseType.java:754) [Thread[main,5,main]]: Phase PREPARE/INIT/PREPARE_JSPM_QUEUE has been started.
    Jun 28, 2010 9:21:23 AM [Info]:                      com.sap.sdt.ucp.phases.AbstractPhaseType.initialize(AbstractPhaseType.java:755) [Thread[main,5,main]]: Phase type is com.sap.sdt.j2ee.phases.PhaseTypePrepareJSPMQueue.
    Jun 28, 2010 9:21:23 AM [Info]:                   com.sap.sdt.ucp.phases.AbstractPhaseType.logParameters(AbstractPhaseType.java:409) [Thread[main,5,main]]:   Parameter inputFile=EHPComponents.xml
    Jun 28, 2010 9:21:23 AM [Info]: com.sap.sdt.j2ee.phases.jspm.JSPMQueuePreparatorFactory.createJSPMQueuePreparator(JSPMQueuePreparatorFactory.java:93) [Thread[main,5,main]]: Creating JSPM SP Stack  queue preparator.
    Jun 28, 2010 9:21:24 AM [Info]: com.sap.sdt.ucp.dialog.elim.DialogEliminatorContainer.canBeOmitted(DialogEliminatorContainer.java:96) [Thread[main,5,main]]: Dialog eliminator spStackDialogEliminator allows to omit dialog SPStackLocationDialog
    Jun 28, 2010 9:21:24 AM [Info]:                  com.sap.sdt.util.validate.ValidationProcessor.validate(ValidationProcessor.java:97) [Thread[main,5,main]]: Validatable parameter SP/STACK/LOCATION has been validated by validator RequiredFields.
    Jun 28, 2010 9:21:24 AM [Info]:                  com.sap.sdt.util.validate.ValidationProcessor.validate(ValidationProcessor.java:97) [Thread[main,5,main]]: Validatable parameter SP/STACK/LOCATION has been validated by validator SPStackLocationValidator.
    Jun 28, 2010 9:21:24 AM [Info]: com.sap.sdt.j2ee.phases.jspm.JSPMSpStackQueuePreparator.createQueue(JSPMSpStackQueuePreparator.java:107) [Thread[main,5,main]]: Using SP Stack E:\usr\sap\trans\EPS\SMSDXML_EA4_20100625054857.968.xml.
    Jun 28, 2010 9:21:24 AM [Info]:                   com.sap.sdt.j2ee.tools.spxmlparser.SPXmlParser.parseStackTag(SPXmlParser.java:488) [Thread[main,5,main]]: STACK-SHORT-NAME tag is missing. The CAPTION of the stack will be used as stack name.
    Jun 28, 2010 9:21:24 AM [Info]:                   com.sap.sdt.j2ee.tools.spxmlparser.SPXmlParser.parseStackTag(SPXmlParser.java:582) [Thread[main,5,main]]: PRODUCT-PPMS-NAME tag is missing. The CAPTION of the product will be used as product PPMS name.
    Jun 28, 2010 9:21:24 AM [Info]:                      com.sap.sdt.j2ee.tools.spxmlparser.SPXmlParser.parseSPXml(SPXmlParser.java:424) [Thread[main,5,main]]: Parsing of stack definition file E:\usr\sap\trans\EPS\SMSDXML_EA4_20100625054857.968.xml has finished.
    Jun 28, 2010 9:21:24 AM [Error]:                       com.sap.sdt.ucp.phases.AbstractPhaseType.doExecute(AbstractPhaseType.java:863) [Thread[main,5,main]]: Exception has occurred during the execution of the phase.
    Jun 28, 2010 9:21:24 AM [Error]: com.sap.sdt.j2ee.phases.jspm.JSPMSpStackQueuePreparator.createQueue(JSPMSpStackQueuePreparator.java:136) [Thread[main,5,main]]: The stack E:\usr\sap\trans\EPS\SMSDXML_EA4_20100625054857.968.xml contains no components for this system.
    Jun 28, 2010 9:21:24 AM [Info]:                         com.sap.sdt.ucp.phases.AbstractPhaseType.cleanup(AbstractPhaseType.java:906) [Thread[main,5,main]]: Phase PREPARE/INIT/PREPARE_JSPM_QUEUE has been completed.
    Jun 28, 2010 9:21:24 AM [Info]:                         com.sap.sdt.ucp.phases.AbstractPhaseType.cleanup(AbstractPhaseType.java:907) [Thread[main,5,main]]: Start time: 2010/06/28 09:21:23.
    Jun 28, 2010 9:21:24 AM [Info]:                         com.sap.sdt.ucp.phases.AbstractPhaseType.cleanup(AbstractPhaseType.java:909) [Thread[main,5,main]]: End time: 2010/06/28 09:21:24.
    Jun 28, 2010 9:21:24 AM [Info]:                         com.sap.sdt.ucp.phases.AbstractPhaseType.cleanup(AbstractPhaseType.java:910) [Thread[main,5,main]]: Duration: 0:00:00.781.
    Jun 28, 2010 9:21:24 AM [Info]:                         com.sap.sdt.ucp.phases.AbstractPhaseType.cleanup(AbstractPhaseType.java:911) [Thread[main,5,main]]: Phase status is error.
    ++++++++++++++++++++++
    [stack xml data: version=1.0]
    [SPAM_CVERS]
    ST-PI                         2005_1_7000006
    LSOFE                         600       0015
    SAP_AP                        700       0015
    SAP_BASIS                     701       0003
    SAP_ABA                       701       0003
    SAP_BW                        701       0003
    PI_BASIS                      701       0003
    PLMWUI                        700       0002
    SAP_APPL                      604       0002
    EA-APPL                       604       0002
    SAP_BS_FND                    701       0002
    EA-IPPE                       404       0002
    WEBCUIF                       700       0002
    INSURANCE                     604       0002
    FI-CA                         604       0002
    ERECRUIT                      604       0002
    ECC-DIMP                      604       0002
    EA-DFPS                       604       0002
    IS-UT                         604       0002
    IS-H                          604       0003
    EA-RETAIL                     604       0002
    EA-FINSERV                    604       0002
    IS-OIL                        604       0002
    IS-PRA                        604       0002
    IS-M                          604       0002
    SEM-BW                        604       0002
    FINBASIS                      604       0002
    FI-CAX                        604       0002
    EA-GLTRADE                    604       0002
    IS-CWM                        604       0002
    EA-PS                         604       0002
    IS-PS-CA                      604       0002
    EA-HR                         604       0005
    SAP_HR                        604       0005
    ECC-SE                        604       0002
    [PRDVERS]                                  
    01200314690900000432SAP ERP ENHANCE PACKAGE       EHP2 FOR SAP ERP 6.0          sap.com                       EHP2 FOR SAP ERP 6.0                                                    -00000000000000
    01200314690900000463SAP ERP ENHANCE PACKAGE       EHP4 FOR SAP ERP 6.0          sap.com                       EHP4 FOR SAP ERP 6.0                                                    -00000000000000
    01200615320900001296                                                            sap.com                                                                                +00000000000000
    01200615320900001469SAP ERP ENHANCE PACKAGE       EHP3 FOR SAP ERP 6.0          sap.com                       EHP3 FOR SAP ERP 6.0                                                    -00000000000000
    01200615320900003195EHP4 FOR SAP ERP 6.0_NW701    EHP4 FOR ERP 6.0_NW701        sap.com                       EHP4 FOR SAP ERP 6.0 / NW7.01                                           +00000000000000
    [SWFEATURE]                                                                               
    1                   01200615320900001296SAP ERP                       2005                          sap.com                       SAP ERP 6.0: SAP ECC Server
    19                  01200615320900003195EHP4 FOR SAP ERP 6.0_NW701    EHP4 FOR ERP 6.0_NW701        sap.com                       EHP4 FOR SAP ERP 6.0 / NW7.01: Discrete Ind. & Mill Products
    20                  01200615320900003195EHP4 FOR SAP ERP 6.0_NW701    EHP4 FOR ERP 6.0_NW701        sap.com                       EHP4 FOR SAP ERP 6.0 / NW7.01: Media
    21                  01200615320900003195EHP4 FOR SAP ERP 6.0_NW701    EHP4 FOR ERP 6.0_NW701        sap.com                       EHP4 FOR SAP ERP 6.0 / NW7.01: Utilities/Waste&Recycl./Telco
    23                  01200615320900003195EHP4 FOR SAP ERP 6.0_NW701    EHP4 FOR ERP 6.0_NW701        sap.com                       EHP4 FOR SAP ERP 6.0 / NW7.01: Leasing/Contract A/R & A/P
    24                  01200615320900003195EHP4 FOR SAP ERP 6.0_NW701    EHP4 FOR ERP 6.0_NW701        sap.com                       EHP4 FOR SAP ERP 6.0 / NW7.01: Retail
    25                  01200615320900003195EHP4 FOR SAP ERP 6.0_NW701    EHP4 FOR ERP 6.0_NW701        sap.com                       EHP4 FOR SAP ERP 6.0 / NW7.01: Global Trade
    26                  01200615320900003195EHP4 FOR SAP ERP 6.0_NW701    EHP4 FOR ERP 6.0_NW701        sap.com                       EHP4 FOR SAP ERP 6.0 / NW7.01: Financial Supply Chain Mgmt
    30                  01200615320900003195EHP4 FOR SAP ERP 6.0_NW701    EHP4 FOR ERP 6.0_NW701        sap.com                       EHP4 FOR SAP ERP 6.0 / NW7.01: Central Applications
    31                  01200615320900003195EHP4 FOR SAP ERP 6.0_NW701    EHP4 FOR ERP 6.0_NW701        sap.com                       EHP4 FOR SAP ERP 6.0 / NW7.01: Strategic Enterprise Mgmt
    33                  01200615320900003195EHP4 FOR SAP ERP 6.0_NW701    EHP4 FOR ERP 6.0_NW701        sap.com                       EHP4 FOR SAP ERP 6.0 / NW7.01: Human Capital Management
    37                  01200615320900003195EHP4 FOR SAP ERP 6.0_NW701    EHP4 FOR ERP 6.0_NW701        sap.com                       EHP4 FOR SAP ERP 6.0 / NW7.01: Oil & Gas
    38                  01200615320900003195EHP4 FOR SAP ERP 6.0_NW701    EHP4 FOR ERP 6.0_NW701        sap.com                       EHP4 FOR SAP ERP 6.0 / NW7.01: Catch Weight Management
    42                  01200615320900003195EHP4 FOR SAP ERP 6.0_NW701    EHP4 FOR ERP 6.0_NW701        sap.com                       EHP4 FOR SAP ERP 6.0 / NW7.01: Public Sector Accounting
    43                  01200615320900003195EHP4 FOR SAP ERP 6.0_NW701    EHP4 FOR ERP 6.0_NW701        sap.com                       EHP4 FOR SAP ERP 6.0 / NW7.01: Insurance
    44                  01200615320900003195EHP4 FOR SAP ERP 6.0_NW701    EHP4 FOR ERP 6.0_NW701        sap.com                       EHP4 FOR SAP ERP 6.0 / NW7.01: Hospital
    45                  01200615320900003195EHP4 FOR SAP ERP 6.0_NW701    EHP4 FOR ERP 6.0_NW701        sap.com                       EHP4 FOR SAP ERP 6.0 / NW7.01: SAP ECC Server VPack successor
    46                  01200615320900003195EHP4 FOR SAP ERP 6.0_NW701    EHP4 FOR ERP 6.0_NW701        sap.com                       EHP4 FOR SAP ERP 6.0 / NW7.01: ERecruiting
    47                  01200615320900003195EHP4 FOR SAP ERP 6.0_NW701    EHP4 FOR ERP 6.0_NW701        sap.com                       EHP4 FOR SAP ERP 6.0 / NW7.01: Defense & Public Security
    48                  01200615320900003195EHP4 FOR SAP ERP 6.0_NW701    EHP4 FOR ERP 6.0_NW701        sap.com                       EHP4 FOR SAP ERP 6.0 / NW7.01: Financial Services
    55                  01200615320900003195EHP4 FOR SAP ERP 6.0_NW701    EHP4 FOR ERP 6.0_NW701        sap.com                       EHP4 FOR SAP ERP 6.0 / NW7.01: Oil & Gas with Utilities
    56                  01200615320900003195EHP4 FOR SAP ERP 6.0_NW701    EHP4 FOR ERP 6.0_NW701        sap.com                       EHP4 FOR SAP ERP 6.0 / NW7.01: Defense
    59                  01200615320900003195EHP4 FOR SAP ERP 6.0_NW701    EHP4 FOR ERP 6.0_NW701        sap.com                       EHP4 FOR SAP ERP 6.0 / NW7.01: PLM Core
    69                  01200615320900003195EHP4 FOR SAP ERP 6.0_NW701    EHP4 FOR ERP 6.0_NW701        sap.com                       EHP4 FOR SAP ERP 6.0 / NW7.01: EAM config control
    9                   01200615320900003195EHP4 FOR SAP ERP 6.0_NW701    EHP4 FOR ERP 6.0_NW701        sap.com                       EHP4 FOR SAP ERP 6.0 / NW7.01: SAP ESA ECC-SE
    ++++++++++++++++

    Though we have configured Java in solution manager the stack file that is generated does not contain any java components
    You will probably need to update Solution Manager first with a number of corrections so you can get a correctly generated stack file. Depending on your ST400 version in Solution Manager apply collective corrections from "Note 1461849 - MOpz: Collective corrections 24" or "Note 1452118 - MOpz: Collective Corrections 23". They generally deal with these kind of stack file issues.
    Nelis

  • Exception calling "Activate" with "0" argument(s): "Topology does not contain any components of type Microsoft.Office.Server.Search.Administration.Topology.AdminComponen

    Hi,
    I have a Sharepoint 2013 farm I am trying to provision search for (not the same as my other thread). However, I get the below error:
    Exception calling "Activate" with "0" argument(s): "Topology does not contain any components of type Microsoft.Office.Server.Search.Administration.Topology.AdminComponent"
    In my script, I have the following:
    New-SPEnterpriseSearchAdminComponent -SearchTopology $clone  -SearchServiceInstance $SearchServiceInstanceServer3 -ErrorAction SilentlyContinue
    So I am not sure why the error happens, when I am trying to set this component. However, it's not the first component to be set (index partition on non-local servers first). I can make it first, but why does this error happen?
    UPDATE: I have noticed that the usage and health proxy on my farm is/was stopped, but I am not able to access the server(s) to look at this right now. Could this cause this issue?

    Do you already have Admin component running for the Search Service Application?
    Usage and Health Service will not cause this issue.
    Please also refer to below discussion to see if it helps:
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/02f0b072-aa3a-4b7f-9662-2caf373d1e57/setspenterprisesearchtopology-identity-newtopology?forum=sharepointgeneral
    Warm Regards,
    Bhavik K Jain
    Sr. Software Engineer - SharePoint Administration
    Please vote if my reply helps and ensure that you mark a question as Answered once you receive a satisfactory response.

Maybe you are looking for

  • Printing Problem With Wipro Printer its very urgent

    hi , i have developed the smartform which contain  page format of size height DINA4  .when i am giving print in wipro dot printer it is printing in correct postion in first page but in next page it displaying below the postion what i am given .plz te

  • After 10.9.3 update monitor doesn't wake up from sleep

    I have an LCD connected to the Mac Mini via a mini-DP to DVI adapter and a video projector is connected directly at the HDMI. The LCD is the "main" screen while the projector is only switched on for watching TV or movies. My "Computer sleep" is set t

  • ISync unable to sync up calendar after 10.4.9 upgrade

    Not sure if this is related to the 10.4.9 upgrade i did. I used to be able to use iSync to sync up address book and calendar with my Sony Ericsson K608i. Now i can still sync up the address book but the calendar synchronization is failing. This is th

  • Hyperion Analyzer 7.5.5

    We are upgrading the Hyperion analyzer version to 7.5.5. We are planning to use JRE 1.4.2_12 with this release. Problem we are facing is that if the user has got higher version of JRE than this, it doesn't use the 1.4.2_12 JRE version but the higher

  • Dual Boot Solaris 2.5.1 and 2.8

    Is it possible to dual boot a Sparc Ultra 10 workstation with Solaris 2.5.1 and a more recent version (such as 2.8). If so please point me to some documentation. This is required as we are running several pieces of software licensed against the hosti