Inter ractive report

what is the difference between AT USER-COMMAND AND AT PF<NN.>

Check sap documentaion for the at pf## statement:
AT PF##
Syntax
AT PF##.
Effect
This statemet defines an event block whose event is triggered by the ABAP runtime environment during list display - provided the screen cursor is on a list line and a function is selected using the function code PF##. Here ## stands for a number between 01 and 24. In the= standard list status, these function codes are assigned to the function keys of the input device.
Note
Instead of AT PF## , AT USER-COMMAND should always be used and special function codes should be assigned to the required function keys.
Regards,
Ravi

Similar Messages

  • Inter active report objects

    i want a beautiful inter active report  object based on SD module help me one.

    REPORT ZZ_22038_22098_002 NO STANDARD PAGE HEADING LINE-SIZE 650
    MESSAGE-ID ZZ_9838 .
    TYPE-POOLS: SLIS.
    *type declaration for values from ekko
    TYPES: BEGIN OF I_EKKO,
    EBELN LIKE EKKO-EBELN,
    AEDAT LIKE EKKO-AEDAT,
    BUKRS LIKE EKKO-BUKRS,
    BSART LIKE EKKO-BSART,
    LIFNR LIKE EKKO-LIFNR,
    END OF I_EKKO.
    DATA: IT_EKKO TYPE STANDARD TABLE OF I_EKKO INITIAL SIZE 0,
    WA_EKKO TYPE I_EKKO.
    *type declaration for values from ekpo
    TYPES: BEGIN OF I_EKPO,
    EBELN LIKE EKPO-EBELN,
    EBELP LIKE EKPO-EBELP,
    MATNR LIKE EKPO-MATNR,
    MENGE LIKE EKPO-MENGE,
    MEINS LIKE EKPO-MEINS,
    NETPR LIKE EKPO-NETPR,
    END OF I_EKPO.
    DATA: IT_EKPO TYPE STANDARD TABLE OF I_EKPO INITIAL SIZE 0,
    WA_EKPO TYPE I_EKPO .
    *variable for Report ID
    DATA: V_REPID LIKE SY-REPID .
    *declaration for fieldcatalog
    DATA: I_FIELDCAT TYPE SLIS_T_FIELDCAT_ALV,
    WA_FIELDCAT TYPE SLIS_FIELDCAT_ALV.
    DATA: IT_LISTHEADER TYPE SLIS_T_LISTHEADER.
    declaration for events table where user comand or set PF status will
    be defined
    DATA: V_EVENTS TYPE SLIS_T_EVENT,
    WA_EVENT TYPE SLIS_ALV_EVENT.
    declartion for layout
    DATA: ALV_LAYOUT TYPE SLIS_LAYOUT_ALV.
    declaration for variant(type of display we want)
    DATA: I_VARIANT TYPE DISVARIANT,
    I_VARIANT1 TYPE DISVARIANT,
    I_SAVE(1) TYPE C.
    *PARAMETERS : p_var TYPE disvariant-variant.
    *Title displayed when the alv list is displayed
    DATA: I_TITLE_EKKO TYPE LVC_TITLE VALUE 'FIRST LIST DISPLAYED'.
    DATA: I_TITLE_EKPO TYPE LVC_TITLE VALUE 'SECONDRY LIST DISPLAYED'.
    INITIALIZATION.
    V_REPID = SY-REPID.
    PERFORM BUILD_FIELDCATLOG.
    PERFORM EVENT_CALL.
    PERFORM POPULATE_EVENT.
    START-OF-SELECTION.
    PERFORM DATA_RETRIEVAL.
    PERFORM BUILD_LISTHEADER USING IT_LISTHEADER.
    PERFORM DISPLAY_ALV_REPORT.
    *& Form BUILD_FIELDCATLOG
    Fieldcatalog has all the field details from ekko
    FORM BUILD_FIELDCATLOG.
    WA_FIELDCAT-TABNAME = 'IT_EKKO'.
    WA_FIELDCAT-FIELDNAME = 'EBELN'.
    WA_FIELDCAT-SELTEXT_M = 'PO NO.'.
    APPEND WA_FIELDCAT TO I_FIELDCAT.
    CLEAR WA_FIELDCAT.
    WA_FIELDCAT-TABNAME = 'IT_EKKO'.
    WA_FIELDCAT-FIELDNAME = 'AEDAT'.
    WA_FIELDCAT-SELTEXT_M = 'DATE.'.
    APPEND WA_FIELDCAT TO I_FIELDCAT.
    CLEAR WA_FIELDCAT.
    WA_FIELDCAT-TABNAME = 'IT_EKKO'.
    WA_FIELDCAT-FIELDNAME = 'BUKRS'.
    WA_FIELDCAT-SELTEXT_M = 'COMPANY CODE'.
    APPEND WA_FIELDCAT TO I_FIELDCAT.
    CLEAR WA_FIELDCAT.
    WA_FIELDCAT-TABNAME = 'IT_EKKO'.
    WA_FIELDCAT-FIELDNAME = 'BUKRS'.
    WA_FIELDCAT-SELTEXT_M = 'DOCMENT TYPE'.
    APPEND WA_FIELDCAT TO I_FIELDCAT.
    CLEAR WA_FIELDCAT.
    WA_FIELDCAT-TABNAME = 'IT_EKKO'.
    WA_FIELDCAT-FIELDNAME = 'LIFNR'.
    WA_FIELDCAT-NO_OUT = 'X'.
    WA_FIELDCAT-SELTEXT_M = 'VENDOR CODE'.
    APPEND WA_FIELDCAT TO I_FIELDCAT.
    CLEAR WA_FIELDCAT.
    ENDFORM. "BUILD_FIELDCATLOG
    *& Form EVENT_CALL
    we get all events - TOP OF PAGE or USER COMMAND in table v_events
    FORM EVENT_CALL.
    CALL FUNCTION 'REUSE_ALV_EVENTS_GET'
    EXPORTING
    I_LIST_TYPE = 0
    IMPORTING
    ET_EVENTS = V_EVENTS
    EXCEPTIONS
    LIST_TYPE_WRONG = 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.
    ENDFORM. "EVENT_CALL
    *& Form POPULATE_EVENT
    Events populated for TOP OF PAGE & USER COMAND
    FORM POPULATE_EVENT.
    READ TABLE V_EVENTS INTO WA_EVENT WITH KEY NAME = 'TOP_OF_PAGE'.
    IF SY-SUBRC EQ 0.
    WA_EVENT-FORM = 'TOP_OF_PAGE'.
    MODIFY V_EVENTS FROM WA_EVENT TRANSPORTING FORM WHERE NAME =
    WA_EVENT-FORM.
    ENDIF.
    READ TABLE V_EVENTS INTO WA_EVENT WITH KEY NAME = 'USER_COMMAND'.
    IF SY-SUBRC EQ 0.
    WA_EVENT-FORM = 'USER_COMMAND'.
    MODIFY V_EVENTS FROM WA_EVENT TRANSPORTING FORM WHERE NAME =
    WA_EVENT-NAME.
    ENDIF.
    ENDFORM. "POPULATE_EVENT
    *& Form data_retrieval
    retreiving values from the database table ekko
    FORM DATA_RETRIEVAL.
    SELECT EBELN AEDAT BUKRS BSART LIFNR FROM EKKO INTO TABLE IT_EKKO.
    ENDFORM. "data_retrieval
    *& Form bUild_listheader
    text
    -->I_LISTHEADEtext
    FORM BUILD_LISTHEADER USING I_LISTHEADER TYPE SLIS_T_LISTHEADER.
    DATA HLINE TYPE SLIS_LISTHEADER.
    HLINE-INFO = 'this is my first alv pgm'.
    HLINE-TYP = 'H'.
    ENDFORM. "build_listheader
    *& Form display_alv_report
    text
    FORM DISPLAY_ALV_REPORT.
    V_REPID = SY-REPID.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
    I_CALLBACK_PROGRAM = V_REPID
    I_CALLBACK_PF_STATUS_SET = ' '
    I_CALLBACK_USER_COMMAND = 'USER_COMMAND'
    I_CALLBACK_TOP_OF_PAGE = 'TOP_OF_PAGE'
    I_GRID_TITLE = I_TITLE_EKKO
    I_GRID_SETTINGS =
    IS_LAYOUT = ALV_LAYOUT
    IT_FIELDCAT = I_FIELDCAT[]
    IT_EXCLUDING =
    IT_SPECIAL_GROUPS =
    IT_SORT =
    IT_FILTER =
    IS_SEL_HIDE =
    i_default = 'ZLAY1'
    I_SAVE = 'A'
    is_variant = i_variant
    IT_EVENTS = V_EVENTS
    TABLES
    T_OUTTAB = IT_EKKO
    EXCEPTIONS
    PROGRAM_ERROR = 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.
    ENDFORM. "display_alv_report
    *& Form TOP_OF_PAGE
    text
    FORM TOP_OF_PAGE.
    CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
    EXPORTING
    IT_LIST_COMMENTARY = IT_LISTHEADER
    i_logo =
    I_END_OF_LIST_GRID =
    ENDFORM. "TOP_OF_PAGE
    *& Form USER_COMMAND
    text
    -->R_UCOMM text
    -->, text
    -->RS_SLEFIELDtext
    FORM USER_COMMAND USING R_UCOMM LIKE SY-UCOMM
    RS_SELFIELD TYPE SLIS_SELFIELD.
    CASE R_UCOMM.
    WHEN '&IC1'.
    READ TABLE IT_EKKO INTO WA_EKKO INDEX RS_SELFIELD-TABINDEX.
    PERFORM BUILD_FIELDCATLOG_EKPO.
    PERFORM EVENT_CALL_EKPO.
    PERFORM POPULATE_EVENT_EKPO.
    PERFORM DATA_RETRIEVAL_EKPO.
    PERFORM BUILD_LISTHEADER_EKPO USING IT_LISTHEADER.
    PERFORM DISPLAY_ALV_EKPO.
    ENDCASE.
    ENDFORM. "user_command
    *& Form BUILD_FIELDCATLOG_EKPO
    text
    FORM BUILD_FIELDCATLOG_EKPO.
    WA_FIELDCAT-TABNAME = 'IT_EKPO'.
    WA_FIELDCAT-FIELDNAME = 'EBELN'.
    WA_FIELDCAT-SELTEXT_M = 'PO NO.'.
    APPEND WA_FIELDCAT TO I_FIELDCAT.
    CLEAR WA_FIELDCAT.
    WA_FIELDCAT-TABNAME = 'IT_EKPO'.
    WA_FIELDCAT-FIELDNAME = 'EBELP'.
    WA_FIELDCAT-SELTEXT_M = 'LINE NO'.
    APPEND WA_FIELDCAT TO I_FIELDCAT.
    CLEAR WA_FIELDCAT.
    WA_FIELDCAT-TABNAME = 'I_EKPO'.
    WA_FIELDCAT-FIELDNAME = 'MATNR'.
    WA_FIELDCAT-SELTEXT_M = 'MATERIAL NO.'.
    APPEND WA_FIELDCAT TO I_FIELDCAT.
    CLEAR WA_FIELDCAT.
    WA_FIELDCAT-TABNAME = 'I_EKPO'.
    WA_FIELDCAT-FIELDNAME = 'MENGE'.
    WA_FIELDCAT-SELTEXT_M = 'QUANTITY'.
    APPEND WA_FIELDCAT TO I_FIELDCAT.
    CLEAR WA_FIELDCAT.
    WA_FIELDCAT-TABNAME = 'I_EKPO'.
    WA_FIELDCAT-FIELDNAME = 'MEINS'.
    WA_FIELDCAT-SELTEXT_M = 'UOM'.
    APPEND WA_FIELDCAT TO I_FIELDCAT.
    CLEAR WA_FIELDCAT.
    WA_FIELDCAT-TABNAME = 'I_EKPO'.
    WA_FIELDCAT-FIELDNAME = 'NETPR'.
    WA_FIELDCAT-SELTEXT_M = 'PRICE'.
    APPEND WA_FIELDCAT TO I_FIELDCAT.
    CLEAR WA_FIELDCAT.
    ENDFORM. "BUILD_FIELDCATLOG_EKPO
    *& Form event_call_ekpo
    we get all events - TOP OF PAGE or USER COMMAND in table v_events
    FORM EVENT_CALL_EKPO.
    CALL FUNCTION 'REUSE_ALV_EVENTS_GET'
    EXPORTING
    I_LIST_TYPE = 0
    IMPORTING
    ET_EVENTS = V_EVENTS
    EXCEPTIONS
    LIST_TYPE_WRONG = 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.
    ENDFORM. "event_call_ekpo
    *& Form POPULATE_EVENT
    Events populated for TOP OF PAGE & USER COMAND
    FORM POPULATE_EVENT_EKPO.
    READ TABLE V_EVENTS INTO WA_EVENT WITH KEY NAME = 'TOP_OF_PAGE'.
    IF SY-SUBRC EQ 0.
    WA_EVENT-FORM = 'TOP_OF_PAGE'.
    MODIFY V_EVENTS FROM WA_EVENT TRANSPORTING FORM WHERE NAME =
    WA_EVENT-FORM.
    ENDIF.
    ENDFORM. "POPULATE_EVENT
    *& Form TOP_OF_PAGE
    text
    FORM F_TOP_OF_PAGE.
    CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
    EXPORTING
    IT_LIST_COMMENTARY = IT_LISTHEADER
    i_logo =
    I_END_OF_LIST_GRID =
    ENDFORM. "TOP_OF_PAGE
    *& Form USER_COMMAND
    text
    -->R_UCOMM text
    -->, text
    -->RS_SLEFIELDtext
    *retreiving values from the database table ekko
    FORM DATA_RETRIEVAL_EKPO.
    SELECT EBELN EBELP MATNR MENGE MEINS NETPR FROM EKPO INTO TABLE IT_EKPO.
    ENDFORM.
    FORM BUILD_LISTHEADER_EKPO USING I_LISTHEADER TYPE SLIS_T_LISTHEADER.
    DATA: HLINE1 TYPE SLIS_LISTHEADER.
    HLINE1-TYP = 'H'.
    HLINE1-INFO = 'CHECKING PGM'.
    ENDFORM.
    FORM DISPLAY_ALV_EKPO.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
    I_INTERFACE_CHECK = ' '
    I_BYPASSING_BUFFER = ' '
    I_BUFFER_ACTIVE = ' '
    I_CALLBACK_PROGRAM = V_REPID
    I_CALLBACK_PF_STATUS_SET = ' '
    I_CALLBACK_USER_COMMAND = 'F_USER_COMMAND'
    I_CALLBACK_TOP_OF_PAGE = 'TOP_OF_PAGE'
    I_CALLBACK_HTML_TOP_OF_PAGE = ' '
    I_CALLBACK_HTML_END_OF_LIST = ' '
    I_STRUCTURE_NAME =
    I_BACKGROUND_ID = ' '
    I_GRID_TITLE = I_TITLE_EKPO
    I_GRID_SETTINGS =
    IS_LAYOUT =
    IT_FIELDCAT = I_FIELDCAT[]
    IT_EXCLUDING =
    IT_SPECIAL_GROUPS =
    IT_SORT =
    IT_FILTER =
    IS_SEL_HIDE =
    I_DEFAULT =
    I_SAVE = 'A'
    IS_VARIANT =
    IT_EVENTS = V_EVENTS
    TABLES
    T_OUTTAB = IT_EKPO
    EXCEPTIONS
    PROGRAM_ERROR = 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.
    ENDFORM.
    regards
    aswin

  • Inter Company Reports

    I am looking for an SAP standard report that will show IC receovable and Payables between multiple companies. I will then use this information for external consolidation purposes.

    Hi,
          Thanks for the response. However, this question is not related to the Fixed Asset issue, which has already been resolved.
    Basically, we have two companies that are buying and selling between each other. One of the companies is a subsidery of the other. So, the parent(x) can sell or buy from it's sub(Y) and visa versa. At the end of the period, we need to consolidate both companies for reporting purposes, therefore there will be elimination entries which should be identified.
    I need an SAP standard report to show these transactions which might still be sitting on each other books unsold.
    Thanks

  • Finding problem when displaying a Interative list report

    Hi All,
        I have a req where i have to display some records in my detail list after clicking on the primary list.
        On th basis list i have a user command 'A' and some of records are being displayed on my screen.
        Here i have to click on any one of the available checkbox and press the user command A.
        Then some details are displayed in secondary list when i click back on the BACK button the checkbox which i have checked must be cleared.
      But that is not happening in my program.
      I tried using clear and refresh statements but it is not clearing my checkbox.
      Kindly let me know how to clear the checkbox .
    Thanks and Regards,
    Yamini.A

    Hi Yamini,
    1. I understood ur problem and i could do at my end.
    By simple means, we cannot achive that :
    We have to use our own PF Status
    In this pf-status, do not use std code BACK
    2. Try what i have done :
       a) new z program (code as given below)
       b) in this program, create new pf-status ABCD
       c) Add Two Buttons/Icon in this PF Status
          (In App Toolbar)
       d) SHOWDE , GOBACK.
       e) Activate GUI Status, and the program
       f) Now run  the program (it will do what u want)
    3.
    REPORT abc.
    DATA : ck TYPE c.
    DATA : flag TYPE c.
    PARAMETERS : a TYPE c.
    START-OF-SELECTION.
      SET PF-STATUS 'ABCD'.
      PERFORM basiclist.
    FORM basiclist.
      sy-lsind = 0.
      flag = ''.
      WRITE :/ ck AS CHECKBOX , 'Basic List'.
    ENDFORM.                    "basiclist
    FORM detaillist.
      flag = 'X'.
      WRITE :/  'Detail List'.
      WRITE :/  'Detail List'.
    ENDFORM.                    "detaillist
    AT USER-COMMAND.
      IF sy-ucomm = 'SHOWDE'.
        PERFORM detaillist.
      ENDIF.
      IF sy-ucomm = 'GOBACK'.
        IF flag = ''. "BASIC LIST
          LEAVE LIST-PROCESSING.
        ENDIF.
        IF flag = 'X'. "DETAIL LIST
          PERFORM basiclist.
        ENDIF.
      ENDIF.

  • Report program when run in background job getting cancelled immediately

    Hi
    When i run a program in foreground i am able to see the output. But when run in background not able to run the job successfully. The job is getting cancelled immediately.
    I am using the below function module for output display. Should i need to pass any parameters in the below function module so that i can run the program in background  successfully.
      CALL METHOD DETAIL_GRID->SET_TABLE_FOR_FIRST_DISPLAY     
          EXPORTING                                            
            IS_LAYOUT         = IS_LAYOUT                    
            I_SAVE            = 'A'                        
            IS_VARIANT        = GS_VARIANT                   
          CHANGING                                           
            IT_FIELDCATALOG   = IT_FIELDCATALOG               
            IT_OUTTAB         = BLOCKED_STOCK_TAB_ALV[].     
    Please suggest.
    Thanks and regards
    Rajani Yeluri

    Hi Rajani.
      ALV require the DRYPOR(screen) for display but incase you run in back ground which have to write to spool but in spool we can only write in format of LIST REPORT not inter-active report like ALV. That why
    system cancelled your process immediately.
    Hope it helps.
    Sayan.

  • Interactive Report Column Heading Filters using LIKE instead of =

    Still on APEX 3.1
    I have an inter active report with a column Like Below
    select case when trunc(c.resp_contact_dt, 'MM') = trunc(sysdate, 'MM') or trunc(c.oth_contact_dt, 'MM') = trunc(sysdate, 'MM') then '<img src="/i/contact_2_green.png" alt="RESP A: ' || to_char(c.resp_attempt_dt, 'MM/DD/YYYY') || ' C:' || to_char(c.resp_contact_dt, 'MM/DD/YYYY') ||'
    ' || 'OTH A: ' || to_char(c.oth_attempt_dt, 'MM/DD/YYYY') || ' C:' || to_char(c.oth_contact_dt, 'MM/DD/YYYY') || '">'
    when trunc(c.resp_attempt_dt, 'MM') = trunc(sysdate, 'MM') or trunc(c.oth_attempt_dt, 'MM') = trunc(sysdate, 'MM') then '<img src="/i/contact_2_yellow.png" alt="RESP A: ' || to_char(c.resp_attempt_dt, 'MM/DD/YYYY') || ' C:' || to_char(c.resp_contact_dt, 'MM/DD/YYYY') ||'
    ' || 'OTH A: ' || to_char(c.oth_attempt_dt, 'MM/DD/YYYY') || ' C:' || to_char(c.oth_contact_dt, 'MM/DD/YYYY') || '">'
    else '<img src="/i/contact_1_red.png" alt="RESP A: ' || to_char(c.resp_attempt_dt, 'MM/DD/YYYY') || ' C:' || to_char(c.resp_contact_dt, 'MM/DD/YYYY') ||'
    ' || 'OTH A: ' || to_char(c.oth_attempt_dt, 'MM/DD/YYYY') || ' C:' || to_char(c.oth_contact_dt, 'MM/DD/YYYY') || '">' end as Contact,
    This column header has an User defined LOV
    select '%green%' d,
    '<img src="/i/contact_2_green.png">' r from dual
    Union select '%red%' d,
    '<img src="/i/contact_1_red.png">' r from dual
    union select '%yellow%' d,
    '<img src="/i/contact_2_yellow.png">' r from dual
    When user select my Red image from the column header link
    the filter generates where contact = '%red%' This fails
    Is there a way to generate the filter contact like '%red%' without the user having to change it to like.
    Is this possible in 4.0?

    I am assuming Because of the crickets either I am doing my SQL to incorrectly and there is a better way to return get a popup with a changing image into an interactive report
    or
    There is no way to do what I am trying

  • Crystal report of label size is not printing correctly

    Hi,
    we have interated  crystal report CR4E version with our application and facing 2 issue when i am generating crystal reports from application.
    we are  having a crystal report designed for label size. 
    1.
    While generate the report from application with output as a pdf browser and print to label printer (DYMO Label Writer 400) all the records(for example:7) are getting printed in a single label .
    when the same report is generated from crystal report software and print to label printer (DYMO prinetr 400) all the records (For example:7 records) it is printing  each record per page (for example :7 pages).
    2.
    When i am generating crystal report of label size from my application and  getting the binary data . When  i am sending this binary data to a label printer(DYMO Label writer 400) i am getting an exception "printer's imageable width is too small".
    i am using CR4E crystal report version and java 1.5 verison.The paper size of the label printer (DYMO label Writer 400)" 30252 Address"
    can any one please help me on this issues.
    Advacne thanks
    Rajesh

    Hi Aasavari Bhave,
    Thanks for your Quick Reply.
    <<Also, when you see the report exported as PDF in the browser, are you seeing all records\labels on 1 page or are they separated across several pages just like in CR Designer>>
    when i export the report all the records are seperated across several pages. i am using adobe print to print the report.
    <<How are you printing the report, using Adpbe print or printoutputcontroller.printreport?>>
    I am printing the report using  in 2 different ways.
    1. Using adobe print
    I have designed the label report for 1.1 height and 3.5 width  in crystal report designer. but when i generate the report with pdf browser as output the report height and width are 11.0 height and 8.50 width.
    2. Using printoutputcontroller
    I am printing the report directly from the application using printoutput controller . when i print using print output controller i am getting an exception "printer's imageable width is too small".
    My application is developed in java. Please help me to display this report in my application as per the page size I mentioned and also how can i avoid the exception  "printer's imageable width is too small".

  • Issue with reporting and additional question

    Hello,
    1st Question:
    I have ran into an issue with the interal server reporting.
    If the file is published as an html file, then the reporting works as intended
    (Able to see with Quiz Analyzer due to it creating an xml file in the appropriate folder)
    However, if I publish the file as a swf file, the reporting does not seem to be working at all.
    Does this mean that swf reporting is not supported with the internal server? or?
    2nd Question
    When reporting likert, as expected the quiz analyzer makes it so that we have go into each individual person to see their inputs.
    With that I am able to export it as an excel file for each individual person.
    However, is there a way to mass export all the individual responses as 1 excel file with the quiz analyzer?
    (Would it be better using Adobe Connect for reporting, or other lms systems?)
    Thank you so much for your help!

    Hi,
    Quick thigh when you get an error stating "unknown error" means something wrong with your server internal post result php or some cross domain issue. It will be great if you can send us the project for analysis. Please send your project on [email protected]
    Will analyze your issue and will get back to you, also I insist if you can provide few steps you opted while setting internal server reporting and the internal server on some machine. This will be very helpful to trace the issue.
    Regards
    Shriyansh
    Adobe Engineering Team

  • JRC JSR 168 portlet integration

    <p>Hi,</p><p>I am planning a BI report dashboard portal.</p><p>Does/will JRC offer portlet interation for report viewing?</p><p>Thanks.</p><p>Nathaniel.</p>

    <p>Hi, I am trying to do the same thing with a crystal report. But the "getHtmlContent" and the "processHTTPRequest" do the same thing, except one returns the actual html of the generated page. I get a null pointer exception in both methods and the exception trace shows the same origination point. </p><p>u00C2 Are there any other ways I can get the generated HTML? The BO Crystal stuff is looking for servletcontext - and thats just not there. </p><p>EXCEPTION BELOW:</p><font size="2" color="#0000ff"><p>java.lang.NullPointerException</p><p>at com.crystaldecisions.report.web.viewer.JSPViewerRequest.getRequestURL(Unknown Source)</p><p>at com.crystaldecisions.report.web.CrystalCommandBuilder.<init>(Unknown Source)</p><p>at com.crystaldecisions.report.web.component.o.a(Unknown Source)</p><p>at com.crystaldecisions.report.web.WorkflowController.case(Unknown Source)</p><p>at com.crystaldecisions.report.web.WorkflowController.doLifecycle(Unknown Source)</p><p>at com.crystaldecisions.report.web.ServerControl.a(Unknown Source)</p><p>at com.crystaldecisions.report.web.ServerControl.getHtmlContent(Unknown Source)</p></font>

  • JHeadstart and Intermediate Tables

    Howdy y'all,
    Here's the situation:
    I'm using Oracle JDeveloper with JHeadstart (Latest versions for 9i). I'm using the Struts/UIX option for building the web pages. I have three tables that are inter-related:
    REPORT: Maintains reports written by Inspectors (PK: REPORTID).
    INSPECTOR: Maintains ID information of Inspectors (PK: INSPECTORID).
    Many Reports are written/updated by one Inspector.
    Many Inspectors write on one report.
    This creates a many-to-many relationship. To fix this problem, I have an Intermediate Table called REPORT_INSPECTOR with a composite primary key composed of REPORTID and INSPECTORID. Both PKs are Foreign Keys in the intermediate table also.
    Now, here's the BIG question: How do I make that table a tabbed web page through JHeadstart? I want the inspectors to be able to select from a pull-down menu a list of inspectors to choose from. The REPORTID should be passed to the web page and just wait for an INSPECTORID to insert into the intermediate table. I'm thinking of using a table-form format for the tabbed page.
    Thanks in advance for any help/insight offered!
    Tracy-Paul Warrington

    Bump back to top.

  • SAP standard report to show Inter Company transactions

    Basically, we have two companies that are buying and selling between each other. One of the companies is a subsidery of the other. So, the parent(x) can sell or buy from it's sub(Y) and visa versa. At the end of the period, we need to consolidate both companies for reporting purposes, therefore there will be elimination entries which should be identified.
    I need an SAP standard report to show these transactions which might still be sitting on each other books unsold

    Dear :
                   We are using ECC 6 SAP version and we have the t code FBU3  for displaying all inter company transactions. Have you done necessary configuration in OBYF. You can display all related inter company transactions through FBU3.
    Your 2nd query corresponds to same credit control area that was assigned to two company codes. In order extend credit limit for a customer who is extended on two company codes which have same credit area. It is not possible you distinguish credit limit for a customer who is extended on two company codes having same credit control areas. CCA is defined at organization structure level and for the distinction you will have to define new credit control area in customization at
    enterprise level i-e
    Enterprise Structure.... Definition.... Financial accounting....define credit control area
    Assignment.....Assign credit control area to co code
    Do necessary customization for SD module
    and then in credit management for AR you will have to assign the credit control area to company codes i-e
    Account Recv/A/c Payable.....Credit Management.... Assign permitted CCA to Co code
    . This is the only way to to segregate customer credit limit for two company codes. Please revert in case of any confusion.
    Regards

  • Segment Reporting.... What happens to Inter Company Transactions

    I have 2 simple questions, please help me if you know the answers:
    1. Inter Company: When we report at Segment Level (ECC 6.0) how do we eliminate Intercompany sales for company codes belonging to same segment. Is there a standard program to do this.
    2. Inter Segment: Are there any standard reports for Inter Segment.
    Please do share you experiences with Inter Company and Inter Segment scenarios and reporting.
    Thanks

    The problem is you need to create  COMPANY and assign the same to both company codes in OBY6.
    The following information must be useful.
    You can post the cross company code postings even between two controlling areas. The system does not prevent to post documents between two company codes in two controlling area. Need not necessarily they should be under one operating concern. Provided you have to make sure that you have followed the following points:
    In OBY6 - To company codes must be assigned to same Company, meaning that you mus thave created a Company and that company must have been assigned to these two company codes.
    OBYA - You should maintain the clearing accounts in both the company codes. Meaning that you are posting one leg in one company code and the other leg in the other company. Therefore, it is required to have the missing legs in each company code.
    Company Code1 - Posting Key 40 - Clearing Account
    Company Code1 - Posting Key 50 - Clearing Account
    Company Code2 - Positng Key 40 - Clearing Account
    Company Code2 - Posting Key 50 - Clearing Account
    OB08 - In case if the two company codes have different local (company code) currencies, you may maintain the exchange rates.
    You can now go to F-02 and post a cross company code transaction giving the first leg in first company code and the second leg in second company code. Missing leg in the first company code will be posted to the GL Account mentioned in OBYA and the missing leg in the second company code will be posted to the GL Account mentioned in OBYA. That means you will have four line items overall.
    The system will post three document.
    Document 1 in First Company Code
    Document 2 in Second Company Code
    and
    Document3 - Cross Company Code Document.
    The cross company code document consists of the first company code document number plus company code plus last two digits of the fiscal year.
    Hope this must have clarified your doubts.
    Please let me know in case if you need further details.
    Thanks,
    Ravi

  • Inter-SLR compensation in Synthesis Timing Report

    2015.1 targetting xcku115
    The timing report out of synthesis is showing huge intra-clock hold time violations of up to -1.406 ns, 500,000 failing endpoints. These errors show for pretty much all clock domains, both fast and slow clocks. 
    'View path report' shows inter-SLR compensation on these failing nets. Why does Synthesis assume these nets will all be crossing between die? The current netlist fits nicely all into single die with all the IOs. I have a pblock constraining everything to one die and the timing report mentions that pblock too.
    Are there any directives to use that can guide synthesis better in this scenario?
    -bisector

    Inter-SLR Compensation (inter-SLR penalty) is applied to compensate for any possible PVT differences between SLRs in SSI devices.
    A simple rule is that if either the clock paths or data path crosses the interposer, the path should be penalized,
    except for some special clocking scenarios (e.g. clock is common to the same SLR).
    In this example, the data path goes out of the SLR and then comes back.
    Therefore, Inter-SLR Compensation is applied even though the source and destination are in the same SLR.

  • Inter Project Dependency Reporting - Options

    Hello,
    A client I'm working for has requested the ability to see inter-project dependencies across a group of projects (e.g. Program or Portfolio grouping) with a critical path visible throughout, allowing the user to see where a critical path existing across multiple
    projects.
    Is this possible without having to 'daisy chain' projects via the Subprojects button, or via a custom SSRS report?  This is key functionality and we come across this deficiency on every client engagement.
    Environment:  EPM 2013
    Thanks in advance.
    Nock

    Hi Nock,
    I'd suggest you to insert your sub-projects into a master project. By default, each inserted project is calculated like summary task:
    Thus calculating the critical path on your master project with this option checked will give you the overall critical path.
    Critical path means depedencies between tasks thus I believe you have to go through using sub-projects and links.
    Hope this helps,
    Guillaume Rouyre, MBA, MVP, P-Seller |

  • Crystal Report Interation Addon Error

    Hi Experts ,
    I have successfully installed Crystal Report Integration addon on SAP B1 2007 (patch 0) . But as and when I try to connect or start this , an error gets displayed
    " External Connection to the d/b failed . SAP Crystal addon may not function properly . Please rerun the account setup with superuser login. "  .
    Iam not able to understand and troubleshoot this error .
    please help me in this regard and also provide me points of how this addon works and how do we integrate the crystal reports with this addon.
    Thanks in advace.

    Hi Pooja,
    Browse through the Administration menu. There is a submenu on with you must setup the CrystalReports Integration Addon, and one of the definitions is the DB username and password.
    Regards,
    Vítor Vieira

Maybe you are looking for

  • How to display document from external archive via archivelink?

    Hi, I would like to display in SAP (via ArchiveLink) scanned document which was stored in an external archive (FileNet). The archive system is connected to SAP via ArchiveLink. However the scanned document isn't stored in the archive system via SAP s

  • ICal error message "HTTP/1.1 403 Forbidden" but still syncing via mobileme.

    here is the screenshot ......http://gallery.me.com/joyseeker/100217/Screen-20shot-202010-07-15-20at-2011-59-4 5/web.jpg?ver=12791918490001 My problem must have started last week when I did a restore on the iPhone to see if its speed would improve. I

  • Third party sale order qty issue

    Hi, While creating third party sales order: PR has been created for 20 items automaticallyu2026u2026 Now I have created PO w.r.t. PR for 8 qtyu2026. I did GR for 4 qty and done invoice for the sameu2026 Now when I am trying to create PO again wrt PR

  • Opening the same file in by different users

    As a newbie to InDesign I got a workflow question. Working with a team of 6 designers, we would like all to work in the same InDesign document. We need to create a big salebooks book, therefore it is necessary to open the same file in different copy

  • How to create tabbed interface

    Does anyone know in depth turotials how to create a tabbed interface without loading the whole page every time I click on different tab? here is the example from adobe website. You will see the second tab table where you don't see to reload the page