Exporting keypair in 1.0.1

Hi
Exporting keypair (.p12) in 1.0.1 do not ask for password, it provide it for
download directly. But if importing them, it ask for them.
What is the password used in the p12-file ?
Thanks
Markus

Hi Willem
On 1.1.0.653 it ask for a password, but after no cert-file is presented for
download.
regards
Markus
"magic31" schrieb im Newsbeitrag
news:[email protected]..
Hi Markus,
Thanks for feeding your solution back into the forums. It is a default
key for tomcat, but that's not noted when exporting the certificate. It
would be a good enhancement to have it ask for key. Haven't looked at
how Filr 1.1 handles this.
Cheers,
Willem

Similar Messages

  • Using keytool to export public/private keypairs (not just certificates)

    Hello,
    If I create a public/private keypair in a given keystore, how can export both keys for use in another application? As far as I understand it, keytool only allows public keys to be exported.
    If this isn't possible via keytool, how can I export the keypair programmatically, and how would such a code-based solution need to export the keypair so that it's recognisable by other applications?
    Would there be any additional steps involved if I first exported the public key to get it signed by a CA, then imported the resulting certificate, and wished that the keypair was then based on the certificate+private key?
    Thanks,
    Chris Brown

    There is an example in the Java Tutorial on how to save your private and public keys to a file, and then read them in again.

  • RSA Keypair cannot be generated in javacard ?

    Hello
    I got a problem about how to generate a RSA keypair in JAVACARD, I tried many different parametres, but I cannot install my applet in my emulator.
    public class RSAencry extends Applet {
        RSAPrivateKey  rsa_PrivateKey;
        RSAPublicKey rsa_PublicKey;
        KeyPair rsa_KeyPair;
        Cipher cipherRSA;
        //private byte buffer[];
        //byte TheBuffer[];
        final short dataOffset = (short) ISO7816.OFFSET_CDATA;
        //constructor
        private RSAencry()
            //generate own rsa_keypair
             //rsa_KeyPair = new KeyPair( KeyPair.ALG_RSA_CRT, KeyBuilder.LENGTH_RSA_2048 );
             //super();
             try
             //TheBuffer = new byte[100];
             rsa_KeyPair = new KeyPair( KeyPair.ALG_RSA_CRT, KeyBuilder.LENGTH_RSA_512 );
             //rsa_PublicKey.setExponent (TheBuffer, (short)0, (short)1);
             rsa_KeyPair.genKeyPair();
            rsa_PublicKey = (RSAPublicKey) rsa_KeyPair.getPublic();
            //rsa_PrivateCrtKey = (RSAPrivateCrtKey) rsa_KeyPair.getPrivate();
            rsa_PrivateKey = (RSAPrivateKey) rsa_KeyPair.getPrivate();
            //buffer = new byte[2048];
            cipherRSA = Cipher.getInstance(Cipher.ALG_RSA_PKCS1, false);
             }catch (CryptoException ex){
                  ISOException.throwIt((short) (ex.getReason()));
            //register(bArray, (short) (bOffset), bArray[bOffset]);
         public static void install(byte[] bArray, short bOffset, byte bLength) {
              // GP-compliant JavaCard applet registration
              new RSAencry().register(bArray, (short) (bOffset + 1), bArray[bOffset]);
         public void process(APDU apdu) {
              // Good practice: Return 9000 on SELECT
              if (selectingApplet()) {
                   return;
              byte[] buf = apdu.getBuffer();
              switch (buf[ISO7816.OFFSET_INS]) {
              case (byte) 0x00:
                   break;
              default:
                   // good practice: If you don't know the INStruction, say so:
                   ISOException.throwIt(ISO7816.SW_INS_NOT_SUPPORTED);
    }The log shows as below:
    (2233 usec)
    <= 00 90 00 ...
    Status: No Error
    Load report:
    1358 bytes loaded in 0.0 seconds
    effective code size on card:
    + package AID 6
    + applet AIDs 15
    + classes 17
    + methods 138
    + statics 0
    + exports 0
    overall 176 bytes
    cm> install -i 525341656e637279 -q C9#() 525341656e63 525341656e637279
    => 80 E6 0C 00 1F 06 52 53 41 65 6E 63 08 52 53 41 ......RSAenc.RSA
    65 6E 63 72 79 08 52 53 41 65 6E 63 72 79 01 00 encry.RSAencry..
    02 C9 00 00 00 .....
    (122771 usec)
    <= 6A 80 j.
    Status: Wrong data
    jcshell: Error code: 6a80 (Wrong data)
    jcshell: Wrong response APDU: 6A80
    Unexpected error; aborting execution
    I almost removed all other codes, but it still can not intalled in card emulator.
    Does anyone can tell me that's why?
    Edited by: 949003 on 2012-8-3 上午8:05
    Edited by: 949003 on 2012-8-3 上午8:07

    Thanks Shane
    I even removed those senteces.
    public class RSAencry extends Applet {
        private KeyPair rsa_KeyPair;
        Cipher cipherRSA;
        //constructor
        private RSAencry()
             try
             new KeyPair( KeyPair.ALG_RSA, KeyBuilder.LENGTH_RSA_2048 );
             rsa_KeyPair.genKeyPair();
             }catch (CryptoException ex){
                  ISOException.throwIt((short) (ex.getReason()));
            //register(bArray, (short) (bOffset), bArray[bOffset]);
         public static void install(byte[] bArray, short bOffset, byte bLength) {
              // GP-compliant JavaCard applet registration
              new RSAencry().register(bArray, (short) (bOffset + 1), bArray[bOffset]);
         public void process(APDU apdu) {
              // Good practice: Return 9000 on SELECT
              if (selectingApplet()) {
                   return;
              byte[] buf = apdu.getBuffer();
              switch (buf[ISO7816.OFFSET_INS]) {
              case (byte) 0x00:
                   break;
              default:
                   // good practice: If you don't know the INStruction, say so:
                   ISOException.throwIt(ISO7816.SW_INS_NOT_SUPPORTED);
    }and I still got this log
    Status: No Error
    Load report:
    1089 bytes loaded in 0.0 seconds
    effective code size on card:
    + package AID 6
    + applet AIDs 15
    + classes 17
    + methods 101
    + statics 0
    + exports 0
    overall 139 bytes
    cm> install -i 525341656e637279 -q C9#() 525341656e63 525341656e637279
    => 80 E6 0C 00 1F 06 52 53 41 65 6E 63 08 52 53 41 ......RSAenc.RSA
    65 6E 63 72 79 08 52 53 41 65 6E 63 72 79 01 00 encry.RSAencry..
    02 C9 00 00 00 .....
    (7334 usec)
    <= 6A 80 j.
    Status: Wrong data
    jcshell: Error code: 6a80 (Wrong data)
    jcshell: Wrong response APDU: 6A80
    Unexpected error; aborting execution

  • Howto Export key from J2ME keystore

    I have generated a keypair with the J2ME WTK Sign MIDLet GUI tool, so the key is in the default WTK keystore (_main.ks). I need to get the key into a J2SE keystore so that I can use the keytool utility to manage the key and a certificate. How can I export the J2ME key so that I can import it into a new keystore? There is no option on the WTK tools and I have not been able to open the J2ME keystore with keytool (i.e., the format is different and I don't know what the default password is). Any help would be much appreciated.

    It is sure that you can't export a private key with keytool, only in a java program...
    here is a code i found in this forum , not mine, thks for it's owner...
    maybe it can inspire u...
    @echo off
    echo Starting...
    set KS=mykeystore
    set ALIAS=alias
    set PASS=*******
    set PKEY_8_c=privatekey.pkcs8
    set PKEY_64_c=privatekey.b64
    set CERT_64_c=cert.cer
    set CERT_12_c=privatecert.cert
    java DumpPrivateKey %KS% %PASS% %ALIAS%> %PKEY_8_c%
    echo -----BEGIN PRIVATE KEY-----> %PKEY_64_c%
    openssl enc -in %PKEY_8_c% -a>> %PKEY_64_c%
    echo.-----END PRIVATE KEY----->> %PKEY_64_c%
    echo.>> %PKEY_64_c%
    with DumpPrivateKey:
    import java.io.FileInputStream;
    import java.security.KeyStore;
    import java.security.Key;
    public class DumpPrivateKey {
    //param 0:keystore, 1:passwd, 2: alias
            static public void main(String[] args) {
                    try {
                            KeyStore ks = KeyStore.getInstance("jks");
                            ks.load(new FileInputStream(args[0]),
                                     args[1].toCharArray());
                            Key key = ks.getKey(args[2],
                                     args[1].toCharArray());
                            System.out.write(key.getEncoded());
                    } catch (Exception e) {
                            e.printStackTrace();
    }

  • Adobe Bridge CS6 for mac: export modules, facebook export module gives an error every time i try to sign in

    in the export module for facebook every time i click "sign in to facebook" it gives the following error: "An error occurred while request facebook connection"

    "An error occurred while request facebook connection"
    The export module has been discontinued in Bridge CC and as long as it has been there the option for social media has worked only for FB in a few countries. Due to rights management (as we where told) there where restrictions for most other countries. But if it did work for you in the past you should try click on FB in export module or use the tiny menu icon in the export panel for preferences and try to set up a new connection.

  • DEVOLUÇÃO DE EXPORTAÇÃO - CFOP 3201 - GRC VALIDA DADOS DI.

    Boa tarde a todos!
    Estamos em um projeto de NFE XML 2.00 e nos deparamos com o seguinte erro:
    Ao emitirmos um NF-e de devolução da mercadoria que se encontrava no Porto (devolução de exportação - CFOP 3201), a validação do monitor GRC informa que é necessário constar os dados de importação, apesar deste processo não se tratar de importação. Os seguintes logs de validação são gerados:
    Erro de validação: campo Código do fabricante estrangeiro no sistema. Campo é obrigatório e não pode ficar em branco. (campo IT_NFE_ADI-CFABRICANTE, ID campo I028)
    Erro de validação: campo Nº da adição. Campo é obrigatório e não pode ficar em branco. (campo IT_NFE_ADI-NADICAO, ID campo I026)
    Erro de validação: campo Nº sequencial do artigo na adição. Campo é obrigatório e não pode ficar em branco. (campo IT_NFE_ADI-NSEQADIC, ID campo I027)
    Erro de validação: campo . Campo é obrigatório e não pode ficar em branco. (campo IT_NFE_IMP-CEXPORTADOR, ID campo I024)
    Erro de validação: campo . Campo é obrigatório e não pode ficar em branco. (campo IT_NFE_IMP-DDESEMB, ID campo I023)
    Erro de validação: campo . Campo é obrigatório e não pode ficar em branco. (campo IT_NFE_IMP-DDI, ID campo I020)
    Erro de validação: campo . Campo é obrigatório e não pode ficar em branco. (campo IT_NFE_IMP-NDI, ID campo I019)
    Erro de validação: campo . Campo é obrigatório e não pode ficar em branco. (campo IT_NFE_IMP-UFDESEMB, ID campo I022)
    Erro de validação: campo . Campo é obrigatório e não pode ficar em branco. (campo IT_NFE_IMP-XLOCDESEMB, ID campo I021)
    Estamos no SAPK-10015INSLLNFE e as seguintes notas relacionadas a validação estão aplicadas:
    1493980     Validation for field xJust in cancel and skipping messages
    1499921     Problem with validation after implementing SP15
    1500046     Upgrade validation rule for field ID for version 2.00
    1500742     Adjust validation for field NADICAO and NSEQADIC layout 2.00
    1502217     Extend validation rules for , layout 2
    1504379     Adjust validation for field X_CLISTSERV
    1511291     Update allowed values for field E1_CPAIS for validation
    1511577     Update validation rules for field VUNCOM_V20
    1520861     Update validation rules for OIL_CPRODANP and OIL_UFCONS
    Não encontrei nenhuma nota SAP recente para o componente SLL-NFE que seja relacionada a este problema.
    Desde já agradeço pela ajuda.
    Sds / Renato Penido.

    Boa tarde, Fernando,
    Obrigado pela pronta resposta.
    Debugamos a BADI e descobrimos que os dados de importação estão sendo gravado "em branco", gerando o erro de validação no GRC, tal qual dito por você.
    Aprimoramos a lógica da BADI para que a tag de importação não seja preenchida indevidamente para as notas de devolução do porto e as notas foram aprovadas.
    Muito obrigado,
    Renato Penido.

  • LR 4 exports to wrong folder, anybody else?

    HI, my rig includes Windows 7, Asus P8Z68 Deluxe Gen 3 with i7 2600K, 16GB DDR3 mem, SSD drives, fast Radeon video card.
    I'm using Lightroom 4, just upgraded, have this problem:  when I export to Folder1> Subfolder 1, it puts the export images in the next up hierarchical folder, i.e. Folder1.  I select the folder I want in the Export dialog, and I don't have any subfolders selected or created, but it always sticks the shots in the next folder up the tree, it's happened every time I've exported.
    any clues?
    thanks
    Jim

    The subfolder is the folder I selected in the dialogue.  c.frans w is right.  In 2.7 I never had to check and create a subfolder, which is what that box is for, unless I wanted to.  Usually I just select the folder I want, but in 4, when I do that, it jumps to the next higher folder.

  • Auto-generated links exported from InDesign do not work in tablet apps

    Hyperlinks automatically detected and exported from InDesign CS6 8.0.1 as a PDF work fine on the desktop version of Acrobat Reader. However, on the iPad version of Adobe Reader as well as iBooks and GoodReader, these links are completely ignored, meaning they are just text.
    On the other hand, if I was to manually set the hyperlink in InDesign or Acrobat, the link works fine.
    It would be extremely tedious and time consuming to manually reset hundreds of hyperlinks in my documents since InDesign use to handle this correctly.
    Is this a bug? If so, it's pretty serious and should be Adobe's priority to fix since millions of people read documents on tablet devices.

    No, it's a Feature of Acrobat and reader that they attempt to create links from anything that "looks like" a URL. Other readers lack the feature.
    It's not good practice to depend on this in any case as it's hardly foolproof even in Acrobat. Links that break across lines, for example, will not be properly recognized.

  • Export to Text Options needs

    I've writen a program that exports a crystal report into a text file ready for it to be uploaded to an ftp site.
    Problem is i'm having trouble getting the text file to look right.
    I narrowed it down to the "Lines per page" setting in Crystal XI R2 as when i set it to 0 in crystal when testing the report the text file looks fine.
    My question is how to i set this in my application in VB code?  Here is the code i have so far:-
    Private Sub btnGenFile_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnGenFile.Click
            Dim Exportpath As String
            Exportpath = "n:\Regatta Order Files\"
            CrDiskfileDestinationoption = New DiskFileDestinationOptions
            CrExportOption = CrReport.ExportOptions
            CrDiskfileDestinationoption.DiskFileName = Exportpath + ("CHAN1" & sDate & ".txt")
            With CrExportOption
                .DestinationOptions = CrDiskfileDestinationoption
                .ExportDestinationType = ExportDestinationType.DiskFile
                .ExportFormatType = ExportFormatType.Text
            End With
            Try
                CrReport.Export()
                'MessageBox.Show("Exported to " & CrReport.ExportOptions.DestinationOptions.DiskFileName)
                txtStatus.Text = "Text File has been created, you can now tranfer to Regatta"
            Catch ex As Exception
                MessageBox.Show(Me, ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error)
            End Try
        End Sub

    <p>Take a look at the TextFormatOptions class in the CrystalDecisions.Shared namespace. It provides properties that you can set, including LinesPerPage. If you need more information, look up this class in the <a href="http://devlibrary.businessobjects.com/BusinessObjectsXIR2SP2/en/en/CrystalReports_dotNET_SDK/crsdk_net_doc/doc/crsdk_net_doc/html/crconcrystalreportsintroduction.htm" target="_blank">DevLibrary</a>.</p><p>-MJ</p>

  • Export to excel formatting

    I'm working on a quote report which has narrative sections as well as a table. I can get the report to look great in the application but it has formatting problems once exported to excel.
    In one of my narrative reports I have a simple table with a few columns. Once exported to excel the first narrative column is the entire width of the report table below it. The large cell row is also merged cells in excel.
    Is there anything that can be done to help force how the report goes into excel?
    I have also tried creating the report in a narrative html table to export into excel.

    Can someone explain if they face similar issues as I am when you export a report output on portal to Excel it takes huge size. I assume it because of all the color formatting etc. but is there a way to reduce this size. 3.5 Bex Analyzer same report takes only 3 MB while if I export it from portals it takes 32 MB.

  • Help with exporting as an animated gif

    I've created a small banner ad and need to export it as an animated gif.  The problem is, when I open the gif after exporting it, there's no animation.  The way the animation is set up is 1 frame on the main timeline, and a scrolling movie clip as the background.  There is no actionscript at all in the file.

    instead of converting your movieclip to a graphic:
    1.  copy the movieclip frames
    2.  create a new graphic
    3.  paste the frames to the graphic timeline
    4.  drag the graphic to the main timeline and remove the movieclip
    5.  extend the main timeline enough frames to reveal the graphic animation
    6.  make sure your gif publish settings are for an animated gif

  • Problems/help with animated GIF exports

    I am an experienced Photoshop user.  I recently upgraded to CS5 (Windows) and have been attempting to produce animated gif files. 
    After reading a few tutorials on the topic, I have been able to: 
    Create a PSD with a few jpg images as layers; 
    Move the layers to the animation window; 
    Set the cycle times and optimize the animation window; and, 
    Use the Save for Web Devices dialog to create the GIF file. 
    Everything appears to be normal throughout this process.  However, the exported GIF file appears as a dark gray frame when I open it in IE, or upload it to my image hosting site. 
    Anybody else experiencing this type of problem? 
    Thanks 

    No, my Photoshop CS5 saves animated GIFs just fine, and I did just what you said.  For example (you have to click on an image here to see it animate):
    Can you post your image here?  Maybe it could be a problem with your browser not animating the image properly?  What version of IE do you use?
    -Noel

  • Does animated .gif export support animation of library symbols?

    I'm currently using the 30-day free trial of Adobe Flash Professional CC. I was really pleased to see how easily you could export animations in animated .gif format, seemed to run without a hitch.
    One thing I noticed while using Flash is that instances of symbols placed into a scene don't actually animate when you use the "Play" function -- that is to say, when you press Enter and the playhead starts moving along the timeline from its current position. They remain at the very first frame of their respective animations. In order to show the proper animations of symbols, you have to use the Test function (CTRL - Enter) to actually compile a working .swf of the thing.
    This wasn't much of an issue until I tried to export in .gif format and I got this same issue. Instances of symbols don't animate, they only seem to work in compiled .swf's.
    FileDropper link to the working file I'm using: http://www.filedropper.com/flashbottle
    Result .gif: http://i.imgur.com/PZVXST7.gif
    Since the use of symbols in the Flash workflow seems to be a rather common occurrence it seems unthinkable that Flash wouldn't support their usage with whatever mechanism they use to export animated .gif's. Is there some sort of silly mistake I'm making or checkbox I need to toggle? Or is the functionality simply not there?

    Thank you for your reply!
    I check exported GIFs in various browsers and XnView viewer.
    It's definitely not a preview  issue - i have 32Gb of RAM and Nvidia Quadro 4000 GPU on my system.
    I believe the issue is with transparency, because i'm able to export GIFs with solid background just fine
    GIF export dialogue window has 'Transparency' checkbox, so it looks like it should be possible to export an animated GIF with transparent background, but for some reason i'm getting all frames at the same time
    thank you

  • Animated GIF Export issues

    I have a simple Flash animation which I'd like to be made
    into a transparent GIF.
    When I do the GIF export, only the first frame of my
    movieclips (which are placed in the main timeline) get rendered. It
    seems like Flash only records the main timeline preview output into
    the GIF file, and does not play movieclip objects. You would expect
    the GIF recording to be of the same preview as when you hit
    ctrl+enter (essentially final playback).
    Because of this, the GIF export is pointless. The only way to
    use it is to have all your animations occur in the main timeline,
    and not within movieclips. It doesn't work for me (and for most
    people?), because I need to easily scale my animations, which is
    doable by just resizing a movieclip.
    Is there a way around this in Flash? Am I missing something?
    I've had to use a 3rd-party tool (Magic SWF2GIF) to do the
    GIF recording.
    My other issue is Flash cannot export transparent GIF's it
    seems. Because of this, I have to rely on more 3rd-party GIF tools,
    most of which are rubbish.
    In the end, I've had to take snap shots of every individual
    frame and edit each frame as individual files in Photoshop to do
    all the cropping and transparency just right. Real pain when you
    are talking 50 frames, and having to do multiple animations.
    Is there a way to export transparent GIF's in Flash?
    Seems kind of dumb that I have all this high-end software and
    loads of tools... and I still have to edit things frame by
    frame.

    Thank you for your reply!
    I check exported GIFs in various browsers and XnView viewer.
    It's definitely not a preview  issue - i have 32Gb of RAM and Nvidia Quadro 4000 GPU on my system.
    I believe the issue is with transparency, because i'm able to export GIFs with solid background just fine
    GIF export dialogue window has 'Transparency' checkbox, so it looks like it should be possible to export an animated GIF with transparent background, but for some reason i'm getting all frames at the same time
    thank you

  • Exporting Crystal Report to HTML is not working in Windows 7

    Hi Sir,
    I am trying to export Crystal Report to HTML format using VB.NET code. Functionality is working fine at Windows XP Environment (Save to Disk, Open an Application and Email Attachment). But the same functionality is not working at Windows 7 Environment (both 32-Bit as well as 64-Bit).
    Below is the code to Exporting Crystal Report to HTML in VB.NET.
    Dim CrDiskFileDestinationOptions As New DiskFileDestinationOptions
    Dim CrFormatTypeOptions          As New HTMLFormatOptions
    Dim vFormat As Integer
    Dim CrExportOptions As New ExportOptions
    Dim vRdReport As New ReportDocument
    Dim sfd As SaveFileDialog
    Dim vFileName As String = Nothing
    vRdReport = vRptSource
    sfd = New SaveFileDialog
    If Not (vRptPath = "") Then
        sfd.InitialDirectory = vRptPath
    End If
    sfd.Filter = "Webpage, Complete(.htm;.htm)|.htm|Web Archive, Single file(.mht)|.mht|Webpage, HTML only(.htm;.html)|.html"
    If sfd.ShowDialog = DialogResult.OK Then
        ' Set the disk file options.
         CrDiskFileDestinationOptions.DiskFileName = sfd.FileName.ToString()
    Else
         Return
    End If
    CrExportOptions = vRdReport.ExportOptions
    CrFormatTypeOptions.HTMLFileName = vFileName
    CrFormatTypeOptions.HTMLEnableSeparatedPages = True
    CrFormatTypeOptions.HTMLEnableSeparatedPages = True
    CrFormatTypeOptions.HTMLHasPageNavigator = True
    CrFormatTypeOptions.UsePageRange = True
    With CrExportOptions
                        .ExportDestinationType = ExportDestinationType.DiskFile
                        .ExportFormatType = ExportFormatType.HTML32
                        .DestinationOptions = CrDiskFileDestinationOptions.DiskFileName
                        .FormatOptions = CrFormatTypeOptions
    End With
    vRdReport.Export()
    Catch ex As Exception
            MsgBox(ex.ToString)
    End Try
    Code working fine at Windows XP, But it is not woking in Windows 7 environment.
    Please can anyone share your valuable thoughts or ideas reg. this.
    Thanks in Advance
    Deivanayaga Perumal D.

    user13509659 wrote:
    Run this code to reproduce the issue.Which issue?
    It looks like inheritance is broken in the component hierarchy for JFrame in Windows 7 JDK 1.6.0_23-b05. The only thing remotely related to inheritance in your code snippet is the WindowListener, which does little. See camickr's advice about built-in exit management.
    EDIT - using the post title as a clue, I realize you may be talking about the component hierarchy, and whether the contentPane's background is visible through the upper layers. Instead of guessing, I'd prefer you describe your "issue" accurately (observed vs expected behavior).
    Edited by: jduprez on Feb 10, 2011 1:01 PM

Maybe you are looking for

  • Errors in autoconfig- adgenjky.sh, txkMultinode.sh, wdbsvr.sh

    Dear All, I am receiving an error while doing Multi-to-Single node cloning on my test database. Already a development application instance is running on the same server that is too (Mutli-to Single Cloning). Metalink doc ID used as 233428.1 In autoco

  • Cables from Mac to Stereo Receiver

    I would like make a wired connection from my Mac to my stereo receiver to use iTunes. I have seen many references to using "cables" to connect the two but I have had no luck finding a cable to connect from the computer outputs (USB, etc) to my receiv

  • 2 facts and 1 dimension design in RPD

    Hi All, Approach 1: I have a Fact which I am creating as a dimension and there is another fact which is joined to the same dimension. The same process I am following in BMM layer and trying to work by setting content level. But when I am dragging col

  • How to bind a combo pane

    how to bind a combo pane????I'm trying to do it in same manner as combo bt its giving an error:unable to cast system-com..... Thanks..

  • Create PR using BAPI_PR_create

    Hi Friends, Can any body send step by step procedure to create PR using BAPI. Also  when i try to create pr using bapi_pr_create , im  getting following error. T ID                   NUM    MESSAGE E ME                   083   Enter Document Type E B