Protect-Endprotect Command

Hoz exactly we use Protect-EndProtect command to avoide output text which should not spilt in two pages. Plz explain with example of Codes.
Thanks.

Hi
It is used to protect the address or info to print in one page only
If the space in one page is not sufficient it will print in the second page
see the sample
/:           PROTECT
/:           ADDRESS PARAGRAPH AS
/:             TITLE    &LFA1-ANRED&
/:      NAME     &LFA1-NAME1&, &LFA1-NAME2&, &LFA1-NAME3&,
/:             STREET   &LFA1-STRAS&
/:             POBOX    &LFA1-PFACH&  CODE &LFA1-PSTL2&
/:             CITY     &LFA1-ORT01&, &LFA1-ORT02&
/:             POSTCODE &LFA1-PSTLZ&
/:             COUNTRY  &LFA1-LAND1&
/:             REGION   &LFA1-REGIO&
/:             FROMCOUNTRY &T001-LAND1&
/:           ENDADDRESS
/:       ENDPROTECT
Reward points if useful
Regards
Anji

Similar Messages

  • What is PROTECT ENDPROTECT in SAPscript?

    Hi SDN,
    What is the significance of Protect & End-protect in Sapscripts?
    Regards,
    Rahul.

    To allow you to define the areas to be protected against a page break on an individual basis, SAPscript provides the PROTECT.. ENDPROTECT command pair. If you enclose the text to be protected in these commands, then SAPscript will ensure that each line of this text is printed together on the same page. If the complete text fits in the space remaining on the current page, then it is printed on this page just as it would be if no PROTECT command had been used. If, however, the remaining space is not sufficient for the text, then the PROTECT command has the same effect as a NEW-PAGE command and text is printed on a new page.
    Thus the PROTECT/ENDPROTECT commands may be regarded as a kind of conditional NEW-PAGE command, the condition being whether or not the lines enclosed between the two commands fit in the space remaining in the current main window.
    Syntax:
    /: PROTECT
    /: ENDPROTECT
    The text lines to be protected are enclosed between the two commands.
    An ENDPROTECT command without a preceding PROTECT command has no effect.
    If the terminating ENDPROTECT is missing, SAPscript assumes it at the end of the text.
    PROTECT.. ENDPROTECT command pairs cannot be nested. If a second PROTECT command occurs before the first one has been terminated by an ENDPROTECT, it is ignored.
    If the text enclosed by a PROTECT.. ENDPROTECT pair is itself too long for a single page, then a page break is generated immediately before the text and the text is printed in the normal way. It is then unavoidable that a page break will occur at some point within the text.
    Hope dis helps
    Reward all helpful answers

  • Example using command protect & endprotect

    hii gem's
    im unable to find the difference when using protect...endprotect
    without tht bcoz im getting same output
    ex:
    /: protect
    PH  'THIS IS TEST'
    PH  'THIS IS TEST'
    /: NEW-PAGE
    PH 'THIS IS TEST'
    ENDPROTECT
    please give a example using command protect & endprotect
    THANK U
    REWARDS FOR GUD REPLY
    REGARDS
    JAIPAL

    Hi Jaipal,
    It is mainly used to prevent the page break
    menas whatever lines you wrote between these protect and endprotect they are always printed in a single page only and they won't split into two pages though there is no full space
    go to SE71 see any scripts pagewindows
    you will find a lot of examples
    /E           TOTAL_AMOUNT
    /:           PROTECT
    UL           &ULINE(71)&
    TO                                                                                  
    TO           ,,Total net value excl. tax &EKKO-WAERS&,,
                                        &KOMK- FKWRT&
    /:           IF &SUM-EURO-PRICE& NE '                0,00'
    /           ,,                          EURO,,&SUM-EURO-PRICE&
    /:           ENDIF
    /:           ENDPROTECT
    Reward points for useful Answers
    Regards
    Anji

  • PROTECT-ENDPROTECT problem in SAP Script

    In SAP Script MAIN Window I have 10 different elements to print differet stuff related with each delivery line item.
    Like Material Number
    Material Description
    Long text [Has formatted text and I am reading that text and printed in some format some lines under material number and some under materail desc.]
    and other information required by client.
    Loop at Delivery item table.
    CALL FUNCTION 'CONTROL_FORM'
           EXPORTING
                command = 'PROTECT'.
    Print differnt elements.
    Loop at lond text internal table.
    print in proper format as I mentioned.
    endloop.
      CALL FUNCTION 'CONTROL_FORM'
           EXPORTING
                command = 'ENDPROTECT'.
    ENDLOOP.
    My problem is PROTECT ENDPROTECT is not working properly.
    It is printing only 1 item with other info on first page as there are enough space left to print minimum three items with details.
    on next page it is priting only 3-4 items as there are enough sapce to ptint at lease 10 items with details.
    The only good thing is it is not spliting the Item details and other text.[Main window on next page has bigger size]
    Any idea why PROTECT - ENDPOTECT not behaving properly.
    Thanks
    Aman
    Message was edited by: Amandeep  Singh

    Hello,
    Try to do like, Put PROTECT and ENDPROTECT in the SAPScript itself.
    Like
    Element 1
    Protect
    ..matnr....
    element 2
    ...desc....
    element 3 (long text)
    ...text
    ....text
    element 4
    endprotect
    call the element 4 in the loop statment, whenever required.
    Hope it will work.
    Regards,
    Naimesh.

  • Usage of protect endprotect in smartforms

    To control the Paragraph in a page we use protect endprotect in SAP SCRIPT. how to go about it in smartorms

    Syntax:
    /: PROTECT
    /: ENDPROTECT
    The lines to be protected lie between the two commands.
    An ENDPROTECT command without a preceding PROTECT command is ineffective.
    If the last ENDPROTECT is missing, it is implicitly assumed at the end of the text.
    PROTECT .. ENDPROTECT commands cannot be nested. If a second PROTECT command is recognized while another is active, the second is ignored.
    If the text between PROTECT and ENDPROTECT is so extensive that it would not fit on an empty page, then only one form feed is generated and the text is normally output. Thus, in this case, the section to be protected is separated by a page break.

  • PROTECT-ENDPROTECT IN SAP SCRIPT

    HOW DO WE USE PROTECT-ENDPROTECT TO MAKE SURE THAT THE OUTPUT DISPLAYED IN A VARIABLE WINDOW IS EITHER COMPLETE OR NOT PRINTED AT ALL.

    Check this Documentation,
    I have this full document if you want i will mail you..
    <b>PROTECT: Protect from page break</b>
    You can determine that a paragraph must not be separated by a page break in the style or layout set. If the attribute page protection is set, then all the lines of this paragraph are always output together on one page. This attribute is linked to the respective paragraph.
    It certainly does not make sense, to provide all the paragraphs with a page protection attribute to neutralize an unwanted page break. This event is much too dynamic for this and only results from the current text. Furthermore, it can also happen that you only want to protect parts of a paragraph from a page break. In principle, you could solve this problem using the command NEW-PAGE, by explicitly starting a new page before the affected parts of the text. However, this procedure is not very easy to make changes to. Assume that you have formatted your text using the NEW-PAGE command so that you have no unwanted
    page breaks. If you now insert new lines or delete existing ones, you would have to check all the NEW-PAGE commands inserted after this point in the text, as changes can result in the movement of page breaks. With the command pair PROTECT. ENDPROTECT, SAPscript offers you the option of individually defining protection from a page break. If you parenthesize the text in question using these commands, SAPscript automatically guarantees that all the lines it contains are printed together on one page. If the lines fit on the current output page, they are output there, in exactly the same way as if the PROTECT
    command was not used. If, however, the space is not sufficient, the PROTECT command then works as a NEW-PAGE and generates a form feed .For this reason, you can view PROTECT/ENDPROTECT as a conditional NEW-PAGE command, whose condition consists of whether the included lines fit into the current window MAIN or not.

  • How to write Protect endprotect concept in Smartforms

    hi
    can any one suggest me
    How to write Protect endprotect concept in Smartforms
    i have some content to coem without break in SMARTFORM
    how to do that
    Thanks & Regards
    kalyan
    <thread moved, has nothing to do with ABAP Objects. Please choose your forums more carefully in future>
    Edited by: Mike Pokraka on Sep 26, 2008 12:50 AM

    Hi,
    For 4.7 version if you are using tables, there are two options for protection against line break: 
    - You can protect a line type against page break.
    - You can protect several table lines against page break for output in the main area.
    Protection against page break for line types 
    - Double-click on your table node and choose the Table tab page. 
    - Switch to the detail view by choosing the Details pushbutton. 
    - Set the Protection against page break checkbox in the table for the relevant line type.  Table lines that use this line type are output on one page. 
    Protection against page break for several table lines 
    - Expand the main area of your table node in the navigation tree. 
    - Insert a file node for the table lines to be protected in the main area. 
    - If you have already created table lines in the main area, you can put the lines that you want to protect again page break under the file using Drag&Drop. Otherwise, create the table lines as subnodes of the file. 
    - Choose the Output Options tab page of the file node and set the Page Protection option.   All table lines that are in the file with the Page Protection option set are output on one page. 
    In 4.6, Alternatively in a paragraph format use the Page protection attribute to determine whether or not to display a paragraph completely on one page. Mark it if you want to avoid that a paragraph is split up by a page break. If on the current page (only in the main window) there is not enough space left for the paragraph, the entire paragraph appears on the next page. 
    Regards,
    Himanshu Verma

  • Protect - endprotect in Smartform

    hi
    what is the similar statement for protect-endprotect in smartforms
    please help me out.
    regards
    padma

    HI
    here are two options for protection against line break:
    - You can protect a line type against page break.
    - You can protect several table lines against page break for output in the main area.
    Protection against page break for line types
    - Double-click on your table node and choose the Table tab page.
    - Switch to the detail view by choosing the Details pushbutton.
    - Set the Protection against page break checkbox in the table for the relevant line type.  Table lines that use this line type are output on one page.
    Protection against page break for several table lines
    - Expand the main area of your table node in the navigation tree.
    - Insert a file node for the table lines to be protected in the main area.
    - If you have already created table lines in the main area, you can put the lines that you want to protect again page break under the file using Drag&Drop. Otherwise, create the table lines as subnodes of the file.
    - Choose the Output Options tab page of the file node and set the Page Protection option.   All table lines that are in the file with the Page Protection option set are output on one page.
    In 4.6, Alternatively in a paragraph format use the Page protection attribute to determine whether or not to display a paragraph completely on one page. Mark it if you want to avoid that a paragraph is split up by a page break. If on the current page (only in the main window) there is not enough space left for the paragraph, the entire paragraph appears on the next page. 
    Regards
    PAVAN

  • Override Use of Protect-Endprotect Function when editing Standard Sapscript

    Hi abapers,
    I have made a copy of a standard form (F150_DUNN_01) and edited it according to the customers needs.  One problem I have encountered is the use of seperate elements, As you can see in the standard form, the table is output as one element and the total appears afterwards in another element.  As I am not editing the print control program I have added texts, etc. after the totals line but inside elements which I know are always output.  I have recently noticed that some of the elements are protected using the 'CONTROL_FORM' function in the print control program.
    This leads me to the problem, when I have between 10-15 records in the table the following elements (540 - 592) are printed on the following page.  I have read about the protect-endprotect statements but in my case it would be between 2 elements.
    I would like the totals line to appear along with the table and the rest can go on the next page.   Is it possible to use this method without editing the print control prorgam to call elements without protection?  Elements 581 - 592 are currently protected using the 'CONTROL_FORM' function in the print program.
    Here is a snippet of the MAIN window with some PROTECT statements used but not working as expected.
    /:           PROTECT
    /E           530
    T3            <BU>INV.NUM</>,,<BU>DATE</>,,<BU>INV.Amount</>,,<BU>DUE DATE</>,,
    =           <BU>NOTE</>
    T3                                                                                  
    /E           531
    /:           DEFINE &TDLINE& = ''
    /:           PERFORM GET_TEXT IN PROGRAM ZFII_F150_ROUTINE
    /:           USING &T001-SPRAS&
    /:           USING &MHND-BELNR&
    /:           USING &MHND-BUKRS&
    /:           USING &MHND-GJAHR&
    /:           CHANGING &TDLINE&
    /:           ENDPERFORM
    T3            &MHND-BELNR&,,&MHND-BLDAT&,,&MHND-WRSHB(C)&,,&MHND-FAEDT& ,,&TDLINE&
    /E           540
    /E           550
    AS           Inicio:      &T040A-TEXT1&
    /E           551
    AS           Fin:          &T040A-TEXT1&
    /E           570
    T3           Gtos.reclam.,,&F150D-WAERF&,,&F150D-MHNGF(C)&
    /E           581
    T3           ,,,,&ULINE(15)&
    T3           ,,&F150D-WAERF&,,&F150D-SUFPF(C)&
    /E           582
    T3           ,,&F150D-WAERF&,,&F150D-SUFPF(C)&
    /:           ENDPROTECT
    /E           591
    AS                                                                                  
    /:           CASE &MHNK-MAHNS&
    /:           WHEN '1'
    /:           INCLUDE ZFI_DUNN_MAIN5911 OBJECT TEXT ID ST LANGUAGE &T001-SPRAS&
    /:           WHEN '2'
    /:           INCLUDE ZFI_DUNN_MAIN5912 OBJECT TEXT ID ST LANGUAGE &T001-SPRAS&
    /:           WHEN '3'
    /:           INCLUDE ZFI_DUNN_MAIN5913 OBJECT TEXT ID ST LANGUAGE &T001-SPRAS&
    /:           ENDCASE
    T6                                                                                  
    /E           592
    T6                              ,,&F150D-WAERF&,,&F150D-SALFW(C)&
    Regards,
    Simon
    Edited by: Simon Kerr on Oct 4, 2010 12:14 PM

    Hi Vijay,
    Thanks for reply but it isn't work.
    I think there is no documentaion available in any languagein the SAP.
    So If possible give me any other reference by which I can search documentation.
    Or just check it at your end if available send it to me.
    Please try once again.
    I wnat documentation for function modules in the Function Group MBWL & J1IEXGM.
    both are used for MIGO.
    Thanks and Regards
    Dhanu

  • PROTECT ENDPROTECT doesen't work sapscript

    hello,
    i would like to use protect becuase i want that this element stays in one entire page, but he continue to broke the element.... why?
    i use protect and endprotect...it's correct?
    /E           ITEM_LINE
    /:           PROTECT
    /:           SET DATE MASK = 'DD/MM/YY'
    /*           IF &PAGE(C)& <> 1
    /*           &ULINE(112)&
    /*           ENDIF.
    T2           &VBDPA-POSNR(Z)&,,&VBDPA-MATNR(C)&,,&VBDPA-MEINS(Z)&
    =           ,,&VBDPA-KWMENG(C)&,,&VBEP-EDATU&,,&T_PRICES-PR_LORDO(C)&,,
    =           &T_PRICES-PR_SCONTO(C)&
    /*           PERFORM GET_PRICING IN PROGRAM ZRVADOR01_FRM.
    /*           USING &VBDKA-VBELN&
    /*           ENDPERFORM.
    T2           ,,&VBDPA-ARKTX&
    /*           ,,&'Numero articolo cliente 'VBDPA-IDNKD' '&&'Posizione 'VBDPA-POSEX&
    /*           ,,&'Partita 'VBDPA-CHARG&
    /:           ENDPROTECT

    Try this,
    I think there is a small error in your code.
    /E ITEM_LINE
    /: PROTECT
    /: SET DATE MASK = 'DD/MM/YY'
    /* IF &PAGE(C)& 1
    Instead try this
    /* IF &PAGE(C)& = 1
    /* &ULINE(112)&
    /* ENDIF.
    T2 &VBDPA-POSNR(Z)&,,&VBDPA-MATNR(C)&,,&VBDPA-MEINS(Z)&
    = ,,&VBDPA-KWMENG(C)&,,&VBEP-EDATU&,,&T_PRICES-PR_LORDO(C)&,,
    = &T_PRICES-PR_SCONTO(C)&
    /* PERFORM GET_PRICING IN PROGRAM ZRVADOR01_FRM.
    /* USING &VBDKA-VBELN&
    /* ENDPERFORM.
    T2 ,,&VBDPA-ARKTX&
    /* ,,&'Numero articolo cliente 'VBDPA-IDNKD' '&&'Posizione 'VBDPA-POSEX&
    /* ,,&'Partita 'VBDPA-CHARG&
    /: ENDPROTECT

  • Firmware Password Protection - Prompt command to check

    Is there a prompt command to check if the Firmware Password Protection is enable or not?

    I've never seen any, but everything should be detailed in http://support.apple.com/kb/HT1352

  • Protect -Endprotect functionality in reports

    Hi ,
    As per my user requirement like this.
    final intarnal table having value like this.
    EX:
    field1  field2
    1        1000
    1        2000
    2       1000
    2       3000
    3    10000
    3     2000
    3      5000
    4      1000
    4      2970
    4      5000
    5      4000
    5      6000
    In output first page it is displaying
    1        1000
    1        2000
    2       1000
    2       3000
    3    10000
    3     2000
    3      5000
    4     1000
    and some footer data
    in next page ( page 2 )
    4      2970
    4      5000
    5      4000
    5      6000
    they need like all at one place like Protect functinality in script.
    Please advise on this.
    Regards
    salini

    Hi Salini,
                For this Increase the length of the page.  See below.
    Determining the Page Length  
    To determine the page length of an output list, use the LINE-COUNTaddition of the REPORT statement.
    Syntax
    REPORT rep LINE-COUNT length[(n)].
    This statement determines the page length of the output list of program rep as length lines. If you specify the optional number n, the system reserves n lines of the page length for the page footer. Those lines of the page footer that are not filled at the END-OF-PAGE event, appear as blank lines (see Defining a Page Footer).
    If you set length to zero, the system uses the standard page length (see The Standard List). To adapt the page length to the current window size, see Lists with Several Pages. While the list is created, the system field SY-LINCT contains the current number of lines per page (that is length, or 0 for the standard page length).
    Consider that the length of the page header is part of length. Thus, for the list itself you can use only length minus page header length minus n lines. If length is less than the page header length, a runtime error occurs.
    If during list processing the system reaches the end of the area provided for the actual list, it outputs the page footer, if any, inserts some space, and starts a new page. The space inserted belongs to the list background and is not a line of the list. The sy-pagno system field always contains the current page number.
    Regards,
    Md Ziauddin

  • Meaning of PROTECT APDU command.

    If the PROTECT method is not executed on the new card, does it mean that the PIN or Key object value is not encrypted? Why the OS is encrypting the PIN value? In PIN case I believe that store of the PIN Hash would be secure enough?

    When you add a report and to a dashboard, the report filters will be overwritten by the dashboard prompt, unless you protect the filter in the report.
    Regards,
    Stijn

  • PROTECT command in script

    hi all,
    I am developing reservation sheet, when i print the reservation the line items are printing different page.
    I used the PROTECT command like this but still it is printing different page.
    /E     ELE1
    /:       PROTECT
    /M1     itab-rspos,,itab-matnr,,itab-erfmg
    /:      ENDPROTECT
    can any one plese tell me what was the wrong.
    Kind Regards,
    Kiran

    Hi Kiran, 
    To allow you to define the areas to be protected against a page break on an individual basis, SAPscript provides the PROTECT.. ENDPROTECT command pair. If you enclose the text to be protected in these commands, then SAPscript will ensure that each line of this text is printed together on the same page. If the complete text fits in the space remaining on the current page, then it is printed on this page just as it would be if no PROTECT command had been used. If, however, the remaining space is not sufficient for the text, then the PROTECT command has the same effect as a NEW-PAGE command and text is printed on a new page.
    Thus the PROTECT/ENDPROTECT commands may be regarded as a kind of conditional NEW-PAGE command, the condition being whether or not the lines enclosed between the two commands fit in the space remaining in the current main window.
    Syntax:
    /: PROTECT
    /: ENDPROTECT
    The text lines to be protected are enclosed between the two commands.
    An ENDPROTECT command without a preceding PROTECT command has no effect.
    If the terminating ENDPROTECT is missing, SAPscript assumes it at the end of the text.
    PROTECT.. ENDPROTECT command pairs cannot be nested. If a second PROTECT command occurs before the first one has been terminated by an ENDPROTECT, it is ignored.
    If the text enclosed by a PROTECT.. ENDPROTECT pair is itself too long for a single page, then a page break is generated immediately before the text and the text is printed in the normal way. It is then unavoidable that a page break will occur at some point within the text.
    Hope dis helps.
    kindly reward if found helpful.
    cheers,
    Hema.

  • Protect and endprotect

    if we wrote code like this what happens
    protect
    protect
    endprotect
    endprotect

    hi,
    SAPscript provides the PROTECT .. ENDPROTECT command pair to allow you to define the areas to be protected against a page break on an individual basis. If you enclose the text to be protected in these commands, then SAPscript will ensure that each line of this text is printed together on the same page.
    If the complete text fits in the space remaining on the current page, then it is output on that page just as it would be if no PROTECT command had been used. If, however, the remaining space is not sufficient for the text, then the PROTECT command has the same effect as a NEW-PAGE command and text is printed on a new page.
    Thus the PROTECT/ENDPROTECT commands may be regarded as a kind of conditional NEW-PAGE command, the condition being whether or not the lines enclosed between the two commands fit in the space remaining in the current main window.
    Syntax:
    /: PROTECT
    /: ENDPROTECT
    The text lines to be protected are enclosed between the two commands.
    u2022 An ENDPROTECT command without a preceding PROTECT command has no effect.
    u2022 If the terminating ENDPROTECT is missing, then it will be assumed at the end of the text.
    u2022 PROTECT .. ENDPROTECT command pairs cannot be nested. If a second PROTECT command occurs before the first one has been terminated by an ENDPROTECT, it will be ignored.
    u2022 If the text enclosed by a PROTECT .. ENDPROTECT pair is itself too long for a single page, then a page break is generated immediately before the text and the text is output in the normal way. It is then unavoidable that a page break will occur at some point within the text.

Maybe you are looking for

  • How to call table control in subscreen in module pool program

    Hi all, I have req,need call table control in subscreen,but have done but when scroll bar value getting changed , please guide how to do it.if its possable send the code. regards santosh

  • How to buil a circular buffer of message

    Hi, I have a GPS that sends me their information every 30 seconds, I'm receiving this information for the serial port and I should send this information by another serial port, but every 90 seconds or more, the transfer time is variable according to

  • Aperture closing on export-Help!

    I have been trying to export 360 images from a project, and each time the export begins, it quits after a few images. Then when I reopen Aperture and try to select the rest of the images to export, it highlights and previews that first image. From th

  • Correcting Lens Distortion = 1:1 photos

    I need to take top down photos of objects and then convert the pictures to a CAD file. So far I am having trouble with lens distortion. Anyone know of a quick way to correct the distortion so that the image is 1:1? I am using a 30mm Macro lens - the

  • CR 6.1 - Unable to locate lens profile automatically

    Raw files from Canon camera are correctly identified and lens distortion is corrected automatically, but on jpgs from same camera I get this error: "unable to locate lens profile automatically".Can't even do it manually as lens profile that is availa