Transportation Info REQ??

Hi
I want to know the versions of the object in the TR no.
Is there any way to chk the latest versions of the TR's attached with an object.
Is there any way to see how may different TR are attached with an single object in SAP?
Also i had a TR,with the lock object:ztest1,ztest1.
when i am trying to delete it,its saying sort & compress,after it when i try to delete it,its agian saying sort & compress.
How to delete this TR,as the lock objests are same,how shd i compress them to 1,to delete the TR.
regds.

Hi,
TR always have the latest active version of any object, so you go to that object and check the version.
U can have one object only in one TR.
regarding deletion of TR you can do it in SE09, provided you havea the authorisation for the same.
Regards,
Mandeep

Similar Messages

  • Transporting Info areas and info cubes with all the contents

    Hello Guru's,
    I want to transport Info areas and info cubes with all the contents from 1 system to another. How can this be achieved.
    Background... these belong to the system ($tmp), i already tried assigning them to a package and transported to the system, but only definitions have been copied over, there is no master data for any characteristics (i.e every characteristic is empty), there are no Hierarchies for any characteristics, there is no transaction data ===> effectively only the definitions is copied, but everything is emtpy.
    Regards, Jatin

    No way to transport contents along with structure from on system to another.
    Different system contains different data
    DEV system has only rough data. So developed objects will be tested with rough data for  consistancy of objets.
    Quality system  has some amount of original data. After transporting the delveloped objects  from DEV to Quality  we need to test  the oblects with some original data in Quality.
    Production or Live system has only live data. Afer testing complted  in DEV and Quality ( with rough and Some amount of original data ) if the objects  are giving desired values as per the requrements we need to transport them to Production system.
    considering the above criteria no use of transporting data from one sysstem to another.

  • Error in transporting info-object

    Hello Experts,
    We need to a import an info-object from Quality to Prod.
    From Dev to Quality the transport was successful, but while transporting from
    quality to prod we are getting the following errors:
    Changes cannot be made, display user only
    And as a result the info-object and hence the info-object,transfer rules/Transformation etc are
    now inactive in the prod. enviornment.
    Could anyone advice on what may be the source of this error??
    Thanx and Regards
    Priyanka

    Hi Priyanka,
    Pls check below threads, may be it will helpfull to you.
    https://forums.sdn.sap.com/click.jspa?searchID=21045654&messageID=6758914
    https://forums.sdn.sap.com/click.jspa?searchID=21045654&messageID=6720353
    https://forums.sdn.sap.com/click.jspa?searchID=21045654&messageID=6407281
    https://forums.sdn.sap.com/click.jspa?searchID=21045906&messageID=6758914
    https://forums.sdn.sap.com/click.jspa?searchID=21045906&messageID=6407210
    Thanks & Regards,
    Ramnaresh .P.

  • Module pool domain text display info req?

    hi
    i had an req to show a filed MATNR on a screen in module pool pgm,there shd be a i/p filed for material,user can select the material from the list of available materials,along with the test to be displayed for the filed next to material nos.
    the list of mateiral is based on the login user name.
    i am able to display the material list,but text is not coming.
    pls tell me how to show the text next to matnr no. in list.
    i had used the code:
    loop at itab_carrid.
        clear:text.
        CALL FUNCTION 'ADS2KIPBRO_GET_DOMAIN_TEXT'
          EXPORTING
            E_TABLE          = 'MARA'
            E_FIELD          = 'MATNR'
            E_VALUE          = itab_carrid-matnr
          IMPORTING
            I_TEXT           = text
          EXCEPTIONS
            ILLEGAL_INPUT    = 1
            DOMAIN_NOT_FOUND = 2
            OTHERS           = 3.
        IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
        move text to itab_carrid-text1.
        modify itab_carrid transporting text1.
      endloop.
      CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
        EXPORTING
          retfield        = 'MATNR'
          value_org       = 'S'
        TABLES
          value_tab       = itab_carrid
        EXCEPTIONS
          parameter_error = 1
          no_values_found = 2
          OTHERS          = 3.
      IF sy-subrc <> 0.
      ENDIF.

    hi
    tell me,if i made a i/p field on screen from the data variable declared in my program
    like :data:actvt(3) type c.
    than on layout of screen:I/P filed-actvt.
    now i want to provide the f4 to this.i had written the POV for the filed,the data is there in itab,but not poping out.
    code:PROCESS ON VALUE-REQUEST.
      FIELD ACTVT MODULE create_dropdown_box.
    TYPES: BEGIN OF type_carrid,
             actvt(3)  type c,
             text1(40) type c,
           END OF type_carrid.
    DATA: itab_carrid type Type_carrid occurs 0 with header line.
       itab_carrid-actvt = '001'.
        append itab_carrid.
        itab_carrid-actvt = '002'.
        append itab_carrid.
        itab_carrid-actvt = '003'.
        append itab_carrid.
        itab_carrid-actvt = '004'.
        append itab_carrid.
        itab_carrid-actvt = '005'.
        append itab_carrid.
        itab_carrid-actvt = '006'.
        append itab_carrid.
        itab_carrid-actvt = '007'.
        append itab_carrid.
      endif.
      clear:itab_carrid.
      loop at itab_carrid.
        clear:text.
        CALL FUNCTION 'ADS2KIPBRO_GET_DOMAIN_TEXT'
          EXPORTING
            E_TABLE          = 'YLOGON1'
            E_FIELD          = 'ACTVT'
            E_VALUE          = itab_carrid-actvt
          IMPORTING
            I_TEXT           = text
          EXCEPTIONS
            ILLEGAL_INPUT    = 1
            DOMAIN_NOT_FOUND = 2
            OTHERS           = 3.
        IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
        move text to itab_carrid-text1.
        modify itab_carrid transporting actvt text1.
      endloop.
      clear:itab_carrid.
      CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
        EXPORTING
          retfield        = 'ACTVT'
          DYNPNR          = SY-DYNNR
          DYNPPROG        = SY-REPID
          value_org       = 'S'
        TABLES
          value_tab       = itab_carrid
        EXCEPTIONS
          parameter_error = 1
          no_values_found = 2
          OTHERS          = 3.
      IF sy-subrc <> 0.
      ENDIF.
    plz tell me how to pop out this help in screen.

  • Transporting Info Structure configuration - or bypassing OMO1

    I'm trying to transport the settings for a custom info structure (call it S899) from my development system to production.  The settings are those in transaction OMO1 and MC25.
    Here's the problem: I have access to do manual config in MC25 (updating rules). I can add a requirement, and generate.  However, when I click "Activate Updating" button, it returns me to OMO1.  Here, when I attempt to select the update parameters for S801, it allows me to do so.  But when I try to save those parameters (changed from "no updating" to "synchronous updating") it says "SAP SYSTEM NOT CHANGEABLE".   Wow!   That authorization will never happen!
    So how do I go about changing the Update Parameters in OMO1 for an info structure?  Or better yet, is it possible to transport those values?

    Ferry, thanks.  However, if you follow the OSS note instructions for OMO1, when you hit the "Save" button, it comes back with an error message:
    The system administrator has set the system status to "not modifiable".
    You cannot change Repository objects in this system.
    I did find another OSS note 414163, which addresses this issue. However, the solution code is implemented in our system.  And in fact, IT is the cause of the problem. It blocks the update from ever taking place!

  • Transporting Info package

    Hi
    I'm trying to add info package into transport request but I'm not finding the way how to add this. If we transport cube/info- object we can go to extra and click Object Directory entry and change local package into our package . Other way is Go to directly Transport and then select what we want to transport and find object and then we can collect in transport request.
    In info-object as I couldn't see Object directory entry under extra and I couldn't find this info-package in TRANSPORT Tab.
    Please can you suggest what I'm missing as I've tried these steps 3-4 times but doesn't seem anything is missing.
    Thanks

    please close your discussion by taking below blog help.
    How to close a discussion and why

  • Transporting info from PC to MAC

    Ever since I got my Mac I've been trying to put my music and pictures from my PC onto my MAC. To transport these items I've tried using two different Mac supported usb storage memory thingys. Every time I try to open these items out of either of the usb memory things it asks me to choose an application and of course none of my applications work with the items. On my PC for my music I was using Microsoft Media Player which I have successfully used and installed on my MAC so in theory the MP3's should open on the same program which they used to play on on my PC. They pictures I have been trying yo move are all JPGs and should open on Previewer. But nothing is working and no one from the usb memory storage companies or the people at apple are able to help because they have no idea what I'm talking about. Please Help Me!

    <Ever since I got my Mac I've been trying to put my music and pictures from my PC onto my MAC. To transport these items I've tried using two different Mac supported usb storage memory thingys. Every time I try to open these items out of either of the usb memory things it asks me to choose an application and of course none of my applications work with the items. On my PC for my music I was using Microsoft Media Player which I have successfully used and installed on my MAC so in theory the MP3's should open on the same program which they used to play on on my PC.>
    I'd watch out. Windows Media Player for the Mac is not NEARLY as nice as the Windows version. I have a Palm Pilot, and the Mac version CANNOT read my video files. So perhaps it also cannot read the Windows audio files.
    <They pictures I have been trying yo move are all JPGs and should open on Previewer. But nothing is working and no one from the usb memory storage companies or the people at apple are able to help because they have no idea what I'm talking about. Please Help Me!>
    Perhaps the images are corrupted.
    John

  • SAP Script info req to print new line iten on new page

    hi
    i had an req to print the list of MATNR & KUNNR on script,but the req is like this,at NEW MATNR,the script shd start with new page,say,if there are 5 MATNR,2 are same & 3 are same with diff KUNNR.
    On first page:2 MATNR shd be printed
    On Second Page:3 MATNR shd be printed & so on each time on new page...
    Please tell me how to do it,in window MAIN,how shd i wirte code for this?
    regds

    hey,
    Check this,
    First in your print program call FM 'START_FORM'.
    Then call FM 'WRITE_FORM'
    After this call FM 'CONTROL_FORM' :
    CALL FUNCTION 'CONTROL_FORM'
    EXPORTING
    command = 'NEW-PAGE'
    EXCEPTIONS
    UNOPENED = 1
    UNSTARTED = 2
    OTHERS = 3
    IF sy-subrc 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    At last call FM 'CLOSE_FORM'.
    By using FM control_form and passing parameter 'NEW-PAGE' you will get one new page even thow if content of ur main window of previous page is not exceeding..
    hey call new-page for every new matnr
    Regards,
    Midhun Abraham
    Edited by: Midhun Abraham on Oct 11, 2008 8:47 AM

  • FBL1N Transaction, Info req.

    Info about
    Posted: Dec 22, 2005 6:00 PM        Reply      E-mail this post 
    Hi,
    Presetnly I am working with FBL1N Transaction.
    Vendor Line Item Display.
    I would like some one to elaborate on that the usage of this transaction FBL1N.
    Actually when I am passing the Vendor A/c it should be posted to WBS element, but it is getting posted to cost center .
    Can some one help on this issue.
    Thanks in Advance,
    Irfan

    Hi,
    I am entering the vendor code and company code, after
    wards I am selecting Clear Line Item Selection,
    Then I am selecting Normal Line Items, then executing it,
    After the execution I am clicking on Assignment where I particularly clicking on an Assignment and then Display,
    After display I am clicking on Document Overview,
    I am seeing the expenses are getting posted to cost center not to the WBS element.
    Could you please further advice on this.
    When I am passing vendor code it is should be posted to  WBS element,But in some case it is getting posted to Cost Center and some cases it is getting psoted to WBS element.
    Actually as per our requirement it should be posted to
    WBS not to cost center , Could you please advice further on this issue.
    Thanks In Advance,
    Regards,
    Irfan Hussain

  • Module Pool Info REQ???

    Hi
    I need some info abt the deque-nque concept in module pool,also abt the commit area statemnts in it.
    I had an issue,in which the user runs an application in mdoule pool,like 3 users simaltenouly at a location,if any time they press the SAVE button at the same time,the application generate a unique no. all time,but in the case of same time SAVE butting pressing,one 1 no is generated & is same displyed to all users,thus only 1 records is stored in the table,but in actual it shd be 3.
    So i need to solve this ,can any one tell me how to do ?
    I sthete any deque-nque concept whcih can be applicabe here,or any think like I can lock the no of users at a particular location or i can find the no. of users & than generate the no. at a location based on the users.also in the case of same time SAVE button pressing.
    Plz tell me in brief,i am a beginner in module pool.
    Regds

    yes,this is the  requirement.
    Current the application is there,but the bug is there,which i hv to remove,it has to work in the same way as u written above.
    Can u tell me how to do this?
    the code is like this :
    when 'save'.
          SELECT MAX( slip_no ) INTO v_slipno FROM zhzlagucha_wb
          WHERE werks = werks AND exyear = exyear.
          zhzlagucha_wb-slip_no = v_slipno + 1.
          APPEND zhzlagucha_wb TO agucha_wb.
          zhzlagucha_wb-addn_fld3 = itab-slip_no.
          MODIFY zhzlagucha_wb.
    So i jeust need if 3-4 users simultanesouly press the save button,they shd get the indiual uniqye no.at there screen,& same shd be saved in table.

  • MM Goods Received Info req??

    Hi
    Is there any way to find out the GR No-MBLNR  for good received (Mov type - 101) against any Dilivery Doc No(PO is unknown).
    Is there any SAP FM exits for this?
    I have to track the GR status for the Dilivery Doc No(VBELN).
    Urgent Help Req!!!
    rgds
    vipin

    i am looking the same,but unable to identofy the data?
    in MKPF there are 2 fileds:ref doc : XBLNR & delivery: le_vbeln,so I am confuse which shd i take to chk the accurate one.
    Secondly for that deliv/ref no-its shows the MBLRN irresp of any mov type i think so?.
    and i am not able to acces the MSEG table with that ref/dilv no.Is any where in MSEG can i find out the MBLRN for particular deliv no for all mov type??
    that can solve my  prob?but i am unable to find the filed for dilv in MSEG.
    its only works with MBLRN i guess.
    So how to do??

  • MM -Aggrements  defination info req??

    hi
    i need to find out the PO released on all SAP defined aggremnts i.e outline,scheduling,quta aggremnts,info recourds..etc.....
    can any one plz tell me,how to find the defination of aggremnts,where they are matained in Tables,under which fileds.?
    are they only defined at PR or at PO?plz give me some doc. if any one hv so that i can understand the funcationaly,& start coding??
    regds.

    Check this link. U can find more details about  Purchase Requisitions  & Purchasing details.
    http://www.sap-img.com/sap-mm.htm
    http://www.sap-basis-abap.com/sapmmpur.htm
    Regards,
    Maha

  • Debugging info req??

    Hi
    I need to ask is there any way,so that in my debugging if the itab hv 500 records,& i just want to test for
    2-3 records,i can delete rest from my itab,& go ahead with the 2-3 records.
    As i am facing a prob now,my itab is filled with 500 records,even i don;t want them,so i m trying to delete them,but now finding any way to delete at once.
    if any one had any idea abt this..plz tell me?
    regds

    Hey guy,this is for them who not understand my prob?
    i am testing the report,i am in debugging.
    my itab is filled with 500-600 records,i don't hv time to testt all records,so i am thinking if this itab can be reduced with 2-3 records,i can test the report easily.
    so am asking is there any way in b/w debugging that my itab can be redecused with the records of my choice.
    i am in QAS,so i can even code,the only way left with me is to hardcode the vaules in DEV & than transport it to QAS,even its a quite long process,thuus i was seeking any help if i can do any thing with my itab in debuging only for the current QAS code.

  • Tables Info REQ???

    Hi
    I need to ask that,I had seen in some Ztables & SAP Standard tables,some warnings are coming for the Enhancemnt Category-->Not Classified.
    Even In the PRD the smae problem is there.
    I am quite amazed,I had seen this prob just after the DEV/QAS refresh,but PRD i snot refreshed any time.
    So form where this problem had arrived.In Ztables this can be there,as might be some one forgot to do?
    But how is this possible in SAP Standard tables,which are already there in PRD since frm the long time.
    I think this can be only if the version is updtaed,in new version all the tables has to be classifed with the Enhancemnt Category.Than its logical.even I am not sure,I am a beginer.
    so kindly update me how to sough this out?
    As if there in PRD all the tables in which the Category is not defined,than it will be a problem to defie it & re-transport to PRD.Also as there is lots of data in PRD,how shd i make this warning removed,as I need to matianed all the data there.
    Can i only transport the table with enhancement category denied,in a TR?
    Also if any table,just needs tha matianance generator only,in PRD,will it come wothout effecting the present data?If I create it in DEv under a TR.
    PLZ help me?
    Regds

    Hi,
    goto se11 , give ur ztable name . click on display button.then in the menu bar --> Extras --> Enhancement Category .. here u will get a pop up screen . here select the Not Classified radio button . if u want to know detailly abt the functionlity . press F1 help on each of the radio button.
    choosing not classified radio button will turn ur ztable into active state.
    Reward Points if it is Useful.
    Thanks,
    Manjunath  MS

  • Idoc info req for trigering a custon idoc?

    Hi
    I had a req to triger a custom idoc to send status after the idoc ARTMAS had beed processed.I had developed the custom idoc,but tell me the way to triger it automaticly every time when the idoc artmas is hitting the sap.
    regds
    vipin

    Hi,
    In the Process Code of ARTMAS, there must be a Function Module attached. Find a exit for it and then call your Custom Idoc from there.
    Regards,
    Sharath

Maybe you are looking for