Error while creating Infoset Creation

Hi All,
I've created an infoset using a program and data structure. But while generating the infoset this below mesg was getting as error:
Generation Error-->
Data Retrival Program-->
Commentary <Query_head> or <Query_body> is missing.
Please guide me with this error.
Thnks & Rgds,
Ravi

no answer.

Similar Messages

  • Error while creating - Infoset in SQ02

    This is the error, i am getting when i am trying to create - Infoset in SQ02. Can any one help to resolve, check and generate
    the infoset
    Error in parameter PYSORT
    Statement concluding with "...TYPE" ended unexpectedly.

    You could try applying OSS note 1117474. You may want to review this note to see whether it fts your case..
    Hope this helps.

  • Error while creating Shipment Creation

    Hi all,
             when am creating Collective shipment vth Tcode:VT04,
    am getting the below error-
    " Unit of measure between L&KG are not maintained" -
    we have previous del documents for which shipment doc was created through VT04.
    but this time, amnot able to create.
    please suggest me,
    its quite urgent.

    RMD,
    Check IMG- Global Settings - Check Units of Measurement config
    Also in shipment configurartion see if UOM is matching with ur MMR...
    REWARD IF U FINDS THIS AS USEFUL...
    Regds
    MM

  • Error while creating an Infoset

    Hi
    I am getting an error in rsa1 while creating an Infoset. The error message reads "Network is only supported in WinGUI". But I do not get any error while creating Infoobjects or DSOs or Infocubes. Error screenshot is attached.
    I am using SAPGUI for Mac.
    Is this a known issue ?
    Thanks for your attention.
    Arijit

    Hi Arijit,
    Could you refer this below SCN Post,
    http://scn.sap.com/thread/137946
    -Arun.M.D

  • Index Creation Error, while creating Information space

    Hi,
    I'm trying to create an Information Space in explorer based
    off of a Universe created on a Bex Query from SAP BW. 
    This
    Universe is created in Universe design tool based on BW 7.4,  gives below error, while creating report in  Web Intelligence based on Universe.
      Database error: Failed to execute MDX Query.
      Reason occured when starting the parser timeout during
    allocate/CPC-CALL.
    2) In Explorer everything seems to be working fine with the
    Information Space creation up until the point where I need to index it.  When I click 'Index' it takes about 5-10
    seconds and then fails with the following error
    Latest indexing failed
      Start Date: 2015/02/11 08:51
    End Date: 2015/02/11 08:53
    Server, BOHDSIA.ExplorerIndexingServer, generated the
    following messages:
      Index Creation Failed (
      The execution of the specified analysis query
    failed.-Database error: A database error has occured. (IES 10901)
      Database error: A database error has occured. (IES 10901))
      The Bex Query executes successfully in BEx Analyzer and webi
    report created with BEX as datasource

    Please see reply at:
    http://technet.oracle.com:89/ubb/Forum36/HTML/000661.html

  • Error while creating a new Domain in BEA Weblogic

    I am getting the below mentioned error while creating a new Domain in BEA Weblogic
    Preparing...
    Extracting Domain Contents...
    Creating Domain Security Information...
    Saving the Domain Information...
    Storing Domain Information...
    String Substituting Domain Files...
    Performing OS Specific Tasks...
    Performing Post Domain Creation Tasks...
    Domain Creation Failed!
    Domain Location: C:\bea\user_projects\domains\base_domain_1
    Reason: Got error in writing the node manager C:\bea\wlserver_10.0\common\nodemanager\nodemanager.domains property file!
    Exception:
    java.lang.Exception: Got error in writing the node manager C:\bea\wlserver_10.0\common\nodemanager\nodemanager.domains property file!
         at com.bea.plateng.domain.DomainNodeManagerHelper.registerDomainToNodeManager(DomainNodeManagerHelper.java:138)
         at com.bea.plateng.domain.DomainNodeManagerHelper.registerDomainToNodeManager(DomainNodeManagerHelper.java:170)
         at com.bea.plateng.domain.DomainGenerator.generate(DomainGenerator.java:435)
         at com.bea.plateng.wizard.domain.gui.tasks.DomainCreationGUITask$1.run(DomainCreationGUITask.java:232)

    Hi,
    It look two ways either you dont have permission to write any new thing to that domain.properties file or might file is got corrupted.
    Please check for the permission to that file.
    Regards,
    Kal.

  • Error while creating a new entity row for LoginPageEO.jbo.RowCreateExceptio

    hi all, i am new to OAF i have created a login page and trying to validate to a custom table which had two columns username and password, i am calling function from controller class which is in AM and from AM in turn i am calling function in VOimpl.java file where i am executing my query with whereClause, i am passing two parametere username and password to this function.
    if ((uname != null) && (!("".equals(uname.trim()))))
    whereClause.append(" UNAME = :");
    whereClause.append(bindCount++);
    parameters.addElement(uname);
    clauseCount++;
    if ((pass!= null) && (!("".equals(pass.trim()))))
    if (clauseCount > 0)
    whereClause.append(" AND ");
    whereClause.append(" PASSWORD = :");
    whereClause.append(bindCount++);
    parameters.addElement(pass);
    clauseCount++;
    setWhereClause(whereClause.toString());
    if (bindCount > 0)
    Object[] params = new Object[bindCount];
    // the copyInto() is 1.1.8 compliant which is required by ARU
    parameters.copyInto(params);
    setWhereClauseParams(params);
    //System.out.println(getQuery());
    executeQuery();
    //System.out.println(getRowCount())
    when i call this from login page i am getting
    Error - oracle.jbo.RowCreateException: JBO-25017: Error while creating a new entity row for LoginPageEO.
    Can any one help me out.

    If your requirement is not to update any DB Table then don't use an EO. I would suggest the following for your requirement of validating the username and password.
    - Create a VO that has the following query. Do not select any EO during the VO creation.
              SELECT 'x'
              FROM  <CUSTOM TABLE>
              WHERE <USERNAME COL> = :1
                  AND  <PASSWORD COL> = :2
            - Have the initQuery(..) Method in your VOImpl, that takes the username and password. Binds them to the VO and executes the query.
    - Have a method in your AM to take the username and password as parameters. Make a call to the above VO::initQuery(..)
    - In your controller's processFormRequest(..) call this AM Method upon the submit button action.
    This should work smoothly.
    The following is just for triaging the error that you have. The above steps, should help you achieve your requirement by itself, the below steps would not be required.
    Coming back to your issue. Any custom table should have the standard WHO Columns.
    - Modify the custom table to have these who columns.
    - In the EO Wizard, synchronize the EO to reflect the DB Structure.
    - Make sure the EO Attributes are marked updatable.
    Cause of your issue: Through you are not creating EO rows programatically, whenever a VO is based on an EO, upon execution of the VO query, EO's are automatically created, based on the number of rows returned by the VO Query. So internally its failing to created the EO Rows. On of the common reason would be that it creates the EO row, but cannot set the attributes from the VO, because the EO Attribute is readonly.
    Hope this clarifies.

  • Error while creating sequence - related to xdb installation?

    I'm getting the following error while creating a sequence -
    ERROR at line 1:
    ORA-00604: error occurred at recursive SQL level 1
    ORA-20000: Trigger xdb_installation_trigger does not support object creation of
    type SEQUENCE
    ORA-06512: at line 32
    oracle xml db was installed on this instance.
    Is there a way around it? We want oracle xml db installed but we still want to be able to create and drop sequences!

    Hi Expert,
    In T-Code: OB52, We need to open the period 001 for Year - 2012 for the Account Type - S and for GL Account - 799999.
    Configure as shown below for your Posting Period Variant:
    Account Type: S
    From Account: (Only provide any GL Accounts From Range, If you require any specific GL Accounts to be open. Else leave blank)
    To Account:(Only provide any GL Accounts To Range, If you require any specific GL Accounts to be open. Else leave blank)
    From Period: 01
    Year: 2012
    To Period:01
    Year:2012
    From Period:13
    Year:2012
    To Period:16
    Year:2012
    Save
    Regards,
    GK
    SAP

  • Error while creating "RETURNS" as ERP Sales transaction type

    Description: We are getting error while creating ERP SLO type "Returns-ZRE". Message prompts as "Creation of ERP Transaction failed". We do not get the message for other order types for example "Standard order".
    Please suggest. Please note that this is an ERP sales order in CRM UI not a CR< sales order.
    Thanks
    Shree

    Is this only for a particular order type?
    As stated above this can be to do with user authorisations or the trusted RFC set up. Some things to check are:
    - ST22 dumps in ECC
    - ST01 authorisation trace for the user in ECC
    - Trusted RFC connection set up

  • Error while creating PO in operation subcontracting

    I am getting an Error while creating PO in operation subcontracting.When I'm trying to convert the purchase requisition for the operation in the routing into a Purchase order it gives me the error "Not possible to determine any components".Please guide me why I am getting this error. I have already assigned the component to the operation in the routing. I also have this component in stock. But no Idea why I'm getting this error

    Hi  Sam,
    please check ,
    Assign a recursive BOM for the material for which you want to  create the purchase order .ie. create a BOM  of mat say X having a component  X and marking the indicator  recursive ticked.
    Please create the BOM  which is valid much before the date of creating a purchase requisition .
    And proceed for the creation of subcontract purchase requisition.
    Please Revert back, if the problem is solved.
    OMKAR

  • Error while creating setuppackage

    Hi All,
    I am getting the following error while creating a setup package.
    0010 tc.mobile.admin.bl  Creation of virtual mi instance failed.
    Please suggest what can be the reason for the same.
    Also i have certain queries while creating a setup package for Mobile 2005 device.
    1.While creating a SDA file in the Operating System tab i m not able to see any option for mobile 2005 device.It shows only WINCE/PPC 2002.Can i use this one or do we have to make some settings or something.
    2.I have a MI25Tom_en.CAB file for Mobile framework.But i wanted to integrate it with the trustore and some mobileengine config parameters like syncpassword handling option = loca.What i have to do for the same.If i have a cab file with all these integratd can i use that one or server will by itself put the trustore while generating a SDA file.
    3.We have to create two components one for Framework and second for install sequence amd we have to install onle creme on the PDA as i read somewhere.Do i need to put JSSE1-0-3_01.CAB somewhere while defining the mobile component or JSSE also i have to install on the PDA before running the setup.cab on PDA.
    Please suggest
    Thanks
    Regards
    Devendra Phate

    Hi Devendra,
    If you have downloaded Framework sda from SAP market place.
    Then generally the name for the MobileComponent is MobileEngineJsp or AWT.
    You can also check the name of MobileComponent in MCD.xml by opening  sda->mobile-description->mcd.xml.
    Search with this name and version in NWA , if search fails then there is some problem with reload or deployment process.
    Check the following.
    Login to the ABAP system.
    Launch transaction sm59.  Create new TCP/IP type  RFC connection.
    Enter some name for the RFC destination. Give program ID = MEMGMT_MOBILE_CONTAINER_SYNC.
    Enter appropriate gateway service and host (same as you entered in Visual Admin). Test Connection.
    Launch transaction sm30.
    Open table MEMGMT_J2EE_DEST . Create a new entry. Enter the name of RFC destination that you created in SM59 in ‘RFC Destination’ field.  Enter some description.
    Save the data.
    Regards,
    Satyendra

  • Error While Creating Sales Document - on a new rollout

    Dear Friends,
            While going for new Plant Creation on a Rollout, i am getting the following error while creating Sales Order,
    Kindly suggest the needy to me,
    " _Template and one-time material processing is not activated                                                                               
    No determination routine is specified for the SD documents for the 
    permitted combinations                                                                               
    The combination of sales organization, document category, and      
    document type or delivery type for the SD document is not permitted_ "
    Thanks & Regards
    T.Arulvanan

    Dear Freind,
    Have you assigned the Sales Area to the Document types
    T-code : OVAZ.
    Also Check the Sales Applications  V/c2
    Can you double click on the error and See what is the datails of the error appearing?
    Regards,
    Amlan Sarkar

  • Error while creating and opening a ERP sales order in SAP CRM

    Hi,
    I am getting an error while creating or opening a ERP sales order from SAP CRM.
    "Creation of the ERP Transaction failed" this is the error i'm getting while creating. when i try to open an existing sales order I'm getting a dump.
    Attached the dump screen shot. From the dump analyasis it seems the transactions are not loaded through LORD framework.
    The RFC connection seems to fine as i have tested accessing an ECC RFC FM through a sample program and its successful..
    please help..
    Thanks
    Krishna

    Hello Krishna,
    Did you get a solution to this? I have the same dump message.
    As a matter of fact, we already use ERP Sales Order and it works fine. But I have recently configured a new sales order document type, and the dump occurs only for this new Z order type.
    Thanks a lot,
    Luis.

  • Error while creating TO in background

    Hi Guys,
    I am getting error while creating TO in background using Transaction code LB13.
    The error is "No batch input data for screen SAPLSTXBC 0100" this is the screen which comes after saving a TO. Here we can give the printing details. If we are doing the TO in foreground with same transaction the data for this screen comes automatically. but in background it is showing the error.
    So help me in getting rid of the problem.
    Thanks and Regards
    Sukant

    Hi Manasa,
    What is your source for creation of CVC? Are you trying to create CVCs from infocube?
    Could you try out the following to identify the root cause?
    In the create CVC (/sapapo/mc62) variant, uncheck the check boxes for all the 3 checks at bottom of the variant, and also uncheck the "adjust time series objects" checkbox.
    Come to "selection condition", and select one or few CVCs from your source (Infocube, or flat file, whatever).
    Then try to run the job, which should only create one or few CVCs as per your selection criteria.
    If you are able to create CVCs in this way, that could mean that you might be having some issue during some check or generation of time series. Delete the created CVCs and again try to create them by activating the checks one by one.
    If the above helps in identification of the issue, then it might be possible to attack and resolve the issue e.g. special character, etc.
    PS: You could also try the "load to worklist" option to try to identify the CVC having issue. There you can specify one or few CVCs to be created in one go, and this might help in identifying if there is an issue with a certain CVC.
    Thanks - Pawan

  • Serial number error while creating the production order

    Hello frds,
    I am getting the following error while creating the production order.
    "Item 000000 requires exactly 100 serial numbers for the asset".
    If i give 100 serial numbers in the order, the error is solved. But i do not want to assign 100 serial numbers, i want to assign only 2 numbers.
    I have tried using the new serial number profile also, but it is giving same error.
    Kindly guide.
    Regards,
    Narendra Bora

    Dear Narendra
    Select the serial number profile and go to serialization procedure and set the ser. usage status 02 - Optional as below.
    Procd Procedure description Ser.Usage
    PPRL PP order release 02
    since the serail number creation is optional for order relase this will allow you to relase with out error and with serail number assigned in partial.
    Regards
    Soundar

Maybe you are looking for

  • Help, I need to add a table to a form in Adobe designer

    Anyone know how to add a table (that the end user will be able to fill in) to a Adobe designer form that I'm creating? I figured it would be in the tools but is not?????

  • How can I improve my cellphone signal at home?

    Across the street it's great signal strength but my side of the street is heavily wooded and 1 bar is lucky. I can never use the phone held to my head I always have to put it on speaker and I literally know where to stand so the call isn't dropped. T

  • Possible to reset component metrics in OEM?

    Is it possible to reset the component metrics in OEM for a given composite app? I'd like to run a baseline performance test, reset the metrics, then do a revised run & profile the change. This is straightforward in OSB, but I haven't seen a way of do

  • Selection, Color Correction and Blending

    How do I make a selection of ALL the yellow on the Meatball building and make it a deeper yellow the way it has been done in the attached photographs: BEFORE AFTER Someone suggested playing with the Color Range: Select/Color Range and then use the la

  • RZ21-CCMS Alerts in case the message is struck in the Queue

    Hi all, How to Configure an alert ,if the message is struck in the SMQ1,SMQ2 an alert needs to be generated and sent to multiple users. eg:a.xyz.com,:b.xyz.com,:c.xyz.com... In  RZ21 I see there is an Option to send alert to only One receipent.How to