Commit Transaction doesn't work despite using stateful services

Hi,
I use the following code to call a BAPI that inserts data and to commit, but unfortunately the commit does not work.
prov.getRequestContext().put(BindingProvider.USERNAME_PROPERTY, serviceUserName);
prov.getRequestContext().put(BindingProvider.PASSWORD_PROPERTY, servicePassword);
prov.getRequestContext().put(BindingProvider.SESSION_MAINTAIN_PROPERTY, Boolean.TRUE); // use Cookies
// TURN ON SESSION CREATION
prov.getRequestContext().put(BindingProvider.ENDPOINT_ADDRESS_PROPERTY, serviceUrl + "?session_mode=1");
Holder<TableOfBapi1303Data> caseprocedureData = new Holder<TableOfBapi1303Data>();
Holder<String> worstReturnedMsgty = new Holder<String>();
TableOfBapiret2 ret = binding.caseProcedureGetList("X", null, null, null, null, null, null, null, null, institution, null, null, patCaseId, caseprocedureData, worstReturnedMsgty);
maybePrintResult(worstReturnedMsgty, ret);
TableOfBapi1303Cdata data = new TableOfBapi1303Cdata();
writeData(caseprocedureData.value, data);
// TURN OFF SESSION CREATION
prov.getRequestContext().put(BindingProvider.ENDPOINT_ADDRESS_PROPERTY, serviceUrl);
Holder<TableOfBapi1303Cdata> newCaseprocedureCdata = new Holder<TableOfBapi1303Cdata>();
Holder<TableOfBapi1303Assdia> caseprocedureAssdia = new Holder<TableOfBapi1303Assdia>();
Holder<TableOfBapi1303Asssrv> caseprocedureAsssrv = new Holder<TableOfBapi1303Asssrv>();
Holder<TableOfBapi1303Data> caseprocedureDataNewOut = new Holder<TableOfBapi1303Data>();
newCaseprocedureCdata.value = new TableOfBapi1303Cdata();
newCaseprocedureCdata.value.getItem().add(makeTestProc());
ret = binding.caseProcedureCreateMultiple(new TableOfBapi1303Cassdia(), new TableOfBapi1303Casssrv(), newCaseprocedureCdata, client, institution, patCaseId, "-",
  caseprocedureAssdia, caseprocedureAsssrv, caseprocedureDataNewOut, worstReturnedMsgty);
maybePrintResult(worstReturnedMsgty, ret);
// TURN ON SESSION FINISH
System.out.println("COMMIT");
prov.getRequestContext().put(BindingProvider.ENDPOINT_ADDRESS_PROPERTY, serviceUrl + "?session_mode=2");
Bapiret2 ret2 = binding.bapiServiceTransactionCommit("X");
System.out.println(ObjectUtil.objectToString(ret2));
I used "tcpdump" to verify a) the URLs are appropriate, b) SAP sends a cookie and c) the Java program adds the cookie to subsequent service calls. I can provide the dump if it helps.
I used the ABAP debugger to verify that the function calls "arrive", and I used the "Test Sequence" feature inside SAP with the same parameters to verify the BAPIs work as expected.
What can I do to tackle down the problem?
Thanks, Matthias

Hi,
We have the same problem. I will try to implement SAP Note 1435326, this sounds like a relevant note.
Maybe you can try the same?
Good luck!

Similar Messages

  • I have a black iphone 5 and my flash doesn't work it used to work every once in a while but stopped

    I have a black iphone 5 and my flash doesn't work it used to work every once in a while but stopped I went into the camera app and tried to see if it would flash when I took a picture but I saw it light very faintly and hasn't done lot up since. Should I get the led replaced?

    First, try bringing up Control Center by swiping up from the bottom of the home screen.  Turn on the flashlight by tapping the icon in the lower left.  Does the flashlight work?  If not, perhaps you have a hardware issue.
    If it works, check the top of the screen when you open the Camera app to make sure you have the flash on.

  • PPCI transaction doesn't work perfectly....WHY??

    Hi experts!!!
    I'm following the steps of OMINFOTYPES docuemntation that I've found in this forum, but transaction PPCI doesn't work, I've created the structure of my new infotype and the table associated to this HRI, after I execute PPCI transaction, and I only received a message, that say... "Infotype 9010 cannot be created. Please look at the following log" and then it shows me the log and I don't have created PT9010 structure, either table HRPT9010, HRP9010 created in the database, Modulpoool....etc,.
    Can anybody explain me why I need to use PPCI transaction? Is this working properly?
    thanlks a lot,
    Regards
    rebeca

    Hello Rebeca.
    I'm getting exactly the same message in PPCI (ECC 6.0)
    Were you able to solve PPCI problem?
    Thank you,
    Irina

  • LVOOP "call parent method" doesn't work when used in sibling VI

    It seems to me that the "call parent method" doesn't work properly according to the description given in the LabVIEW help.
    I have two basic OOP functions I am doing examples for. I can get one to work easily and the other one is impossible.
    Background
    There are 3 basic situations in which you could use the "call parent method"
    You are calling the parent VI (or method) of a child VI from within the child VI
    You are calling the parent VI (or method) of a child VI from within a sibling VI
    You are calling the parent VI (or method) of a child VI from a different class/object.
    From the LabVIEW help system for "call parent method":
    Calls the nearest ancestor implementation of a class method. You can use the Call Parent Method node only on the block diagram of a member VI that belongs to a class that inherits member VIs from an ancestor class. The child member VI must be a dynamic dispatching member VI and have the same name as the ancestor member VI
    From my reading of that it means situation 3 is not supported but 1 & 2 should be.
    Unfortunately only Situation 1 works in LabVIEW 2012.
    Here is what I want
    And this is what I actually get
    What this means is that I can perform a classic "Extend Method" where a child VI will use the parent's implementation to augment it's functions BUT I cannot perform a "Revert Method" where I call the parent method's implementation rather than the one that belongs to the object.
    If you want a picture
    Any time I try and make operation2 the VI with the "call parent method" it shows up for about 1/2 sec and then turns into operation.
    So there are only 3 possibilities I can see
    Bug
    Neither situation 2 or 3 are intended to work (see above) and the help is misleading
    I just don't know what I am doing (and I am willing to accept this if someone can explain it to me)
    The downside is that if situation 2 above doesn't work it does make the "call parent node" much less usefull AND it's usage/application just doesn't make sense. You cannot just drop the "call parent node" on a diagram, it only works if you have an existing VI and you perform a replace. If you can only perform situation 1 (see above) then you should just drop the "call parent node" and it picks up the correct VI as there is only 1 option. Basically if situation 2 is not intended to work then the way you apply "call parent method" doesn't make sense.
    Attachements:
    For the really keen I have included 2 zip files
    One is the "Revert Method labVIEW project" which is of course not working properly because it wants to "call parent method" on operation not operation2
    The other zip file is all pictures with a PIN for both "Revert Method" and "Extend Method" so you can see the subtle but important differences and pictrures of the relavant block diagrams including what NI suggested to me as the original fix for this problem but wasn't (they were suggesting I implement Extend Method).
     If you are wondering where I got the names, concepts and PIN diagrams from see:
    Elemental Design Patterns
    By: Jason McColm Smith
    Publisher: Addison-Wesley Professional
    Pub. Date: March 28, 2012
    Print ISBN-10: 0-321-71192-0
    Print ISBN-13: 978-0-321-71192-2
    Web ISBN-10: 0-321-71255-2
    Web ISBN-13: 978-0-321-71255-4
     All the best
    David
    Attachments:
    Call parent node fault.zip ‏356 KB
    Call parent node fault.zip ‏356 KB

    Hi tst,
    Thankyou for your reply. Can you have a look at my comments below on the points you make.
    1) Have to disagree on that one. The help is unfortunately not clear. The part you quote in your reply only indicates that the VI you are applying "Call Parent Node" to must be dynamic dispatch. There is nowhere in the help it actually states that the call parent node applies to the VI of the block diagram it is placed into. Basically case 2 in my example fulfills all that the help file requires of it. The dynamic dispatch VI's operation are part of a class that inherits from a given ancestor. Operation 2 for Reverted behaviour is a child VI that is dynamic dispatch and has the same name as the ancestor VI (operation2). The help is missing one important piece of information and should be corrected.
    2) True it does work this way. I was trying to build case 2 and had not yet built my ancestor DD for operation so the function dropped but wasn't associated with any VI. I was able to do this via a replace (obviously once the ancestor Vi was built) so this one is just bad operator
    3) Keep in mind this is an example not my end goal. I have a child implementation because this is a case where I am trying to do a "reverse override" if you like.
    3a) The point of the example is to override an objects method (operation2) with it's parent's method NOT it's own. The reason there is a child implementation with specific code is to prove that the parent method is called not the one that relates to the object (child's VI). If I start having to put case structures into the child VI I make the child VI have to determine which code to execute. The point of Revert method is to take this function out of the method that is doing the work. (Single Use Principal and encapsulation)
    3b) The VI I am calling is a Dynamic Dispatch VI. That means if I drop the superclass's VI onto the child's block diagram it will become the child's implementation. Basically I can't use Dynamic Dispatch in this case at all. It would have to be static. That then means I have to put in additional logic unless there is some way to force a VI to use a particular version of a DD VI (which I can't seem to find).
    Additional Background
    One of the uses for "Revert Method" is in versioning.
    I have a parent Version1 implementation of something and a child Version2. The child uses Version2 BUT if it fails the error trapping performs a call to Version1.
    LabVIEW has the possibility of handling the scenario but only if both Case 1 and Case 2 work. It would actually be more useful if all 3 cases worked.
    The advantage of the call parent method moving one up the tree means I don't have the track what my current object is and choose from a possible list, if, for example the hierarchy is maybe 5 levels deep. (so V4 calls V3 with a simple application of "call parent method" rather than doing additional plumbing with case structures that require care and feeding). Basically the sort of thing OOP is meant to help reduce. Anything that doesn't allow case 2 or 3 means you have to work around the limitation from a software design perspective.
    If at the end of the day Case 2 and case 3 don't and won't ever work then the help file entry needs to be fixed.
    All the best
    David

  • Ethernet doesn't work after using wifi

    I was given a second hand computer (macbook pro 17'', 2 years old) by my boyfriend. I formatted the HD and installed mountain lion. I used the network settings facility to create a new location to use the ethernet at my university and it all works fine, except that when I unplug the cable and use wifi for a bit, when I try to reconnect to the ethernet by plugging the cable back in it won't work (even when I turn wifi off). I used to do this with my old computer (macbook pro 15'', 3 years old) without any issues.
    I tried using the "Assist me" option in the network settings and I see that the first three checks (Ethernet, Network Settings and ISP) are green, but the last two (Internet and Server) are red. So my internet doesn't work. If I go through the "diagnostics" it asks me to restart the internet devices, which I don't have access to. I then restart my computer and it works perfectly.
    I don't want to have to restart my computer every time I plug the ethernet cable back in. I need to do this a few times in a day because the proxy of the university blocks some things, so I use my wifi for those (eg, updating the packages in R).
    Does anyone know what the problem is?

    Back up all data before making any changes.
    This step will erase all your settings in the Network preference pane. Make a note of them before you begin, and recreate them afterwards. It may be helpful to take screenshots of the preference pane.
    Triple-click the line below on this page to select it:
    /Library/Preferences/SystemConfiguration
    Right-click or control-click the highlighted line and select
    Services ▹ Reveal
    from the contextual menu.* A folder should open with an item named "SystemConfiguration" selected. Move the selected item to the Trash. You may be prompted for your administrator password.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard (command-C). In the Finder, select
    Go ▹ Go to Folder...
    from the menu bar, paste into the box that opens (command-V). You won't see what you pasted because a line break is included. Press return.
    Reboot and test.

  • Satellite P500-127: microphone or sound doesn't work properly using skype

    Hi Toshiba team,
    Recently bought a new notebook.
    However the microphone or sound driver (connexant pebble high definition ) doesn't work properly when using skype. Also read about this matter in various forums such as the skype forum.
    People encountered similar problems such as:
    We can usually talk for a bit longer than 20 seconds, however the call will drop at a random time between 1 and 15 minutes. The strange part is that sometimes the quality of the call is good, but more than often my friend can only hear *half of what I am saying* while I usually do not have a problem hearing what has been said. The video will work so my friend can see me talking but can simply not really hear what I am saying.
    Before the drop the call will usually freeze for a couple of seconds and then skype sometimes crashes. We have tried talking together without the video, however the problem remains.
    I also found a suggestion by the toshiba service, just to simply increase the volume under control panel etc, but it doesn't work either..
    Can you please help me on this one?
    Cannot use skype at all as it just to annoying for everyone I talk to.. Quality is just to poor!!
    Many many thanks
    +Message was edited: link has been removed - not allowed+

    Hi
    Every day I use Skype with the internal webcam, microphone and speakers but I didnt have any problems as yet.
    In your case I would try updating the drivers. Therefore download the latest sound and webcam driver (microphone is a part of webcam). Both you can get here:
    http://eu.computers.toshiba-europe.com > Support & Downloads > Download Drivers
    If your friend cant hear you, check also the settings for internal microphone. I have activated microphone boost in Windows sound settings so I could improve the microphone quality.
    By the way: Do you use the latest version of Skype? With older Skype version I had also some problems on Windows 7. As far as I know only newest version is fully Windows 7 compatible.

  • Internet Browser Not Working despite re-sending service book...

    Can someone please help?
    The web browser is not working on my Pearl.
    I am with O2 and have been in the O2 shop for an hour today and on the phone to various people at customer services and still no joy on my Blackberry problem.
    The internet browser is not working. My e-mail has been set up and i can recieve mails only, but not send them. The error code: YOU DO NOT HAVE ANY BROWSER CONFIG SERVICE BOOK ENTRIES, or when I try and send an e-mail, NO MESSAGE SERVICE CONFIG appears, despite re-sending service book codes, plus also turning my phone off, and taking the battery off several times whilst in the O2 shop and then at home when on the phone to customer services.
    The people at my network are stumped, and so am I!
    Please, any solutions?

    Hi and Welcome to the Forums!
    Even though two steps are redundant, I suggest the following steps (in order, waiting for success of each before proceeding to the next):
    1) Register HRT
    Homescreen > Options > Advanced Options > Host Routing Table > (it does not matter which line is current) > Register Now
    2) Resend Service Books
    KB02830 Send the service books for the BlackBerry Internet Service
    3) Batt Pull Reboot
    Anytime random strange behavior or sluggishness creeps in, the first thing to do is a battery pop reboot. With power ON, remove the back cover and pull out the battery. Wait about a minute then replace the battery and cover. Power up and wait patiently through the long reboot -- ~5 minutes. See if things have returned to good operation. Like all computing devices, BB's suffer from memory leaks and such...with a hard reboot being the best cure.
    Hopefully that will get things going again for you! If not, then it sadly remains up to your carrier to resolve as they are the ones who deliver your services to you...
    Good luck and let us know!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • BUG? @Transactional doesn't work on inherited methods

    Hi all,
    I have to state an odd behaviour:
    I have a DAO interface :
    public interface UserDAO
    ..public User save(User user);
    In my application I have to use this UserDAO interface to rebuild the DAO layer with a Toplink database access. The new UserDAO implementation is injected into the original ServiceLayer. The according UserService looks like :
    public interface UserService
    ..public User save(User user);
    And the implementation :
    public class UserServiceImpl
    ..protected UserDAO userDAO;
    ..public User save(User user)
    ....userDAO.save(user);
    ..public setUserDAO(UserDAO userDAO)
    ....this.userDAO = userDAO;
    However, until I can save my user objects with Toplink I have to annotade the UserService as transactional. Therefore I would write a new UserService class, exending from the original one, like this :
    import org.springframework.transaction.annotation.Transactional;
    @Transactional
    public class TransactionalUserService extends UserServiceImpl
    And thats all, since I can inject my JPA UserDAO into this TransactionalUserService and everything will work right.
    --> BUT NO ! In this case nothing happens transactional. It only works, when I rewrite the UserService. Then I have :
    @Transactional
    public class TransactionalUserService implements UserService
    ..private UserDAO userDAO;
    ..public User save(User user)
    ....userDAO.save(user);
    ..public setUserDAO(UserDAO userDAO)
    ....this.userDAO = userDAO;
    Now my user objects are stored into the database. But why only in this case and not with inherited methods ?

    Spring is the one managing your transactions and @Transactional is a Spring annotation so you might get a quick answer to your question on the Spring Data Access Forum.
    That being said, instead of subclassing UserServiceImpl just to add @Transactional you could instead use <tx:advice> in your Spring XML configuration to make UserServiceImpl transactional.
    --Shaun                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Flash button doesn't work when used with Dreamweaver CS4

    I am a student trying to learn how to take multimedia elements from one class and put them on a webpage using Dreamweaver CS4. From an online tutorial, I created start/stop buttons with ActionScript3 URLRequest to reference a sound file. The swf works fine when played; it plays from the html generated by flash but when I use Dreamweaver CS4 > insert > media > swf  and then preview page in browser (firefox), the button doesn't do anything. When I compare the html page generated by flash to the html created by Dreamweaver, they look completely different. I don't have a clue what to do next.
    I have also posted this in the Dreamweaver forum. Please, does anyone have a solution?

    Thanks for the response! What bothers me is that I was able to use Dreamweaver > insert.... swf on a different file with actionscrip2 controls (thanks to help from Ross Ritchey) but this time the swf has actionscript3 code in it and I was wondering if that makes a difference. I don't get any errors, the button shows as clickable, just nothing happens. Thank you for the suggestion, however the flash html but it is so MASSIVE! It makes looking at the rest of the page difficult and I have several sound files I wanted to add to one webpage.

  • Session Replication doesn't work when using a custom Unicast Channel

    Hello!
    After configure a WLS Cluster for an WebApp with session replication support enabled I faced some issues with cluster configuration.
    My LAB env used for this configurations is:
    One Solaris 10 SPARC box.
    -- One WLS 11g (10.3.6) domain with:
    ---- 4 Managed servers:
    ---- Admin server
    ---- server-1
    ---- server-2
    ---- Proxy Server (HttpClusterServlet)
    --- 1 Cluster composed by:
    ---- server-1
    ---- server-2In that setup I noticed if I define a custom network channel for servers ( server>protocols>channels ) in the cluster and set Cluster Messaging Mode as Unicast* in the Cluster config ( Cluster>Configuration>Messaging>Messaging Mode ), so the session state replication does not work.
    When I enable the cluster replication debug for managed servers the following messages appears:
    <> <> <1358966729933> <BEA-000000> <[roid:-1772481434088297851] Creating primary for application key /webapp>
    ####<Jan 23, 2013 4:45:29 PM BRST> <Debug> <ReplicationDetails> <de25503> <server-1> <[ACTIVE] ExecuteThread: '5' for queue: > 'weblogic.kernel.Default (self-tuning)'> <<ano
    nymous>> <> <> <1358966729958> <BEA-000000> *<Has secondary servers? false>*
    ####<Jan 23, 2013 4:45:29 PM BRST> <Debug> <ReplicationDetails> <de25503> <server-1> <[ACTIVE] ExecuteThread: '5' for queue: >'weblogic.kernel.Default (self-tuning)'> <<ano
    nymous>> <> <> <1358966729959> <BEA-000000> *<Current secondary server? null>*
    ####<Jan 23, 2013 4:45:29 PM BRST> <Debug> <Replication> <de25503> <server-1> <[ACTIVE] ExecuteThread: '5' for queue: >'weblogic.kernel.Default (self-tuning)'> <<anonymous>
    <> <> <1358966729959> <BEA-000000> <[roid:-1772481434088297851] Unable to create secondary on null>
    ####<Jan 23, 2013 4:45:31 PM BRST> <Debug> <ReplicationDetails> <de25503> <server-1> <[ACTIVE] ExecuteThread: '5' for queue: >'weblogic.kernel.Default (self-tuning)'> After eliminate all possible issues with my webapp (serialization, weblogic descriptor configuration, etc) and try many cluster network configurations I noticed that this problem only occurs when I use Unicast for Cluster's Messaging.
    At the end of the day I really would like to understand why the session replication only works for Cluster's Messaging using Multicast mode. I read a lot the WLS docs (specifically the cluster/network topics) [1][2], but I can't find an official explanation about this.
    Can someone help me understand this behavior?
    Many thanks.
    [1] http://docs.oracle.com/cd/E15523_01/web.1111/e13701/network.htm
    [2] http://docs.oracle.com/cd/E15523_01/web.1111/e13709/setup.htm

    I have Fluxbox started with Slim and .xinitrc. Dbus works only with:
    exec ck-launch-session startfluxbox
    you need run Openbox with ck-launch-session:
    exec ck-launch-session openbox-session
    Bye!!

  • Airport doesn't work when using a second monitor

    My macbook pro, purchased mid-June, is exhibiting an odd problem. When nothing is plugged into the mini-displayport, everything is fine. If I plug my external monitor in, and the display is being mirrored, whether the lid is open or not, once again, everything works perfectly. Once I switch into extended display mode however, my wireless connection drops after a few minutes and refuses to reconnect.
    It is definitely not a signal issue. The second I unplug the monitor, my wireless connection returns to normal even if I don't move the computer an inch.

    Hello,
    I have the exact same issue: whenever I am using my external display, my wireless connection with airport immediately stops. Same June 2009 macbook pro for me as well.
    If I go down to the lowest resolution (640x480), I can get it to connect. The moment I unplug the external display, the wireless connection with airport is re-established.
    This problem has been reported on the apple discussions forums by a few people. Someone mentioned that it could be electrical cross-talk between the graphics card and wireless card internally, one causing noise for the other.
    Anyone have a solution? Or have the same problem?

  • Personna mouse over feature doesn't work; it used to want to try different personna mouse overs...am running firefox 4 and explorer 9

    personna mouse overs don't work...they used to
    am running explorer 9 and firefox 4

    Previewing a persona only works on sites that are whitelisted via an allow exception.
    You can see the permissions for the domain in the current tab in:
    * Tools > Page Info > Permissions > [X] Install Extensions or Themes
    * Tools > Options > Security : "Warn me when sites try to install add-ons": Exceptions
    Make sure that you do not use [[Clear Recent History]] to clear the 'Site Preferences'.
    See http://kb.mozillazine.org/Themes#Lightweight_theme

  • Safari Bug: Look-up (dictionary) doesn't work after using Youtube on new 6.1 on mountain lion and the newest version for Mavericks

    One of sever glitches that led me to "downgrade" back to mountain lion.  However, wasn't thinking and updated safari to 6.1 and I now have the same problem.  It took me a while to figure out, but now it is completely reproducible.  When I visit youtube and watch a video.  Safari's look-up, the three finger tap dictionary shortcut, no longer works.  It just highlights the word momentarily but never completes the function.
    I'm going to restore my laptop again to factory setting and just not upgrade the software to the new Safari update. 
    The main issues/bugs I had with Mavericks, even after a clean install were:
    - pdf's very freezing while scrolling for a few seconds
    - frequent spinning pin wheels
    - other small random bugs I can't recall at the moment.
    Macbook Air mid 2012 i7 8g ram  256gbHD

    Thanks,but the problem seems to show up only after extended use of the computer.Today,for example,I didn't go to work,and turned the PC on in the morning,and by early afternoon,it was getting more and more sluggish.It finally got so bad that it locked up,and even CTL-ALT-DEL wouldn't work.

  • The preview option in FCK doesn't work when using trought an external app!

    Hello everyone!
    I have an issue with the FCK-editor when using in an external application.
    We are executing the “WCM_EDIT_DATA_FILE” service to launch the FCK contributor application in a portal (Webcenter) so we can edit datafiles. The preview option (preview butto) does not apply a region template and the content is shown in the same order as defined in the region definition. Viewing the same datafile trough Site Studio I can see that the preview option applies a region template.
    I've compared the links but I am not getting anywhere.....
    The links for the preview are:
    Via the portal:
    http://MyServer/vcc/idcplg?IdcService=SS_QD_GET_RENDITION&coreContentOnly=1&dDocName=DF_NEWS_BERLIN_8&dID=765&wcm.contributor.mode=false&IgnoreContributorOnly=true&previewId=1276003853183&WCMPopupId=POPUP09875462424653607178
    Via Site Studio:
    http://Myserver/VCCPOC/index.htm?wcm.contributor.mode=false&IgnoreContributorOnly=true&previewId=1275983448108&WCMPopupId=POPUP07808631203986127290
    I can see that the portal link has the same parameters as the Site Studio link and some more. I even tried adding a region template in the url by adding my template as a parameter like this "&templateDocName=RT_BOUND_DETAIL_VIEW" just to force it but without any luck. The same goes for the "view differences"-button in the FCK editor.
    Has anyone had this problem?
    Thanks

    Hi Stijn,
    Here is the link to the SS-services:
    http://download.oracle.com/docs/cd/E14571_01/doc.1111/e10615/c11_ss_services.htm#insertedID0
    And here is the link to the CS-services:
    http://download.oracle.com/docs/cd/E10316_01/cs/cs_doc_10/documentation/developer/services_reference_10gr3en.pdf
    The name of the service that creates new data file is CHECKIN_NEW_FORM.
    Saving the file from the FCKEditor makes the browser window "greyed out" so for the time being we are hitting the "go back"-button in the browser to return to the portal... as we open the editor in the same window as the portal. However, there must be another solution as this is fare away from user friendly!
    Let me try to answer some of your questions:
    - Are you also using the Site Studio publishing functionality (we will not)
    No, we are not either.
    - where will your site design be done (we'll try to do as much as we can in WebCenter to keep it all in one place; we might even just output XML with our templates from SS, and transform it in WebCenter using different "templates")
    We are also planning to have it all in WebCenter. We are using SS for creating region templates and subtempalates used in the portal (Webcenter/ADF) for showing the same data files in different ways. That means that we also have elements, region definitions, placeholders and so on in the SS.
    - what are you doing with inline images in the FCKEditor (we want contributors to be able to upload there images easily from the Editor, without the need to browse to UCM)
    Well, for the time being the contributor must browse the some images from the CS because the images must have a certain height and width... so that is our way of controlling that the user is choosing from the approved images. When it comes to images in the text the contributors can add as many images as they want that are not from the CS. They can just copy/paste them in the editor from whatever location they want.
    - is it correct that the metadata tab cannot be used in combination with profiles defined in UCM (see other thread WebCenter Content
    I've heard that before so my guess is that it's true. My question then is how do I do to hide the metadata tab if I do not use it?
    - will you be using the ctrl-shift-F5 functionality to edit content, or just create a link to the WCM_EDIT_... service in a popup window?
    We create a link to the WCM_EDIT_... service that opens in the same window as the portal.... but as I mentioned earlier that is not the most user friendly solution so we probably must change that....
    Now back to my problems:
    I know why the preview trough the portal and the site studio differs.
    The services that are used when previewing content trought the SS are:
    SS_SET_PREVIEW_ELEMENT_DATA
    SS_GET_PAGE
    LOAD_DOC_ENVIRONMENT
    The services that are used when previewing content trought the portal are:
    SS_SET_PREVIEW_ELEMENT_DATA
    SS_QD_GET_RENDITION
    LOAD_DOC_ENVIRONMENT
    The SS_GET_PAGE actually shows a page in SS and as soon as there is a region template attached to the page you are able to see the content the way you want. That is not the case then calling the SS_QD_GET_RENDITION service. So my question is if there is a workaround where I can force a region template to be used con conjunction with the SS_QD_GET_RENDITION service?
    Anyone? All ideas are really appreciated!

  • Importation doesn't work when use spotlight on snow leopard.

    Hello,
    I've a little problem with AE CS4. I upgrade to Snow leopard, and now, when I want to import something (music, video or something else) with the spotlight search (in the importation windows) AE crash....
    So if I want to import something I've to select manually each files...
    Do you know how to fix this ?
    Thanks.

    Hi,
    Thanks for mentioning this issue. If you remember, dropping a line to [email protected] a pretty reliable way to report bugs (but not get support).
    I couldn't see any obvious workaround for you to use oothen than just avoiding the problem.
    As usual, I can't comment on future releases.
    --chris

Maybe you are looking for

  • Trying to converse thru webcams with PC user

    I am using a mac IbookG4 laptop- my boyfriend has a dell PC laptop. I have the Isight webcam with microphone built into it. We can't reach a connection to each other, I am using IChat and he is using AIM. We can send invitations to each other, but wh

  • Set last reconcilaition time in my custom reconciliation task

    Hi everyone, I have implemented a custom HR trusted user reconciliation task and job. I executed this task successfully and I can get users. I have an task attribute, name of this attribute is LastReconciliationTime. But I could not set last reconcil

  • The native browser in N9 is not good

    The native browser, or name it Nokia browser, is quite hard to use when surfering, I want to install 3rd application to solve this issue, who can tell me where I can find one more handy browser for my N9?

  • Unable to deploy ear on weblogic 8.1 sp3

    hi . i have an application in struts 1.1 which was working fine in weblogic 8.1 sp3. now i have upgraded to struts 1.2.8 and when i am trying to deploy the applicaiton following error is thrown. Unable to initialize Struts ActionServlet due to an une

  • Dialog process (loading)

    Hello, We have upgraded the system to BW2004s. Now when loading fom cube to cube. We get 2 dialog processes. Before we got only 1 dialog process. Does anybody know how to select only 1 dialog proces during loading? regards, Jos.