Transport of infoset query urgent ?

Hi ,
any one can help me on this topic..
i want to transport the infoset query ..
please any body give the steps....regarding this topic..
regards,
goodyear,

Hi,
Goto SE10--> Find your request number (F5) -->ensure that you have all the required objects in your transport -->release all the tasks one by one by selecting the request and clicking on the red truck (F9) and finally release the request by selecting it and clicking on the red truck(F9).
Once you have released it, contact your Basis/Transport Administrators to import into the required target system.
Cheers,
Sree

Similar Messages

  • Transport of infoset query

    Hi ,
    while i am doing transport in infoset query,i select the infoset and query and next i wnt to transfort and metioned there requried names of infoset &query. i done every thing ok but in SE10 transport organizer ...displaying request  is wrong missing the system name and request number..
    on this topic any body help me its urgent foe me..
    thanks ,
    good year..

    Hello Good year,
    Have you attached the objects to a transportable package?
    When you created the transport request, did you make a note of the request number, did the system give any errors or messages while writing the object to the request?
    If you do know the request number, goto SE10, and then press F5 and fill your request number and press enter, and then you should be able to see your request.
    Cheers,
    Sree

  • Transport of infoset Query through Report RSAQR3TR

    Dear Hcm Gurus
    I have created query through sq01 and change functional area sq02 as per requirement in this query
    i have created additional fields in infoset in which i also assigned abap field code on newly created  data fields
    i also assigned new data fields to relavent field group as well
    but when i export and import as per mentioned procedures , additional data field are not imported in target client
    i have follow steps as mentioned
    Step 1
    Run RSAQR3TR in 'old' system. Select EXPORT and specify the objects to be transported. (System includes these in an automatically created transport request)
    Step 2.
    Release this transport and request it be transported to 'new' system. (This results in the entries being populated in transport table AQTDB in 'new' system).
    Step 3.
    Run RSAQR3TR in 'new' system. Select IMPORT and tick the Overwrite checkbox. Specify the transport number in the field labelled 'dataset with imports'.
    Kindly guide me urgently that how additional fields are transported in target client
    Regards
    Barket Ali Zafar
    SAP HCM Consultant
    Siemens Pakistan
    +92-0300-5521524

    yes
    but my question is ? that additional data field defineds in functional area /infoset are not importing ?
    Kindly guide me urgently

  • Error with 'At Selection-Screen' in Infoset query (Urgent)

    Hi All,
    I have defined a field as a selection criteria in Selections tab of Infoset & written a few lines of code. The syntax is ok, but when i try to run the query, the system prompts the message as below & terminates:
    'Local SELECT-OPTIONS are not allowed (FORM routine or GET event is active).'
    I would like to know what code should i enter in the GET / GET LATE section. Can someone help me?
    Edited by: Vivek on Dec 31, 2007 10:27 AM

    Mr. Atish,
    Thanks for the reply, but wish to inform you, i have not written any code in GET / GET-LATE section of the infoset. I just read the SAP help files, where it mentions that i need to maintain some check code in GET / GET-LATE section if i have defined selection criteria in selections tab.
    May i know what code should i maintain?
    In selections tab i have defined 2 selection criterias, for one criteria i have maintained the code & for the other in Extras field i have maintained a Default value & entered 'NO-DISPLAY'.
    Await your inputs to resolve this problem.
    Vivek

  • Infoset Query Transport

    Hi All,
        I have enhanced an ECC infoset query.From the data field I have added the new field  in to a Field group.After transporting the infoset query in the Data field area the new field is getting reflected but the new field is not getting reflected under the Field Group area,Can anybody tell me how to transport an Infoset query,including the Field group?
    Thanks
    SREEJA
    Edited by: Sreeja SSP on Aug 24, 2009 12:30 PM

    Hi,
    Can you please let me know how did you resolve the problem?
    We have a scenario where in we have to add 17 fields to infoset which we have done. But these fields are not getting reflected in the data source.
    Moreover in Infoset field group, if you click on the newly added field. On the below area you will get info about that field. There is a button which displays field queries. When I click on it, it displays messsage as 'No queries found'.
    My question is - how to add those queries to that field.
    Can you please help?
    Thanks
    Subodh

  • How to transport infoset query to Production serveR?

    when i transport everything is transported to production server. when i run the transaction in production server it shows me the error saying . PROGRAM Does not exist .. how to resolve this..
    can any one help me to transport my infoset query from step-to-step.
    Regards
    Saad Nisar

    Well there is no button as such.
    I hope you must have found the Transport button.
    When you click it, it gives selection screen there you can find the redio buttons.
    Export will create a transport request and Download will download it to local machine.
    Let me know if it doesn't work. But you have to do more analysis as to how to go this way.
    Regards
    Shital

  • Infoset query ('At Selection-Screen') - Urgent

    Hi All,
    The below code for selection criteria 'At Selection-Screen' for an infoset-query works ok, but i find 2 problems, can someone help.
    1. When user presses F4, i wanted the output to display
       SG Singapore
       IN   India
       But at the moment it just displays
       SG
       IN
    2. If the user enters any other value apart from the above 2 i do not want the query to execute, instead show something like enter a valid value. But at the moment if i enter another country code manually just to test eg: US, the query runs with this selection which i do not want.
    Hope my problem is clear, await inputs.
    Code:
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR VEN_CTY-LOW.
            IT_LAND-VEN_CTY = 'SG'.
            IT_LAND-LTEXT   = 'Singapore'.
              APPEND IT_LAND.
            IT_LAND-VEN_CTY = 'IN'.
            IT_LAND-LTEXT   = 'India'.
              APPEND IT_LAND.
    CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
        EXPORTING
          RETFIELD   = 'VEN_CTY'
          VALUE_ORG  = 'S'
        TABLES
          VALUE_TAB  = IT_LAND
          RETURN_TAB = IT_RETURN
        EXCEPTIONS
          PARAMETER_ERROR = 1
          NO_VALUES_FOUND = 2.
    IF SY-SUBRC = 0.
        READ TABLE IT_LAND INDEX 1.
        MOVE IT_RETURN-FIELDVAL TO VEN_CTY-LOW.
    ENDIF.

    Hi vivek,
    for the 2nd problem,
    create a range for ingapor and india say r_range.
    and
    r_range will have two values say india, singapore.
    loop at VEN_CTY.
    if ven_cty not in r_range.
    display error message.
    exit.
    endloop.
    try this and let me know.
    reward if helpful.
    thanks .
    ranya

  • Infoset-query-selection-screen-default-values

    Hi All,
    I am having the requirement as I need to put default values in the selecion-screen of the report by using  Infoset query. Let me know the settings required for this.
    I am using SQ01, SQ02, SQ03 T.Codes.
    And I need display  one record only if any field contains mulitple records, for example in the HR-ABAP, field p0105-usrid contains multiple values depending on the subtype.So, I need to display USRID when URSTY = '900'. All these should display by Infoset query only.
    Pls help me in this scenario , its an urgent requirement.I am very much thankful for you for reading my proble, if you will provide some sort of solution, I feel very happy.
    Advance thanks for this .
    Regards,
    Prakash.

    Prakash,
    To default the values on your selection screen, you will need to do some ABAP I guess. (if you do not want to use variant). Open up the infioset in SQ02 and then goto code option for the PNP**** field and then you can code to initialize the selection screen variables. Test with an ABAPer.
    To display multiple records as multiple columns, you will have to create custom fields in infoset, and then go from there. Again see ABAPer.

  • Infoset query to QA server

    hi friends,
    can we transfer an infoset query made from SQVi in dev to QA ?how????
    Thanks,
    Gaurav

    you would have to convert your 'quickie' to a proper query using SQ01 -> Query -> Convert Quick View. But this would only be possible if you are working in the Standard Area (check: Environment, Query Areas) and you would have to be in the Global Area in order to make the thing transportable, so i guess there's no easy way to do it. i do not know of a way to 'push' a query from Standard to Global Area.

  • Transport request : ABAP QUERY

    Friends,
    Please help me to generate the Transport request for ABAP query.
    I have modified an existing custom ABAP QUERY.
    I have followed the following process, but unable to get the transport number.
    Goto SQ02. Select the proper query area. Press the transport button in the application bar.
    Now u have two options...
    1. Download and upload
    2. Export and import.
    The first option downloads the user/infoset & query on ur local server and then using upload u can bring it into other system. The second option creats transport request and u can use the normal way of transporting to the other system.
    When i try to do export to generate Transport request using above way, I am getting following information and transport request is not generated.
    Export log : List of exported objects
    Test export only
    InfoSet ZCREDIT (import option REPLACE )
    Query ZCREDIT of user group ZCREDIT (import option REPLACE )

    Hi kpreddy reddy,
    please try deselecting checkbox "test run". This should work.
    I hope it helps. Best regards,
    Alvaro

  • How Transportation of Adhoc Query is done through RSAQR3TR report.

    Hi,
    How Transportation of Adhoc Query is done through RSAQR3TR report.i want to transport a new usergroup, new infoset and a query from Develpment to Quality and Production.
    I have gone through the documentation of the RSAQR3TR report and as well as the SAP library material, but still i am confused.
    Please help

    Hi,
    http://www.sap-img.com/basis/transport-of-abap-query.htm
    Hope this helps.
    Regards,
    Rashmi

  • Reg:Infoset query Uploading..

    Hi all,
    I am facing problem in infoset query uploading.We have some queries in Old system we need them in ECC.I am using program RSAQR3TR to download and upload the queries (not import and export).
    I am able to download but while uploading i am getting an error..
      'F   Error when generating transport dataset'....
    Any inputs guys..
    Thanks in advance,
    KK
    Edited by: krishna kishore on Apr 24, 2009 9:56 PM
    Edited by: krishna kishore on Apr 27, 2009 4:02 PM

    Hi all,
    I am facing problem in infoset query uploading.We have some queries in Old system we need them in ECC.I am using program RSAQR3TR to download and upload the queries (not import and export).
    I am able to download but while uploading i am getting an error..
      'F   Error when generating transport dataset'....
    Any inputs guys..
    Thanks in advance,
    KK
    Edited by: krishna kishore on Apr 24, 2009 9:56 PM
    Edited by: krishna kishore on Apr 27, 2009 4:02 PM

  • Infoset query field changes

    Hi All,
    I have one issue.
    I am changing length of one infoobject in DSO from 4 to 7 and also its description.
    Now, infoset and infoset query existing on this DSO should also change with new length and description.
    Could anyone please  tell me how i can do this ?
    I have tried "Adjust" option in infoset , but its not changing its length and description.
    Thanks for the help !!

    Hi,
    Can i do this directly in production system.
    Can we transport infoset and infoset query changes from developemt to production
    Thanks

  • How to create infoset query

    Hi,experts
    Can anybody give me documents on infoset query and step by step showing how to create infosetquery. I will really greatful to you all.
    Thanks
    Preeti

    Hi Preeti,
    1. You can query the data using 'Listcube' transaction.
    2. Instead of builing on tables, it sits on ODS (no need to worry about underlying tables).
    3. Visible on the Bex 'info area' as like other infoproviders.
    4. It generates additional key figure called 'Number of records' in the Bex. This will be useful for query.
    5. No additional ABAP can be used. But in RSQ02, you can use piece of ABAP.
    6. Queries created on data provider infoset can work like other queries including transport functionality.
    Hope helps.
    For more info check Re: Query on Infoset
    Bye
    Dinesh

  • Data load failure with datasource Infoset Query

    Dear Experts,
    I had a data load failure today,where i am getting data from the datasource which was built on Infoset Query.
    we had a source system upgrade and when i checked Infoset query in the development of Source sytem  im getting the below message :
    "Differences in field EKES-XBLNR
         Output Length in Dictionary : 035
         Output Length in Infoset : 020
    Message was saying Adjust the INFOSET,I dont have authorisation to create the transport in the source system.I requested the respective person to Adjust the Infoset and also to regenerate the same and move to production system.
    I think this will solve my problem,Please correct me if am wrong.
    Regards,
    Sunil Kumar.B

    Hi Suman,
    i am still facing the problem even after adjusting the Infoset.The problem is we are facing the short dump with length mismatch.
    when i checked the Infoset we are taking the field xblnr from table EKES and data element for teh field was XBLNR_LONG(char-35) but when i checked the datasource in RSA2 the dataelement for XBLNR was showing as BBXBL(char20).
    i think this was causing the problem and i checked in SQ02 we will take the field directly from the table and how there is chance to change the dataelement.
    Please help me to correct the same.
    Regards,
    Sunil Kumar.B

Maybe you are looking for

  • How to give Common Background color for all JPanels in My Swing application

    Hi All, I am developing a swing application using The Swing Application Framework(SAF)(JSR 296). I this application i have multiple JPanel's embedded in a JTabbedPane. In this way i have three JTabbedPane embedded in a JFrame. Now is there any way to

  • TEST IN PROGRESS! THE ZEN VS IPOD SO

    My wife just brought an 4th gen 20gb Ipod ( I have the zen touch) and we will preform a taste test if you will on the both of them. We will download 4 genes of songs( r/b , house, rock, celtic) at the same bit rate(same songs) and will play them at t

  • ITunes 10.1.2 Jamming

    Up to yesterday, before upgrading an existing iTunes to 10.1.2, the software was working perfectly. After having upgraded, it is causing a great deal of problems. Selecting an initial tune to play is not a problem, it plays. However, after exactly 9

  • P55 GD85 SLI Trouble..

    P55 GD85 SLI Trouble.. Just got a new MSI GD85 with hopes to SLI, but having trouble trying to setup 2x Nvidia 9800 GT cards.  Both are xfx similar style, one is xxx (core clocked 675 vs the other stock clock at 600 mhz).  Nvidia's forums note the di

  • Idoc lost from SAP R/3 to XI

    Hi experts, I have the following problem: sometimes an idoc fired from SAP (not through WE19) does not reach XI (I cannot see it in SXI_MONITOR). I've checked the following facts: 1. SAP R/3 status of the idoc is 03 (direction outbound). 2. SM58 prod