Help with SOAP traces to deal with VC Problem

Hi,
I'm currently using CE SR 3 and am having trouble using a web service in VC. I've used the WS in the web service navigator and it works there but I'm missing something in the VC environment. I'd like to be able to see the actual SOAP request and response messages that are being used.
Does anyone have an idea on which trace locations I can set to find this information.
Thanks.
Dick

Hi Richard,
Is it possible for you to elaborate a bit about the problem?
There is a known limitation concerning web service consumption:
Limitation 0120031469 1000108608 - Services that contain nillable structures with no fields cannot be consumed in Visual Composer.
Can this be the case?
Regards,
    Shai

Similar Messages

  • Does anyone can help me with Typical issues to deal with when rolling out ERP in Japan?

    Does anyone can help me with Typical issues to deal with when rolling out ERP in Japan?

    If it were me I would schedule an appointment at the store where you bought it and meet with the Manager of the store in person. Print this post and bring it with you along with your iMac.
    And change the password on your Apple ID and then see if there are in purchases in your account that you did not make. If there are then someone did get your ID and password. If not someone got your Credit Card information from somewhere and used it.

  • Need help figuring out how to deal with inheritence issues

    So I have these two classes, one's called MC, which represents a Multiple-Choice question, and one's called TF, which represents a True/False question. It would make sense to have TF inherit from MC, since TF is simple a MC question with two set options (true and false!).
    So it would also make sense for the constructor for MC to take a prompt (the question itself) and a Vector of Strings for choices, like so:
    MC(String prompt, Vector<String> choices);
    And then the TF constructor would just take a prompt (since the choices are always going to be true and false) and just pass a preset vector to the MC constructor, like so
    TF(String prompt);
    However, here's where the problem lies. Since I can must call my super constructor first, I have no way to initialize my preset Vector of choices (true and false). I could have a seperate MC constructor for handling this, but a parent class should not have to know what a child class needs to do, right? I need a quick and relatively proper solution for this if anyone has one. Thanks in advance!

    private static final List CHOICES = new ArrayList();
    static {
      CHOICES.add("True");
      CHOICES.add("False");
    public TrueFalse(final String question) {
      super(question, CHOICES);
    }For the record, if I were doing this, I'd make an interface called "Question" and have both TrueFalse and MultipleChoice implement it. If there were similar functionality, I'd put it in an abstract class AbstractQuestion, then have TrueFalse and MultipleChoice extend AbstractQuestion and implement Question.

  • Need help with CF8 Javascript error dealing with cfdiv

    Ok, so I'm currently working with CF8 because that is what my employer has...I'm having a problem with this error in IE:
    Error pocessing Javascript markup in element xxxxx.
    I had the error on two pages, but I fixed the first page by adding bindonload = "false"
    Here is the code for the second page:
    function(){return A.apply(null,[this].concat($A(arguments)))}
    <cflayout type = "tab" tabposition= "left">
          <cflayoutarea title = "General Information">
          <cfdiv bind = "url:getforms.cfm?people={people.value}" bindonload = "false"  style = "padding: 0 10px;" />
          </cflayoutarea>
          <cflayoutarea title = "Degree Infomation">
          <cfdiv bind = "url:getdegforms.cfm?people={people.value}" bindonload = "false"  style = "padding: 0 2px;" />
          </cflayoutarea>
          <cflayoutarea title = "Documentation Infomation">
          <cfdiv bind = "url:getdocforms.cfm?people={people.value}" bindonload = "false" style = "padding: 0 2px;" />
          </cflayoutarea>
          </cflayout>
      </td>
    <td width="233" align="center" valign="top" class = "contenttd">
    <h3>Current Employees</h3>
    <cfajaximport tags = "cfform" />
    <cfajaximport tags = "cfgrid" />
    <!-- Query -->
    <cfquery name="getPeople" datasource="#sacsds#" username="#sacsuser#" password="#sacsuser#">
    SELECT  b.LastName + ', ' + b.FirstName AS FullName, p.IDNum FROM faculty.dbo.SACS_Person p, faculty.dbo.budPerson
      b WHERE p.DeptCode = '#session.deptcode#' AND p.IDNum = b.ID ORDER BY b.LastName,
      b.FirstName
    </cfquery>
    <!-- dynamic selection -->
    <cfform>
    <cfselect name="people"
            query="getPeople"
            display="FullName"
            value="IDNum"
            />
    </cfform>
    That is only a piece of the code, but basically I want a form where I can select an employee off a list and then their information + forms come up in the cflayoutarea tabs.
    An editable form is being called to these cfdivs... :\ i'm sure what else to do here...

    You might want to try a JavaScript forum. This one is for Java, which has nothing to do with JavaScript.

  • Help regarding a use case dealing with EO cache and Association Consistency

    Hi
    I am facing the following issue
    There are two VOs : VO1 and VO2
    VO1 has two entity usages EO1 and EO2
    VO2 has two entity usages EO1 and EO3
    I use VO1 2 create two rows therefore there will be two underlying EO Rows for each entity usage in the cache .Let me call them EO1row1,EO1row2 and EO2row1,EO2row2
    I am creating one row for EO3 without using the VO2 , therefore there is one EO3 row in the cache ,let me call it EO3row1
    I do a in memory filter using VO2(query mode as Scan Entity Rows) ,and set the row match in such a way that i get get only one view row that contains EO1row1 and EO3row1
    When i try to traverse through the VO2 using hasNext() , another viewRow gets created with EO1row2 which is not intended
    I think this might have to do with Association Consistency / EO cache but am not sure how to apply it here
    Thanks
    Sreekanth

    Thanks for the quick advice!
    Unfortunately, I am still unable to open my core productivity apps, namely Skype and Evernote. Twitter, as well, could not start. But interesting quick fix though, I never knew you could do that.
    Here's the error log after the restart:
    What else should I try?

  • Need help in formating a form dealing with negative currency

    Need Help!!!
    Creating forms in Adobe acrobat Pro I could format a number cell to calculate additions/subtractions of currency. If the result was negative I could get the cell to show the negative result in red text and show parentheses around them. How can I do that in LiveCycle?
    If i have to use formcalc - what would i type in?

    In LiveCycle can be done using the Numeric Field object and some formcalc script.
    Use the "Numeric Field" from the Object Library. For the Field patterns (Select the placed numeric field, On object Window Object -> Field) use "num.currency{}" to show the currency(Ex: $) and "parentheses" if its negative. Write some script to show red text/border in red .
    On exit event of the Numeric Field here is the script:
    if($.rawValue <0) then $.font.fill.color.value = "255,0,0" endif  // This will make entire text in red color if the value is negative.
    if($.rawValue <0) then $.validate.nullTest = "error" endif      //This will make border of the field in red color if the value is negative.
    Hope this helps.

  • VIDEO PODCAST WITH iWEB-how to deal with huge file size

    Hello folks,
    I have created simple website for my video podcast. It all works fine, except one problem. I had used just small video clips for now, just for testing... and it takes long time for website to download. I can't even imagine, how slow it will be, when I have full 15 video episodes within my website. So I am wondering, is there any way of how to maintain that cool iWeb podcast structure (with podcast page, entry page and archive page) but not to embed those videos onto the page, but instead, play it externally? I have tried to just post the link to the video clip, but than "publish to the folder alternative" does not create correct rss.xml feed, because it does not know where those clips are. So it doesn't work in iTunes.
    Any suggestions? Thanks for any input or advise.

    Hello,
    unfortunately, no answer yet. The only solution I can think of, is to create a Blog instead of Podcast, then post hyperlink to your video file on entry page. That way, the actual video is not embeded on that webpage, but it only downloads when someone clicks on it. That way you probably won't be able to use subscribe button and RSS subscribe button, but you can create your own Feed with Feed For All software (http://www.feedforall.com), put it on your domain, then post it's URL on your website. So if someone wants to subscribe to your podcast, he will copy that address and paste it into the iTunes or some other podcast readers.
    I am a beginner, so this most likely is not the best solution, however, it works so far.
    Good Luck

  • How to configure a new product type with a new operation deal?

    hello, All,
    I wonder to know if somebody knows, how to configure a new product type with a new operation deal with the amortization divided?, I mean in the SPRO, portfolio of securities with the characteristics mentioned.
    Hope you help me.
    Bests regards.

    Hi Prasad,
    Thanks for the information, but the directions that you give me not be useful, I want that the UPDATE TYPE  appears in the position cash flow in the transaction deal in the option-->operative valuation area( 2nd option) or in the report TPM13, this for two treasury ledger dates.
    I mean that the update type "samxx" affect the accountant as amortization divided?, this transaction deal is a purchase.
    Thanks in advanced

  • What's the deal with iCal and DNS?

    So according to the documents, you need a domain name and fully functional reverse DNS, to use the caldav server? What's that all about? Do you really need all that? Why can't you just type in the IP of the server, and connect to the server? Just like connecting to a web server, nice and simple? Most ISP's won't give you custom reverse DNS. My collocation data center does, bust all the calendar servers i've set up, were in small office networks with small mac mini servers. I feel like I'm missing some part of this equation?

    Why? Modern IP network security and user authentication is based on forward DNS, and particularly on matching forward and reverse DNS.
    More than iCal Server here, Mac OS X Server itself expects functional DNS.
    If you're running privately, the easiest approach is the obvious one: [set up your DNS|http://labs.hoffmanlabs.com/node/1436] and be done with it.
    Mac OS X Server can get wonky with no DNS and can get particularly wonky with bad DNS. And the authentication services can get particularly cranky in the absence of DNS. (That's why SLS sets up its own very private rDNS environment for itself during the installation, when installed in the absence of local DNS.)
    nb: iCal doesn't need the SRV records if you're on the default ports.
    Or for running your iCal publicly? You're in a slightly tough spot with your ISP. Try it. Like with the mail server and other services, I'd tend to have issues with mismatching reverse DNS. Or connect into and use a tunnel, as that reduces the "fun factor" with network security and dealing with the yutzes that attack everybody's servers, in addition masking to the rDNS aspects.

  • Need Help for  SOAP sender with HTTPS protocol

    Hi Team
    We have a scenario where the sender is a 3P system and they will be sending the message using web service.They will send the data using SSL ( HTTPS) using certificates.
    In the sender soap adapter , I have two options
    1. HTTPS with client Authorization
    2. HTTPS without client Authorization
    I think I need to use the first option. But I have doubt regarding certificates
    1. Who is going to provide the certificate? is it PI Team or the third party team.
    2. Once we have the certificate where we need to store it in NWA? is it in the TrustedCA keystore view or service_ssl keystore view.

    Hi Indrajit,
    Krupa already shared a valuable resource on how to set up on Double Stack PI, so I'll focus on what's left to deal with / open questions.
    Indrajit Sarkar wrote:
    In the sender soap adapter , I have two options
    1. HTTPS with client Authorization
    2. HTTPS without client Authorization
    I think I need to use the first option. But I have doubt regarding certificates
    1. HTTPS with client authorization means that the 3rd party would not give username / password to authenticate to your PI but present a certificate you are trusting. You can think of this as an admission ticket to communicate with your PI server
    2. HTTPS without client authorization means they will authenticate with username password.
    In both cases the caller (3rd party) would need to trust your PI server. Most commonly this trust is established by not trusting your PI server's explicit certificate but in trusting the CA that issued your PI server's certificate. This CA can very well be a company internal CA. That way, if you happen to need changing the hostname of the server some time in the future, trust situation is still valid.
    In case of 1. (HTTPS with client authorization) your PI server in turn would also need to trust the 3rd party caller. This is often done in such ways that the interal CA on your side issues a client certificate with the CN of the caller. The caller presents this certificate to your server upon making a call (see here for a picture https://help.sap.com/saphelp_nw74/helpdata/en/43/dc1fa58048070ee10000000a422035/content.htm). You will also need to back up this process on your PI server by mapping the certificate to a specific user.
    --> Option 2 is the more polished one with ability to withdraw a certificate and the like. However it does result in some overhead setting it up so I personally would go with Option 1 if there's no business need / security policy enforcing so.
    HTH
    Cheers Jens

  • Where am I supposed to get help? 3 months dealing with tech support is NOT working

    I have been dealing with an ongoing connection issue for 3 months now and I'm at my wits end with trying to get help. I'm have the same problems others seem to be having here my internet keeps cutting out for a min or two and coming straight back on sometimes it works fine for a week sometimes I can't get online all day. I have spent countless hours on the phone with Verizon over these past three months being transferred from place to place, being hung up on and told multiple times they would "call me back"
    I've had three techs come to my house (money out of my paycheck taking off work) and each said the issue isn't at my home, I even spoke with a gentleman at the local dispatch center and he told me the same thing, he also told me when I had a 4th tech scheduled to come "sending another tech won't help we already know the issues isn't at your home so all a tech will do is come check the connection and if its working at that moment close the ticket out"
    Each and every time I call I get the exact same process, first they want to send a tech, then I explain that's not going to help, then I spend 15 min trying to get their "supervisor" on the line, each time I'm told "the ticket has been escalated and will be looked into expect a call back in 24-48 hours" each time I either don't get a call or they call and say its fixed just to have issues return a few days later.
    I've even managed to get a number to a supposed "supervisor" area that needs a pin number to get thorough, yet even when I call that number I'm dealing with being told they need to send another tech and being told I will get call backs.
    I've been told them replacing the modem fixed it, then told them fixing something at the end of my street fixed it, been told they switched me to another server or something Because mine was congested and that fixed it, was told they found another issue and that fixed it..None of these actually did fix it though..SO I've been down right LIED to by Verizon many many times already over this ordeal over the multiple false fixes and the numerous call backs I never got.
    No customer should have to spend 20+ hours on the phone (with each call being atleast 1+ hour most of it being on hold) to get a service they are paying for fixed so PLEASE who on earth do I contact to get this actually FIXED???? Because Each time I try to get somebody who is actually a real manager or something on the phone they are NEVER available and each time I ask to speak to somebody who is actually in MY COUNTRY let alone my state I get told its "not possible"
    Where I live don't have too many internet options and I'ma bout to have to move to a SLOWER service all Because Verizon has screwed me over for 3 months and refuses to fix a service I have paid for for YEARS.
    SO please if any verizon employee sees this or anybody else who knows who/what I need to to please I beg you tell me lol I'm tired of being toyed around...

    Your issue has been escalated to a Verizon agent. Please go to your profile page for the forum, and look in the middle, right at the top where you will find an area titled "My Support Cases".  You can reach your profile page by clicking on your name beside your post, or at the top left of this page underneath the title of the board.
    Under “My Support Cases” you will find a link to the private board where you and the agent may exchange information.  This should be checked on a frequent basis  as the agent may be waiting for information from you before they can proceed with any actions. Please keep all correspondence regarding your issue in the private support portal.
    If a forum member gives an answer you like, give them the Kudos they deserve. If a member gives you the answer to your question, mark the answer that solved your issue as the accepted solution.

  • Since upgrading to Yosemite on my iMac, My Mail app refuses to open, Safari won't load, and I can't upload pictures from my iPad... Please help, any ideas very welcome. I've had my iMac since 2011, and have never had any issues to deal with before..

    Since upgrading to Yosemite on my iMac: My Mail app refuses to open, Safari won't load, and I can't upload pictures from my iPad...
    Please help, any ideas very welcome. I've had my iMac since 2011, and have never had any issues to deal with before..
    Thanks

    29/11/2014 20:17:01.315 com.apple.xpc.launchd[1]: (jp.buffalo.NASPower)
    Service only ran for 11 seconds. Pushing respawn out by 49 seconds.
    29/11/2014 20:17:37.013 com.apple.backupd[616]: Finished scan
    29/11/2014 20:17:43.108 com.apple.backupd[616]: Saved event cache at
    /Volumes/Time Machine Backups/Backups.backupdb/Geoff Lambrechts’s iMac
    (2)/2014-11-29-200648.inProgress/9B453663-603F-40B8-AC21-24F05C724E15/.6162AD34- 38F8-30AB-98E0-4A22FB9D311F.eventdb
    29/11/2014 20:17:43.207 com.apple.backupd[616]: Not using file event
    preflight for Macintosh HD
    29/11/2014 20:18:01.561 com.apple.xpc.launchd[1]: (jp.buffalo.NASPower)
    Service only ran for 11 seconds. Pushing respawn out by 49 seconds.
    29/11/2014 20:18:16.288 com.apple.xpc.launchd[1]:
    (com.apple.quicklook[715]) Endpoint has been activated through legacy
    launch(3) APIs. Please switch to XPC or bootstrap_check_in():
    com.apple.quicklook
    29/11/2014 20:18:23.705 com.apple.SecurityServer[56]: Session 100013 created
    29/11/2014 20:18:32.046 mdworker[718]: code validation failed in the
    process of getting signing information: Error Domain=NSOSStatusErrorDomain
    Code=-67062 "The operation couldn’t be completed. (OSStatus error -67062.)"
    29/11/2014 20:19:01.662 com.apple.xpc.launchd[1]: (jp.buffalo.NASPower)
    Service only ran for 11 seconds. Pushing respawn out by 49 seconds.
    29/11/2014 20:19:45.458 com.apple.xpc.launchd[1]:
    (com.apple.imfoundation.IMRemoteURLConnectionAgent) The
    _DirtyJetsamMemoryLimit key is not available on this platform.
    29/11/2014 20:19:59.123 com.apple.xpc.launchd[1]:
    (com.apple.PubSub.Agent[725]) Endpoint has been activated through legacy
    launch(3) APIs. Please switch to XPC or bootstrap_check_in():
    com.apple.pubsub.ipc
    29/11/2014 20:19:59.123 com.apple.xpc.launchd[1]:
    (com.apple.PubSub.Agent[725]) Endpoint has been activated through legacy
    launch(3) APIs. Please switch to XPC or bootstrap_check_in():
    com.apple.pubsub.notification
    29/11/2014 20:20:01.138 com.apple.xpc.launchd[1]: (jp.buffalo.NASPower)
    Service only ran for 10 seconds. Pushing respawn out by 50 seconds.
    29/11/2014 20:21:01.484 com.apple.xpc.launchd[1]: (jp.buffalo.NASPower)
    Service only ran for 10 seconds. Pushing respawn out by 50 seconds.
    29/11/2014 20:21:13.430 com.apple.backupd[616]: Found 4529 files (1.1 GB)
    needing backup
    29/11/2014 20:21:18.786 com.apple.backupd[616]: 2.82 GB required (including
    padding), 1.24 TB available
    29/11/2014 20:21:31.775 Console[734]: Failed to connect (_consoleX) outlet
    from (NSApplication) to (ConsoleX): missing setter or instance variable
    29/11/2014 20:21:34.230 WindowServer[162]: disable_update_timeout: UI
    updates were forcibly disabled by application "Console" for over 1.00
    seconds. Server has re-enabled them.
    29/11/2014 20:21:36.898 WindowServer[162]: common_reenable_update: UI
    updates were finally reenabled by application "Console" after 3.67 seconds
    (server forcibly re-enabled them after 1.00 seconds)
    29/11/2014 20:21:36.971 coreservicesd[83]: SFLEntryBase::ListHasChanged
    mach_msg returned 10000004d
    29/11/2014 20:22:01.817 com.apple.xpc.launchd[1]: (jp.buffalo.NASPower)
    Service only ran for 10 seconds. Pushing respawn out by 50 seconds.
    29/11/2014 20:23:02.170 com.apple.xpc.launchd[1]: (jp.buffalo.NASPower)
    Service only ran for 10 seconds. Pushing respawn out by 50 seconds.
    29/11/2014 20:24:02.547 com.apple.xpc.launchd[1]: (jp.buffalo.NASPower)
    Service only ran for 10 seconds. Pushing respawn out by 50 seconds.
    29/11/2014 20:25:02.168 CalendarAgent[218]:
    [Refusing to parse response
    to PROPPATCH because of content-type: .]
    29/11/2014 20:25:02.233 CalendarAgent[218]:
    [Refusing to parse response
    to PROPPATCH because of content-type: .]
    29/11/2014 20:25:02.236 CalendarAgent[218]:
    [Refusing to parse response
    to PROPPATCH because of content-type: .]
    29/11/2014 20:25:02.284 CalendarAgent[218]:
    [Refusing to parse response
    to PROPPATCH because of content-type: .]
    29/11/2014 20:25:03.059 com.apple.xpc.launchd[1]: (jp.buffalo.NASPower)
    Service only ran for 10 seconds. Pushing respawn out by 50 seconds.
    29/11/2014 20:25:12.674 com.apple.xpc.launchd[1]:
    (com.apple.imfoundation.IMRemoteURLConnectionAgent) The
    _DirtyJetsamMemoryLimit key is not available on this platform.
    29/11/2014 20:26:03.464 com.apple.xpc.launchd[1]: (jp.buffalo.NASPower)
    Service only ran for 10 seconds. Pushing respawn out by 50 seconds.
    29/11/2014 20:27:03.841 com.apple.xpc.launchd[1]: (jp.buffalo.NASPower)
    Service only ran for 10 seconds. Pushing respawn out by 50 seconds.
    On 29 November 2014 at 19:29, Apple Support Communities Updates <

  • How to deal with complex SOAP responses when calling web services ???

    Hi all,
    I have an issue when calling a web service that returns a complex
    SOAP response message. With simple responses (e. g. array of strings) it
    worked.
    I created the PDF as an Interactive form with Livecycle Designer 8.2.
    The Javascript looks like this:
    var cURL = "http://blabla";
    var cTestString = "too";
    SOAP.wireDump=true;
    var response = SOAP.request(
         cURL: cURL,
         oRequest: {
              "http://blabla.com/:complete" : {
              arg0: cTestString
              cAction: "http://bla.com:50000/"
    var resp = response["http://blabla.com:serviceResponse"];
    console.println("lenght:"+resp.length);
    var myns = "http://blabla.com/namespace";
    for (var nItem in resp.return)
      console.println("" + nItem + " " + resp.return[nItem] );
         for (var ConceptView in resp.return[nItem])
           console.println("  "+resp.return[nItem].length);
           console.println("  "+ConceptView+" "+resp.return[nItem][ConceptView] );
           if (ConceptView == myns + ":Response")
              for (var item2 in resp.return[nItem][ConceptView]){
                  console.println("    "+item2+" "+resp.return[nItem][ConceptView][item2] );
    I call the service and when I realized that I do not find out the type of the object returned, I used the nested for-in-loops to iterate through it. But it seems that there is just one item in the Javascript object returned, although the SOAP message clearly shows that there are more than one item.
    Can you help me?
    One key problem when analyzing this issue is that I do not know at all
    the Javascript type of response. We suspected it might be an array, but it is not
    because the method .length returns "undefined". It would already be
    helpful to know at least the type of this object and to know callable
    methods and so on ...
    Best regards
    Christoph
    P.S. As mentioned I used Livecycle Designer 8.2 and displayed and
    debugged the document using Acrobat 9.

    Christoph,
    Firstly LiveCycle Designer 8.2 is still not supported to develop forms as per my knowledge. The latest version compatible for SAP Interactive Forms is ALD 8.0.
    There is a difference between Acrobat based forms and LiveCycle forms and based on your coding it looks to me  that you are trying to create a LiveCycle based form with coding of Acrobat which is not supported in LiveCycle Desginer, which is why you may be getting the error.
    I hope that does not confuse you, so may check this [link|http://www.acrobatusers.com/articles/2006/08/designer_or_forms/index.php] for some clear information on what point I was trying to make.
    Chintan

  • Can Apple make an app or an update that makes you insert your password to turn your phone off? This can help deal with theft of iPhones because people take or find a iPhone, the first thing they do is turn the phone off.

    Can Apple make an app or an update that makes you insert your password to turn your phone off? This can help deal with theft of iPhones because people take or find a iPhone, the first thing they do is turn the phone off.

    They probably can do such s thing if they choose to do so.
    Let them know that you would like this:
    http://www.apple.com/feedback
    Not sure this is a very useful thing.  It would run down the battery.  All a thief has to do is remove them SIM and restore the iphone to stop it from being tracked.

  • Good evening, Have been buying ipad4 device used by a licensed legal place in the UAE during use shows that locked the machine by the previous user's icloud I can not deal with it, please help

    Good evening,
    Have been buying ipad4 device used by a licensed legal place in the UAE during use shows that locked the machine by the previous user's icloud I can not deal with it, please help

    amr35 wrote:
    But I want to figure out a solution to this problem because I was not able to get to the first user because I did not know this person, or access to the store where you purchased the working conditions, please help because I had paid an exorbitant amount to buy
    There is no solution other than having the device cleared by the former owner. If you are trying to activate an iPad or iPhone and it is asking for a previous owners Apple ID and password, you have encountered the Activation Lock. This is a security feature that prevents thieves from setting up and using a stolen or lost iPad or iPhone. You have no alternative. You must contact the previous owner to get permission to use the device. If you cannot contact the previous owner return the device to where you bought it and get a refund. You will never be able to activate the device and no one can help you do it.

Maybe you are looking for

  • Gmail won't go online, won't take password

    I recently had a problem with keychain access not accepting my passwords. After a few hours of frustration, I was able to create a new keychain with a new password. Still have some problems with keychain upon start-up, but that is for another day. Ri

  • Date and Time stamp wrong in Console

    Since March, the date stamp in Console reads 12/31/69. The date and time on the system is correct. I know these are current Console logs. Also kernal task seems to be running high -- any connection? Here's a small sampling of the console log from the

  • Position of 'call contact' and 'contact info' buttons

    Hi all, I've been wondering for a while why the two contacts buttons ('Call' and 'Contact info') appear at the top on the SMS screen... When there's been a long thread of messages it would be nice if these were at the bottom of the thread, as I'm not

  • Can i change assignment of sales organization/company code?

    Hi, I have sales organizations SO1, SO2 assigned to company code CC1 sales organizations SO3, SO4 assigned to company code CC2 can i change this assignment?, for example: sales organizations SO1, SO2 reassigned to company code CC2 i.e.: before: sales

  • Sql Tuning using OEM and Logon triggers

    OEM = 10.2.0.4/Agent 10.2.0.4 Target = 10.2.0.3 Db We have several db users that have session level adjustments made by use of logon triggers. When OEM is used to review one of those session's performance and sql tuning opportunities - are the logon