Print bps function log

hi gurus!
i m workin about call a bps function since a transaction, so far so good; but before call bps function i do some abap actions and i save the log (for every action) in order to print (to the user) the number of read , new or changed registers ( I use this varaible for that:
DATA: g_t_logmsg     TYPE TABLE OF bal_s_msg
What I need to do is to show the log of the bps function the same way the other, but bps function triggers its log on a "it_return" variable
      it_return TYPE TABLE OF bapiret2 WITH HEADER LINE.
so how can i CAST " it_return " to be appened to " g_t_logmsg " in order to print the all log complete?
Regards
Joseph

Hi,
You need to loop the internal table [array] it_return, and appended it into internal table [array] g_t_logmsg.
Do something like:
data: wa_bal_s_msg type bal_s_msg.
loop at it_return.
  wa_bal_s_msg-MSGTY = it_return-BAPI_MTYPE.
  wa_bal_s_msg-MSGID = it_return-ID.
do the rest for the other component
  append wa_bal_s_msg to gt tlogmsg.
endloop.
Regards,
Lim...

Similar Messages

  • Printing messages in Log File and Output File using Dbms_output.put_line

    Hi,
    I have a requirement of printing messages in log file and output file using dbms_output.put_line instead of fnd_file.put_line API.
    Please let me know how can I achieve this.
    I tried using a function to print messages and calling that function in my main package where ever there is fnd_file.put_line. But this approach is not required by the business.
    So let me know how I can achieve this functionality.
    Regards
    Sandy

    What is the requirement that doesn't allow you using fnd_file.put_line?
    Please see the following links.
    https://forums.oracle.com/forums/search.jspa?threadID=&q=Dbms_output.put_line+AND+Log+AND+messages&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    https://forums.oracle.com/forums/search.jspa?threadID=&q=%22dbms_output.put_line+%22+AND+concurrent&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Thanks,
    Hussein

  • Perform BPS functions on the background

    Is there way to perform BPS functions (Fox Formula or User Exit type of function) on the background? In this case putting all the functions in a Global Planning Sequence.
    I have the request to load data to the BPS cube and perform BPS function during the weekend in a way that on Monday morning I'll have the users to check on the data already calculated? What's the procedure?
    Thank you.
    Heverton

    Hi Heverton,
    Yes, we have executed planning sequences in the background to copy and calculate data using scheduled background jobs. As a future reference, you may use the following steps to schedule a background job:
    Transaction SM36 (Define Background Job) - enter a job name and click on Start Condition.
    Click on 'Date/Time' button and enter the scheduled start date and time to run the job.
    Click 'Period values' button and select the period in question. Click 'Save' button.
    On the Define Background Job screen, click on (foot) 'Step'.
    Click on 'ABAP program' and enter 'UPC_BUNDLE_EXECUTE' in the 'Name' field. Select the appropriate variant in the 'Variant' field. Click 'Save'.
    Note: to schedule more than one variant in one job, click (foot) 'Step' and from 'Step List Overview' screen click 'Create' and repeat steps to select and save variant.
    Click 'Save'. System display message 'Job <name> saved with status: Released'
    You can monitor the background job using transaction BPS0, select 'Global planning sequences' and then 'Logs' button. Enter date/time/user, which matches the timeframe when job was executed. Click 'Execute' and verify the job log.
    Hope this helps.
    Kind regards,
    Cassio

  • How do we print the error logs

    hi friends , i want to print the error log file of a bdc session method ,can any one sugest me a answer

    Check out this Sample Program
    *& Report                                             *
    *& This program is to transfer data from flat file to transaction 'FD01'
    REPORT  zgopi_report
    NO STANDARD PAGE HEADING
                            LINE-SIZE 255
                            MESSAGE-ID ZRASH.
    *                 Internal Table Declarations                          *
    *--Internal Table for Data Uploading.
    DATA : BEGIN OF IT_FFCUST OCCURS 0,
             KUNNR(10),
             BUKRS(4),
             KTOKD(4),
             ANRED(15),
             NAME1(35),
             SORTL(10),
             STRAS(35),
             ORT01(35),
             PSTLZ(10),
             LAND1(3),
             SPRAS(2),
             AKONT(10),
           END OF IT_FFCUST.
    *--Internal Table to Store Error Records.
    DATA : BEGIN OF IT_ERRCUST OCCURS 0,
             KUNNR(10),
             EMSG(255),
           END OF IT_ERRCUST.
    *--Internal Table to Store Successful Records.
    DATA : BEGIN OF IT_SUCCUST OCCURS 0,
             KUNNR(10),
             SMSG(255),
           END OF IT_SUCCUST.
    *--Internal Table for Storing the BDC data.
    DATA : IT_CUSTBDC LIKE BDCDATA OCCURS 0 WITH HEADER LINE.
    *--Internal Table for storing the messages.
    DATA : IT_CUSTMSG LIKE BDCMSGCOLL OCCURS 0 WITH HEADER LINE.
    DATA : V_FLAG1(1) VALUE ' ',
    "Flag used for opening session.
           V_TLINES LIKE SY-TABIX,
           "For storing total records processed.
           V_ELINES LIKE SY-TABIX,
           "For storing the no of error records.
           V_SLINES LIKE SY-TABIX.
           "For storing the no of success records.
    *          Selection screen                                            *
    SELECTION-SCREEN BEGIN OF BLOCK B1.
    PARAMETERS : V_FNAME LIKE RLGRAP-FILENAME,
                 V_SESNAM  LIKE RLGRAP-FILENAME.
    SELECTION-SCREEN END OF BLOCK B1.
    *          Start-of-selection                                          *
    START-OF-SELECTION.
    *-- Form to upload flatfile data into the internal table.
      PERFORM FORM_UPLOADFF.
    *        TOP-OF-PAGE                                                   *
    TOP-OF-PAGE.
      WRITE:/ 'Details of the error and success records for the transaction'
      ULINE.
      SKIP.
    *          End of Selection                                            *
    END-OF-SELECTION.
    *-- Form to Generate a BDC from the Uploaded Internal table
      PERFORM FORM_BDCGENERATE.
    *--To write the totals and the session name.
      PERFORM FORM_WRITEOP.
    *&      Form  form_uploadff
    *     Form to upload flatfile data into the internal table.
    FORM FORM_UPLOADFF .
    *--Variable to change the type of the parameter file name.
      DATA : LV_FILE TYPE STRING.
      LV_FILE = V_FNAME.
    *--Function to upload the flat file to the internal table.
      CALL FUNCTION 'GUI_UPLOAD'
        EXPORTING
          FILENAME                      =  LV_FILE
    *     FILETYPE                      = 'ASC'
          HAS_FIELD_SEPARATOR           = 'X'
    *     HEADER_LENGTH                 = 0
    *     READ_BY_LINE                  = 'X'
    *     DAT_MODE                      = ' '
    *   IMPORTING
    *     FILELENGTH                    =
    *     HEADER                        =
        TABLES
          DATA_TAB                      = IT_FFCUST
        EXCEPTIONS
          FILE_OPEN_ERROR               = 1
          FILE_READ_ERROR               = 2
          NO_BATCH                      = 3
          GUI_REFUSE_FILETRANSFER       = 4
          INVALID_TYPE                  = 5
          NO_AUTHORITY                  = 6
          UNKNOWN_ERROR                 = 7
          BAD_DATA_FORMAT               = 8
          HEADER_NOT_ALLOWED            = 9
          SEPARATOR_NOT_ALLOWED         = 10
          HEADER_TOO_LONG               = 11
          UNKNOWN_DP_ERROR              = 12
          ACCESS_DENIED                 = 13
          DP_OUT_OF_MEMORY              = 14
          DISK_FULL                     = 15
          DP_TIMEOUT                    = 16
          OTHERS                        = 17
      IF SY-SUBRC = 0.
    *--Deleting the headings from the internal table.
        DELETE IT_FFCUST INDEX 1.
    *--Getting the total number of records uploaded.
        DESCRIBE TABLE IT_FFCUST LINES V_TLINES.
      ENDIF.
    ENDFORM.                    " form_uploadff
    *&      Form  Form_bdcgenerate
    *     Form to Generate a BDC from the Uploaded Internal table
    FORM FORM_BDCGENERATE .
    *--Generating the BDC table for the fields of the internal table.
      LOOP AT IT_FFCUST.
        PERFORM POPULATEBDC USING :
                                    'X' 'SAPMF02D' '0105',
                                    ' ' 'BDC_OKCODE'  '/00' ,
                                    ' ' 'RF02D-KUNNR' IT_FFCUST-KUNNR,
                                    ' ' 'RF02D-BUKRS' IT_FFCUST-BUKRS,
                                    ' ' 'RF02D-KTOKD' IT_FFCUST-KTOKD,
                                    'X' 'SAPMF02D' '0110' ,
                                    ' ' 'BDC_OKCODE'  '/00',
                                    ' ' 'KNA1-ANRED'  IT_FFCUST-ANRED,
                                    ' ' 'KNA1-NAME1' IT_FFCUST-NAME1,
                                    ' ' 'KNA1-SORTL'  IT_FFCUST-SORTL,
                                    ' ' 'KNA1-STRAS' IT_FFCUST-STRAS,
                                    ' ' 'KNA1-ORT01' IT_FFCUST-ORT01,
                                    ' ' 'KNA1-PSTLZ' IT_FFCUST-PSTLZ,
                                    ' ' 'KNA1-LAND1' IT_FFCUST-LAND1,
                                    ' ' 'KNA1-SPRAS' IT_FFCUST-SPRAS,
                                    'X' 'SAPMFO2D' '0120',     
                                    ' ' 'BDC_OKCODE'  '/00',
                                    'X' 'SAPMF02D' '0125',     
                                    ' ' 'BDC_OKCODE'  '/00',
                                    'X' 'SAPMF02D' '0130',     
                                    ' ' 'BDC_OKCODE'  '=ENTR',
                                    'X' 'SAPMF02D' '0340',     
                                    ' ' 'BDC_OKCODE'  '=ENTR',
                                    'X' 'SAPMF02D' '0360',
                                    ' ' 'BDC_OKCODE'  '=ENTR',
                                    'X' 'SAPMF02D' '0210',     
                                    ' ' 'KNB1-AKONT'  IT_FFCUST-AKONT,
                                    ' ' 'BDC_OKCODE'  '/00',
                                    'X' 'SAPMF02D' '0215',
                                    ' ' 'BDC_OKCODE'  '/00',
                                    'X' 'SAPMF02D' '0220',     
                                    ' ' 'BDC_OKCODE'  '/00',
                                    'X' 'SAPMF02D' '0230',     
                                    ' ' 'BDC_OKCODE'  '=UPDA'.
    *--Calling the transaction 'fd01'.
        CALL TRANSACTION 'FD01' USING IT_CUSTBDC MODE 'N' UPDATE 'S'
        MESSAGES INTO IT_CUSTMSG.
        IF SY-SUBRC <> 0.
    *--Populating the error records internal table.
          IT_ERRCUST-KUNNR = IT_FFCUST-KUNNR.
          APPEND IT_ERRCUST.
          CLEAR IT_ERRCUST.
    *--Opening a session if there is an error record.
          IF V_FLAG1 = ' '.
            PERFORM FORM_OPENSESSION.
            V_FLAG1 = 'X'.
          ENDIF.
    *--Inserting the error records into already open session.
          IF V_FLAG1 = 'X'.
            PERFORM FORM_INSERT.
          ENDIF.
    *--Populating the Success records internal table.
        ELSE.
          IT_SUCCUST-KUNNR = IT_FFCUST-KUNNR.
          APPEND IT_SUCCUST.
          CLEAR IT_SUCCUST.
        ENDIF.
    *--Displaying the messages.
        IF NOT IT_CUSTMSG[] IS INITIAL.
          PERFORM FORM_FORMATMSG.
        ENDIF.
    *--Clearing the message and bdc tables.
        CLEAR : IT_CUSTBDC[],IT_CUSTMSG[].
      ENDLOOP.
    *--Getting the total no of error records.
      DESCRIBE TABLE IT_ERRCUST LINES V_ELINES.
    *--Getting the total no of successful records.
      DESCRIBE TABLE IT_SUCCUST LINES V_SLINES.
    *--Closing the session only if it is open.
      IF V_FLAG1 = 'X'.
        PERFORM FORM_CLOSESESS.
      ENDIF.
    ENDFORM.                    " Form_bdcgenerate
    *&      Form  populatebdc
    *       FOrm to Populate the BDC table.
    FORM POPULATEBDC  USING    VALUE(P_0178)
                               VALUE(P_0179)
                               VALUE(P_0180).
      IF P_0178 = 'X'.
        IT_CUSTBDC-PROGRAM = P_0179.
        IT_CUSTBDC-DYNPRO = P_0180.
        IT_CUSTBDC-DYNBEGIN = 'X'.
      ELSE.
        IT_CUSTBDC-FNAM = P_0179.
        IT_CUSTBDC-FVAL = P_0180.
      ENDIF.
      APPEND IT_CUSTBDC.
      CLEAR IT_CUSTBDC.
    ENDFORM.                    " populatebdc
    *&      Form  FORM_OPENSESSION
    *       Form to Open a session.
    FORM FORM_OPENSESSION .
    *--Variable to convert the given session name into reqd type.
      DATA : LV_SESNAM(12).
      LV_SESNAM = V_SESNAM.
    *--Opening a session.
      CALL FUNCTION 'BDC_OPEN_GROUP'
       EXPORTING
         CLIENT                    = SY-MANDT
         GROUP                     = LV_SESNAM
         HOLDDATE                  = '20040805'
         KEEP                      = 'X'
         USER                      = SY-UNAME
         PROG                      = SY-CPROG
    *  IMPORTING
    *    QID                       =
       EXCEPTIONS
         CLIENT_INVALID            = 1
         DESTINATION_INVALID       = 2
         GROUP_INVALID             = 3
         GROUP_IS_LOCKED           = 4
         HOLDDATE_INVALID          = 5
         INTERNAL_ERROR            = 6
         QUEUE_ERROR               = 7
         RUNNING                   = 8
         SYSTEM_LOCK_ERROR         = 9
         USER_INVALID              = 10
         OTHERS                    = 11
      IF SY-SUBRC <> 0.
        WRITE :/ 'Session not open'.
      ENDIF.
    ENDFORM.                    " FORM_OPENSESSION
    *&      Form  FORM_INSERT
    *       fORM TO INSERT ERROR RECOED INTO A SESSION.
    FORM FORM_INSERT .
    *--Inserting the record into session.
      CALL FUNCTION 'BDC_INSERT'
        EXPORTING
          TCODE                  = 'FD01'
    *     POST_LOCAL             = NOVBLOCAL
    *     PRINTING               = NOPRINT
    *     SIMUBATCH              = ' '
    *     CTUPARAMS              = ' '
        TABLES
          DYNPROTAB              = IT_CUSTBDC
        EXCEPTIONS
          INTERNAL_ERROR         = 1
          NOT_OPEN               = 2
          QUEUE_ERROR            = 3
          TCODE_INVALID          = 4
          PRINTING_INVALID       = 5
          POSTING_INVALID        = 6
          OTHERS                 = 7
      IF SY-SUBRC <> 0.
        WRITE :/ 'Unable to insert the record'.
      ENDIF.
    ENDFORM.                    " FORM_INSERT
    *&      Form  FORM_CLOSESESS
    *       Form to Close the Open Session.
    FORM FORM_CLOSESESS .
      CALL FUNCTION 'BDC_CLOSE_GROUP'
        EXCEPTIONS
          NOT_OPEN    = 1
          QUEUE_ERROR = 2
          OTHERS      = 3.
      IF SY-SUBRC <> 0.
      ENDIF.
    ENDFORM.                    " FORM_CLOSESESS
    *&      Form  FORM_FORMATMSG
    *       Form to format messages.
    FORM FORM_FORMATMSG .
    *--Var to store the formatted msg.
      DATA : LV_MSG(255).
      CALL FUNCTION 'FORMAT_MESSAGE'
        EXPORTING
          ID        = SY-MSGID
          LANG      = SY-LANGU
          NO        = SY-MSGNO
          V1        = SY-MSGV1
          V2        = SY-MSGV2
          V3        = SY-MSGV3
          V4        = SY-MSGV4
        IMPORTING
          MSG       = LV_MSG
        EXCEPTIONS
          NOT_FOUND = 1
          OTHERS    = 2.
      IF SY-SUBRC = 0.
        WRITE :/ LV_MSG.
      ENDIF.
      ULINE.
    ENDFORM.                    " FORM_FORMATMSG
    *&      Form  form_writeop
    *       To write the totals and the session name.
    FORM FORM_WRITEOP .
      WRITE :/ 'Total Records Uploaded :',V_TLINES,
               / 'No of Error Records :',V_ELINES,
               / 'No of Success Records :',V_SLINES,
               / 'Name of the Session :',V_SESNAM.
      ULINE.
    ENDFORM.                    " form_writeop

  • Is it possible to call the Print Quote functionality from Custom ADF page

    Hi,
    We are researching if it is possible to call the Print Quote functionality from the Custom ADF application.
    Goal is to pop up the PDF report upon clicking the Print Quote button on the custom page. Is it possible ?
    Atleast advice on the direction to go forward is appreciated.
    Thanks
    Sai

    Hi ,
    Please check following thread on forum -
    Re: ADF: Calling OAF Page from ADF page
    Check this may also be useful-
    https://blogs.oracle.com/shay/entry/to_adf_or_oaf_or
    I have not tried yet but Steven Chan (Sr. Director OATG) suggest following methodolgy for this-
    https://blogs.oracle.com/stevenChan/entry/appsdatasource_jaas_ebs
    Thanks,
    Ashish

  • How to check if BIA has effect on a BPS function

    Dear Experts,
    As I know BIA can also improve DB read time (data selection) when performing a BPS function. Currently we are using a BIA test installation to see if it will help us. We have some BPS function with long data selection times.
    I know created BIA indexes on all involved real time cubes. By just executing the concerned BPS functions I can see no effect. I now want to check if the BPS functions do access the BIA at all. For queries this is quite easy to check with RSRT.
    So my question is:
    Is there any tool available to check wether BIA is used by a BPS function or not? Some kind of RSRT for BPS.
    Thanks & Regards,
    Ulrich Meier

    Hi Jens,
    Thanks. I tried this. Strange result is that I get no data in that trace when running a BPS function. I do get data when running that trace during execution of a query which runs on the same InfoCubes as the planning function.
    In the meantime I found table RSDDSTATBIAUSE which gets updated each time a InfoProvider is accessed if it has a BIA Index. Here my InfoProviders get a +1 in field BIA_USED when accessing them with the BPS function.
    Furthermore I came across OSS-Note 990000 and installed the latest version of report ZBPPOBPS70 (I already knew that from BW 3.5). Here I found that field 'BW:Used Aggregate' is not populated, although within the coding of ZBPPOBPS70 there is indication that it should either show the used aggregate or BIA Index. The data is read from table RSDDSTATDM field AGGREGATE. There I found entries in AGGREGATE for 'normal' query calls but none for BPS calls.
    With alll that in mind I'm more and more confused...
    Regards,
    Ulrich

  • How to call print Quote functionality in istore

    Hi ,
    We need to call template Print Quote functionality from istore, like print quote template in oracle quoting.
    Thanks,
    lsp .

    Hi,
    We solve that issue by using plsql concurrent programs.
    The plsql will call oracle standard print quote API, then it will generate the the pdf file.
    Tx,

  • OKI C301 laser printer stopped functioning after latest OSX security update

    Hi,
    The printer was functioning perfecty before the update. It is connected to the the router and through Wi-Fi with an iMac and a MacBook Air.
    After updating to 10.9.2 it pops an error message when trying to print anything.
    Here are the first lines of the error message I get:
    Process:         OKIHC004 [25701]
    Path:            /Library/Printers/OKIDATA/Filters/OKIHC004.plugin/Contents/MacOS/OKIHC004
    Identifier:      OKIHC004
    Version:         2.0.0 (2.0.0)
    Code Type:       X86 (Native)
    Parent Process:  cupsd [125]
    Responsible:     cupsd [125]
    User ID:         26
    Date/Time:       2014-03-04 14:27:13.166 +0200
    OS Version:      Mac OS X 10.9.2 (13C64)
    Report Version:  11
    Anonymous UUID:  6DEC289F-2E1E-E102-07E0-4700D1EFC10E
    Sleep/Wake UUID: 1DAA4DED-30EE-41DD-82A3-3539DFA3BC4F
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000
    VM Regions Near 0:
    --> __PAGEZERO             0000000000000000-0000000000001000 [    4K] ---/--- SM=NUL  /Library/Printers/OKIDATA/Filters/OKIHC004.plugin/Contents/MacOS/OKIHC004
        __TEXT                 0000000000001000-0000000000019000 [   96K] r-x/rwx SM=COW  /Library/Printers/OKIDATA/Filters/OKIHC004.plugin/Contents/MacOS/OKIHC004
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.CoreFoundation                0x9bfbad02 CFArrayGetValueAtIndex + 18
    1   com.okidata.print.OKIHC004              0x00003249 IsIP(char const*) + 99
    2   com.okidata.print.OKIHC004              0x00003d02 main + 842
    3   com.okidata.print.OKIHC004              0x00002a4b _start + 209
    4   com.okidata.print.OKIHC004              0x00002979 start + 41
    Thread 1:
    0   libsystem_kernel.dylib                  0x96786046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x93d46dcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib                 0x93d4acce start_wqthread + 30
    Any ideas?

    Thanks for your reply,
    I 've checked that thread.
    It seems that since then, OKI has acknowledged the issue and has instructions on their site
    (which I had followed during setup, so the printer was working until now)
    http://www.okidata.com/mac-mavericks-driver-support
    When removing the OKIHC004.plugin file, I get this message
    You need to install software to use this printer. To install the software, choose Software Update from the Apple menu. If the software for your printer isn’t available in Software Update, contact the manufacturer of your printer.
    Another issue is that on OKI's site, my model is no longer listed when searching for drivers to download!
    http://www.okidata.com/drivers

  • How to print fax call log on hp laserjet pro mfp m375

    There should be a way to print fax call log on hp laserjet pro mfp m375.  Not sure whether to go in "tools", "fax", "settings" or what!  Can somebody please give me instructions ASAP.  Does anybody else find HP's tech support - if your warranty runs out - to be terribly POOR.  I've been trying to get an answer to this question for about an hour which I think HP should at least answer simple questions in hopes that the customer will want to continue buying HP products of which they will purchase warranty plans.  So my next question is > are we supposed to keep a tech support plan on a product for as long as it's in service - 5 years or longer???  The 1st question is VERY important to me if someone would please answer.  The 2nd comment/question is more directed to HP!!!  :-)  Thank you very much!
    NEVERMIND!!!  I finally found the answer to my fax question and got it to print.  As for how long HP expects a customer to pay for warranty plans and why they don't answer SIMPLE questions without them, please answer if you are a representative of HP b/c I'm really disheartened with your service.  Thank you.

    Hi,
    You may print the Fax Activity Log report by following the steps listed under the Print individual fax reports section below:
    http://h20566.www2.hp.com/portal/site/hpsc/template.PAGE/public/kb/docDisplay/?sp4ts.oid=4337652&spf...
    Phone or Chat support are available within the product warranty period or can be extended with a Care Pack or a Service Agreement, the HP websire and the forums are available for out of warranty users.
    You may find amy avaialble support method listed below:
    http://h20566.www2.hp.com/portal/site/hpsc/public/help/contactHP/home/?ac.admitted=1404750921744.876...
    Shlomi
    Say thanks by clicking the Kudos thumb up in the post.
    If my post resolve your problem please mark it as an Accepted Solution

  • Print Screen Function Doesn't Work

    I just purchased a new 15.4" Pavilion laptop (DV5-1235dx) and cannot get the Print Screen function to work.  I've tried everything.  One source tells me to hit ALT and PRTSC at the same time.  Another HP help suggestion says to hit the FN and PRTSC keys.  I get no copy/paste function whatsoever.  I also tried the shift key and PRTSC and it was no dice on that either.  On my laptop...the PRTSC and INSERT key share the same key. 
    A routine function like this should not be this difficult.
    Anybody out there got a suggestion or two about what to try. HP Support has been, frankly, awful.

    Below find two possible answers to your issue on Print Screen.  I hope one or both of these help.
    1. Print Screen
    2. Snip
    Print Screen:
    Which keys one uses to get a screen print does depend on the OS (eg. Vista or Windows 7) and the keyboard hardware.
    Example:  HDX 18T requires a simple keystroke (PrtScn)  for the Active Window and Alt - PrtScn for the Entire Window.
    In the Help file for same is noted the following.  See Below.
    It is somewhat rude that it's not the same for everyone - it is not unknown to be the case.
    Open your help files and look up "print screen" - ask if you need assistance to get to "Help".
    Below find a link to the manuals that I believe are for your laptop / Notebook.  Your answser may be there if you cannot find it on your system's own help files.
    http://h20000.www2.hp.com/bizsupport/TechSupport/D​ocumentIndex.jsp?contentType=SupportManual&lang=en​...
    Help file from an HDX 18T:
    Snip:
    Windows 7 has a "snip" command that one can use to grab any bit of the screen and make it into a .png file.  It's quick, easy, and fast.  Additionally, simple annotations can be added with a "pen" of different colors (circles, and such) to mark the picture as desired.  Brilliant!.  Vista may have this command as well.
    Print the .png file if you need it on paper, embed it in Word, email, whatever...
    Help file on Snip (shown as a "snip png file):
    Good Luck!
    Kind Regards,
    Dragon-Fur

  • How to disable Purchase Order Print Preview function in the Portal

    We wish to expose some purchase order functions in our SAP Portal 7.0. The problem is that when we run any of the purchase order transactions as SAPGUI for HTML, the Print Preview function displays the full purchase order. This means that any user who wishes to short cut processes can display and then print a purchase order before it has been approved if they use the Portal to display the purchase order.
    If the purchase order transaction is run from the normal SAPGUI, the Print Preview function only displays the top of the purchase order and the print function is disabled. Has anyone tackled this problem before and worked out a way of stopping users from using the Print Preview function to display purchase orders in the Portal and then print them?
    Regards,
    Tom Maggs

    hi,
    DATA: w_compop    TYPE ssfcompop.
    w_compop-tdimmed   = ' '.     "Print Immediately control parameter should be empty..
    Then only print preview pop-up will come..
    then call your smartform like this..
    CALL FUNCTION fnam
        EXPORTING
          control_parameters = w_ctrlop
          output_options     = w_compop
              TABLES
          it_vbdkr           = it_tvbdkr[]
          it_vbdpr           = tvbdpr[]
          it_zglentitycode   = it_zglentitycode[].
    regards
    vijay

  • Acrobat 9 bug? - Print Pages function does not print all bookmarked pages

    We use the Bookmark Print Pages function to allow for easy printing of sections of large PDFs. All of the pages that should be printed are bookmarked. The bookmarked pages print correctly in Adobe 8, but not in Adobe 9.
    I have put together a javascript workaround, but would prefer a solution that does not require distributing a file to all users.
    I would appreciate any suggestions on other possible workarounds.
    Here is the bug report I submitted to Adobe:
    Concise problem statement: The "Print Pages" function for bookmarks does not print all bookmarked pages in Adobe Reader 9.0 and 9.1. The same bookmarks print properly in Adobe Reader, Standard, and Pro 8.
    Steps to reproduce bug:
    1. Open the Adobe Acrobat SDK JavaScript for Acrobat API Reference PDF (Version 8.1, April 2007) in Adobe Reader 9.0 or 9.1.
    2. View the bookmarks. Right-click on New Features and Changes and choose "Print Pages."
    3. Open the same PDF in Adobe Reader, Standard, or Pro 8. (I used Adobe Professional 8.1.3.)
    4. View the bookmarks. Right-click on New Features and Changes and choose "Print Pages."
    Results and Expected results: Printing from v8 results in 12 pages. Printing from v9 results in 9 pages. Pages 741, 754, and 769 did not print from v9.

    I'm having the same issues.  Using the latest version 9.3.3.  Is this a bug? I tired calling adobe but their CR sounds like 3rd country only.  Anyone can shed a light on this issue?

  • Printed Document function not working

    I have a user who is trying to use the Printed Document
    function of RoboHelp to convert html files into one continuous
    document, put together in a book form, complete with a table of
    contents. The process errors out giving her error messages like
    --> "Warning: The Word Document became corrupt when attempting
    to append a malformed topic: (then it lists an htm file here)". Can
    anyone tell me what could be causing this error or if something
    might be missing from the installation?
    Thank you!

    Welcome to the forum
    You'll like this. A number of possibilities.
    See Printed Documentation Issues on my site for one
    possibility.
    The other is quite simply insufficient RAM. Yeah I know what
    RH says on the box but Word has its own requirements. I have a
    layout that gives this error on a 2gb ram machine but works quite
    happily on 3gb.
    A way of checking that it is RAM is to create two copies of
    the print layout. Leave one alone. In number two trash half the
    topics. In three trash the other half. If two and three then
    generate OK, there is clearly no problem topic so by my
    calculations it has to be RAM.

  • How to use Print Screen function (part deux)?

    The previous thread for the Print Screen function has been marked as read only, and won't allow any replies. I tried all of the suggestions (PrtScr, CTRL + C + PrtScr, etc.) and then CTRL V into MS Paint, but Print Screen still doesn't work on my machine.
    I'm running Win 7 on a HP Pavilion laptop cv7-6b32us. I suspect there's a switch somewhere in Win 7 or HP that allows the key to be turned off. I know of this because my previous employer did not want anyone doing print screens due to HIPAA violations. Thus, the functionality was turned off. Those of us in I.T. were provided a third-party software that aloowed us to do the same function, but it was not released to the physicians or nursing staff. If I have to, I'll go out and buy the software. I really need this functionality for a class I'm taking.
    Thanks!
    This question was solved.
    View Solution.

    Kurt, welcome to the forum.
    Here is a video to show you how to use the Snipping Tool:
    Please click the "Thumbs Up+ button" if I have helped you and click "Accept as Solution" if your problem is solved.
    Signature:
    HP TouchPad - 1.2 GHz; 1 GB memory; 32 GB storage; WebOS/CyanogenMod 11(Kit Kat)
    HP 10 Plus; Android-Kit Kat; 1.0 GHz Allwinner A31 ARM Cortex A7 Quad Core Processor ; 2GB RAM Memory Long: 2 GB DDR3L SDRAM (1600MHz); 16GB disable eMMC 16GB v4.51
    HP Omen; i7-4710QH; 8 GB memory; 256 GB San Disk SSD; Win 8.1
    HP Photosmart 7520 AIO
    ++++++++++++++++++
    **Click the Thumbs Up+ to say 'Thanks' and the 'Accept as Solution' if I have solved your problem.**
    Intelligence is God given; Wisdom is the sum of our mistakes!
    I am not an HP employee.

  • How to use Print Screen function?

    I've seen various descriptions of how to use the print screen function.
    It would be nice to actually be told one that works.  None have worked for me.
    [Fn] and Prt SCr does not work.
    Ctrl and Prt SCr does not work.
    Ctrl, Alt, and Prt SCr does not work.
    [Fn], Ctrl, and Prt SCr does not work.
    If anyone knows the correct method of activating the print screen function that would be good.
    From the looks of things HP has a big problem with this function.
    This question was solved.
    View Solution.

    On my notebook, the Insert key and the prt sc key are the same key, but the prt sc has a ring, around it, if you know what I mean.
    On the bottom left of my keyboard is a key that has fn with a ring around it, or I guess you could say it is in a little box.  By the way, there are a number of keys that have two functions on them, and to activate the second function, you must press the fn key at the same time as the desired function on the key.  In this case press the  fn key and  the prt scr key, and that puts an image of the screen on the clip board and then it can be pasted into Word or where ever.
    Here is somethine else you might like, if you can get it to work as I described above.
    To print only the active window, and not the entire desktop or the entire screen, you can do that by pressing the alt and prt sc at the same time.  Then it only captures to the clip board the window, and not the entire desktop. Oh, and in the scenario with the fn key, it has to be pressed also, so actually it's pressing the fn and alt and print screen all at once.
    I just performed each of the instructions above, and they worked well on my EliteBook 8440. 
    Hopefully you have the same experience,
    GeorgeFN
    GeorgeFN
    I work on behalf of HP.

Maybe you are looking for