It is SAP-ABAP Topic Can u Help me some one.........

Hi,
    I need some help in the PGP encryption / Decryption. We are getting a file from a third
Party vendor in the enrypted format. The encryption has been done using PGP.
We need to decrypt that file.
Q1 ) what is the Sun OS command for decryption ????
Q2) How can I give my private key in the ABAP code to decrypt it ????
Q3) How to know the Private Key that has been generated in the Unix Box for this third party ????
Regards,
sree
<b></b>

Hi,
    I need some help in the PGP encryption / Decryption. We are getting a file from a third
Party vendor in the enrypted format. The encryption has been done using PGP.
We need to decrypt that file.
Q1 ) what is the Sun OS command for decryption ????
Q2) How can I give my private key in the ABAP code to decrypt it ????
Q3) How to know the Private Key that has been generated in the Unix Box for this third party ????
Regards,
sree
<b></b>

Similar Messages

  • Can anybdy help in developing one sample interface in 7.4 as I'm new to this environment.

    Hellow Guys,
    Can anybdy help in developing one sample interface in 7.4  as I'm new to this environment.
    I want some small interface developed in ESR and ID and walkthru me so that I can develop on my own in my environment..
    I need in a clear way.
    Plz help me
    Thanks,
    Danii

    Hi,
    Go through below vedeos for step by step approach .
    SAP PI Online Training : File 2 File Scenario / XML 2 XML System Landscape Directory Scenario - YouTube
    SAP PI Online Training : File 2 File Scenario - XML 2 XML Scenario ESR Service Repository Part 2 - YouTube
    SAP PI Online Training : File 2 File Scenario / XML 2 XML Scenario Integration Directory Part -3 - YouTube
    SAP PI Online Training : File 2 File Scenario - XML 2 XML Scenario Runtime Work Bench(RWB) Part -4 - YouTube
    Regards
    Venkat

  • I love Apple and I use all product. iPhone 3,3s,4,4s,5, iPad and Mac Air(now no more 3,3s and 4)... Only one thing I want to know is... What can I do if some one spy on my phone? How do I protect all my stuff that I put in my phone?

    I love Apple and I use all product. iPhone 3,3s,4,4s,5, iPad and Mac Air(now no more 3,3s and 4)... Only one thing I want to know is... What can I do if some one spy on my phone? How do I protect all my stuff that I put in my phone?

    the only way that anyone would be able to see anything at all on your phone is if they knew your apple id password, or they were looking over your shoulder
    if you are concerned that someone may know your apple id password, please change it at appleid.apple.com

  • My mum is always using my iPad and I want to set mode if you like that she can log in as some one different and use apps she likes and I can use a diFferent log in and use different apps and stuff

    My mum is always using my iPad and I want to set mode if you like that she can log in as some one different and use apps she likes and I can use a diFferent log in and use different apps and stuff

    iOS 7 does not support multiple user accounts like you want.
    If all the apps are different, you could set her up with her own page of apps, then just show her how to get to her apps page, or just buy her an iPad for herself.

  • I am having problems being able to sign out of everything that requires a sign in and password can you help and some games only show have the page

    I have been doing online banking with this bank for 7 months with no problems. About 2 weeks ago I started having problems with certain things within the account. I called the support team with the bank and told them the problem and they suggested to uninstall firefox and reinstall so I did. Now I can move around within the account but can not sign off. Also all my accounts that require a sign in I have the same problem and some games I play only load up part of the game. I play goldminer and now I can not see the little miner to play the game. Can you help????????

    That issue can be caused by corrupted cookies.
    *https://support.mozilla.org/kb/Cannot+log+in+to+websites
    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    *Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Tools > Options > Privacy > Cookies: "Show Cookies"
    If clearing the cookies doesn't help then it is possible that the file <i>cookies.sqlite</i> that stores the cookies is corrupted.<br />
    Rename (or delete) <b>cookies.sqlite</b> (cookies.sqlite.old) and delete other present cookie files like <b>cookies.sqlite-journal</b> in the Firefox Profile Folder in case the file cookies.sqlite got corrupted.
    *http://kb.mozillazine.org/Cookies

  • Can anybody help with some subtleties to this code?

    Hello,
    I was wondering if anyone could take a look at the code in general for me, which is to go in an 'effects' pedal.  The first while loop is for a footswitch that either reads high or low.  It controls the mode of the pedal.  the first mode is the default, where no signal manipulation occurs, and what comes in the audio input just comes out; the second mode stores data (fundamental frequency, average FFT amplitude from 3 kHz to 5 kHz) from the E string of a guitar, which is plucked after that mode is actuated; the third mode does the same for the A string; and the final mode takes in a note on the E or string, recognizes it as either on the E or A string, and adjusts the frequency content to be in tune based the data stored in modes 2 and 3.  then the new magnitude vector is put through an inverse FFT and output through the DAC and sounded.
    What I'm curious to know is, are there any blatant errors I've made?  Will the signal coming out of the inverse FFT be sounded through the DAC? does it need to be changed from a double to an I32?  I am trying to debug, but right now I'm having problems getting the correct output voltages on the Blackfin (the SPORT 0 pinout doesn't seem to match what is on the board....).
    also, I was wondering if I will lose any phase information on the signal that I get out compared to the signal I put in.  Will it be detectable by ear?  Or would it all sound the same?  along with the phase change for some signals, using an inverse FFT resulted in a loss of amplitude (from about 1 to on the order of 10^-5.  that's a lot!).  but when the test program was played on my computer, the phase change was not noticeable from the output signal, and neither was the magnitude change!  the output played at the same volume as in the input, despite the waveform chart on the front panel showing an amplitude five orders of magnitude less!  can you help explain that to me?  what can I do, will it matter coming out of the Blackfin and into an amplifier?
    i appreciate any input anyone can give me on all this!!  thank you!!
    Attachments:
    102 project.vi ‏287 KB

    Hi noahgrant,
    I've had a look at your vi and can make some suggestions that you can try.
    From what I can see, your while loop with the wait timer of 100 ms and continue if true condition on it (we shall cool this loop 1) will always keep running.
    The other while loop (loop 2) is nested within a couple of case structures and will only run once (false to a continue if true condition). The default case has a different condition and will always run, instead.
    From what I can make of this, loop 2 and all its case structures will only run once (except for case 0, default). WHEN it runs will depend on how it was compiled on the Blackfin - case structure/loop2 may go first or loop 1 will go first.
    If you want loop 2 to go first (and only go once) then you need to link the output of the case structure to the input of loop 1 - this can be done by simply wiring up a boolean to it (data flow rules).
    If you want loop 2 to always be checking the status of the mode then you need to place the whole case structure within a while loop, to run continuously.
    That is a very quick interpretation of what you are trying to do. There are a lot of question marks (missing vi's) and some heavy use of local variables. I would consider using sub-vi's, in particular functional global variables (FGV's).
    I hope that helps.

  • Can anyone help with some free real estate software for our School in the UK to practice with

    Hi Guys
    We are setting our class a task to set up their own Estate agency (real Estate) and need some basic web software for them to use to develp their own shop. can anyone help us with a IWEB template that they can copy their own photos over and rename their shop.
    Thanks in advance
    Mr Smyth Richardson
    Head of IT

    Mr Richardson ~ Welcome to the Support Communities. Some forum members have quoted Apple staff as saying iWeb is no longer a supported product. ...iWeb hasn't received a major upgrade in almost three years and is not being included in new Macs. If you're not already too committed to using iWeb, consider other free site builders such as this:
    http://education.weebly.com
    ...One of Weebly's key advantages is that a site can be updated from any modern PC or Mac — there's also this:
    Introducing Collaborative Website Editing

  • Odd RV042 behavior can someone help shed some light?

    We have a group of 4 x RV042 routers linking the 3 branch offices back to the head office via VPN site to site tunnels. Also each of the sites has dual ISP connection, one from a cable provider and the other a DSL connection operating in smart link backup mode with tunnels configured for when each wan is active. In the past week one of the branch offices RV042 started failing over to the secondary DSL WAN link when the primary cable ISP WAN IP was expired and was being refreshed.
    The odd behavior starts a few hours after the switch over, the system log reports that the router restarted but with no error reported and it shows the date being December 31 2002 beginning with a System Up message then the firmware message which is at 1.3.12.19 and establishes a connection with the primary WAN at this point I can ping the public IP but I cannot connect to the router nor can the users at the branch browse the web or establish VPN connectivity to the main office. This condition persists until the router is physically powered down and back on at which time it shows the correct date and time and all operations work well for the day. I must note the behavior seems to only occur between 5am - 7am so I want to believe that this behavior is tied to the ISP IP lease cycle, but it only affects one branch office with all offices using identical ISP's, setup and configuration.
    Can someone help make sense of this situation as rebooting the router each day is becoming annoying?

    Hi Garth,
    Thank you for posting. I wish I had a brilliant explanation for you that would immediately solve the problem. Unfortunately I have not seen this before. There is a possibility that the configuration file is corrupt or has been changed inadvertently. I think I would set the router to factory defaults and manually reconfigure it. There is also the option of swapping the router for another. If the other router does the same thing it could point to an environmental issue. If this router does the same thing at the alternate location it could point to either a configuration or hardware issue.

  • Can someone help with some coding on a muse HTML page that exported incorrectly?

    I run an NGO called warriors organization. It's an NGO trying to protect indigenous cultures in tanzania from loosing their cultures.. Our president is running a marathon In a week to raise money to build a school for maasai children.. and the marathon page got garbled on export from muse. Can someone help with recoding that page? I'm traveling and don't have the muse work file with me.. Any help is greatly appreciated.. Take a look at http://warriorsorganization.org/marathon.html. I have a screen shot of how the page should look. Contact me at [email protected]
    Thank you,
    Aric

    1. yes
    2. yes
    3. No. DVD players can't play BluRay discs -- even if they are burned to a DVD disc.
    4. 1080p50 is a perfectly legitimate mode for shooting, particularly if you're shooting video with a lot of action, since it has double the actual frames of 1080i50. However, your output video may or may not actually have 50p frames (or even be 1920x1080), depending on what form of media you're publishing as. The BluRay files that Premiere Elements outputs, for instance are 50i.

  • How an SAP ABAP Career Can Be Like a Train Journey

    I think this is the best place to announce your blog. I have deleted the identical duplicates in the ABAP forums, as this is considered cross-posting and not allowed by the rules of engagement.
    Thomas

    Thanks Thomas.
    Regards,
    Leon

  • How can I speak to some one that can help at Apple

    I am greatly in need of some help.
    A little over one year ago I purchased a black Iphone 5 16GB phone which was brand new out on the market at the time. It was the first time I had invested in the Iphone brand, it unfortunately didn't take long for a software fault to develop to my disappointment. I live more than 80 miles to the nearest Apple store but made the journey by train anyway to see if I could get it fixed.
    I left my phone at the shop for half an hour but sadly it couldn't be fixed and a new phone was handed to me which was bitter sweet, great that the problem had been resolved but I lost all of my things on the phone. Although I can't not knock the Apple customer care, it was great.
    The replacement phone lasted not long before again a software fault developed much to my amazement I made the journey again. It was at this time I realised that a warranty doesn't extend even when you get a completely new phone which could have a whole new set of problems.
    Over all my phone as been replaced three times due to faults which couldn't be fixed in the software of the phone, I am now at a point where my phone again is showing signs of a fault in that when the screen is touched it doesn't always give a response, the phone also 'blacks out'. Not only that but there is a purple dot on my camera when taking photographs. However my warranty is now at an end even though I have only had this handset for two months.
    I am really disappointed with this and left wondering if I am the unluckiest person ever or if there is in fact a problem with the Iphone 5 and that is why it was on the market for such a short time?
    This is all really unfair!
    Best wishes
    Kirsty Wilde

    Not sure if you are asking how to obtain the Pandora app on the new phone? If so, the following has information for a variety of phone types including an iPhone: http://www.pandora.com/everywhere/mobile

  • Can someone help with some basic answers on Premiere Elements 12

    I have used Premiere Elements in the past (up to Premiere Elements 9) but only once per annum to edit the past year's video of my Grandchildren. The change now is that I am using a Panasonic HC-V520 and have been shooting in 1080 50p. Premiere Elements 9 doesn't support this format I believe.
    My questions are:
    1     Can Premiere Elements 12 import and edit this format?
    2     If the answer is yes to question 1, can I mix older footage from my old Sony Camcorder with this newer footage for edit in Premiere Elements?
    3     Can I then output to either a Blu Ray disc to play on my DVD Player or an ordinary DVD disc to play on an older DVD Player which is not blu ray compatible?
    4     Am I wasting my time in recording in 1080 50p and should I instead be recording new footage in a different format?
    Thanks for any help you can give me.

    1. yes
    2. yes
    3. No. DVD players can't play BluRay discs -- even if they are burned to a DVD disc.
    4. 1080p50 is a perfectly legitimate mode for shooting, particularly if you're shooting video with a lot of action, since it has double the actual frames of 1080i50. However, your output video may or may not actually have 50p frames (or even be 1920x1080), depending on what form of media you're publishing as. The BluRay files that Premiere Elements outputs, for instance are 50i.

  • Can anyone help me Select one choice [Attn to Frank][Solve]

    Hi I am doing dependent list boxes and have followed the steps of Frank in his tutorial about dependent list boxes. I am using EJB 3.0.
    My problem is as follows when i select the first combo box and select a value. the second list is populated with the values depending on the first combo box.
    Bu when I select a value in the second list that I get the following errors......
    Feb 26, 2008 12:57:53 PM com.sun.faces.lifecycle.ProcessValidationsPhase execute
    SEVERE: SelectOne submittedValue's index 1 is out of bounds. It should be between 0 and -1
    java.lang.IndexOutOfBoundsException: SelectOne submittedValue's index 1 is out of bounds. It should be between 0 and -1
         at oracle.adfinternal.view.faces.renderkit.core.xhtml.SimpleSelectOneRenderer.__getIndex(SimpleSelectOneRenderer.java:347)
         at oracle.adfinternal.view.faces.renderkit.core.xhtml.SimpleSelectOneRenderer._convertIndexedSubmittedValue(SimpleSelectOneRenderer.java:189)
         at oracle.adfinternal.view.faces.renderkit.core.xhtml.SimpleSelectOneRenderer.getConvertedValue(SimpleSelectOneRenderer.java:157)
         at oracle.adfinternal.view.faces.renderkit.core.xhtml.InputLabelAndMessageRenderer.getConvertedValue(InputLabelAndMessageRenderer.java:42)
         at oracle.adf.view.faces.component.UIXEditableValue.getConvertedValue(UIXEditableValue.java:455)
         at oracle.adf.view.faces.component.UIXEditableValue.validate(UIXEditableValue.java:198)
         at oracle.adf.view.faces.component.UIXEditableValue._executeValidate(UIXEditableValue.java:522)
         at oracle.adf.view.faces.component.UIXEditableValue.processValidators(UIXEditableValue.java:302)
         at oracle.adf.view.faces.component.UIXComponentBase.validateChildrenImpl(UIXComponentBase.java:855)
         at oracle.adf.view.faces.component.UIXComponentBase.validateChildren(UIXComponentBase.java:839)
         at oracle.adf.view.faces.component.UIXComponentBase.processValidators(UIXComponentBase.java:689)
         at javax.faces.component.UIForm.processValidators(UIForm.java:190)
         at oracle.adf.view.faces.component.UIXComponentBase.validateChildrenImpl(UIXComponentBase.java:855)
         at oracle.adf.view.faces.component.UIXComponentBase.validateChildren(UIXComponentBase.java:839)
         at oracle.adf.view.faces.component.UIXComponentBase.processValidators(UIXComponentBase.java:689)
         at oracle.adf.view.faces.component.UIXComponentBase.validateChildrenImpl(UIXComponentBase.java:855)
         at oracle.adf.view.faces.component.UIXComponentBase.validateChildren(UIXComponentBase.java:839)
         at oracle.adf.view.faces.component.UIXComponentBase.processValidators(UIXComponentBase.java:689)
         at javax.faces.component.UIComponentBase.processValidators(UIComponentBase.java:932)
         at javax.faces.component.UIViewRoot.processValidators(UIViewRoot.java:362)
         at com.sun.faces.lifecycle.ProcessValidationsPhase.execute(ProcessValidationsPhase.java:98)
         at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:245)
         at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:110)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:213)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
         at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._invokeDoFilter(AdfFacesFilterImpl.java:231)
         at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._doFilterImpl(AdfFacesFilterImpl.java:200)
         at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl.doFilter(AdfFacesFilterImpl.java:122)
         at oracle.adf.view.faces.webapp.AdfFacesFilter.doFilter(AdfFacesFilter.java:106)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:162)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:619)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:368)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:866)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:448)
         at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:216)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:117)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:110)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:239)
         at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:34)
         at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:880)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)
    Thank you four your kind considerations
    Regards
    Lutchumaya
    Message was edited by:
    Lutchumaya

    Thanks Frank for your reply. But I am not using the version 11 am still on the version 10.1.3.xxxx .
    Yeah the problem is as follows:-
    When i select the value from the second list the it execute the query to get the task for this project with projectId to null now ...
    Why the first time it retrieve the tasks for this project but when i select a value from the second list it reexecute the query this time with projectId null also when i commit it take the default value for the task when the form is loaded.
    Why is this so ... I can't move on with it ... Please help me Frank am stuck with this more than 2 weeks now.
    Regards
    Lutchumaya

  • Can someone help with some quick questions?

    If someone has the time it would really help if I had the
    answers to the following questions. I appreciate they may be
    obvious or mundane to some but I am trying to set up a network at a
    primary school. I've searched the forum for answers with no luck.
    1. Where does Contribute save the settings of a provided key?
    2. Can the file(s) that contains those settings be copied
    over for other users to use?
    Thanks in anticipation

    Thanks for your reply. I'm actually using the software in a
    primary school and would like to use the stc key and thus the
    settings it creates and save them into a profile that each pupil
    user would then load up automatically. I would like to avoid them
    having to enter the details each time. It appears to work as the
    ntuser.dat file has been updated.

  • MY IMAC don't see the main server and all the network! I didn't nothing on his system, but since some days it is out of network on my company. And what is curious is that others computers can see mine. Some one can help me??

    My IMAC lost the network, it can be seen but cannot see! What I have to do?

    You're welcome.
    Voicemail is left at your carrier's server. That will continue to work unless you report your iPhone as lost or stolen with your carrier.
    You may never find it again and you can't if the iPhone remains offline or out of service which means the iPhone is powered off or doesn't have cellular reception.

Maybe you are looking for

  • When typing in a search in the address bar i get redirected to a search assist by Teoma. How can i stop this

    Normally when i type a subject into the address bar i get sent to a website that deals with that subject. For example if i typed in "Iron Man" in the address bar then i would be sent to a movie website with iron man details. Now when i type in a subj

  • Templates without Dreamweaver

    I'm trying to use the new Contribute CS4 to see if I can build and use templates for client websites without the use of Dreamweaver. This is probably a very elementary question, but can this be done and if so could I get a little jump start on method

  • Get form field value using an offset

    I have a Form created using Perl that has a table with a row for each invoice in a large table. I display all the rows in a table and allow the user to edit some info for each record: for ($item_cntr = 0; $cntr < $record_cnt; ++$item_cntr) { print qq

  • Fxml.include.resource

    The doc seems to indicate that it is possible to specify a resource bundle for an FXML include but doesn't provide syntax or example. I'm guessing at the syntax but this doesn't work: <fx:include source="header-pane1.fxml" resource="com.client.Admin"

  • Wireless Shows as down ? Please advise ..

    Hiya , Since a few days ago , my wireless instance status shows as "Down" in the EM console. Upon closer inspection i saw that my Standalone proccess weren't there anymore ie. iAS Wireless System Log Directory is e:\Oracle\Mid10g\wireless\logs Panama