HSqlDb and bit / boolean field

Hi there,
I'm using a database schema with a table containing a bit column on
HSqlDb 1.7.3.
Using kodo schema tool the column is created as expected. I verified it
with HSql Database Manager. Unfortunately, I can't commit any data to
this table (see exception below).
Maybe this may help: HSqlDb refers to a bit column as BOOLEAN.
Kodo Version: 3.3.1
Regards
M. Stier
Exception follows:
kodo.jdbc.meta.MappingInfoNotFoundException: The "column"
attribute/extension for field "org.test.Workspace.bLocked" names a
column "Locked" in table "WORKSPACE" whose type (UNKNOWN(16)) is not
compatible with the type of the field (BIT). [org.test.Workspace.bLocked
[kodo.jdbc.meta.ValueFieldMapping]]
     at kodo.jdbc.meta.Mappings.invalidMapping(Mappings.java:134)
     at
kodo.jdbc.meta.ColumnFieldMapping.fromMappingInfo(ColumnFieldMapping.java:125)
     at
kodo.jdbc.meta.ValueFieldMapping.fromMappingInfo(ValueFieldMapping.java:62)
     at
kodo.jdbc.meta.RuntimeMappingProvider.getFieldMapping(RuntimeMappingProvider.java:198)
     at
kodo.jdbc.meta.MappingRepository.getFieldMapping(MappingRepository.java:470)
     at
kodo.jdbc.meta.AbstractClassMapping.getFieldMapping(AbstractClassMapping.java:991)
     at
kodo.jdbc.meta.AbstractClassMapping.getFieldMapping(AbstractClassMapping.java:971)
     at
kodo.jdbc.meta.AbstractClassMapping.getMappings(AbstractClassMapping.java:934)
     at
kodo.jdbc.meta.AbstractClassMapping.getDeclaredFieldMappings(AbstractClassMapping.java:654)
     at
kodo.jdbc.meta.AbstractClassMapping.resolve(AbstractClassMapping.java:796)
     at
kodo.jdbc.meta.VerticalClassMapping.resolve(VerticalClassMapping.java:337)
     at kodo.jdbc.meta.MappingRepository.resolve(MappingRepository.java:431)
     at kodo.jdbc.meta.MappingRepository.getMapping(MappingRepository.java:349)
     at kodo.jdbc.meta.MappingRepository.getMapping(MappingRepository.java:177)
     at kodo.jdbc.meta.MappingRepository.getMetaData(MappingRepository.java:165)
     at kodo.runtime.KodoHelper.getSequenceGenerator(KodoHelper.java:341)

Yes -- Kodo does not yet officially support anything more recent than
HSQL 1.7.1. You can work around this incompatibility by using a
different SchemaFactory. The default SchemaFactory asks the database for
information about column types (which causes the problem); the dynamic
SchemaFactory just assumes that the schema will meet the needs of your
object model, and the file-based SchemaFactory consults a file for a
description of the schema. See
http://docs.solarmetric.com/ref_guide_schema.html#ref_guide_schema_info_factory
for details.
-Patrick
M. Stier wrote:
Hi there,
I'm using a database schema with a table containing a bit column on
HSqlDb 1.7.3.
Using kodo schema tool the column is created as expected. I verified it
with HSql Database Manager. Unfortunately, I can't commit any data to
this table (see exception below).
Maybe this may help: HSqlDb refers to a bit column as BOOLEAN.
Kodo Version: 3.3.1
Regards
M. Stier
Exception follows:
kodo.jdbc.meta.MappingInfoNotFoundException: The "column"
attribute/extension for field "org.test.Workspace.bLocked" names a
column "Locked" in table "WORKSPACE" whose type (UNKNOWN(16)) is not
compatible with the type of the field (BIT). [org.test.Workspace.bLocked
[kodo.jdbc.meta.ValueFieldMapping]]
at kodo.jdbc.meta.Mappings.invalidMapping(Mappings.java:134)
at
kodo.jdbc.meta.ColumnFieldMapping.fromMappingInfo(ColumnFieldMapping.java:125)
at
kodo.jdbc.meta.ValueFieldMapping.fromMappingInfo(ValueFieldMapping.java:62)
at
kodo.jdbc.meta.RuntimeMappingProvider.getFieldMapping(RuntimeMappingProvider.java:198)
at
kodo.jdbc.meta.MappingRepository.getFieldMapping(MappingRepository.java:470)
at
kodo.jdbc.meta.AbstractClassMapping.getFieldMapping(AbstractClassMapping.java:991)
at
kodo.jdbc.meta.AbstractClassMapping.getFieldMapping(AbstractClassMapping.java:971)
at
kodo.jdbc.meta.AbstractClassMapping.getMappings(AbstractClassMapping.java:934)
at
kodo.jdbc.meta.AbstractClassMapping.getDeclaredFieldMappings(AbstractClassMapping.java:654)
at
kodo.jdbc.meta.AbstractClassMapping.resolve(AbstractClassMapping.java:796)
at
kodo.jdbc.meta.VerticalClassMapping.resolve(VerticalClassMapping.java:337)
at kodo.jdbc.meta.MappingRepository.resolve(MappingRepository.java:431)
at
kodo.jdbc.meta.MappingRepository.getMapping(MappingRepository.java:349)
at
kodo.jdbc.meta.MappingRepository.getMapping(MappingRepository.java:177)
at
kodo.jdbc.meta.MappingRepository.getMetaData(MappingRepository.java:165)
at kodo.runtime.KodoHelper.getSequenceGenerator(KodoHelper.java:341)

Similar Messages

  • Submit button and using form fields

    Hello all, I'm a bit new to using LiveCycle.  I created a form in acrobat. I have all my fields working properly but I ran into a snag.  Seems as though people with reader can't open and fill in my form because of a saving issue.  So I figured... let's try LiveCycle. I opened the same form.
    This is what I can figure out: I need a submit button that can attach the current pdf to a new email and then grab some of the field values from the form.  These field values are used to fill in the subject and the "To" field in outlook. I had a button that could do this in acrobat, but it doesn't seem to work in LiveCycle.  Can someone please offer some guidance?  Thanks so much.
    This is what I had on the acrobat form that worked before LiveCycle if it helps at all (used from an adobe sample):
    // This is the form return e-mail. Its hardcoded
       // The form will return to the manager chosen from the dropdown bob
       var cToAddr = "[email protected]";
       // First, get the client CC e-mail address
       var cCCAddr = this.getField("manager").value;
       // Now get the beneficiary e-mail only if it is filled out
       var cBenAddr = this.getField("PlaceHolderEmail").value;
       // Get the name and req number
       var cName = this.getField("EmployeeName").value;
       var cNumber = this.getField("Department").value;
       // Set the subject and body text for the e-mail message
       var cSubLine = "Absence Notification - " + cName + " - " + cNumber;
       var cBody = "Thank you for submitting this form.\n" +
                   "Save the mail attachment as a record";
       //** Send the form data as an PDF attachment on an e-mail
       // Build the e-mail URL
       var cEmailURL = "mailto:" + cCCAddr + "?cc=" + cBenAddr
                     + "&subject=" + cSubLine
                     + "&body=" + cBody;
       this.submitForm({cURL: cEmailURL, cSubmitAs:"PDF", cCharSet:"utf-8"});

    Here is a sample form for your reference..
    https://acrobat.com/#d=CK4QgXn38l49bzQlhWtKSA
    You need to use the rawValue to get the field value in LiveCycle..
    for example
          // First, get the client CC e-mail address
         var cCCAddr = manager.rawValue;
    Thanks
    Srini

  • Adding a boolean field to an existing sbo table

    hi everybody
    i want to add a boolean field to an existing sbo table.
    when i try to do it from the tools ... manage user fields
    i get only types like numeric string..
    i dont get the booelan type
    does anybody know how can i do that thanks.
    for now i used the numeric type and the values 0 and 1

    Hi,
    you can do it in the following way:
    checkBox = ((SAPbouiCOM.CheckBox)(item.Specific));
    checkBox.Caption = this.caption;
    <b>checkBox.DataBind.SetBound(true, tableName, alias);</b>
    checkBox.ValOn = "1";
    checkBox.ValOff = "0";
    Andrey

  • XML and binary with field separator stock quote

    Hi All,
    I'm doing a comparison of data transmission between XML and binary with field separator.
    Example of XML
    <nasdaq>
    <high>100.00</high>
    <low>90.00</low>
    </nasdaq>
    Example of binary with field separator
    100.00|90.00
    Of course, using XML will consume of much resources and processing power but with easier maintenance and development.
    I'm doing some data feed with high transaction like Nasdaq, NYSE, etc. How you think about it...?
    Any web site does the comparison of the above? I have googled but not much information found.
    Cheers,
    Wikey

    XML is, of course, more flexible. For B2B transactions you should >>consider using gzip compression (avaiable in java.util.zip) if there's a >>fair bit of data in the message. That will reduced the effect of all the >>repetative XML furniture.yah, agreed but still not to a comfort level to proceed this technology. File size still big if compared to compressed non-XML data.
    Btw, I'm seeking for some efficient data feed product able to handle XML effectively and did some comparison with all other standard data formating mechanism of data transmission. Therefore, i can see the whole picture of it. Still trying my R&D luck on google...
    Cheers,

  • Boolean field mapping with mysql

    Hi,
    I'm using kodo 2.5.8 with mysql and ran into a problem with a boolean
    field.Despite setting it to 'true' it goes into database as 0 and so I'm
    never able to read it back as 'true'.In afct after manually changing the
    value in database to 1, I still get it as false.
    Following is the code that I use:
    I have a boolean field named 'isAdmin' along with other fields in User
    class.
    public class User{
    private String name; //primary key
    private String password;
    private String emailAddress;
    private boolean isAdmin;
    private String firstName;
    private String lastName;
    private String suffix;
    //pm is persistence manager
    pm.currentTransaction().begin();
    pm.makePersistent(user);
    pm.currentTransaction().commit();

    Surender-
    Strange. If you enable verbose SQL logging, what do you see the field
    being set as when you commit changes?
    In article <c2ssq3$pt5$[email protected]>, Surender Kumar wrote:
    Hi,
    I'm using kodo 2.5.8 with mysql and ran into a problem with a boolean
    field.Despite setting it to 'true' it goes into database as 0 and so I'm
    never able to read it back as 'true'.In afct after manually changing the
    value in database to 1, I still get it as false.
    Following is the code that I use:
    I have a boolean field named 'isAdmin' along with other fields in User
    class.
    public class User{
    private String name; //primary key
    private String password;
    private String emailAddress;
    private boolean isAdmin;
    private String firstName;
    private String lastName;
    private String suffix;
    //pm is persistence manager
    pm.currentTransaction().begin();
    pm.makePersistent(user);
    pm.currentTransaction().commit();
    Marc Prud'hommeaux [email protected]
    SolarMetric Inc. http://www.solarmetric.com

  • How to view resolution (ppi/dpi) and bit depth of an image

    Hello,
    how can I check the native resolution (ppi/dpi) and bit depth of my image files (jpeg, dng and pef)?
    If it is not possible in lighroom, is there a free app for Mac that makes this possible?
    Thank you in advance!

    I have used several different cameras, which probably have different native bit depths. I assume that Lr converts all RAW files to 16 bits, but the original/native bit depth still affects the quality, right? Therefore, it would be nice to be able to check the native bit depth of an image and e.g. compare it to an image with a different native bit depth.....
    I know a little bit of detective work would solve the issue, but it
    would be more convenient to be able to view native bit depth in
    Lightroom, especially when dealing with multiple cameras, some of which
    might have the option to use different bit depths, which would make the
    matter significantly harder.
    This
    issue is certainly not critical and doesn't fit into my actual
    workflow. As I stated in a previous post, I am simply curious and wan't
    to learn, and I believe that being able to compare images with different
    bit depths conveniently would be beneficial to my learning process.
    Anyway,
    I was simply checking if somebody happened to know a way to view bit
    depth in Lr4, but I take it that it is not possible, and I can certainly
    live with that.
    Check the specifications of your camera to know at what bit depth it writes Raw files. If you have a camera in which the Raw bit depth can be changed the setting will probably be recorded in a section of the metadata called the Maker Notes (I don't believe the EXIF standard includes a field for this information). At any rate, LR displays only a small percentage of the EXIF data (only the most relevant fields) and none of the Maker Notes. To see a fuller elucidation of the metadata you will need a comprehensive EXIF reader like ExifTool.
    However, the choices nowadays are usually 12 bit or 14 bit. I can assure you that you cannot visually see any difference between them, because both depths provide a multiplicity of possible tonal levels that is far beyond the limits of human vision - 4,096 levels for 12 bit and 16,384 for 14 bit. Even an 8 bit image with its (seemingly) paltry 256 possible levels is beyond the roughly 200 levels the eye can perceive. And as has been said, LR's internal calculations are done to 16 bit precision no matter what the input depth (although your monitor is probably not displaying the previews at more than 8 bit depth) and at export the RGB image can be written to a tiff or psd in 16 bit notation. The greater depth of 14 bit Raws can possibly (although not necessarily) act as a vehicle for greater DR which might be discerned as less noise in the darkest shadows, but this is not guaranteed and applies to only a few cameras.

  • EJBQL with boolean field on Oracle

    Hi
    I am using the following query to find the default group of a customer where defaultGroup
    is a boolean field.
    SELECT DISTINCT OBJECT(g) FROM ServiceGroup g WHERE g.defaultGroup AND g.customer
    = ?1
    When I call this query I get the following error
    javax.ejb.EJBException: nested exception is: javax.ejb.TransactionRolledbackLocalException:
    EJB Exception: ; nested exception is: javax.ejb.EJBException: Problem in findCustomerDefault
    while preparing or executing statement: 'weblogic.jdbc.rmi.SerialPreparedStatement@e0bfd':
    java.sql.SQLException: ORA-00920: invalid relational operator
    I believe this has something to do with the fact that booleans are represented
    as numbers in Oracle as it works fine with another DB that supports boolean types.
    And when I run the following query in sql+ "select * from servicegroup where
    customer=1 and default_group" I get the same error. The getters and setters work
    fine it is just when it is used in a query. Anybody know of a way to fix this
    without having to change the CMP field to an int and put a boolean wrapper around
    it?
    Jeremy
    ps Running WLS7 and Oracle 9 on solaris

    Unfortunately, not using cursors is not an option for me. The DBA I talked to indicated to me that the only way to get a result set from a stored procedure in Oracle is to use a cursor. It doesn't really matter if that is correct or not, as all our stored procedures for Oracle are written assuming that is true. Here is the code for the stored procedure that uses a cursor:
    create or replace procedure DI0002
    (P_USER IN types.char32,
    P_CURSOR IN OUT types.GenCursor)
    IS
    BEGIN
       OPEN P_CURSOR FOR
    SELECT * FROM DITEST
    WHERE MBR_NAME = P_USER;
    END;types.GenCursor is a ref cursor, types.char32 is a 32 byte character value.
    Also, your suggestion doesn't address the problem I'm having with getUpdateCount always returning a -1.

  • 3-bit priority field in the 802.1P or 802.1Q frame

    Hi,
    How does the switch differentiation based on the 3-bit priority field in the 802.1P or 802.1Q frame?
    Regards
    M

    Hi,
    Basically 802.1q specifies the VLAN tag and 802.1p describes the specific 3 bit priority field
    inside that 4 octet tag.
    Some useful info:
    http://www.javvin.com/protocolVLAN.html
    " VID : VLAN ID is the identification of the VLAN, which is basically used by the standard 802.1Q. It has 12 bits and allow the identification of 4096 (2^12) VLANs. Of the 4096 possible VIDs, a VID of 0 is used to identify priority frames .. "
    Priority frames means 802.1p frames.
    Regards.

  • Validation expression, with a Boolean field

    Hello,
    My issue is as follow: I want to make sure that if attribute 'A' = "1"; then attribute 'B' has values.
    Note: attribute 'A' is boolean.
    I did not succeed in setting up such a formula [I succeeded in setting up the opposite formula only: 
    IF(Attribute 'A',IS_NULL(Attribute B))
    Thx for any help,
    Rémi Dusaud

    Hi Remi,
    attribute 'A' is a field of type Boolean in main table, right which has two values 1 and some other value, right?
    if this is right then i hope you have also set True Value as 1 and False Value as something in MDM Console. Because Boolean field has only two values which you can set through Console by default True value = TRUE and False Value = FALSE, here you need to change it to 1 and other value as per your requirement.
    For the same this expression works as given by me in above post.
    If this is really Attributes, name as Attribute 'A' and Attribute 'B' in taxonomy mode of data manager.
    and by Boolean you mean here that Attribute of type Text but has two values 1 and some other value.
    if this is true then you want a record in maintable is associated with a category which is linked with these two Attributes, and if Attribute 'A' has Attribute Value as 1 then Attribute B should not be null, in this case firstly you have to create a validation and then right click on this validation and then Add Branch select here Branch Value(category which is linked with these two attributes). a new validation gets created with this branch Value.
    now write expression in this Branch validation expression as same:
    IF(attribute 'A' = "1", IS_NOT_NULL(attribute 'B'))
    But here you need to select Attribute 'A' and Attribute 'B' from Attributes Tab in validation expression.
    and select "1" from Text Values Tab in validation expression.
    let me know if you still face, in both ways this expression is working fine at my end.
    Regards,
    Mandeep Saini

  • Bit Depth and Bit Rate

    I have a pre recorded mp3 VO. I placed it into a track bed in GB. Clients wants a compressed audio file with bit depth: 16 bit and bitrate: 128kps max, but recommends 96kbps. If I need to adjust the bit depth and bite rate, can I do it in GB? and if so, where? Thanks for any help.

    Please be aware that Bit Depth and Bit Rate are two completely different things!
    They belong to a group of buzz words that belong to Digital Audio and that is the field we are dealing with when using GarageBand or any other DAW. Some of those terms pop up even in iTunes.
    Digital Audio
    To better understand what they are and what they mean, here is a little background information.
    Whenever dealing with Digital Audio, you have to be aware of two steps, that convert an analog audio signal into a digital audio signal. These magic black boxes are called ADC (Analog Digital Converter) and “on the way back”, DAC (Digital Analog Converter).
    Step One: Sampling
    The analog audio (in the form of an electric signal like from an electric guitar) is represented by a waveform. The electric signal (voltage) changes up and down in a specific form that represents the “sound” of the audio signal. While the audio signal is “playing”, the converter measure the voltage every now and then. These are like “snapshots” or samples, taken at a specific time. These specific time intervals are determined by a “Rate”, it tells you how often per seconds something happens. The unit is Hertz [Hz] defined as “how often per seconds” or “1/s”. A Sample Rate of 48kHz means that the converter takes 48,000 Samples per second.
    Step Two: Quantize (or digitize)
    All these Samples are still analog, for example, 1.6Volt, -0.3Volt, etc. But this analog value now has to be converted into a digital form of 1s and 0s.This is done similar to quantizing a note in GarageBand. The value (i.e. the note) cannot have any position, it  has to be placed on a grid with specific values (i.e. 1/16 notes). The converter does a similar thing. It provides a grid of available numbers that the original measured Sample has to be rounded to (like when a note get shifted in GarageBand by the quantize command). This grid, the amount of available numbers, is called the Bit Depth. Other terms like Resolution or Sample Size are also used. A Bit Depth of 16bit allows for 65,535 possible values.
    So the two parameters that describe the quality of an Digital Audio Signal are the Sample Rate (“how often”) and the Bit Depth (“how fine of a resolution”). The very simplified rule of thumb is, the higher the Sample Rate, the higher the possible frequency, and the higher the Bit Depth, the higher the possible dynamic.
    Uncompressed Digital Audio vs. Compressed Digital Audio
    So far I haven’t mentioned the “Bit Rate” yet. There is a simple formula that describes the Bit Rate as the product of Sampel Rate and Bit Depth: Sample Rate * Bit Depth = Bit Rate. However, Bit Depth and how it is used (and often misused and misunderstood) has to do with Compressed Digital Audio.
    Compressed Digital Audio
    First of all, this has nothing to do with a compressor plugin that you use in GarageBand. When talking about compressed digital audio, we talk about data compression. This is a special form how to encode data to make the size of the data set smaller. This is the fascinating field of “perceptual coding” that uses psychoacoustic models to achieve that data compression. Some smart scientists found out that you can throw away some data in a digital audio signal and you wouldn’t even notice it, the audio would still sound the same (or almost the same). This is similar to a movie set. If you shoot a scene on a street, then you only need the facade of the buildings and not necessary the whole building.
    Although the Sample Rate is also a parameter of uncompressed digital audio, the Bit Depth is not. Instead, here is the Bit Rate used. The Bit Rate tells the encoder the maximum amount of bits it can produce per second. This determines how much data it has to throw away in order to stay inside that limit. An mp3 file (which is a compressed audio format) with a Bit Rate of 128kbit/s delivers a decent audio quality. Raising the Bit Rate to 256bit/s would increase the sound quality. AAC (which is technically an mp4 format) uses a better encoding algorithm. If this encoder is set to 128kbit/s, it produces a better audio quality because it is smarter to know which bits to throw away and which one to keep.
    Conclusion
    Whenever you are dealing with uncompressed audio (aiff, wav), the two quality parameters are Sample Rate [kHz] and Bit Depth [bit] (aka Resolution, aka Bit Size)
    Whenever you are dealing with compressed audio (mp3, AAC), the two quality parameters are Sample Rate [kHz] and Bit Rate [kbit/s]
    If you look at the Export Dialog Window in GarageBand, you can see that the Quality popup menu is different for mp3/AAC and AIFF. Hopefully you will now understand why.
    Hope that helps
    Edgar Rothermich
    http://DingDingMusic.com/Manuals/
    'I may receive some form of compensation, financial or otherwise, from my recommendation or link.'

  • Acrobat XI Windows 7 - unable to (copy and) paste form fields to a different pdf.

    To maintain a consistent appearance and function in the forms I create for various departments, I copy a few form fields  (text, checkboxes) from an unrelated Acrobat PDF. Then I paste those fields into a different PDF document that I am making fillable.
    I do this because Acrobat does not allow setting a default for certain attributes when creating form fields, i.e. an unchecked scroll option, a default font other than Helvetica (in Acrobat 8, 9, and X). Plus it is time-saving to copy and paste fields that are the same in another PDF, like name, address, phone. etc.
    We just updated to Acrobat XI and Windows 7 and now I cannot paste copied fields onto a different PDF.
    Using "replace pages" is not applicable as I am pasting to an entirely different form and copying form fields with the settings I use. 
    Is this a glitch or is something new that was not in Acrobat 8, 9, and X?
    Also, question regarding this forum entry -  http://forums.adobe.com/message/5638333#5638333 - which is somewhat different from my current question.
    The PDF creator could not paste copied fields on other pages of the same PDF. Was this ever resolved so that copy and paste worked as it has for the last 3 versions of Acrobat?
    Thanks!
    Joanie

    Gilad:  You're right: when the fields are different, such as a checkbox and a text field, and you try to title them the same, Acrobat gives you a message. I received no messages, the field names are not the same or I missed one and Acrobat is no longer messaging about it.
    My question is different. Acrobat XI will not let me paste any field copied from a different PDF.  I've been doing that for 5 years in three different versions.  Maybe Acrobat XI has a new process for that, which I could not find in Acrobat help. Maybe it's because all forms now have extended rights automatically in Acrobat XI and there is another method to copy common fields to other PDFs.
    Any thoughts about the new Acrobat XI? It's different in many good ways, but different.
    Thanks for your ideas.

  • Key fields and non-key field of condition table

    Hello Gurus,
          what is key fields and non-key field of condition table?
    thanks very much!

    Key field
    Each condition table contains keys that can be used for creating dependent condition records.
    for example let take condition type PR00.
    PR00 uses access sequence PR02 .
    Access sequence PR02 has following tables associated with it namely 304, 305 & 306
    When you create a conditon record for PR00 with transaction VK11 or VK31, you have a button 'key combination' which is nothing but fields associated with tables 304, 305 & 306.
    In brief, Condition records are always created using specific keys. Condition tables are used to define the structure of the keys of a condition record.
    Non key field
    For example take condition table 144 - sales deal basic data.
    Table 144 is associated with access sequence PBUD.
    If you check the fields associated with this table (click technical view button), there are three fields at bottom which do not have 'key' check mark -KDATU, PLTYP, KSTAF
    So, when you create a condition record for PBUD, system does not propose these 3 fields in 'key combination' and hence are non key fields.
    Please reward points for good answers as this would help increase the total donation that SAP will make to the United Nations World Food Programme.

  • How to create popup window with radio buttons and a input field

    Hi Guys,
    Can somebody give some directions to create a stand alone program to create a window popup with 2 radio button and an input field for getting text value. I need to update the text value in a custom table.
    I will call this stand alone program from an user exit. 
    Please give me the guidance how go about it or please give any tutorial you have.
    Thanks,
    Mini

    Hi,
    There are multiple aspects of your requirements. So let's take them one at a time.
    You can achieve it in the report program or you can use a combination of the both along.
    You can create a standalone report program using the ABAP Editor (SE38). In the report program you can call the SAP Module pool program by CALL Screen <screen number>. And then in the module pool program you an create a subscreen and can handle the window popup with 2 radio button and an input field for getting the text.
    For help - Module Pool programs you can search in ABAP Editor with DEMODYNPRO* and you will ge the entire demo code for all dialog related code.
    For Report and other Module pool help you can have a look at the following:
    http://help.sap.com/saphelp_nw70/helpdata/en/47/a1ff9b8d0c0986e10000000a42189c/frameset.htm
    Hope this helps. Let me know if you need any more details.
    Thanks,
    Samantak.

  • Dunning Procedure and Accounting Clerk fields in FBL5N

    Hi Gurus
    Plaese help me to add the field Dunning Procedure and Accounting Clerk in the hidden field option for changing layout in FBL5N
    I have checked for the option of  Define Special fields for finding and sorting data  but it does not allow the fileds from table other than BSEG , BKPF.
    Thanks
    Jhanvi

    hi Jhanvi,
    Execute the FBL5N and create your own Layout and from there you select the fields of Dunning and Accounting Clerk and then save that Layout.
    If the above fields are not available in that option then go to Tcode O7R3 it is for the Special Fields of finding and sorting DATA.
    Click on New Entries and enter the Table name and select the field from the F4 slection and then save it.
    Once again go to Tcode Fbl5n and select your layout and now you can see that fields added to that.
    Hope this will solve your problem
    Cheers
    Ranjit Kumar

  • How to import and make the content of the original PDF document editable and preserves the pdf appearance and retains existing fields and formatting in LiveCycle

    Can someone tell me how I can see my content (artwork and text) after I import  it into LiveCycle Designer ES4?  I like to import and make the content of the original PDF document editable; preserves the pdf appearance and retains existing fields and formatting, then allow me to do the modifications and save it back into the original PDF document with changes. I have tried everything but still cannot see my content(artwork and Text) of my original PDF after importing it into LiveCycle. All I see are is a blank page with the formatting and layout of where my artwork and text should be. I like to see everything if possible so after I make my change I will know how it will look when I save it back into the PDF and open it in Acrobat Reader.

    Can someone tell me how I can see my content (artwork and text) after I import  it into LiveCycle Designer ES4?  I like to import and make the content of the original PDF document editable; preserves the pdf appearance and retains existing fields and formatting, then allow me to do the modifications and save it back into the original PDF document with changes. I have tried everything but still cannot see my content(artwork and Text) of my original PDF after importing it into LiveCycle. All I see are is a blank page with the formatting and layout of where my artwork and text should be. I like to see everything if possible so after I make my change I will know how it will look when I save it back into the PDF and open it in Acrobat Reader.

Maybe you are looking for

  • How to delete pdf files in iBooks on mac?

    Accidently, I added hundreds of pdf files from my dropbox into iBooks. I manually tried to delete pdf files, and I found that some of them were deleted, but the rest of them haven't been deleted. I tried and tried, but failed. I couldn't even open th

  • ESATA external and iMac

    Hello, I have the latest iMac 24", 3.06GHz Intel Core 2 Duo, 4GB memory. I'm looking for another external drive. Can this mac use eSATA drives? Sorry I don't much about them. Thanks.

  • How to Configure TAB style reports based on specific Data?

    Hi All, I am new to Business Objects. I have an existing BO report and configured to display certain specific data in TAB sheets based on a kind of rule. Where is this exactly Configured in Desktop Intelligence? I need to modify this to add new TAB's

  • How to I add more colours and event types to my calendar ? thank you.

    Hi Im trying to add more colour's / events to my calendar, etc work, home, birthday and different colour's.Version 10.9.4, Processor 2.9 GHz Intel Core i7, Memory 8GB. Thank you, Regards, Neilicans

  • Different subpartitioning schemes for mviews and PCT-refresh

    It appears that I can have a table RANGE-partitioned by some field (DATE) and LIST-subpartitioned by another field (let's call it subfield2). Then I create materialized view (mview) based on that table, RANGE-partitioned by the same DATE field, but s