Locking of the projects when BAPI_BUS2172_GET_TREE is used

Dear All,
I have developed a report in PLM client. In the zreport I have used BAPI_BUS2172_GET_TREE to get the tree structure for the projects phases and tasks of CProjects. After execution of the zprogram I am unable to open the same projects in the Clprojects in change mode. The projects which are executed in the program are getting locked and I am unable to edit in change mode them in the Cprojects screen. whenthe zprogram is running Will you please be able to tell me what should I do to unlock the projects so that I would be able to simultanously run the report and open the projects in Cprojects screen ???
Thanks
Priti

Hi Preeti,
Ideally, this function module should not create any lock entries since it only reads the data and does not lock the project for editing. Are you updating anything in the project with your custom report? There might be something else that might be causing the lock entry.
Regards,
Vivek Pandey

Similar Messages

  • I want to be able to see the history when my kids use the computer. Is there a way to lock private browsing from being used?

    I want to be able to see the history when my kids use the computer. Is there a way to lock private browsing so that my kids can not have this option?

    There is no way to reliably disable private browsing or keep a user from deleting history. Use a program such as netnanny to keep track of history and sites visited.

  • CC aplications go to white screen and lock up the computer when switching between apps

    We have been successfully using CC for several months, then about 30 days ago suddenly when we tried to switch apps between dreamweaver, and Photoshop the computer went to a White screen and froze.  This problem is completely repeatable, and we are at a complete loss to correct the problem.  Any ideas? It doesnt do this when you switch withing Bridge and Photoshop, but with anythign else,,,,,,,,,,,,,,, CRASH!!

    I am unable to get into the chat.  I tried explorer and chrome and neither will allow us to access the chat.  It continues to go around and around.
    De: John T Smith 
    Enviado el: Thursday, November 20, 2014 8:41 PM
    Para: Beatriz Neto
    Asunto:  CC aplications go to white screen and lock up the computer when switching between apps
    CC aplications go to white screen and lock up the computer when switching between apps
    created by John T Smith <https://forums.adobe.com/people/JohnTSmith>  in Adobe Creative Cloud - View the full discussion <https://forums.adobe.com/message/6949285#6949285>

  • I just installed yosemite on my mcb pro mid 2012 and installed win8.1 with bootcamp. now i have the problem, when i'm using windows i don't see my mac partition in the "computer" window. there is only the "bootcamp (c;) partition? what's the problem?

    i just installed yosemite on my mcb pro mid 2012 with a clean install. so i only had the new os x yosemite running on my mac. everything went perfect. than i installed win8.1 with the bootcamp assistant and also everything went perfect.
    But here's the Problem:
    When i'm using Windows 8.1 and i go to the "Computer" window where i can find my hdd partition "Bootcamp (c;) there is only this Partition. the mac Partition is missing.
    so i am not able to read the files on my mac Partition.
    Before i installed yosemite and win8.1, i was running mavericks and win7 on my macbook pro and i haven't had this Problem. i was able to see and read my mac Partition also on Windows 8.1???
    is there any solution for this Problem???
    greez c

    "Before i installed yosemite and win8.1, i was running mavericks and win7 on my macbook pro and i haven't had this Problem. i was able to see and read my mac Partition also on Windows 8.1???"
    Sorry there's a mistake in the sentence!
    i mean:
    "Before i installed yosemite and win8.1, i was running mavericks and win7 on my macbook pro and i haven't had this Problem. i was able to see and read my mac Partition also on Windows 7???"

  • Hi, i have a macbook air and i've been having problems with the camera when i'm using skype. i know im no the 1st one and i'd like to know when apple or someone 'll do something about this.

    hi, i have a macbook air and i've been having problems with the camera when i'm using skype. i know im no the 1st one and i'd like to know when apple or someone 'll do something about this.

    Try reinstalling Combo Update.
    http://support.apple.com/kb/DL1676
    Best.

  • I am creating a video using the green screen option- I imported a picture for the background of the project and videotaped someone using a green screen. Is it possible to move the video of the person around so it is not blocking the picture behind it?

    I am creating a video using the green screen option in iMovie.   I imported a picture for the background of the project and videotaped someone using a green screen. Is it possible to move the video of the person around so it is not blocking the picture behind it?

    To enable this right you need Acrobat, not the free Reader.
    However, starting from Reader X it is possible to add simple markups to any file, unless it has been specifically disallowed by the creator of the file.

  • I lost my phone 6 weeks ago, today I got an email saying "iPhone has been locked." does this mean someone has tried to power up my device. I had put the remote lock on the phone when I lost it. Today I sent 2 messages to the phone asking to call my phone

    I lost my phone 6 weeks ago, today I got an email saying "iPhone has been locked." does this mean someone has tried to power up my device. I had put the remote lock on the phone when I lost it. Today I sent 2 messages to the phone asking to call my phone

    Welcome to the Apple community.
    dlondon629 wrote:
    I lost my phone 6 weeks ago, today I got an email saying "iPhone has been locked." does this mean someone has tried to power up my device......
    Yes, this would seem the most likely reason to me.

  • Where can close the objects when i am using prepareStatement

    hi,
    where can close the objects when i am using prepareStatement
    the following is code i am using.
    Connection connection;
         PreparedStatement prepare;
         JTextField tfStateNameEng;
         JTextField tfStateNameKan;
         JButton save;
         public DynamicSQL(){
    try{
         Class.forName("com.mysql.jdbc.Driver");
    connection=DriverManager.getConnection("jdbc:mysql://localhost:3306/kantest","gk","gk");
         String sql ="insert into daya (Name,Name_KAN) values (?,?)";
         prepare = connection.prepareStatement(sql);
    }catch(Exception e){System.out.println(e);}
         tfStateNameEng = new JTextField(20);
         tfStateNameKan = new JTextField(20);
         save = new JButton("save");
         save.addActionListener(this);
         this.getContentPane().add(tfStateNameEng,"North");
         this.getContentPane().add(tfStateNameKan,"Center");
         this.getContentPane().add(save,"South");
         pack();
         setVisible(true);
         setDefaultCloseOperation(EXIT_ON_CLOSE);
    public void actionPerformed(ActionEvent ae){
         try{
              prepare.clearParameters();
              prepare.setString(1,tfStateNameEng.getText());
              prepare.setString(2,tfStateNameKan.getText());
              prepare.executeUpdate();
              }catch(Exception e){System.out.println(e);}
    /*try{
              //     connection.close(); // if going to close object here then it won't work
                   //prepare.close();//next time.
              }catch(Exception e){} */
         public static void main(String args[]){
              new DynamicSQL();
    thanks
    daya

    hello,
    ok.
    thanks
    daya

  • I can not select the project when I am creating a change using SM_CRM

    Hi !!
    My Project was checked and all verifications are green.
    But, when I enter in transaction SM_CRM, and I try to create a change, no projects are showed.
    I don´t know what is necessary to do.
    And, after this, I would like to define my maintanance cycle with this steps: Develpment. Test and Deploy.
    Is it possible?
    Thank you very much!
    Best regards,
    Adriana.

    Hi all !!
    I got to solve this problem.
    I did the following steps:
    - copy the types transactions related with manintence Cycle;
    - Apply the SAP note 1868337 - Internal Phase Controller Problem when creting a maintenance cycle;
    - created a new Project.
    After this, the Project created was showed .
    Bye!
    Adriana

  • I AM USING PREM PRO CC2014 AND LOSING ALL SAVES FROM THE PROJECT WHEN i EXIT AND LATER OPEN UP PPRO

    I am at wits end as to why three times i have lost all saved info from a Premier Pro cc 2014 project.
    If I exit Prem pro and come back later, reopen the project , all I get is the old project with no saves, all changes (hours worth) absolutely $#@#$* gone.
    This is the third time !!!! I updated Prem pro about two weeks ago. Have not done any editing since the update,  start of this week, now having major problems.
    I save the work constantly, Is anyone having similar issues as this has never happened before 

    Make a new project and import old one into this new one.
    See if you can find a up to date Auto Save.
    Also make a habit of 'Save A Copy' to a different drive after each edit session. Save A Copy does not overwrite after so many times as Auto Save does.

  • How do I get a smartshape button that open the TOC and pause the project when it is selected?

    Please help! I created a smartshape button and assigned it the action of making the table of contents visible when clicked. However, now I also need the project to pause when the TOC button is clicked. Can someone please guide in as to what I need to do? Thanks

    Hi,
    Please follow the below steps.
    1) Create an advanced action with the action "Show TOC"
    2) Insert a smart shape and use it as button
    3) Execute the advanced action on success of the shape button.
    In the published output, movie will not continue on clicking the shape. Please let me know if it solves your issue.
    Regards,
    Haridoss

  • Trying to take the little lock off the song when i drag the song to my desk

    Please help when i drag a song from itunes to my desktop thiers a lock on the top left coner of the song i tryed to put the song on my mp3 but it wont play how do i take the little lock of because my friend does the same but he has no lock on his songs please help me take that lock off

    Do you have the "Green Arrow" icon on one of your toolbars? That usually will list your most recent downloads with a button to open the folder where they are saved.
    If you don't have that, you can open the full download list using either:
    * Ctrl+j
    * Tools > Downloads
    * History > Show All History, then click Downloads in the left column
    Can you find the download listed there and click the "Open Containing Folder" button?
    Are you downloading Flash or Acrobat/Reader?
    For Flash try: http://get.adobe.com/flashplayer/
    For Acrobat/Reader, you may not need an update.
    Firefox's plugin check site only recognizes the Adobe XI (11) series as current, but if you have checked for updates in your Adobe Reader X or Adobe Acrobat X product (Help > Check for Updates) then you do not need to update the plugin. For this older Reader/Acrobat version, please rely on Adobe for information on available updates and not the plugin check site.

  • Does there be any change in the dimensions of the project when published in a web browser ?

    Hello all.
    I am facing a problem with the dimensions of my project. I need my published project in the web browser must fit in the window without any scrolling.
    I started my project with the dimensions 1024*540. when I tested it at the initial stage it was exactly fitted in the window. But after adding the content & images, the published file is getting opened with scrolling.
    The actual space for the project in the browser is 1024*577.
    As the default playbar's height is 32px, I took the project as 1024*545. Even then I got a bit vertical scrolling. So I changed the dimensions to 1024*540.
    I use Mozilla Firefox as my default browser.
    When I open the file in the Internet explorer it is getting opened only with horizontal scrolling.
    Can anyone give the solution & let me know what exactly the problem is?
    Regards,
    Kartik.P

    Hi Kartik,
    The dimensions should not change ideally. Could you please share your project with us?
    Thanks,
    Sikandar

  • After bringing in the movie from (a Canon) video camera in iMovie and finishing a Project where do you save the project and make DVD using iDVD?

    I am trying to burn DVD of the movie I have taken using a Canon and/or aSony video camera. I brought in the movie in iMovie. Enhanced  the movie adding titles and various transitions and completed the project.  Now how do I make a or several DVD of the movie using iDVD? please help.

    You can either share it directly to iDVD by choosing Share > iDVD or you can export it using your favorite preferred settings by choosing Export to Quicktime. With the former method, iDVD will open automatically, with the latter method, open iDVD and drag in your movie. With both: choose a theme for your menu (what people will see when the DVD first starts playing) - you should play around a little to learn how to use iDVD. In any case, when done, you can burn directly from iDVD.

  • PIAFUSER and PIAPPLUSER get locked all the time - where are they used?!

    Hi guys,
    well i am no basis guy but i have to do the following.
    We want to use one SLD for PROD & DEV. We chose DEV SLD to be the one!
    Therefore i followed Note 720717 in detailed way.
    Because there is mentioned i have to change sth. in Service SLD Data Supplier i did so in PROD for giving the SLD-Adress of DEV. This was looking good, i changed, saved and restarted service.
    But now the User PIAFUSER and PIAPPLUSER get locked all the time - even without trying to get SLD-Connection.
    When i do SLDCHECK we also get error:
    Calling function LCR_LIST_BUSINESS_SYSTEMS
    Retrieving data from the SLD server.
    Function call returned exception code ....4
    => Check whether the SLD is running!
    ..and it is running!
    Could someone help?! We already read post and blogs the last 4 hours but nothing helped that far!
    br
    Edited by: Fritz Munster on Jul 21, 2008 4:32 PM
    And we get some errors from CC also - e.g. when we want to get a file read:
    com.sap.aii.af.ra.ms.api.ConfigException: Some of the IS access information is not available. SLDAcess property may be set to true, but SLD is not available.

    Hi,
    well i already re-checked all pwds again like given in Note 936093.
    Everything runs fine that far but again, the PIAFUSER gets locked, PIAPPLUSER doesn't get locked anymore - finally.
    The reason why i was coming to this error is because we need to use one SLD - i described already.
    So now we wanted to check our PROD Scenarios, running a test with a FILE-CC and got following error in CC-Monitoring:
    ERROR:com.sap.aii.af.ra.ms.api.ConfigException: SLDAccess set to true, but not available.
    What could cause this error else than some stuff with pwds?!
    Any ideas?! i work 10 hours on this crap now
    br

Maybe you are looking for

  • Relevance of Maximum Plan Value for Cost Center wise SKF plan Data

    Hi, Will you please tell me the relevence of data entered as Maximum Plan Value for the Cost center wise SKF data plan i.e. data entered through T Code KP46 using planning layout 1-301 with planning profile SAPALL. Regards, Partha B.

  • New source system and 0logsys

    hello, We already have a BW production system connected to a unique SAP R/3 system. Our infoproviders (ODS and infocubes) and our infoobjets are not compounded with 0logsys or 0sourcesystem. We have to connect a second R/3 system to our BW systems. O

  • Quicklook thumbnail generation without folded corner

    If you look at the thumbnail icon in List or Column view in Finder, a JPEG image is not shown with a folded corner. However when I write a quicklook plugin using the XCode 3 wizard, I get folded corners on the icons. Can anyone assist me in suppressi

  • Help with inline form

    answered

  • SAP and snapshot

    Hi, Does SAP officially support MS SQL snapshot technology (MS SQL Server 2008 R2) ? I haven't found any OSS Notes pro nor con about this feature - like there are Notes about Oracle flashback. Sharing any practical experiences or possible problems to