Not able to display the 18 cloumns inthe alv output

Hi Everybody,
I am developing one report to the display the output in alv for the 18months report.
basically my requirement is when ever i execute the program based on the current month it should calculate the next 18months and fetch the data and display in the alv.
for eg: if we are executing in the month of mar 2012 then in the output it should display from march 2012 to next year aug 2013 and in the column heading also it should display from March to next year August.
i have written the code and able to fetch tshould change he data for the 18 months and when i am sending the data into the internal table from row wise to column wise for the months the data is getting overwritten from the next year march 2013 to august 2013 and i am unable to add the new column after 12 months completed and the field catlog heading also should change based on when we are executing.
please find the below code which i have written and please let me know how and where i can correct the code so that the 18 columns are displayed from the month of the execution and the data according to it.
final internal table:
TYPES : BEGIN OF ty_output,
         matnr  TYPE   matnr,       "Material
         maktx  TYPE   maktx,       "Material Description
         mjahr  TYPE   mjahr,       "Material Document Year
         jan    TYPE   menge_d,     "January Sales Qty
         mjan   TYPE   meins,       "January Unit of Measure
         feb    TYPE   menge_d,     "Febuary Sales Qty
         mfeb   TYPE   meins,       "Febuary Unit of Measure
         mar    TYPE   menge_d,     "March Sales Qty
         mmar   TYPE   meins,       "March Unit of Measure
         apr    TYPE   menge_d,     "April Sales Qty
         mapr   TYPE   meins,       "April Unit of Measure
         may    TYPE   menge_d,     "May Sales Qty
         mmay   TYPE   meins,       "May Unit of Measure
         jun    TYPE   menge_d,     "June Sales Qty
         mjun   TYPE   meins,       "June Unit of Measure
         jul    TYPE   menge_d,     "July Sales Qty
         mjul   TYPE   meins,       "July Unit of Measure
         aug    TYPE   menge_d,     "August Sales Qty
         maug   TYPE   meins,       "August Unit of Measure
         sep    TYPE   menge_d,     "September Sales Qty
         msep   TYPE   meins,       "September Unit of Measure
         oct    TYPE   menge_d,     "October Sales Qty
         moct   TYPE   meins,       "October Unit of Measure
         nov    TYPE   menge_d,     "November Sales Qty
         mnov   TYPE   meins,       "November Unit of Measure
         dec    TYPE   menge_d,     "December Sales Qty
         mdec   TYPE   meins,       "December Unit of Measure
         month  TYPE   char2,       "MONTH
         menge  TYPE   menge_d,     "Quantity
         meins  TYPE   meins,
        END OF ty_output.
code to pass the data in the internal table:
*Getting the Data into GT_OUTPUT Table
  LOOP AT gt_output1 INTO wa_output1.
    READ TABLE gt_output WITH KEY matnr = wa_output1-matnr ASSIGNING <out>.
    IF sy-subrc NE 0.
      APPEND INITIAL LINE TO gt_output ASSIGNING <out>.
      <out>-matnr = wa_output1-matnr.
      <out>-mjahr = wa_output1-mjahr.
    ENDIF.
    READ TABLE GT_MAKT INTO WA_MAKT WITH KEY MATNR = WA_OUTPUT1-MATNR.
    <out>-maktx = wa_makt-maktx.
    READ TABLE gt_final INTO wa_mseg WITH KEY matnr = wa_output1-matnr.
    CASE wa_output1-month.
*    case wa_output1-mjahr.
      WHEN '01'.
        <out>-jan = wa_output1-menge.
        <out>-mjan = wa_mseg-meins.
      WHEN '02'.
        <out>-feb = wa_output1-menge.
        <out>-mfeb = wa_mseg-meins.
      WHEN '03'.
        <out>-mar = wa_output1-menge.
        <out>-mmar = wa_mseg-meins.
      WHEN '04'.
        <out>-apr = wa_output1-menge.
        <out>-mapr = wa_mseg-meins.
      WHEN '05'.
        <out>-may = wa_output1-menge.
        <out>-mmay = wa_mseg-meins.
      WHEN '06'.
        <out>-jun = wa_output1-menge.
        <out>-mjun = wa_mseg-meins.
      WHEN '07'.
        <out>-jul = wa_output1-menge.
        <out>-mjul = wa_mseg-meins.
      WHEN '08'.
        <out>-aug = wa_output1-menge.
        <out>-maug = wa_mseg-meins.
      WHEN '09'.
        <out>-sep = wa_output1-menge.
        <out>-msep = wa_mseg-meins.
      WHEN '10'.
        <out>-oct = wa_output1-menge.
        <out>-moct = wa_mseg-meins.
      WHEN '11'.
        <out>-nov = wa_output1-menge.
        <out>-mnov = wa_mseg-meins.
      WHEN '12'.
        <out>-dec = wa_output1-menge.
        <out>-mdec = wa_mseg-meins.
    ENDCASE.
*    ENDCASE.
  ENDLOOP.
Fieldcatalog
FORM fieldcatlog .
  REFRESH gi_fcat.
  CLEAR gr_fcat.
  gr_fcat-fieldname     = 'MATNR'.
  gr_fcat-tabname       = 'GT_OUTPUT'.
  gr_fcat-ref_fieldname = 'MATNR'.
  gr_fcat-ref_tabname   = 'MSEG'.
  gr_fcat-outputlen     = 18.
  APPEND gr_fcat TO gi_fcat.
  CLEAR gr_fcat.
  gr_fcat-fieldname     = 'MAKTX'.
  gr_fcat-tabname       = 'GT_OUTPUT'.
  gr_fcat-ref_fieldname = 'MAKTX'.
  gr_fcat-ref_tabname   = 'MAKT'.
  gr_fcat-outputlen     = 40.
  APPEND gr_fcat TO gi_fcat.
  CLEAR gr_fcat.
  gr_fcat-fieldname     = 'MJAHR'.
  gr_fcat-tabname       = 'GT_OUTPUT'.
  gr_fcat-seltext_l     = text-mjh.
  gr_fcat-seltext_m     = text-mjh.
  gr_fcat-seltext_s     = 'Mat Doc Yr'.
  gr_fcat-outputlen     = 40.
  APPEND gr_fcat TO gi_fcat.
  CLEAR gr_fcat.
  gr_fcat-fieldname     = 'JAN'.
  gr_fcat-tabname       = 'GT_OUTPUT'.
  gr_fcat-seltext_l     = text-jan.
  gr_fcat-seltext_m     = text-jan.
  gr_fcat-seltext_s     = text-jan.
  gr_fcat-outputlen     = 17.
  APPEND gr_fcat TO gi_fcat.
  CLEAR gr_fcat.
  gr_fcat-fieldname     = 'MJAN'.
  gr_fcat-tabname       = 'GT_OUTPUT'.
  gr_fcat-seltext_l     = text-mja.
  gr_fcat-seltext_m     = text-mja.
  gr_fcat-seltext_s     = text-mja.
  gr_fcat-outputlen     = 20.
  APPEND gr_fcat TO gi_fcat.
so on ...
  CLEAR gr_fcat.
  gr_fcat-fieldname  = 'DEC'.
  gr_fcat-tabname    = 'GT_OUTPUT'.
  gr_fcat-seltext_l  = text-dec.
  gr_fcat-seltext_m  = text-dec.
  gr_fcat-seltext_s  = text-dec.
  gr_fcat-outputlen  = 18.
  APPEND gr_fcat TO gi_fcat.
  CLEAR gr_fcat.
  gr_fcat-fieldname  = 'MDEC'.
  gr_fcat-tabname    = 'GT_OUTPUT'.
  gr_fcat-seltext_l  = text-mde.
  gr_fcat-seltext_m  = text-mde.
  gr_fcat-seltext_s  = text-mde.
  gr_fcat-outputlen  = 20.
  APPEND gr_fcat TO gi_fcat.
can anyone help me out and recity this
thanks in advance.....
Moderator message : Not enough re-search before posting, post only relevant portion of source code, discussion locked.
Message was edited by: Vinod Kumar

Hi meer,
I saw your code , here in type declaration ty_out it's having only 12( jan to dec ) months you need to add 6 more months at type declaration and field catalog level also.
Thats the reason why next year's data is overwritng the prev year data.
I think Coloumn heading  (month names)  you need to determine dynamically in field catalog beacause 18 months name will depends on current month.
Regards,
Rajeev Goswami

Similar Messages

  • OAF page is not able to display the custom error messages

    Hi,
    I have extended a seeded CO and trying to throw few custom error messages.
    It was working fine, but suddenly it is not able to display the error messages(but checked that the error messages are still present in application) and saying "Message not found. Application: PER, Message Name: ...."
    Is there any profile option which enables the custom messages?
    Thanks,
    Ranita

    Hi,
    There is no profile to enable the Custom error Messages, u will use the diagnostistics for showing the messages in the custom page
    use the following syntax for writing a msg in Jdeveloper
    pageContext.writeDiagnostics(strClassName, "Initializing the vo....", OAWebBeanConstants.STATEMENT);
    and enable the following profile option to yes
    Fnd:Diagnostics
    Regards
    Chanu

  • I am not able to display the text conditionally

    i am not able to display the text conditionally

    Please check the below formula.
    i am not able to print all the below text,the text is printing only one line and some is missing.
    Please do the needful.
    @(If(("@Endrdesc1."=="EWWC006"),"12 It is hereby understood and agreed that any work in connection with the delivery or cartage of goods other than by hand, handcart, cycle or bicycle is expressly excluded from the indemnity granted under this policy 97 It is hereby understood and agreed that any work away from shop or studio is expressly excluded from the indemnity granted under this policy.",""))

  • Not able to display the Installation Base of once it unassigned from upper level Installation IBase.

    Hi All
    I am working on IBase scenario for my client, I am new to the IBase scenario. Here we are creating installation base for two to five levels of product.
    Once we create IBase for lower level then this IBase is inserted in upper level IBase. Like this we assign all levels based on product.In some cases we need to unassign any of IBase from its upper level IBase. When it is unassigned we are not able to display the IBase which unassigned. When it is unassigned from upper level how come system not able to display this IBase. If we speak functionally the part (IBase) which is unassigned should be valid to assign in any other upper level IBase in feature.
    The error I am getting for above is
    Serial number XXXXXXX for material XXXXXXX does not exist in any IBase
    Message no. IQ122
    Diagnosis
    Serial number BMF3000106 for material S24-D5022-C100-6 does not exist in any installed base on 31.03.2015 at 10:22:09.
    System Response
    The system cancels processing.
    Hi experts please suggest.
    Regards
    Kesava

    Hello Kesava
    Can you please explain in detail what exactly you are trying to do while assigning and unassigning Ibase.
    Regards
    Naresh

  • Not able to display the image on the popup.

    hi,
    my requirement is: i have command link on the form.which on clicked should display a popup and with in that popup a image should be shown. I have stored that image in the form of byte array.
    On clicking the link i am able to show the popup.But,not able to display the image on the popup.
    thanks in advance.
    Srikanth.V

    Hi,
    how do you access the image? Put yourself in our shoes and look at your question and then add the missing information. E.g. does the image show if loaded on a page itself and not a popup ?
    Frank

  • How to display the fields in ALV Output without using Field catalog?

    How to display the fields in ALV Output without using Field catalog?
    Could you pls tell me the coding?
    Akshitha.

    Hi,
    u mean without building field catalog. is it? I that case, we can use the FM REUSE_ALV_FIELDCATALOG_MERGE.
    data: itab type table of mara.
    CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'
    EXPORTING
    i_program_name = sy-repid
    i_structure_name = itab
    CHANGING
    ct_fieldcat = lt_fieldcat[]
    EXCEPTIONS
    inconsistent_interface = 1
    program_error = 2
    OTHERS = 3.
    *Pass that field catalog into the fillowing FM
    call function 'REUSE_ALV_GRID_DISPLAY'
           exporting
                i_callback_program      = gd_repid
                i_grid_title            = 'REPORTING'
                is_layout              = gt_layout
                it_fieldcat             = lt_fieldcat[]
           tables
                t_outtab                = itab.

  • Not able to display the Portal Contents

    Hi
    I created new user and assigned only one role called "Content Administrator"
    When i loggned using that user then i am not able to see the contents under the browse tab.
    Please let me know what to do if i want get the contents under the browser tab;
    Thanks
    mmukesh

    Is your laptop's Internet explorer version is IE 7.0? If thats the case then it might be the issue. Portal doesnt work well with IE 7.0 and you get some problems like these a lot of times. You can correct this to include IE 7.0 also but that you have to configure via the Visual Admin. For now to confirm this - just try checking IE version - and if its 7.0 try installing IE 6.0 to see whether you are still getting the error.
    You can see note number 991449 to find out how you can include IE 7.0 also to your portal setting to eradicate this error. Well - if at all thats the cause. Please verify that before doing anything.
    Regards,
    Shubhadip
    Message was edited by:
            Shubhadip Ghosh

  • I am not able to modify the text in pdf output file using pdf editor

    Hi,
    We have upgrade the xml 5.6.1 in server level. After upgrading this, we are not able to modify the pdf output file. Previously we used to modify text and delete text in pdf file which is generated by oracle Application. As of now we cann't upgrade higher version. Can you suggest what to do?.

    Check the xdo configuration file option in the user guides. There should be options that allow / disallow modifying text specifically. If you are in EBS, you should be able to change the configuration file options from the XML Publisher Administrator UI.
    Klaus

  • Not able to display the values on the alv report.

    Hi all,
      loop at it_stpo.
        indx = sy-tabix.
        select single bdmng from resb into it_resb-bdmng
                        where matnr = it_stpo-idnrk
                        and xloek ne 'X'.
    it_stpo-bdmng = it_resb-bdmng.
    modify it_stpo index indx.
      endloop.
    in the above code, m fetchin the values of bdmng and populating it in the it_stpo.
    the values get populated in the internal table.
    But the problem is only the first value of all the entries gets populated.
    For ex:
    it_stpo-idnrk = C0201AA0800N ** under this components der r three entries***
    i want to display all three values of these entries.
    1.A0201AD6750N                          990
    2.A0201AJ0960N                           1,578
    3.A0201AJ1140N                           2,996
    but the value 990 gets repeated thrice for the above three entries. n the value 1598 n 2996 is not gettin displayed.
    lll, for all other entries. only the first entry value gets displayed for their respective components.
    suggest modification in my code so dat i cn display all the values.
    thanks in advance.
    regards,
    purva.

    Hi all,
      select bdmng from resb into corresponding fields of table it_stpo2
                for all entries in it_stpo
                 where matnr = it_stpo-idnrk
                 and xloek ne 'X'.
      loop at it_stpo2.
        move-corresponding it_stpo2 to it_stpo.
        append it_stpo.
      endloop.
    In the above code, m able to fetch the records in the table it_stpo2. but the data is not gettin populated in the final internal table it_stpo. Both the internal tables it_stpo & it_stpo2 are same.
    The data is gettin moved from it_stpo2 to it_stpo but only upto the header level. its not gettin appended in the table it_stpo even after using append stmt.
    Plz help me to resolve this issue. its urgent.
    Rgds,
    Purva

  • Report 6i/Webdb -Not able to display the report in the browser - rep- 3002 error.

    Would someone tell what I missed, I have set up the following:
    1) a report using report builder on NT
    2) my database is in Unix
    3) my report server is started in NT
    4) I run webdb listener for the following code: http://myweb.com/cgi/rwcgi60.exe?server=repserver+report=myreport+userid=usid/pw/connect_string+destype=cache+desformat=html. Then, I receive this message:
    Error: The requested URL was not found, or cannot be served at this time.
    Oracle Reports Server CGI - Report Job has terminated with error.
    Reports Server Replies:
    REP-3002: Error initializing printer. Please make sure a printer is installed.
    Why is it thinking I want to use the printer whereas I want to display the report in the browser?. Any help would be appreciated.
    null

    It sounds like that your Web CGI did not configure right. To test if your CGI configuration is correct, type:
    http://hostname:port/cgi-bin/rwcgi60exe?
    If you get a help screen, then you should be able to bring up your report.
    Regards,
    Xiaoling

  • Not able to display the Node context attributes to table

    Hi Friends,
    Issue: Currently i am reading the Node parameters and assigning the parameters to the Context of the mainView.
    Then displaying the attributes into table here i am using a iterator to fetch the attributes.
    But its reading only one record to the table not all the attributes.
    Here i am attaching the code:
    Node is EvaluationDimensions and attributes are Dimension and Selected_values.
    Line: -
    public void wdDoInit()
       //@@begin wdDoInit()
    try
    IBONodeElement test = null;
    test = (IBONodeElement)wdThis.wdGetDefinedimensiongafController().wdGetContext().nodeEvaluationDimensions().currentEvaluationDimensionsElement().model();
    IBONode testNode = test.getBONode();
    Iterator it = testNode.iterator();
    IBONodeElement itElement = null;
    while(it.hasNext())
    itElement = (IBONodeElement)it.next();
    //wdContext.nodeEvaluationDimensions().createAndAddEvaluationDimensionsElement();
    wdContext.createAndAddEvaluationDimensionsElement();
    wdContext.currentEvaluationDimensionsElement().setDimension(itElement.getAttributeValue("KPIParameterDefinitionName").toString());
    wdContext.currentEvaluationDimensionsElement().setSelected_Values(itElement.getAttributeValue("ParameterSelectedValuesText").toString());
    } catch (RuntimeException e) {
    e.printStackTrace();
    wdThis.wdGetDefinedimensiongafController().wdGetAPI().getComponent().getMessageManager().reportSuccess(e.toString());
        //@@end
    Line: -
    Could you suggest me some alternatives to show all records into table??
    Thanks & Best Regards, Prabhu(9886855725)
    Edited by: Armin Reichert on Apr 24, 2008 12:57 PM

    Hi Prabhu
    IBONodeElement test = null;
    test = (IBONodeElement)wdThis.wdGetDefinedimensiongafController().wdGetContext().nodeEvaluationDimensions().currentEvaluationDimensionsElement().model();
    What is this model() .
    You remove the try catch method once and test it to trace the error.Why cant you use typed AccessAPI to fetch the values from the node element.Is your node have more elements test it.By getting the size of the node.
    That too you are setting values to only current context element .Not for other elements.Everytime you are setting the values to current context element,thats why you are getting only one element values at a time.Iterate properly and try to set the values for each element
    wdContext.currentEvaluationDimensionsElement().setDimension(itElement.getAttributeValue("KPIParameterDefinitionName").toString());
    See the above code every time you are setting to currentNode lement notforother elements.
    Regards
    kalyan

  • Not able to display the simple Node Text

    Hi All,
    I am creating a simple tree. Even though I pass the node-text  , I am not not to see the node-text in the screen.
    Nevertheless, when I try to debug and analyse, I am able to see the node-text in the node table that is formed.
    The simple error is annoying me.
    Any help would be highly appreciated...
    Thanks a lot!
    Best Regards,
    Vignesh Ravikumar

    Hi Prabhu
    IBONodeElement test = null;
    test = (IBONodeElement)wdThis.wdGetDefinedimensiongafController().wdGetContext().nodeEvaluationDimensions().currentEvaluationDimensionsElement().model();
    What is this model() .
    You remove the try catch method once and test it to trace the error.Why cant you use typed AccessAPI to fetch the values from the node element.Is your node have more elements test it.By getting the size of the node.
    That too you are setting values to only current context element .Not for other elements.Everytime you are setting the values to current context element,thats why you are getting only one element values at a time.Iterate properly and try to set the values for each element
    wdContext.currentEvaluationDimensionsElement().setDimension(itElement.getAttributeValue("KPIParameterDefinitionName").toString());
    See the above code every time you are setting to currentNode lement notforother elements.
    Regards
    kalyan

  • NOT ABLE TO DISPLAY THE NEW ADDED FIELD

    Hi Experts,
       I was working on Solution Manager. Iam Creating table maintianance generator for particular table. Its working fine when i done the job for the first time. As i forgotten to add one more field in that table i had done it later. now that added field is not displaying in the table maintainance generator (tcode: sm30). what is the procedure that i have to follow in order to display that added field.
    Regards,
    Maha.

    Hi Mahalalakshmi,
      your new table defnition is not compatable with the internal program already generated  for your table.
    for this do the following
    SE11-->Utilities->Database Utilities----->Click on Activate and Adjust Database.
    Then the Table defnition is validated. The Internal Program for your table adjusted
    and stored in the R/3 Repository (that is in the DATABASE Level).
    If this valueble for you, validate with some points
    Regards,
    Ramu

  • Not able to display the desired view if button is pressed in POPup window

    Hi Experts,
    I have developed a web dynpro application.In this i have created a pop up window which consists of three buttons YES , NO and CANCEL.
    I have developed three event handlers in the view VIEW_POPUP which is acting as view of the pop_up window.  When i click on any of these buttons no event handler is getting triggered.
    Please give your suggestion as where the problem is.

    Hi Ravi,
    I think u created a  view and embedded it in another window and calling that window.,
    If u want to display a popup window with action buttons., jus use create_popup_to_confirm() method.
    refer this code,.
    * Data declarations for Pop up window
      data: lt_text type string_table,
            lo_window_manager type ref to if_wd_window_manager,
            lo_api_component type ref to if_wd_component,
            lo_window type ref to if_wd_window,       
            l_api type ref to if_wd_view_controller.
       msgtext = 'Do u want to continue. ?'
        append msgtext to lt_text.
          clear: tmp_from , tmp_to .
          l_api = wd_this->wd_get_api( ).
          lo_api_component = wd_comp_controller->wd_get_api( ) .
          lo_window_manager  = lo_api_component->get_window_manager( ).
          lo_window1 =
          lo_window_manager->create_popup_to_confirm(
                 text = lt_text
                 button_kind = if_wd_window=>co_buttons_okcancel
                 message_type = if_wd_window=>co_msg_type_information   " this is info msg u can give error message here
                 close_button = 'X'
                 window_title = 'Confirmation message box'
    *       lo_window->subscribe_to_button_event
          lo_window1->subscribe_to_button_event(
            button = if_wd_window=>co_button_ok
            action_name = 'SUBMIT_REQUEST'                     " Submitting Request. " u have to create SUBMIT_REQUEST Action
            button_text = 'Yes'                                             " And Place the code in that action which u want to execute when yes
            action_view = l_api
            is_default_button = abap_false
    *       lo_window->subscribe_to_button_event
          lo_window1->subscribe_to_button_event(
            button = if_wd_window=>co_button_cancel
            action_name = 'CANCEL_REQUEST'                     " Calling Action On clicking NO. "u have to create CANCEL_REQUEST
            button_text = 'NO'                                              "Action
            action_view = l_api
            is_default_button = abap_true
          lo_window1->open( ).
    reply if u need some more clarifications.,
    Thanks & Regards
    Kiran

  • Test.jsp not able to display the output from the java code.

    when i try to invoke http://localhost/papz/test.jsp
    I dont see anything. The page is blank. And there are no error messages in any log files. When i click on view source in IE i get to see the entire source code, including the jave code.
    <html>
    <head>
    <title>Test</title>
    <body>
    <%
    out.println("Hello World");
    %>
    asdfasdfasdf
    </body>
    </html>
    i added in the asdfasdf to see whehter it will be printed or not... It does print that stuff out.
    when i try to invoke the login.jsp page, i get the dialog box "save this file to disk"
    Any clues whats going on...?
    I followed the instructions...over and over again... but it doesnt seem to help.
    win nt 4.0
    apache 1.3.12
    jserv 1.1.1
    Pls help. Thanks

    Hi,
    Have you solved your problem?
    I4m trying to do the same, but I installed portal 30, then portal to go, and when I try to run test.jsp I get the following error:
    Request URI:/papz/test.jsp
    Exception:
    java.lang.NoSuchMethodError: oracle.jsp.util.JspUtil: method
    stripTarget(Ljava/lang/String;C)Ljava/lang/String; not found
    Thanks
    Pablo Lopera
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by NewBie:
    when i try to invoke http://localhost/papz/test.jsp
    I dont see anything. The page is blank. And there are no error messages in any log files. When i click on view source in IE i get to see the entire source code, including the jave code.
    <html>
    <head>
    <title>Test</title>
    <body>
    <%
    out.println("Hello World");
    %>
    asdfasdfasdf
    </body>
    </html>
    i added in the asdfasdf to see whehter it will be printed or not... It does print that stuff out.
    when i try to invoke the login.jsp page, i get the dialog box "save this file to disk"
    Any clues whats going on...?
    I followed the instructions...over and over again... but it doesnt seem to help.
    win nt 4.0
    apache 1.3.12
    jserv 1.1.1
    Pls help. Thanks<HR></BLOCKQUOTE>
    null

Maybe you are looking for

  • The difference between AIR-ANT5135D-R and AIR-ANT5135DB-R

    Hi, Anyone know what is the difference between AIR-ANT5135D-R and  AIR-ANT5135DB-R ? From the dynamic configuration tools for 1252 and 1242, AIR-ANT2422DB-R is inside one of the antenna option. However, I can't find it in the "Cisco Aironet Antennas

  • Pass data from z report to smartforms

    Hi expert, i have a zreport for display internal order. in this zreport, i create a table(ATAB) contain data of internal order header from coas t003p and other table. now i want to pass this ATAB to smartforms. i got example smartforms and zreport wi

  • Formguide and javascript inside a pdf

    Hello, I´m trying FormGuide. I realize that the behavior of the script inside an event in a pdf/template is different when the pdf is opened directly in acrobat reader or when is opened using a formguide (preview pdf). For instance, if I have 2 javas

  • My iBooks app now displays all PDF's as "Untitled"

    Good Morning: My iPhone 3GS is now displaying all new PDF's with the title "Untitled" in my ibooks app. This started after the recent iBooks update. The previous PDF's I have on iBooks from before the update all have the titles of the PDF as it was l

  • Link to Apple Configurator 1.6

    Greetings. I need to run Apple Configurator, but the version in the application store is not OS X 10.9 compatible. I have tried searching the Apple downloads for it without success, and chatting to their support has not yet revealed it. I need 1.6. D