Do you know How to Create Screen Layout Rules ?

Hi,
Do you know How to Create Screen Layout Rules ?
Best regards,

Hi,
http://help.sap.com/saphelp_45b/helpdata/EN/ae/ea2c7dd435d1118b3f0060b03ca329/content.htm
Please also read the "Rules of the Engagement" before posting a query on this forum.
Regards,
Gaurav

Similar Messages

  • Do you know how to create Front Panel like Web,

    Do you know how to create Front Panel like Web, I mean like we pointed the word and click it will do another process instead by clicking push button.
    If possible, i can click the link in the table... Any idea anyone
    Solved!
    Go to Solution.

    Hi ezam,
    can you define more clearly exactly what you would actually like to do, and ill have a further look into it. I think smercurio_fc has understood it as I have, and is right with the activeX.
    any way, give a shout back with exactly what you want to do and we see what we can do,
    Richard
    Richard S
    Applications Engineer
    Certified LabVIEW Associate Developer
    National Instruments UK&Ireland

  • Do you know how to create an svg file?

    I'm trying to create an svg file of a landscape photo that I took.  I was able to use PE12 to create a turn my photo into black and white, where the buildings and such are black and the sky is white.  At this point, I want to delete the sky portion of the photo and save the buildings portion (only) of the photo as an svg or a jpg file.  I was able to save this as a jpg in PE12, but only with the white background in the file.  I don't know how to save it separately.  If I could save it separately, I would bring it into Elements and save it as a svg file.  Am I going about this correctly?  Any help would be appreciated.  Thanks

    Unless you changed the defaults, when you deleted the white sky you should see a checkerboard pattern (the default that denotes transparency).
    Then when you save that as a png the transparency is preserved.
    To turn the sky black press 'D' to set the default colours. Select the paint bucket and, for your image, tolerance to 100 and just click in the white sky.
    Cheers,
    Neale
    Insanity is hereditary, you get it from your children
    If this post or another user's post resolves the original issue, please mark the posts as correct and/or helpful accordingly. This helps other users with similar trouble get answers to their questions quicker. Thanks.

  • Do you know how to create a photomontage with Aperture

    I'm new to this software and would like to know if there is a function to create photo montages in Aperture.
    Thanks!

    yes, using the Book feature. Suggest you read the manual - there's lots of cool stuff in Aperture that isn't immediately apparent.
    Regards,
    Calx

  • What is this technique called and do you know how to create it?

    I meet a person at an art show yesterday that took photos and used a technique to collage them together (see attached photos for examples).  I thought the pictures turned out awesome and I would love to try it myself.  Any idea what tools/technique she was using to create the pictures?  Any help you can give is much appreciated.

    Looks like she just took two pictures and combined them using copy/paste or other methods.
    For one of the pictures she used a cloud picture, which she modified by distorting by smearing and other techniques. 
    Start playing with images, that is what photoshop is for.

  • Do you know how to create a "planner" blurb book from Lightroom?

    Hello - Sorry struggling with this one. 
    I want to create a Blurb "Notebook and Diary" from Lightroom 5, however I think the only option in Lightroom 5 is to create a "Photobook" ! 
    Is this correct as it seems a bit daft.  As a work around I'm exporting pictures to iPhoto and connecting the Blurb BookSmart app to iPhoto library (this seems all wrong).  I thought there should be a way to create a Blurb planner book directly from Lightroom. 
    Harumph ..... am I being stupid and missing something ?
    Cheers
    Paul

    GadgetNeil wrote:
    I get the feeling the book module in Lightroom only allows Blurb photobooks, not other items Blurb offers, like magazines, notebooks, and diaries.  Anyone else know anything about this?
    Neil
    Yes, just photobooks. However, Blurb used to a offer a BookSmart plugin for Lightroom, and there may have been one for Bookify. I couldn't find the info on their site, but ask Blurb what plug-ins they still have.

  • Can any body tell me how to create a layout variant in the selection

    hi friends i would like to know how to create a layout variant in the selection screen and how to select the variant to display the ouptut using the layout using disvariant.please if possible give me example. thanks in advance.

    hi,
    I shall give you the code. It will definitely work.
    <u><b>Declerations you need to make</b></u>
    data:      WK_VARIANT      LIKE DISVARIANT,
               WX_VARIANT      LIKE DISVARIANT,
               WK_REPID        LIKE SY-REPID,
               WK_VARIANT_SAVE(1) TYPE C,
               WK_EXIT(1) TYPE C.
    <b><u>Things you need to do in the initialization event:</u></b>
    INITIALIZATION.
      PERFORM F_INIT_VARIANT.
      PERFORM F_VARIANT_DEFAULT USING PR_VARI.
    *&      Form  f_init_variant
    FORM F_INIT_VARIANT .
      CLEAR WK_VARIANT.
      WK_REPID = SY-REPID.
      WK_VARIANT-REPORT = WK_REPID.
      WK_VARIANT-USERNAME = SY-UNAME.
      WK_VARIANT_SAVE = 'A'.
    ENDFORM.                    " f_init_variant
    *&      Form  f_variant_default
    FORM F_VARIANT_DEFAULT  USING    P_PR_VARI.
      WX_VARIANT = WK_VARIANT.
      IF NOT P_PR_VARI IS INITIAL.
        WX_VARIANT-VARIANT = P_PR_VARI.
      ENDIF.
      CALL FUNCTION 'LVC_VARIANT_DEFAULT_GET'
        EXPORTING
          I_SAVE        = WK_VARIANT_SAVE
        CHANGING
          CS_VARIANT    = WX_VARIANT
        EXCEPTIONS
          WRONG_INPUT   = 1
          NOT_FOUND     = 2
          PROGRAM_ERROR = 3
          OTHERS        = 4.
      IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      CASE SY-SUBRC.
        WHEN 0.
          P_PR_VARI = WX_VARIANT-VARIANT.
        WHEN 2.
          CLEAR P_PR_VARI.
      ENDCASE.
    ENDFORM.                    " f_variant_default
    <b><u> After this Things you need to do in the At selection screen event:</u></b>
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR PR_VARI.
      PERFORM F_VARIANT_F4 USING PR_VARI.
    *&      Form  f_variant_f4
    FORM F_VARIANT_F4  USING    P_PR_VARI.
      CALL FUNCTION 'LVC_VARIANT_F4'
        EXPORTING
          IS_VARIANT    = WK_VARIANT
          I_SAVE        = WK_VARIANT_SAVE
        IMPORTING
          E_EXIT        = WK_EXIT
          ES_VARIANT    = WX_VARIANT
        EXCEPTIONS
          NOT_FOUND     = 1
          PROGRAM_ERROR = 2
          OTHERS        = 3.
      IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      IF WK_EXIT IS INITIAL.
        WK_VARIANT-VARIANT = WX_VARIANT-VARIANT.
        P_PR_VARI = WX_VARIANT-VARIANT.
      ENDIF.
    ENDFORM.                    " f_variant_f4
    After this finally when you call the output using REUSE_ALV_GRID_DISPLAY YOU NEED TO mention this parameter in the function module
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          <i><u><b>IS_LAYOUT          = WA_LAYOUT</b></u></i>
          <i><u><b>I_SAVE             = 'X'</b></u></i>
          <u><i>I_DEFAULT          = 'X'</i></u>
          <u><b>IS_VARIANT         = WK_VARIANT</b></u>
        TABLES
          T_OUTTAB           = ITAB1
        EXCEPTIONS
          PROGRAM_ERROR      = 1
          OTHERS             = 2.
    Once you do this,,, you can create a layout variant.
    P.S. Mark all helpful answers for points.
    JLN

  • How to create a layout for  tcode fbl1n

    hi..
    i  want to know how to create a layout for flbl1n.pls provide me a step by step approach.
    regards

    Hi,
               Its simple :
              1. Display Report FBL1n.
              2. Select/ deselect coloumns you want with button ' Change Layout ( Ctrl + F8 ) '.
              3. Click Save Layout button( Ctrl + F12 ). Give a new name for layout.
    Regards
    Srikanth M

  • How to create a Layout Template of XSL Stylesheet (XML) type

    Hello,
    I am new to OBIEE. I need to generate layout template to be of XSL Stylesheet (XML) format. ( output report to be in XML format )
    Please share if anybody know How to create a Layout Template of XSL Stylesheet (XML) type for BI Publisher.
    Waiting for your reply

    Look at this, for example.
    http://xlspe.com/news.php?item.15.1

  • Hello guys! Do you know how to make a video smaller on imovie? Not by size or trim, i mean simply show the video as small as possible in the middle of the screen! Please text back.

    Hello guys! Do you know how to make a video smaller on imovie? Not by size or trim, i mean simply show the video as small as possible in the middle of the screen! Please text back.

    Go to the Map, Background & Animatic Browser (last button in the centre tool bar alongside the Transition button). Drag the Black background (or any background) to your project. From an Event, drag the video selection directly onto the Black clip in the project. As you drop the video clip, a pop-up menu will appear. Select Picture in Picture.
    Your video will appear as a small picture within the black clip. Click on it and reposition it to the centre of the viewer, using the yellow guide lines to get the exact centre position. Resize the Picture in Picture if desired by dragging the corner handles.
    NOTE: You may need to extend the duration of the Black clip to match the duration of the video clip. Double-click on the Black clip to open the Inspector, then adjust the duration there.
    John
    Message was edited by: John Cogdell - added NOTE

  • How to create a Layout variable in Macro

    Hi Friends,
    I have to run a macro in the planning book which will execute and perform disaggregation / aggregation at whatever level the users enter the data. For Example, if a user enters a data at Product level it has to disaggregate to the SKU level and execute the macro to calculate forecast figures. Always calculating at detailed level gives accurate results. Here am using Drill down and Drill up functionality .
    My question is, should I use any IF condition to perform a check say IF at AGG_LEVEL ('SKU') =1 then perform Drilldown. And for DrillUp should I set a LAYOUT_VARIABLE
    use this to determine if it needs to be drilled up.
    Am not familiar using this condition check and Layout variable creation. Can anyone pls let me know how do create these steps probably with an example.
    Thanks for your help in advance.
    Regards
    Bala

    Hi Bala,
    I suggest you to go through the following SAP standard macro book. It contains a collective macro..DRILL(Start), which in turn contains macros for setting indicators, for doing Drill-down and drill-up and deleting the idicators..In this way u can set your drill-up and drill -down macros for the charectaristics you want and do the automatic drill-up and drill-down.
    SNP94(1)_Interactive Planning
    regards,
    uma mahesh...
    confirm, Am i targetted ur post exactly...if not kindly post back...

  • TS4124 Hi, do you know how can I upload inelegible songs from itunes to Icloud. They are songs added from original CDs. Another question would be how can I transfer all the music I have in my Ipod Classic to my Itunes or ICloud as I want to back it up.

    Hi, do you know how can I upload inelegible songs from itunes to Icloud. They are songs added from original CDs. Another question would be how can I transfer all the music I have in my Ipod Classic to my Itunes or ICloud as I want to back it up.

    Depends on why it's ineligible.  If it's under 96 Kpbs, try right-clicking on the file and choosing Create AAC Version.  (If you don't see this option, go to iTunes>Preferences, click "Import Settings..." then choose "Import Using: AAC Encoder" and "Setting: iTunes Plus".)  Then rescan your library to see if this version will add to iTunes Match.  Or, after changing your import setting, just re-import the song to your iTunes library.
    If the song is over 200 MB you would have to reduce it's size to make it eligible.

  • All of my titles, themes and generators seem to be completely missing from Final cut pro x. Do you know how to get them back?

    All of my titles, themes and generators seem to be completely missing from Final cut pro x. Do you know how to get them back?

    Do you mean that when you click the title browser, for example, nothing is there?
    Do you at least see several categories listed in the effects browser?
    First make sure that you have nothing typed into the search box (not even spaces).
    If you still see nothing, try this in order:
    1) Window->Revert to Original Layout
    2) Quit FCP X, delete preferences using Preference Manager (a free download from Digital Rebellion)
    3) Download FCS Remover, and use it to completely remove FCP X. This will NOT delete your content, just the application.
    4) Reinstall FCP X from the Mac App Store: log in with the same Apple ID that you used to buy FCP X, click on "Purchases", locate FCP X and click Install.

  • Does anyone here knows how to create a login page thru JDBC?

    Anyone here knows how to create a login page which connect to database thru JDBC but not JDBC-ODBC bridge?

    Hi..pls you'll do people here a great good if you could explain yourself better..!
    Anyway if you are trying to connect to an Oracle Database you dont need the jdbc-odbc bridge as oracle provides a special driver for java applets/applications that is "the thin driver" and the "oci driver"..so if you are connecting to Oracle your connection will look like this:
    Class.forName("oracle.jdbc.driver.OracleDriver"); //not sun.jdbc.odbc.JdbcOdbcDriver
    Connection con = DriverManager.getConnection ("blah blah, blah");
    no need for the jdbc-odbc bridge.
    I hope i've answered your question.
    Thanks.

  • I need to know how to create a pdf document larger than 129 inches from MS Project 2007

    I am completely new to Adobe Acrobat Pro 9. I need to know how to create a PDF which is larger than 129 inches for use on a plotter from MS Project 2007. I have searched the Adobe support articles with no success. Any help would be appreciated.  Thank you.

    Thank you.  I have tried that but it will only let me go to 129 X 129 inches, no larger.
    Sincerely,
    Bill Stern
    NSD IT Support
    22289 Exploration Drive
    Suite 305
    Lexington Park, MD 20653
    Phone: 301.862.4577 ext 10
    Fax: 301.862.9828
    Email: [email protected]

Maybe you are looking for