Issue about Select-options in NWG

Hi Techies,
Greetings of the day.
I can able to get the data using Filter in the URI but when i want to use select-options as parameters in the URI it is giving me error.
kindly help me on this issue how to write select-options to get the data
Thanks In Advance.
Thanks & regards
Sathish

Hi Sathish,
Your question doesn't make a lot of sense. Filters are converted into select option format in the DPC, you can't "use select-options as parameters in the URI". The URI has to be OData-compliant and select-options are nothing to do with OData.
You should be using a filter and interpreting the select options in the DPC. Be aware that not all select-options patterns are converted from filters.
Regards
Ron.

Similar Messages

  • Issue with Select options in select statement - ABAP Question

    Hi
    I am facing an issue with select options. Select statement is returning sy-subrc as 4.
    I wrote the program as below:
    SELECT-OPTIONS:
    s_kunnr FOR bsad-kunnr,
    s_lifnr FOR bsak-lifnr,
    s_gjahr FOR bsad-gjahr,
    s_bukrs FOR bsad-bukrs,
    s_saknr FOR bsad-saknr,
    s_budat FOR bsak-budat.
    In start of selection I have written the select statement as
    SELECT * FROM bsak INTO TABLE lt_bsak
    WHERE bukrs IN s_bukrs AND lifnr = s_lifnr AND gjahr IN s_gjahr AND budat IN s_budat AND saknr IN s_saknr.
    In selection screen I have not entered any values and executed the program. I am not getting any result. When I debug that, sy-subrc is 4 at above select statement. But table has records.
    If am removing the "lifnr = s_lifnr " condition in select then select is returning values.
    I am not getting where I made the mistake. Please suggest.
    Thank you
    Hanu

    Hi,
    The problem here with where condition select option lifnr = s_lifnr.
    Use below select query.
    SELECT * FROM bsak INTO TABLE lt_bsak
    WHERE bukrs IN s_bukrs
        AND lifnr     IN s_lifnr
        AND gjahr   IN s_gjahr
        AND budat  IN s_budat
        AND saknr  IN s_saknr.
    s_lifnr is a select option and you are passing it as parameter lifnr = s_lifnr.
    if you want to pass this s_lifnr as single vale then pass in below mentioned way.
    lifnr = s_lifnr-low
    BR,
    Vijay

  • Issue in Select Options

    Hi all,
    Iam doing a development in which iam using select option component. i have 4 selection para meters. When i use the Component iam getting 4 default buttons RESET, COPY etc.
    Is this 4 buttons mandatory? i also know we can remove the buttons via abap code but stil when i remove Copy button my select options doesnt get any input from screen . Same PO when i use with Copy button (after pressing copy button) its recognising.
    Kindly help me in resolving this issue
    thanks
    dhinesh

    Hi Dhinesh,
    Hope the below snippet solves your purpose
    DATA: LT_RANGE_TABLE TYPE REF TO DATA,
            RT_RANGE_TABLE TYPE REF TO DATA,
         LT_RANGE_TABLE1 TYPE REF TO DATA,
            RT_RANGE_TABLE1 TYPE REF TO DATA,
            READ_ONLY TYPE ABAP_BOOL,
            TYPENAME TYPE STRING.
      DATA: LR_COMPONENTCONTROLLER TYPE REF TO IG_COMPONENTCONTROLLER,
            L_REF_CMP_USAGE TYPE REF TO IF_WD_COMPONENT_USAGE.
    create the used component
      L_REF_CMP_USAGE = WD_THIS->WD_CPUSE_ZSELECT_OPTION( ).
      IF L_REF_CMP_USAGE->HAS_ACTIVE_COMPONENT( ) IS INITIAL.
        L_REF_CMP_USAGE->CREATE_COMPONENT( ).
      ENDIF.
      WD_THIS->M_WD_SELECT_OPTIONS = WD_THIS->WD_CPIFC_ZSELECT_OPTION( ).
    init the select screen
      WD_THIS->M_HANDLER = WD_THIS->M_WD_SELECT_OPTIONS->INIT_SELECTION_SCREEN( ).
      WD_THIS->M_HANDLER->SET_GLOBAL_OPTIONS(
                                  I_DISPLAY_BTN_CANCEL  = ABAP_False
                                  I_DISPLAY_BTN_CHECK   = ABAP_False
                                  I_DISPLAY_BTN_RESET   = ABAP_true
                                  I_DISPLAY_BTN_EXECUTE = ABAP_False ).
    create a range table that consists of this new data element
      LT_RANGE_TABLE = WD_THIS->M_HANDLER->CREATE_RANGE_TABLE( I_TYPENAME = 'Your Feild' ).
    WD_THIS->M_HANDLER->ADD_SELECTION_FIELD( I_ID = 'Your Feild'
      IT_RESULT = LT_RANGE_TABLE I_READ_ONLY = READ_ONLY ).

  • About select option

    Hi experts,
    In my alv report there is one field SERNR serial number, for this i have to put select option. My problem is this field doesn't exist in the table(Zmanifest) from where i'm fetching data. So i'm not able to mention this select option in my select query for that particular table. This field is existing in EQUI table and have no relation defined between zmanifest table & EQUI.
    In my internal table i have all fields of zmanifest & this sernr; to fulfill this field logic is
    Serial Number is combination of P_PREFIX-(dash)P_SERIAL fields in zmanifest. I have fetch all data including SERNR by above logic at my grid; but facing problem in defining SELECT-OPTIONS for Sernr.
    Please help.
    Points Sure.
    Anshuman

    Hi,
    do like this.
    take the lenght of P_PREFIX
    take the lenght of P_SERIAL
    add the length.
    for exmaple :
    P_PREFIX size is 4.
    P_SERIAL size is 10
    now declare the variable like this.
    data : v_selop(15).
    Note : 4101 = 15, so i declared the variable with lenght of 15.
    select-options : so_field for v_selop.
    now use off-set in your select query like this:
    where PREFIX = v_selop+0(4)
       and SERIAL = v_selop+5(10)
    it will work if you are using variable v_selop as a parameter else if you are using select option you have to break v_selop into two different select option like this:
    s_prefix type prefix,
    s_serial type serial.
    loop at v_selop.
    s_prefix-* = v_selop-. "      (  = sign, option)
    s_serial-* = v_selop-*.
    s_prefix-low = v_selop-low+0(4).
    s_serial-low = v_selop-low+5(10).
    s_prefix-high = v_selop-high+0(4).
    s_serial-high = v_selop-high+5(10).
    endloop.
    now use following select query
    where PREFIX in s_prefix
       and SERIAL in s_serial.
    it will surely wrok.
    Regards-
    Gagan Kumar
    Plz Reward if need full. also close the question.
    Edited by: Gagan Kumar on May 18, 2008 7:30 PM

  • S.O.S about select option in WD

    hi experts
    I have a emergent case that I need to mark a select option as red background when error happens.
    could anyone give me a solution?

    Hi,
    while using select-options declare the table using ' TABLES'.
    ie :  Tables : /BIC/SZDISTCH.
    also try declaring select-options without modif id and give a try.
    SELECT-OPTIONS : s_vtweg for /bic/szdistch-/bic/zdistch.
    Regards,
    Ranjith Nambiar

  • Issue with Select Options

    Dear Experts,
    I used component wdr_select_options to achieve select options functionality, But it displaying only one field as per my requirement user expecting both low & high fields.
    Can you guide for 5 select options whether i have use t times the component at my component level.
    And also could please guide me how to use select options at code level.
    Thanks & Regards,
    Siva Mandapudi.
    Edited by: SIVAMANDAPUDI on Jul 18, 2011 6:39 PM

    Hi Saravan,
    Please find below details.
    The exception is:
    The exception, which is assigned to class 'CX_SY_REF_IS_INITIAL', was not
    caught in
    procedure "ONACTIONSEARCH_SUPPLIER" "(METHOD)", nor was it propagated by a
    RAISING clause.
    code:
    DATA FOR WORKING WITH SELECT OPTIONS
      data: rt_SUPPLIERNO type ref to data.
      data: rt_SUPPLIERNAME type ref to data.
    field-symbols: <fs_SUPPLIERNO> type table,
                    <fs_SUPPLIERNAME> type table.
      TYPES: BEGIN OF T_SUPPLIERNO,
             SIGN(1),
             OPTION(2),
             LOW TYPE /SAPAPO/LOC,
             HIGH TYPE /SAPAPO/LOC,
            END OF T_SUPPLIERNO.
      TYPES: BEGIN OF T_SUPPLIERNAME,
             SIGN(1),
             OPTION(2),
             LOW TYPE /SAPAPO/LOC_DESCR40,
             HIGH TYPE /SAPAPO/LOC_DESCR40,
            END OF T_SUPPLIERNAME.
      DATA: WA_SUPPLIERNO TYPE T_SUPPLIERNO, IT_SUPPLIERNO TYPE TABLE OF T_SUPPLIERNO,
            WA_SUPPLIERNAME TYPE T_SUPPLIERNAME, IT_SUPPLIERNAME TYPE TABLE OF T_SUPPLIERNAME.
    Retrieve the data from the select option
      rt_SUPPLIERNO = wd_this->m_handler->get_range_table_of_sel_field(
                               i_id = 'ID_SNO' ).
    dump raising when get_range_table_of_sel_field is called.
    Thanks a lot.
    Regards
    Siva Mandapudi.

  • About select-options field name

    hi expects,
        in my select-options screen , i am gettting the field name ex .kunnr,land1,name1,but i want the name as "customer number ,name,country".how can i do this thing .please help me.

    u use selection screen begin of line and text-010 is the text symbol (text) which hold the name as u wanted
    selection-screen begin of block b1 with frame title text-001.
    parameters: p_pci type rlgrap-filename default 'C:\CATS\'.
    selection-screen begin of line.
    selection-screen comment 1(31) text-010 for field p_unix.
    parameters:
    p_unix(200) default '/usr/sap/interfaces/celerra/CATS/AMR/in/SWAP/'
    lower case,
    p_namef type char15 lower case default 'amr_swap',
    p_datef type sy-datum default sy-datum,
    p_extf type char4 default '.txt' lower case.
    selection-screen end of line.

  • About select-option statement

    Hi ,
    I am writing a select-option
    s_vtweg for /bic/szdistch-/bic/zdistch modif id r1.
    when i do this i am unable to see the s_vtweg-high option in the selection screen.
    i.e s_vtweg is displayed without extension and without interval.
    and i am working on an APO system.
    Thanks,

    Hi,
    while using select-options declare the table using ' TABLES'.
    ie :  Tables : /BIC/SZDISTCH.
    also try declaring select-options without modif id and give a try.
    SELECT-OPTIONS : s_vtweg for /bic/szdistch-/bic/zdistch.
    Regards,
    Ranjith Nambiar

  • About select options.

    Hi there;
    Is there any chance to sort an internal table (it_result) comparing an internal range table (s_ktorr) ?
    Example :
    Select-Options on screen
    s_ktorr = 
    DESK9A56KS
    DESK9AU634
    DESK9A53JD
    DESK9A7878
    Then when I select those tkorr from e071 table, the final result is :
    SELECT trkorr obj_name object
        FROM e071
        INTO CORRESPONDING FIELDS OF TABLE it_result
       WHERE trkorr IN s_ktorr.
    it_result =
    DESK9A7878 OBJ1
    DESK9A7878 OBJ2
    DESK9A56KS OBJ1
    DESK9A56KS OBJ2
    DESK9A56KS OBJ3
    DESK9A53JD OBJ1
    DESK9AU634 OBJ1
    DESK9AU634 OBJ2
    As you can see the final result is out of order comparing the s_ktorr order on the screen..
    My question is.. Is there any syntax or some SORT method to do not lose the original sort?
    Thanks in advance.
    E.

    No, but it the arrangement of data must match the original input list, one could loop at the input ranges table, then loop at the result looking for those values and increment a counter defined in the results table, then resort by that counter no.
    for example something like this (not very efficient, to be sure):
    data: lv_counter(4) type n value 1.
    loop at ranges table.
       loop at result table where <fieldname> = ranges-low.
       result-counter = lv_counter.
       lv_counter = lv_counter + 1.
    endloop.
    endloop.
    sort result table by counter.
    But, I don't understand why this would be important....a simple sort statement, as Sandra noted, would be desirable.

  • Result in SELECT-OPTIONS not valid

    Hi, I wrote the next statment about SELECT-OPTIONS..but for example if the selection criterio S_HKONT is initial..this is don´t have a value...all the result are true when I compare..
    I wrote:
    SELECTION-SCREEN BEGIN OF BLOCK 1 WITH FRAME TITLE TEXT-001.
    SELECT-OPTIONS:   S_BUDAT        FOR  EKBE-BUDAT OBLIGATORY,    "Posting Date in the Document
                      S_HKONT        FOR  BSEG-HKONT.
    SELECTION-SCREEN END OF BLOCK 1.
    When I wrote:
      SELECT BUKRS BELNR GJAHR KOART SHKZG BUZEI DMBTR
        WRBTR PSWBT PSWSL SAKNR HKONT LIFNR WERKS MENGE EBELN EBELP
        INTO CORRESPONDING FIELDS OF FILTER_BSEG
        FROM BSEG
        WHERE BELNR = A1
          AND GJAHR = A2.
          AND HKONT IN S_HKONT.
          APPEND FILTER_BSEG.
      ENDSELECT
    The result are many rows behind S_HKONT don´t have results..this mean..is initial..
    Or If I compare:  
          IF FILTER_BSEG-HKONT IN S_HKONT.
               Sentence...
          ENDIF.
    all the sentence that be in inside of IF are made..
    Only when S_HKONT has a value... the condition is evaluated ok.
    I hope that someone can help me.
    Thank you

    Hi Alicia...I see that you finally understand about reward points...coz you assign me some points -:) Thanx -:)
    Yes...I speak spanish, it's my mother language...But you know...We can't speak spanish here... -;)
    Of course you can write me to my personnal e-mail...But i actually prefer to answer in the forums, coz here at work, i just can access my mail -:(
    This is the link to my business card, you can check my e-mail in there -:)
    <a href="https://www.sdn.sap.com:443http://www.sdn.sap.comhttp://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.sdn.businesscard.sdnbusinesscard?u=nkxegtflwze%3d">blag's Business Card</a>
    If i undestand what you're saying...You actually need to delete HKONT initial records only if the SELECTION-SCREEN is initial, right??? If so...You need to use the DELETE code. Or maybe you only need to get record if the SELECT-OPTION is not initial...
    So...AFAIK you can do this...
    IF NOT MY_FILTER[] IS INITIAL.
    SELECT *
    INTO MY_TABLE
    FROM SOME_TABLE
    WHERE SOME_FIELD IN MY_FILTER.
    ENDIF.
    Now, you only select record if MY_FILTER got some value on it.
    Hope this helps you -:)
    Greetings,
    Blag.

  • SELECT-OPTIONS 'EQ' vs. 'BT' performance issue

    Hi Experts,
    I have a query which uses select-options feature for a date range...
    If we give a single date, the report runs instantly but if we use the date range it takes forever to get the reports even though both the low and high dates are the same....
    We had informix earlier and it ran smoothly but now that we are on Oracle we are seeing this issue....
    I am just trying to understand the performance issues with using the 'BT' clause compared to the 'EQ' clause...
    Any inputs are appreaciated...
    Thanks

    Run the SELECT both ways (with high and low date the same for the second one), and in ST05, do a performance trace on each. Then use the 'explain' function to see if both are using the index.
    Rob

  • SELECT OPTIONS ISSUE

    Hi Experts,
    I am using a select options for one field on my screen with extension which gives me an Arrow right next to the Field , now the issue is when i click on the Arrow a search help opens up for multiple selection.
    In this search help there are "FROM" and ''TO" columns , i would like to disable or make that "TO" column invisible i know it is possible in ABAP through function modules but how can it be acheived in webdynpro.
    I have gone through the "if_wd_select_options" class but couldnt find a solution for this , please lead me to the
    right approach.
    Thanks In Advance,
    Chaitanya.

    Hello Chaitanya Raju,
    You must be resusing the Select-option component WDR_SELECT_OPTIONS
    Follow below steps to create a select-options without ranges.
    I think this is only possible with dynamic handling.
    1)Acess the method: remove_all_sel_screen_items to Removes All Elements in Selection Screen.
    2)build up new screen by calling the method: ADD_SELECTION_FIELD.
    Before calling the 2nd step --> you will have to populate all the information that is required to build a select-option.
    *add select options field
      CALL METHOD wd_comp_controller->mo_so_handler->add_selection_field
        EXPORTING
          i_id                         = is_sel_op-m_id
          i_within_block               = is_sel_op-m_within_block
          i_description                = is_sel_op-m_description
          it_result                    = is_sel_op-mt_range_table
          i_obligatory                 = is_sel_op-m_obligatory
          i_value_help_id              = is_sel_op-m_value_help_id
          i_no_extension               = is_sel_op-m_no_extension
          i_no_intervals               = is_sel_op-m_no_intervals
          i_no_complex_restrictions    = is_sel_op-m_no_complex_restrictions
          i_as_checkbox                = is_sel_op-m_as_checkbox
          i_as_dropdown                = is_sel_op-m_as_dropdown
          it_value_set                 = is_sel_op-mt_value_set
          i_read_only                  = is_sel_op-m_read_only
          i_tooltip                    = is_sel_op-m_tooltip   .
    You can refer to this link for more info.
    https://www.sdn.sap.com/irj/scn/wiki?path=/display/wdabap/multiple%252bdynamic%252bselection%252bblocks%252bin%252bwebdynpro-abap
    Thanks,
    Bharath.K

  • Issue In Providing 255 Charcters From The Selection Screen Select-Option

    Dear Guru,
    I am searching for table field with having length = 255 character.
    which i want to use in select-option for proving data from the selection screen.
    I have found the table myhlp and it associated field allvals which is having length = 255.
    I am using it as below in my selection screen for the value to be provided 255 character long.
    SELECTION-SCREEN : BEGIN OF BLOCK b3 WITH FRAME TITLE text-003.
    SELECT-OPTIONS   : s_mlbody FOR myhlp-allvals  NO INTERVALS.
    SELECTION-SCREEN : END OF BLOCK b3.
    Now when i am going for the multiple selection option --> It is providing me the Multiple selection popup and giving me the provision of provide multiple line .
    But the issue is that --> For a particular single value line in the popup i am able to enter only 45 charcters not 255 character.
    But i need to put 255 charcter for particular line in a single value..
    Please give me some guideline how resolve this or any other alternative way of reading the 255 charcter from the selection screen
    Thanks & regards
    Saifur Rahaman

    Hi,
         As said by A@s selction screen with table control will be a good option.
    design a custom screen with SUBSCREEN as screeen attribute using tcode se51.
    For table control sample - go through Tcode ABAPDOCU - abap user dialogs-screens-complex screen- table control
    Try Following,
    REPORT Zsample .
    controls: tc type tableview using screen 200.
    parameters: p_user type myhlp-username.
    data: begin of itab occurs 50,
          field1(255) type c,
          end of itab.
    data: i_out type standard table of myhlp.
    SELECTION-SCREEN BEGIN OF TABBED BLOCK MAX FOR 22 LINES.
    SELECTION-SCREEN TAB (25) TABS1 USER-COMMAND UCOMM1
             DEFAULT SCREEN 200.
    SELECTION-SCREEN END OF BLOCK MAX.
    start-of-selection.
    select * from myhlp into table i_out for all entries in itab
              where username eq p_user
                    and allvals = itab-field1.
    MODULE READ_ITAB INPUT.
    insert itab index tc-current_line.
    ENDMODULE.                 " READ_ITAB  INPUT

  • Issue when reading values of Select-options for Dynamic F4

    Hi All,
    I have provided dynamic F4 help on class name (ESTCAT) and characteristic name (ATNAM). Both are select options with no intervals. The class name should be entered to get the F4 help for characteristic name, else an message would appear to select a class name first. My message is coming when i press F4 on characteristic name without giving any class name. This is correct but if i enter the class name after this message and do an F4 for characteristic name, it still shows the same message which is not correct. The reason is the class name entered is not captured in the FM RS_REFRESH_FROM_SELECTOPTIONS output table and it is captured only if i hit enter after entering the class name.
    Is it possible to get the class name in the FM output without hitting enter or any other way to resolve this issue?
    Thanks in advance,
    Srilakshmi.

    In Flow Logic
    PROCESS ON VALUE-REQUEST.
      FIELD itab-connid MODULE f4_get.
    In Program
    MODULE f4_get INPUT.
      DATA : fnam TYPE string,
             fval TYPE string.
    *         lin TYPE i.
      DATA : BEGIN OF f4_tab OCCURS 0,
             carrid TYPE sflight-carrid,
             connid TYPE sflight-connid,
        END OF f4_tab.
       CLEAR lin.
      GET CURSOR FIELD fnam VALUE fval LINE lin. " This gives the Current Line in Table Control
      DATA : dynpread TYPE TABLE OF dynpread WITH HEADER LINE.
      REFRESH dynpread.
      CLEAR dynpread.
      dynpread-fieldname = 'ITAB-CARRID'.
      dynpread-stepl = lin.  " You need to pass this line Value here
      APPEND dynpread.
      CLEAR dynpread.
      CALL FUNCTION 'DYNP_VALUES_READ'
        EXPORTING
          dyname                               = sy-repid
          dynumb                               = sy-dynnr
        TABLES
          dynpfields                           = dynpread
       EXCEPTIONS
         invalid_abapworkarea                 = 1
         invalid_dynprofield                  = 2
         invalid_dynproname                   = 3
         invalid_dynpronummer                 = 4
         invalid_request                      = 5
         no_fielddescription                  = 6
         invalid_parameter                    = 7
         undefind_error                       = 8
         double_conversion                    = 9
         stepl_not_found                      = 10
         OTHERS                               = 11
      IF sy-subrc IS INITIAL.
        READ TABLE dynpread WITH KEY fieldname = 'ITAB-CARRID'.
        IF sy-subrc IS INITIAL.
          SELECT carrid connid FROM sflight
                INTO TABLE f4_tab
                 WHERE carrid = dynpread-fieldvalue.
          CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
            EXPORTING
              retfield               = 'CONNID'
             dynpprog               = sy-repid
             dynpnr                 = sy-dynnr
             dynprofield            = 'ITAB-CONNID'
             value_org              = 'S'
            TABLES
              value_tab              = f4_tab
        ENDIF.
      ENDIF.
    ENDMODULE.                 " f4_get  INPUT
    Regards
    Surendra P

  • Validation for Select-Option - Issue

    Hi Experts!!
    I have a select-option s_field on which I have written a validation under AT SELECTION-SCREEN. Now, the problem is that, if validation fails in second line of s_field, then to change it when we click on Extension, it's not allowing to enter but is throwing error message again and again as AT SELECTION-SCREEN is called.
    Suppose, I have entered 2 single values as C001 and F001. s_field will have 2 entries. Now, C001 is a valid value but F001 is not. PFB my code:
    LOOP AT s_field.
    SELECT SINGLE *
      FROM ztable INTO ls_field
      WHERE field EQ s_field-low.
    IF sy-subrc NE 0.
    " Error Message
    ENDIF.
    ENDLOOP.
    Now, for C001, sy-subrc will be 0. But for F001 sy-subrc is 4 and hence will throw an error. Now, to correct this, I am trying to enter into extension, but as this will be called again, I am unable to. Hope I explained it clearly.
    I do not see any possibility to correct this. Can anybody please suggest if any workaround can be implemented?
    Your help is highly appreciable.

    Hi,
    You can try the following:
    AT SELECTION-SCREEN on s_field.
    LOOP AT s_field.
    SELECT SINGLE *
      FROM ztable INTO ls_field
      WHERE field EQ s_field-low.
    IF sy-subrc NE 0.
    MESSAGE s398(00) DISPLAY LIKE 'E' with 'ERROR MESSAGE'.
    ENDIF.
    ENDLOOP.
    I hope this works as per your requirement.
    <<point-begging removed>>
    Edited by: micky prasad on Jan 6, 2012 1:00 PM
    Edited by: kishan P on Jan 9, 2012 1:40 PM

Maybe you are looking for

  • Acrobat 9 Pro Extended Trial - Export (a) and (b) Quiz Making

    (A)to .doc = text in text boxes! Not Wanted!How to avoid this? (B ) Can I build a quiz right from Acrobat 9 Pro Extended? I cannot find anything on the interface that would allow me to do this but I saw it done? I'm on a trial but I can aleady see Ve

  • Photoshop CS2 file corruption with Leopard 10.5.3 update

    In addition to the network server corruption issue being experienced by everyone with CS3 and OS X 10.5.3, since Wednesday (and the 10.5.3 update) my CS2 version 9 Photoshop files are turned into corrupted, flattened Mexican rug files when I save to

  • How to open pdf in adobe

    when I open the pdf it opens it in adobe reader rather than in adobe download assistant.  I want to type some names onto a pdf certificate.  Please help!

  • Cant Open illustrator Files Memmory Error

    Firstly I have researched this online and foudn many postings dating back 3 years with no resoultion or even a work around. I dont normally like to post on these forums but there isnt anything else to try. Firstly computer specs I7 CPU 16 GB DDR3 RAM

  • Print to PDF: won't open in Adobe Reader, but will in Preview

    Subject says it all. I use "Save as PDF" from an application and the resulting file does not open/display properly using Adobe Acrobat, but it opens and displays just great using Preview. Dubya-tee-eff ? Here is the offending PDF