Limit List-box displayed entries

Hi.
This is the story:
I have created a Dialog scren and defined a field (let's call it FieldA) based on db field (e.g. PA0001-PERSG).
Now since the db field has Check-table, FieldA has F4 functionality attached.
Since I don't fancy the F4 functioanality (it takes too long to come up and a lot of resources) I changed FieldA type to "Listbox".
Now all the values that would appear in the F4 screen are showing as a List-box (AKA Drop-down or Combo-box).
So far so good, but the problem is this:
I don't want all the possible entries in my List-box, just a few.
I know how to control it in the F4 but not as a List-box.
Any ideas anyone?
Regards.
Ayal.

Hi....
  Why should u r not trying this...
In the PAI event of that screen...
> FIELD F1 MODULE create_dropdown_box.
And in that module....
>MODULE create_dropdown_box INPUT.
>
>  TYPE-POOLS : vrm.
>
>
> DATA : BEGIN OF f1_info OCCURS 0 ,
>               f1_ac(20) ,
>         END OF f1_info .
>
>  DATA : vid TYPE vrm_id.
>  DATA : itab1  TYPE vrm_values,
>              itab_1 TYPE vrm_value .
>
>  REFRESH f1_info.
>
>    f1_info-f1_ac = 'ENTRY1' .
>    APPEND f1_info .
>
>     f1_info-f1_ac = 'ENTRY2' .
>    APPEND f1_info .
>
>     f1_info-f1_ac = 'ENTRY3' .
>    APPEND f1_info .
>
>   vid = 'F1'.
>
>  LOOP AT f1_info.
>    itab_1-key  = f1_info-f1_ac .
>    itab_1-text = f1_info-f1_ac .
>    APPEND itab_1 TO itab1.
>  ENDLOOP.
>
>
>  CALL FUNCTION 'VRM_SET_VALUES'
>    EXPORTING
>      id                    = 'F1'
>      values                = itab1
>  EXCEPTIONS
>    ID_ILLEGAL_NAME       = 1
>   OTHERS                = 2
>            .
>  IF sy-subrc <> 0.
>  MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
>          WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
>   ENDIF.
>
>  REFRESH itab1.
>
> ENDMODULE.                 " create_dropdown_box  INPUT
Here actually iam used hard coding.. for entries..its good for less than 5 or 6 entries...
You can modify code according to ur requirement...
and get back to me if u want any clarification on this...
Thanks,
Naveen.I
Edited by: Naveen Inuganti on Jul 1, 2008 11:16 AM

Similar Messages

  • List Box display to synchroniz​e with Scroll bar.

    I will like to know if anyone here can help to amend or advise on the attached VI in order to allow the List Box display to synchronize with the Scroll bar.
    As the VI is in run mode, i would like to see 9.CD, 10.Troja, 11. Red... and so on to be displayed as it is being executed.
    Thanks.
    Attachments:
    try.vi ‏13 KB

    Hi Gelb,
    Glad to hear you've got it working
    I realised afterwards that my code will not work correctly if the last line is partially hidden, ie the list box does not display an exact number of lines. So I've added a +1 after the array size function to correct this, see attached vi.
    You'll notice that I read the NumRows property of the listbox - I've done this so that if you decide to change the listbox height the code will still work without you having to go in and change anything. In your code you would have to change the constant (currently a 7) before the comparison primative to the new height. Also, in my new vi I've assumed the listbox height isn't going to change during the time it gets populated so I've move the NumRows property out of the for loop and read it only once - saves a bit of time
    Using a for loop with auto indexing rather than a while loop also means that I don't need to index the input array every time or worry about when the loop will stop.
    Hope this all helps
    Dave
    Message Edited by DavidU on 06-26-2008 08:59 AM
    Attachments:
    Scroll Listbox 2.vi ‏15 KB

  • Advance Required,Hard limit-- List boxes

    During agreement creation what is the functionality of advance required list box?? if that list box enabled agreement amount entry field become optional field (4m mandatory)??
    Also revenue hard-limit ,invoice hard limit based on what system calculating??where itz applying the rule??i m not finding any difference??
    Pls help me
    thanks a lot n advance...

    Hi
    Advance required on agreement form means the customer is willing to pay in advance some amount, before the project has been executed. The terms are entered on agreement level. The advance payment is entered in Account Receivables. Advances will later on be applied to project invoices.
    Hard limit for revenue is checked and validated by the PRC: Generate Draft Revenue process. While revenue is generated for that agreement the system will limit the revenue amount, so the total accumulated revenue will not exceed the fund allocated to the project.
    Hard limit for invoice is checked and validated by the draft invoice generation process, respectfully..
    Dina

  • Spawning pages from entries in a list box with entry text as title

    The background: I have a form with a list box which a user can populate with their own text via a text box and an 'add' button. This works fine.
    I've just added a template page with different content and 'spawn' button. This also works fine.
    The task: What I want to be able to do is use the entries in the list box from page 1 to spawn the same number of pages as entries and also populate a field in each newly spawned page with the name of the corresponding entry (to act as a title).
    How do I go about coding this?
    Current spawn code:
    var t = this.templates;
    var T = t[0];
    var XO = T.spawn(this.numPages, false, false);
    for (var i=0; i<m; i++) T.spawn(this.numPages, false, false, XO);

    This script will spawn pages depending on the number of items in myComboBox:
         var f = this.getField("myComboBox");
         var expTplt = getTemplate("tpltExpenses");
         for (var i=0; i<f.numItems; i++){
         expTplt.spawn(this.numPages,true,false);
    I'm not sure how to auto fill the text fields on the spawned pages though.

  • List box display depand upon another list selection

    hi all
    i m trying to generate a listbox depanding upon the selection of first list box. like if i select option 1 in first listbox it should display a database table in other list box, if 2nd then display other db table & so on.
    is it possible.
    plz give some suggestion or code
    regards

    in the list box selection event call submit function [\b]and pass the value to DB which queries against that value and populates the required list box.

  • Update db with list box

    I am using JDeveloper 10.1.2 with jsp/struts/adf.
    I am using the table (repair) used contains a column(rOrder) that is used for ordering the records sequentially.
    Created a jsp page containing a data bound list box displaying 10 items from the repair table and sorted by the rOrder column.
    Need to reorder the items in the list box and then update the db with the new order.
    Is there an example or how to that would provide assistance or a better method to accomplish the task.
    Thanks
    jeb

    hi.
    just check like this.
    select f1 f2 from ztable into corresponding field of itab
    where condition.
    loop at itab into wa_itab where f1 ne 0. " suppose f1 is field which u want to modify
      wa_itab-f1 = 0.
    modify itab from wa_itab index sy-tabix.
    endloop.
    Edited by: tahir naqqash on Feb 11, 2009 6:53 PM
    Edited by: tahir naqqash on Feb 11, 2009 6:53 PM

  • List Box with Variable Entries in a Table Control

    Hi ,
       I have a requirement where a certain column F of the table control should be designed as dropdown list box. The problem is, i have to populate different entries for field F in each row of the Table control.
                                       Field List
    First Line -                   A,B,C
    Second Line -              A,B
    Third Line     -             A
    Is it possible in ABAP to achieve this . I should not use an input help. Can i achieve this with Drop down list ?
    Regards,
    Krishna Chaitanya . A

    Hi Priyaranjan,
    Assoon as you enter records and save it it gets saved , that is ok , but when you do scroll system goes to PAI , so you need to chk the value of ok_code when scroll button is pressed and write the code according to that .
    more over you need to increase the number of lines that can be displayed in a particular table control .
    Try this it may help you .
    <i>Reward points if helpful.</i>
    Regards,
    Amber S

  • Limit of no.  of items shown in ABAP List-box?

    Hi All,
    I am doing a development and I came across this limitations of the no. of items in a list box. Is it limited to a single digit..? Cause when i use call function 'VRM_SET_VALUES', the value returned in the field is the KEY, which is only 1 digit in my case. I have over 100 entries to be displayed in the list box. Can anyone tell me how to increase the no. of digits which get returned by the FM 'VRM_SET_VALUES'?
    Please let me know.
    Awaiting your reply.
    Regards,
    Pankaj.

    Show us the code that you use to build the VRM table please.
    I'm simply not understanding your problem.  VRM table has 2 fields, key and text.  Text is what is displayed and key is what is
    returned from the user selecting one item on the list.  Only one value is returned.  There is not multiple selection options.
    This is code I use to generate a custome dropdown list.
    * this is in my TOP (Global area)
    DATA: ltype_field   TYPE vrm_id,
          ltype_result  TYPE STANDARD TABLE OF vrm_value,
          ltype_val     LIKE LINE OF ltype_result.
    * this is in my PBO routine
      REFRESH ltype_result. CLEAR ltype_result.
    * Drop down values
      SELECT ltype ltypex
        INTO TABLE ltype_result
        FROM zlmltyp
        WHERE auth NE '9'.    "System Only
    * Field name to assign drop down values
      ltype_field = 'WK_LTYPE'.
      CALL FUNCTION 'VRM_SET_VALUES'
           EXPORTING
                id              = ltype_field
                values          = ltype_result
           EXCEPTIONS
                id_illegal_name = 1
                OTHERS          = 2.
    Edited by: Paul Chapman on May 1, 2008 12:36 PM

  • Reg: Drop-Down list Box not  displaying values

    Hi Experts,
                     i am publishing a module pool program in the internet using SICF Transaction . In the internet my drop down list box is not displaying the default value  but in my sap it works fine .
    What may be the problem?
    Regards,
    Vikram

    Hello Thorsten Domsalla ,
                      My Problem is in my sap module pool program there is a drop down list box which disaplays  default values its working fine in sap gui but when i access through internet (SICF) Transaction the Drop down list box not listing out default values .
    i am using Integrated ITS Version 7.0 and Support package 08.
    Regards,
    Vikram

  • Is it possible to allow use to type entry into a drop down list box ?

    Hi ,
    Is it possible to provide  type in the value option ( provide option to user like he can select a value from the extracted data in a drop down list object and also he can enter a value manually ) to a drop down list box on an interactive form ?
    Nanda

    Hello Nanda,
    In the Adobe LiveCycle Designer you can specify several list items for objects of type 'Drop-down List' and it is also possible to allow custom entries (checkbox: "Allow Custom Text Entry").
    Regards,
    Philipp

  • Conditional display of list box in form (depends on other report column)

    Hello,
    i have one question regarding conditional display in forms.
    I have a tabular form where only one column ("flag") is updateable, all other columns are visible only.
    I changed the column "flag" from "standard report column" to "Select list (static lov)", which has the values "yes" and "no".
    This works fine. But in the running form i want to display the list box only if the column "status" = 'ERROR'.
    The column "status" can have the values 'ERROR' and 'OK'.
    When one record has "status" = 'OK', the column "flag" should not display the list box (only empty column row),
    when one record has "status" = 'ERROR" the column "flag" should display the list box.
    The idea behind is that if a record has "status" = 'ERROR' i have the possibility to confirm that "error" and update the column "flag" with "YES". This should only be possible for errors.
    This is my main problem.
    I tried with conditional display, but this hides or shows the column for the whole report/form, not on record level...
    The second problem then is, that if the column "flag" is changed to "YES" in case of column "status" = 'ERROR', then it should not be possible to change it again to 'NO". At the beginning it is 'NO', but once changed to 'YES' it should not be changeable any more.
    Is this possible?
    Thank you in advance,
    Matthias

    Hello Mike
    your solution sounds good, but unfortunately it is not working.
    None of my 2 columns are displayed, although i tried it as you wrote and the conditions should match...
    But i am no sure if this can work. If so, the 2 columns must fuse to 1 column:
    ID STATUS FLAG
    1 ERROR yes/no => comes from column1
    2 OK (null => comes from column2
    so "FLAG" must display column1 and column2 in one column. is that possible?
    regards,
    Matthias

  • How to submit a multiple-selection list box in an Infopath Sharepoint form as multiple entries on a Sharepoint list?

    I would like to be able to submit an Infopath form with a multiple selection list box in Sharepoint as multiple entries on a Sharepoint list.
    For example, a user has to complete the following fields:
    First Name:
    Last Name:
    Favorite Color (can select more than one):
    [] Blue
    [] Red
    [] Yellow
    [] Green
    If the user picks blue AND red and submits the form, the Sharepoint list would feature TWO entries, both with their first and last names, but with different colors in the "Favorite Color" column.
    Please let me know if there is a way to do this. Any guidance would be helpful!

    Hi redhotc,
    According to your description, my understanding is that you want to set multiple default values for a multiple checkbox list in InfoPath form.
    I did a test with SQL database table. I set three default values for the checkbox list by adding three values field under the group field(Data->Default values), each value field is for a default value. Then publish it to my SharePoint site, everything
    was fine.Please have a try as the below link:
    http://www.bizsupportonline.net/infopath2010/pre-select-items-multiple-selection-list-box-infopath-2010.htm
    Note: if you are using SQL databse table, you may need to enable ‘Allow cross-domain data access for user form templates that use connection settings in a data connection file’ in CA. More information, please refer to:
    http://answers.flyppdevportal.com/categories/sharepoint2010/sharepoint2010customization.aspx?ID=418b9423-a96c-4e5e-91f9-6a1b010ebb69
    I hope this helps.
    Thanks,
    Wendy
    Wendy Li
    TechNet Community Support

  • Interactive Adobe Forms - Description in list box in Display mode

    Hi All,
    We are working with Adobe Interactive Forms.
    There is a list box for States that is bound to the REGION field in IT0006.
    When I choose a value in the combo box for Stateu2026 and click on Check and Send all fields become readOnly and are displayed for reviewu2026 in this step the combo boxes display the actual value instead of the text (eg shows the 2 character code for a state instead of description)u2026 how can I make sure that the  form displays the description even in the readonly mode?
    In the Binding properties, I have set Item Text as "text" and Item Key as "key". This does not work. Is there any other setting to be made?
    Regards,
    Priya

    have you tried using a drop down box instead? I have several drop downs I use on 1 form - they're all bound directly to the backend and work fine.
    Edited by: robert phelan on Sep 22, 2009 4:36 PM

  • List Box showing Value and Display members?

    Ok this is a CONCEPT problem (the code is not professional, just read it for the concept, though it does compile and run).
    Right, I have asked many people on IRC and no one is giving me a straight answer lol so maybe some professionals can help me.
    I am trying to use a Datasource property for my combobox. This is so I can just pass an entire KeyValue pair with indexes and values to be shown in the listbox.
    Creating the keyvaluepair as a WHOLE and passing that to datasource property works perfectly.
    Creating a keyvaluepair PROCEDURALLY (in a loop or w/e) ends in the datasource property ToString()ing it, list box items show BOTH value AND display members in square brackets as an entire option.
    NOTE: Getting the lsitbox.value results in ONLY the valuemember being returned even though the listbox shows both the valuemembers AND the displaymember? it knows they are different?
    Now, I dont want any alternatives or comments about the quality of the code, all I want to know is WHY is it doing this, it seems compeltely illogical that the same TYPE and Values and can different Effects within the datasource property? Its like it knows
    it was built procedurally?
    Anyway here is some code for reference:
    // Windows Form
    namespace skbtInstaller
    public partial class frmMainWindow : Form
    public frmMainWindow()
    InitializeComponent();
    // coxArmaPath = Combo Box (simple drop down)
    this.cBoxArmaPath.ValueMember = "Key";
    this.cBoxArmaPath.DisplayMember = "Value";
    public void addServerPathItem(String Key, String Value)
    this.cBoxArmaPath.Items.Add(new KeyValuePair<String, String>(Key,Value));
    // This works fine, only the "DisplayMember" is displayed and the "ValueMember" is hidden.
    // This acts differently with the same types???
    public void setServerPathDatasource(List<KeyValuePair<String, String>> source)
    this.cBoxArmaPath.DataSource = new BindingSource(source, null);
    public class skbtServerControl
    private frmMainWindow frmMainWindowHandle;
    public void refreshformWindow()
    // Clear Drop Box (empties drop box)
    this.frmMainWindowHandle.clearPathBox();
    //skbtServerConfig is very simple property object
    foreach (KeyValuePair<String, skbtServerConfig> pair in CoreConfig.getServerConfigList())
    // Populate Drop Box
    this.frmMainWindowHandle.addServerPathItem(pair.Key, pair.Value.getTextualName()); // this works as intended
    // cBox gets items like: Some Display Text, Some Display Text, Some Display Text (PERFECT!)
    // This works absolutely fine. ValueMembers are hidden.
    public void refreshformWindowWithSTATICDatasource()
    // Clear Drop Box
    this.frmMainWindowHandle.clearPathBox();
    var pathDataSource = new List<KeyValuePair<String, String>>()
    new KeyValuePair<String, String>("testKey1", "somevalue1"),
    new KeyValuePair<String, String>("testKey2", "somevalue2"),
    new KeyValuePair<String, String>("testKey3", "somevalue3")
    // Populate Drop Box
    this.frmMainWindowHandle.setServerPathDatasource(pathDataSource);
    // cBox gets items like: Some Display Text, Some Display Text, Some Display Text (PERFECT!)
    // ** HERE IS THE PROBLEM?? **
    // This creates a type that seems different to the above function which works fine...
    public void refreshformWindowWithDatasource()
    // Clear Drop Box
    this.frmMainWindowHandle.clearPathBox();
    var pathDataSource = new List<KeyValuePair<String, String>>();
    //skbtServerConfig is very simple property object
    foreach (KeyValuePair<String, skbtServerConfig> pair in CoreConfig.getServerConfigList())
    pathDataSource.Add(new KeyValuePair<String, String>(pair.Key, pair.Value.getTextualName()));
    // Populate Drop Box
    this.frmMainWindowHandle.setServerPathDatasource(pathDataSource);
    // cBox gets items like [asjAETJQ5785d45,Some Display Text], [asawfgQ5785d45,Some Display Text], [asjAhrrQ5785d45,Some Display Text]
    // ????? surely this function should act exactly like the function above??
    Thanks!
    (I have posted on codeproject too, will condense any replies).
                 

    Thanks Michael!
    I did debug this and it turns out when i set a new BindingSource to the combo box, indeed the DisplayMember gets reset. Oddly though, the ValueMember stays the same.
    I have fixed this with setting the Members before every new bindingSource is set to the combobox, strange that only the displaymember is reset?
    For reference, the new resolved code: (this compiles albeit with designer components placed)
    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    using System.Windows.Forms;
    namespace etstapp1
    public partial class Form1 : Form
    private skbtServerControl sc;
    public Form1()
    InitializeComponent();
    this.sc = new skbtServerControl(this);
    // coxArmaPath = Combo Box (simple drop down)
    this.cBoxArmaPath.ValueMember = "Key";
    this.cBoxArmaPath.DisplayMember = "Value"; // This doesnt seem to stick after the first datasource set??
    public void addServerPathItem(String Key, String Value)
    this.cBoxArmaPath.Items.Add(new KeyValuePair<String, String>(Key, Value));
    // This works fine, only the "DisplayMember" is displayed and the "ValueMember" is hidden.
    // This acts differently with the same types???
    public void setServerPathDatasource(List<KeyValuePair<String, String>> source)
    this.cBoxArmaPath.DisplayMember = "Value"; // fix datasource problem
    this.cBoxArmaPath.ValueMember = "Key"; // fix datasource problem
    this.cBoxArmaPath.DataSource = new BindingSource(source, null);
    public void clearPathBox()
    if(this.cBoxArmaPath.DataSource == null){
    this.cBoxArmaPath.Items.Clear();
    else
    this.cBoxArmaPath.DataSource = null;
    private void btnStatic_Click(object sender, EventArgs e)
    this.sc.refreshformWindowWithSTATICDatasource();
    private void btnNormal_Click(object sender, EventArgs e)
    this.sc.refreshFormWindow();
    private void btnDynamic_Click(object sender, EventArgs e)
    this.sc.refreshformWindowWithDatasource();
    public class skbtServerControl
    private CoreConfig CoreConfig;
    private Form1 frmMainWindowHandle;
    public skbtServerControl(Form1 f){
    this.frmMainWindowHandle = f;
    this.CoreConfig = new CoreConfig();
    public void refreshFormWindow()
    // Clear Drop Box (empties drop box)
    this.frmMainWindowHandle.clearPathBox();
    //skbtServerConfig is very simple property object
    foreach (KeyValuePair<String, skbtServerConfig> pair in CoreConfig.getServerConfigList())
    // Populate Drop Box
    this.frmMainWindowHandle.addServerPathItem(pair.Key, pair.Value.getTextualName()); // this works as intended
    // cBox gets items like: Some Display Text, Some Display Text, Some Display Text (PERFECT!)
    // This works absolutely fine. ValueMembers are hidden.
    public void refreshformWindowWithSTATICDatasource()
    // Clear Drop Box
    this.frmMainWindowHandle.clearPathBox();
    var pathDataSource = new List<KeyValuePair<String, String>>()
    new KeyValuePair<String, String>("testKey1", "somevalue1"),
    new KeyValuePair<String, String>("testKey2", "somevalue2"),
    new KeyValuePair<String, String>("testKey3", "somevalue3")
    // Populate Drop Box
    this.frmMainWindowHandle.setServerPathDatasource(pathDataSource);
    // cBox gets items like: Some Display Text, Some Display Text, Some Display Text (PERFECT!)
    // ** HERE IS THE PROBLEM?? **
    // This creates a type that seems different to the above function which works fine...
    public void refreshformWindowWithDatasource()
    // Clear Drop Box
    this.frmMainWindowHandle.clearPathBox();
    var pathDataSource = new List<KeyValuePair<String, String>>();
    //skbtServerConfig is very simple property object
    foreach (KeyValuePair<String, skbtServerConfig> pair in this.CoreConfig.getServerConfigList())
    pathDataSource.Add(new KeyValuePair<String, String>(pair.Key, pair.Value.getTextualName()));
    // Populate Drop Box
    this.frmMainWindowHandle.setServerPathDatasource(pathDataSource);
    // cBox gets items like [asjAETJQ5785d45,Some Display Text], [asawfgQ5785d45,Some Display Text], [asjAhrrQ5785d45,Some Display Text]
    // ????? surely this function should act exactly like the function above??
    public class CoreConfig
    public Dictionary<String, skbtServerConfig> getServerConfigList(){
    return new Dictionary<string, skbtServerConfig>()
    {"somekey1", new skbtServerConfig("somename1")},
    {"somekey2", new skbtServerConfig("somename2")}
    public class skbtServerConfig
    private String name;
    public skbtServerConfig(String name)
    this.name = name;
    public String getTextualName()
    return this.name;
    Talking with someone it seems logical that every time I set a new BindingSource the component will not know if I want to keep the same member values so it resets them, but why it only resets displaymember? very strange to me.
    Thanks again.

  • Cannot display Thai. character in List box elements

    Hi all,
    I have set the Fonts to Ms San Serif to all items in a form, all items seems can display Thai. character correctly. For List box, it can display Thai also, but the elements in the selections cannot.
    Does any expert know how to fix this ?
    Thanks!

    Hi Kinghow,
    Thanks for your reply!
    The problem still can't solve after set the auto csv code select "Yes". The excel file still can't display Thai character.
    Am i using a correct way to generate excel file? Do you have any suggestion to export data to excel using pl/sql?
    If i removed below part, then the excel file working well.
    htp.tableOpen(cattributes=>'border="1",bordercolor="BLACK",align="CENTER"');
    for x in (select srd_line_prop,srd_line_dtl from schd_rptd where srd_queue_no=:P401031_QUEUE_NO and srd_line_prop='H' order by srd_queue_no,srd_line_no)
    loop
    htp.tablerowopen(cattributes => 'bgcolor="#81F7F3"');
    for i in 1..pkg_wwe.split_count(x.srd_line_dtl,'|') loop
    if i = 1 then
    htp.p('<TD nowrap align="center" width="70px" > <font size="2" face="arial" color="#088A08">');
    htp.p(pkg_wwe.split(x.srd_line_dtl,'|',i));htp.p(' ');htp.p(' ');
    htp.p('</TD>');
    else
    htp.p('<TD nowrap align="center" width="70px" > <font size="2" face="arial" color="#08088A">');
    htp.p(pkg_wwe.split(x.srd_line_dtl,'|',i));htp.p(' ');htp.p(' ');
    htp.p('</TD>');
    end if;
    end loop;
    htp.tableRowClose;
    end loop;
    htp.tableClose;
    I really do not have any idea on how to solve this problem. Is really strange on this problem.

Maybe you are looking for

  • User-exits or BAdI for transaction VL10B

    Hello everybody, I have to modify an outbound order during its creation from a purchase order in transaction VL10B. The modification is to update the serial numbers and the batch. As the process is in background it is quite difficult to debug the pro

  • I have a pc with itunes now i want to synic my iphone and ipad can you?

    can i pay someone to fix my iphone and ipad to have the same app on both ?

  • How can I find the ASM port

    Hi, When I use OEM grid control to monitor the ASM, during the configuration, I was asked to enter port, SID, please tell me from which file I can find the ASM instance port information? Thanks, Hank USA 2007

  • Hot zone Navigation is not working on Adobe Content Viewer?

    I create a Content Viewer v22 using Viewer Builder and I enabled the Hot zone navigation option with a 10% width. But it don't work. I tap on the margins of the article and nothing happens (only show or hide the toolbars). What I'm doing wrong?

  • Blacklining plugin in Indesign CS5 issue

       Hi, My company recently upgraded their workstations to Windows 7 with Adobe CS5 standard and acrobat X. Now we installed Blacklining from http://www.blacklining.com/. My problem lies on the vertical line (sidebar) that the Acrobat distiller is pro