Syntax for Page 1/3, 2/3 etc. in Report

Hi,
I have a report, in which Page number is coming like this:--
Page 1
But i want it like this:--
Page 1/3 , Page 2/3 & Page 3/3.
In my report, syntax is written SY-PAGNO for Page 1. Then what will be the syntax for Page 1/3 etc.
Thanks

I cann't paste the whole code here becuase it have more than 40000 characters. 
Hint : - It is the copy of Standard program RQPDRK00.
I paste some code here.....(before START-OF-SELECTION.)....Here are the changed in this code---
REPORT ZKC_RQPDRK00 NO STANDARD PAGE HEADING LINE-SIZE 147 line-count
56(10).
Kopie aus RCPDRK00, Ohne Materialkomponenten, ergänzt um Typ Q
und Kreuz bei Merkmalen und Merkmalswerte. Wird aufgerufen von
RQPDRK02.
Tranparente DB-Tabellen
TABLES: MAPL,                          "Material-Alt. Zuordnung
        PLKOD,                         "Plankopf
        PLFLD,                         "Planfolge
        PLPOD,                         "Vorgang
        RCR01,                         "Arbeitsplatz Vorgang
        PLPODS,                        "Untervorgang
        RCR01S,                        "Arbeitsplatz Untervorgang
       PLMZD,                         "Materialkomponentenzuor
        PLMK,                          "QM-Merkmale
        PLMKB,                         "QM-Merkmale: Belegstruktur
        PLMW,                          "QM-Merkmalswerte
        PLFHD,                         "Fertigungshilsmittelzuordnung
        RQPAS,                         "Steuertabelle QM
        QPMK ,                         "Stammprüfmerkmale
        QPMT ,                         "Stammprüfmerkmale: Texte
        QPMZ ,                         "Zuordnungstabelle Stammdaten QM
        MARA ,
        CDPOS,
        CDHDR,
        TWEWT,
        QMTT.
ATAB-Tabellen
TABLES:
        TCA01,                         "Plantyp
        TCA02,                         "Text zum Plantyp
        TCA08,                         "Folgenartenbeschreibung
        TCA09.                         "Plananwendung
Strukturtabellen (Reine Workareas)
TABLES: RC27M,                         "Struktur für Materialstammview
        QMKST.                         "Steuerkennzeichen Planmerkmal
DATA:  TAB_MAPL   LIKE MAPL  OCCURS 10 ,
       L_MAPL_WA  LIKE MAPL ,
       L_PLNNR    LIKE MAPL-PLNNR ,
       L_MATNR    LIKE MAPL-MATNR .
DATA : BEGIN OF I_CDPOS OCCURS 0.
        INCLUDE STRUCTURE CDPOS.
DATA :  UDATE LIKE CDHDR-UDATE.
DATA   END OF I_CDPOS.
DATA WS_LINES LIKE SY-LINNO.
DATA FIRST_PAGE_FLAG VALUE 'Y'.
DATA BAL_LINE TYPE I.
data grp like PLKOD-PLNNR.
DATA : PAGECOUNT(5) TYPE c.
Select-Options
Auswahlmenü Anforderungsbild
SELECTION-SCREEN SKIP.
SELECTION-SCREEN BEGIN OF BLOCK AUSWAHL WITH FRAME TITLE TEXT-X22.
SELECT-OPTIONS:VAGRP FOR PLKOD-VAGRP,  "Planergruppe
               STATU FOR PLKOD-STATU,  "Status
               WERKS FOR PLKOD-WERKS,  "Werk
               VERWE FOR PLKOD-VERWE.  "Planverwendung
SELECTION-SCREEN END OF BLOCK AUSWAHL.
Include QM Routinen zum Drucken der Merkmale
INCLUDE ZKC_IQPDRK00.
*INCLUDE IQPDRK00.
*-- Ergänzung QM: Plantyp Q wird als Default gesetzt
INITIALIZATION.
  PN_PLNTY = 'Q' .
top-of-page.
  ULINE.
  PRINT-CONTROL FUNCTION: 'SABLD' LINE 2.
                       'SAOFF' LINE 2,
                       'SAULN' LINE 3.
  write : SY-VLINE,
           30 'BCH ELECTRIC LIMITED',
           77 SY-VLINE,
           95 'QUALITY ASSURANCE',
           125 SY-VLINE,
           130 'Page ',SY-PAGNO, '/ ', '-----',
           147 SY-VLINE.
  ULINE.
  end-of-page.
  skip 2.
  ULINE.
  WRITE : SY-VLINE,
         50 SY-VLINE,
         100 SY-VLINE,
         147 SY-VLINE.
        120 SY-VLINE,
        82 'Confidential',
        95 SY-VLINE,
        122 'Restricted',
        147 SY-VLINE.
WRITE : SY-VLINE,
         50 SY-VLINE,
         100 SY-VLINE,
         147 SY-VLINE.
        98 TEXT-K10,
        106 grp,
        92 'Confidentiality',
        120 SY-VLINE,
        123 'Confidentiality',
        147 SY-VLINE.
ULINE AT 81(67).
WRITE : SY-VLINE,
         50 SY-VLINE,
         100 SY-VLINE,
         147 SY-VLINE.
        120 SY-VLINE,
        84 'Internal',
        95 SY-VLINE,
        117 'Public',
        147 SY-VLINE.
uline.
WRITE : SY-VLINE,
         15 'Prepared by',
         50 SY-VLINE,
         70'Reviewed by',
         100 SY-VLINE,
         120 'Approved by',
         147 SY-VLINE.
        98 'Confidentiality',
        120 sy-vline,
        123 'Restricted',
        122 'Page ',
        147 SY-VLINE.
uline.
set margin 15 2.
START-OF-SELECTION.
END-OF-SELECTION.
   WRITE SY-PAGNO TO PAGECOUNT LEFT-JUSTIFIED.
    DO SY-PAGNO TIMES.
        READ LINE 1 OF PAGE SY-INDEX.
        REPLACE '-----' WITH PAGECOUNT INTO SY-LISEL.
        MODIFY CURRENT LINE.
    ENDDO.
This is changed code....
Please check...

Similar Messages

  • Syntax for page level process to invoke an on-demand app level process?

    I want to use a page level process (if that's the right thing to do) to run an application process on-demand each time certain pages load. What is the proper syntax for the page level process?
    I tried many variations of the following but it does not pass syntax checking.
    1.
    APPLICATION_PROCESS=GLOBAL_UPDATE;
    2.
    begin
    APPLICATION_PROCESS=GLOBAL_UPDATE;
    end;
    What is the proper syntax?
    Thanks,
    Linda

    Linda - If you want to run an application process when certain pages load, just create an application process (PL/SQL type) with the desired firing point, e.g., On Load: Before Header and in the process condition use a condition type like "Current Page Is Contained Within Expression 1 (comma delimited list of pages)". No need to create either a page process or an on-demand application process to do this.
    Scott

  • Syntax for WEP-128 in /etc/network.d/ ?

    Hello,
    I've succeeded in getting my wireless network controller working in Arch, only I have to enable it manually since I get "could not associate wlan0" on bootup. It's because I hadn't written a configuration file for wlan0 in /etc/network.d so I'm doing that now, *but* I've run into the following confusion:
    I've seen the syntax for plain old WEP encryption in /etc/network.d/examples, but is it different for WEP 128 ASCII, which is what I'm using on my network? I ask because the syntax for /etc/rc.conf is different between the two types of encryption, and I've googled it to no avail. I was wondering if anyone here had the answer. Thank you.

    I should mention that I also deleted the line
    #SPLASH_EFFECTS=$(e=();IFS=',';for w in $splash;do [[ $w == fade* ]]&&e+=($w);done;echo "${e[*]}")
    since i don't really need it.
    After a rebeoot the error still persists...
    What is my fault?

  • Syntax for calling html page in PL/SQL package

    Hi,
    I'm trying to call html page (stored on server) in my pl/sql package!
    I have already create html page in pl/sql package code and it's works fine.
    Now create better html page (interface design) and stored on server. I would like to call that stored html page in my pl/sql package.
    What is syntax for calling html page in PL/SQL or could you suggest me some literature.
    In first option I had created ces and stored it on server. Then I call it in pl/sql package like htp.p('<link rel="stylesheet" href="\download\table_style.css" type="text/css">');
    I try someting like that for calling html page but it doesn't works.
    htp.p('<link rel="form" href="\download\interface.htm" type="text/html">');
    Does anyone know syntax for calling html page in pl/sql?!?
    Thanks!

    hello
    I normally use htp.anchor(URL,linkname);
    it works
    ammar sajdi
    www.e-ammar.com/Oracle.htm

  • Export command syntax for OA page in R12

    Hi,
    Can any one let me know the syntax for export command for an OA page in R12.
    I have tried with the 11i export command, but could not get the page.
    Thanks,
    Divya

    Hi,
    sorry, wrong forum (its about JDeveloper and ADF) - See: OA Framework
    Frank

  • Why does Pages 09 hang for 1min30sec? The spinning ball, etc...

    I am using Pages 09 version 4.3 (not the iWork package, just Pages 09)
    Operating system 10.8.3 with 4 Gb memory on an iMac from around 2009 (Intel core 2 duo)
    I had been using Quark Xpress for a couple decades and wanted to save a book I did in Pages so I can sell it in the Apple bookstore.
    So I saved a Quark document as a pdf.
    Then I used an on-line service to convert the pdf to a word document.
    Then I opened the word doc in Pages and saved it as a Pages file.
    I am in the process of doing a lot of reformatting, but I'm not surprised all the formatting didn't carry over, considering all the flie formats I went through.
    The document is about 40 pages and has perhaps 40 pictures, but I do resize them in Photoshop so the Pages document file is only 4.9 Mb.
    Pages isn't all that different from Quark, it just seems to hide things in different places.
    The problem is that every so often when I click in the document, I get the spinning ball and Pages hangs for 1 minute and 30 seconds (doesn't it seem odd that it is always for the same length of time?). Then it comes out of its coma and I carry on.
    Using the Activity Monitor I see Pages using 99.8% or 100% or even 100.5% of CPU. And The Pages line is in red type that reads "Pages (Not Responding).
    While I wait for Pages to come to its senses, I can surf the Web, or use other programs, which seems peculiar because if the CPU is 100% occupied, I would think it could.
    When I go to the dock and click on the Pages icon, it doesn't come to the front. I have to move any other windows so I can see my Pages document and click on it to bring it to the front.
    I went into FontBook and checked all my fonts and deleted a bunch. When I reopened the document, it said it was missing a font, so I selected a substitute, the document opened and I re-saved it with a new name.
    Sometimes it hangs when I click in text, but just now it was hanging every time I tried to click on a line behind the main text box.
    Just now it hung when I started to go to the Edit menu. I waited and now it's back, as if nothing happened.
    Any ideas?

    After a very long night it seems my problems were solved by
    1. making sure all the in-line pictures had the correct wrap around settings and
    2. deleting some lines that had originally been underscores, but wound up being independent lines behind the main text box and
    3. checking my fonts in FontBook and deleting the iffy ones (I dunno if this made any real difference, but I mention it anyway).
    Every time I would select a line there would be a long pause. Initially 1 1/2 minutes, but shorter as I deleted the lines one by one.
    There were also pauses when trying to select in-line pictures, and sometimes for no good reason that i could discern.
    Anyway, now that the pictures' wrap around is re-set, and the lines are delected, there are bo more pauses!
    Whew. I spent hours watching that ball spin. Still, it was better than re-creating the whole book.

  • Syntax for text element in page windows.

    Hi ,
    I have written the syntax in page windows as follows:
    <B>Customer/Supplier:</> ,, &KNA1-NAME1&
    But I am not getting any data in the output screen.
    Plz suggest me the correct syntax.
    Regards,
    Mridul.

    SELECTION-SCREEN BEGIN OF BLOCK blk1 WITH FRAME TITLE text-001 .
    PARAMETERS:  p_cheque   RADIOBUTTON GROUP rb1 DEFAULT 'X',              " Cheques
                 p_credit   RADIOBUTTON GROUP rb1,                          " Credit card
                 p_bacs     RADIOBUTTON GROUP rb1.                          " Bacs/Chaps
    SELECTION-SCREEN END OF BLOCK blk1.
    goto ->Text Element Selection Text
    P_CHEQUE     Cheques
    P_CREDIT                     Credit Card
    P_BACS               Bacs / Chaps
    you can able to assign text to radio button.
    Rewards if useful...............
    Minal

  • Clip Art for Pages?

    This there "Clip Art" in Pages like there is in MS Word? I would like to put some Christmas Clip Art in some documents that I will be creating. I would like for them to be high resolution so they look good when I print them on high quality paper.
    Is there a library of clip art in Pages for me to use?
    Kevin Hawkins

    Well, yes and no. There is no formal set of clipart for Pages, but I did do a rather large set of themes for Keynote a while back, and many of the elements were graphic image files which work well with Pages.
    It was called the twelve Themes of Christmas, included numerous religious images (some unique images of unglazed nativity figures) and velvet themes (complete with gold cords)
    Then there was the Gingerbread theme, complete with numerous candy graphics (including Cookies! And several styles of hard candy)
    A few of the other themes were simpler, but the most complex was the Wrapping theme, including riibbons, bows, several styles of wrapping paper and such.
    All the themes came with special corners, tops, bottoms and sides that would fit seamlessly for slide-slide transitions (box, slide, etc) All of them work rather well in Pages (they are sized for 1024x768 slides) and are 'good enough' for most projects (the corners could be used with the various pieces to create longer items)
    I took them off the market due to the size (300M altogether) and a family emergency that turned up. Since then I have directed most of my energies to Pages.
    Would they be appropriate for your uses? I'm unsure of how much interest there would be for such a heavy download.

  • What is the syntax for the mdx offset in universe designer?

    Hi everybody!!!
    I wish someone could help me with my mdx syntax. I made an universe with Universe designer (BOEdge 3.1) from a BW query and I'm trying to create in this universe an object with an offset.
    My new object has to be the result of the [0CALYEAR].[LEVEL01] with "- 1" offset, is it possible???
    I tried to put the code in the select or in the where fields of the object but without results. When I try to make a query in webi rich client this "new object" doesn't work...
    Please help me...
    Dario

    Hi Ingo,
    thank you for the reply.
    I tried to use that document...the problem is when I put the code in the object (inside univ des) and I analyse the code using the button, the syntax is every time without errors. When I try to make the query in webi rich client , if I use that object the software shows a window with error.
    I used these code in the "where" field:
    1. <EXPRESSION>@SELECT([0CALYEAR].[LEVEL01])-1</EXPRESSION>
    2. <EXPRESSION>@SELECT(Anno calendario\L01 Anno calendario)-1</EXPRESSION>
    the problem is to find the right syntax for what I want...the -1 offset for the new object from the OCALYEAR. I need that if in webi I select from the object filter [0CALYEAR].[LEVEL01] the value 2010 - in the new object will be 2009 etc...
    Dario

  • Quarter fold card template for pages

    I've just bought a mac mini and love it.
    I'm still moving over from MS products to Apple and it's going pretty well apart from MS Publisher.
    This still seems to be better at certain things than Pages.
    One issue is the lack of templates for cards in particular.
    Does anyone know where i can get hold of a quarter fold card template for Pages?
    I did see one but it was for Pages 09 and version 5.5.2 doesn't seem to open it.

    You can use a free Avery for MS Word Greeting Card. Click the Template Only (works with PC and Mac) radio button, and then download. Open in Pages v5.5.2, and first save as a Pages document in your Documents folder. Set the font, etc. to what you want in your Quarter-fold card template. Once you have done that, from the File menu, select Save as Template, and give it a name. While you are there, observe what a right-click on the template name presents in a pop-up menu.
    When you open Pages without specifying a document, it will default to a Template Chooser. Your Quarter-fold template is parked in the User Templates category.
    Pages v5.5.2 is not designed to compete as a true Desktop Publishing/Layout application. If you want to open Publisher documents on the Mac, get a free copy of LibreOffice, which will open them. Since it is not Publisher itself, your mileage will vary on layout accuracy. The LibreOffice PDF documentation is available, and created with LibreOffice. Since this is a superset, MS Office replacement package, there is a forms designer in the Writer application, and the ability to open PDF and edit them also exists. There is also complete Visio support from the first version to the latest.
    When you first launch LibreOffice, you must click the open button in the initial dialog, and afterwards, a double-click will open it normally. This will be true for any Mac applications obtained outside the OS X App Store.

  • What is the proper SQL syntax for dates input as variable

    Hello,
    I am working on an ASP JavaScript page that requests totals
    from an Access database for a specific date range. I can write the
    SQL statement to query the DB and get the results I need using the
    WHERE statement below.
    ...WHERE LABOR_DATE BETWEEN #7/15/2006# AND #7/18/2006# GROUP
    BY [LABOR].[JOB_NUMBER_NAME]
    I have another page that I want to pass two variables in
    Dreamweaver specifying the date range varBeginDate and varEndDate
    and query the database using the date range input by the user.
    What is the correct syntax for replacing the actual dates in
    the example above with my variable values?

    Short answer - you can't. There's no automatic link between file paths and mounting servers. There are lots of valid reasons for this (e.g. preventing malicious links from automatically opening files from remote servers), but you can get there in a controlled environment.
    You can configure Automounts on any directory. That way whenever any application tries to access a particular path the OS will automatically mount the directory, but it needs to be told in advance which directories (and which servers) to mount.
    For example, if you'd configured your iTunes Library to be saved at /mnt/itunes and it's served from afp://mediaserver.your.net/path/to/itunes you would configure an automount to mount the AFP server at /mnt/itunes.
    Since its an automount, the OS wouldn't mount the server until some process tried to read /mnt/itunes.
    There are several ways of specifying automounts, and for each there are several tutorials online that walk you through the process. Try Mike Bombich's site for a starter.

  • SQL Syntax for Access database

    This pertains to LV only due to the fact that LV requires a slightly different syntax for SQL statements for use with Access than what you will see in the Access Queries SQL view.  For instance, I discovered that if you use a  ?  for a character placeholder  (can be any single character) in Access, you need to use an  _  (underscore)  for this feature.  I also discoverd that you use a % sign instead of an *  (asterisk) for any number of characters.
    The lat thing I am having trouble with is specifying a range of characters that could be in a certain position in the text field.  For instance, if the first character can be only an alpha between  A and Z, and the next two characters can be numbers anywhere from 1 to 12,  I would use   LIKE "[A-Z][1-12]*"      In LV, the double quotes are are replaced with single quotes but I cannot figure out what to replace the brackets with. 
    The brackets do not return a syntax error but also do not return any results that should fit the pattern.
    I have tried parenthesis, double quotes, using a TO in place of the dash, etc.
    Any input on this is very much appreciated.
    Doug
    I guess sometimes writing the problem out helps one deduce the answer by taking a closer look at what has been tried and what has not.
    So  LIKE "[A-Z][1-12]*"   in Access will be   LIKE ('[A-Z][01-12]%')  in LV.    I hadn't tried the pecent sign in place of the asterisk using the brackets.    Too bad this stuff isn't spelled out in detail somewhere.
    Doug
    "My only wish is that I am capable of learning each and every day until my last breath."

    Thanks Danubio for the links.  The one for the SQL utility may be helpful as I go forward.
    Mike,  yes I am using the connectivity toolkit.  It's what I cut my teeth on and up to this point, has not caused me any issues.   I rarely make changes after implementation but if I do, the use of typedef's keeps it pretty painless.  A brief read on the doc included in your referenced zip file confirms there are alternate methods to talks to the database tables  (I am not a one table programmer).  When time permits, I will do some trials and if warranted, will try some of your techniques at some point.  Simply not enough time currently.
    As I posted intially, I actually solved my problem before there were any replies and included my solution in the first post.  Why there is a syntax difference going from LV to an mdb is an unknown to me but it exists nonetheless.
    Thanks for the input on this
    Doug
    "My only wish is that I am capable of learning each and every day until my last breath."

  • Flex 3: syntax for populating ArrayCollection by loop

    Hi, I'm a newb. I can't find an example of how to do this. Any examples would be greatl appreciated.
    I want to chart some engineering data by populating my chart's dataprovider with an array collection (so far no problem). I want to poulate the array collection by looping through a math expression and I can't figure out the syntax for that. For example...
    [Bindable]
    private var myChartData:ArrayCollection = new ArrayCollection([
        {vertNum:100, horizNum:100}
    I want to loop through and add more points programmatically so if I loop 5 times I end up with...
    [Bindable]
    private var myChartData:ArrayCollection = new ArrayCollection([
         {vertNum:100, horizNum:100},
        {vertNum:110, horizNum:110},
        {vertNum:43, horizNum:120},
        {vertNum:88, horizNum:130},
        {vertNum:140, horizNum:140},
         // etc...
    The number of horizontal variables to plot ould be in the hundreds, so I don't want to set up a huge static array collection with expressions in each location. I'd prefer to solve the expression as a loop iterates and populate the array collection as it goes. But I haven't got a clue how to 'word' that.
    thanks!

    Here is an example of adding data points from a simple formula using a random number generator and scaling the randomness up. The process is just to create a new Object for each iteration of the loop and add the object to your ArrayCollection. You can assign as many properties to the object as you need, which can be helpful for using one ArrayCollection that is displayed in multiple charts.
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" creationComplete="build_model()">
        <mx:Script>
            <![CDATA[
                import mx.collections.ArrayCollection;
                private function build_model():void {
                    var obj:Object;
                    var chartAC:ArrayCollection = new ArrayCollection();
                    for (var i:uint = 0; i < 100; i++) {
                        obj = new Object();
                        obj.horizNum = 100 + 10 * i;
                        obj.vertNum = i * Math.random();
                        chartAC.addItem(obj);
                    linechart1.dataProvider = chartAC;
            ]]>
        </mx:Script>
        <mx:LineChart left="10" right="10" top="54" bottom="10" id="linechart1">
            <mx:series>
                <mx:LineSeries displayName="Series 1" yField="vertNum" xField="horizNum"/>
            </mx:series>
        </mx:LineChart>
        <mx:Button x="10" y="10" label="Build Model" click="build_model()"/>
    </mx:Application>
    Chris

  • Upgrade for Pages says not available for this Apple ID

    I just bought new MacMini. Now upgrade for Pages says not available for this Apple ID, etc. Why? I did not buy the Mini from Apple store, but so what?

    Please test after each of the following steps that you haven't already tried. Stop when the problem is resolved. Back up all data before making any changes. Keep in mind that no one here represents Apple or can help with customer-service issues.
    Step 1
    A purchased app can only be updated by signing in to the App Store with the same Apple ID that was originally used to buy it. There's no way around that limitation, which also applies to free apps. If you can't sign in with the buyer's ID, delete the app and reinstall it. You'll have to pay for it again, if applicable.
    Step 2
    If you get the alert when trying to update a bundled iLife app, select the Purchases page in the App Store and locate the app in your purchase history. If there's a button marked ACCEPT on the right, click it.
    If you have a used Mac, the bundled apps were linked to the original owner's Apple ID and can't be transferred to you. Reportedly, customer service has issued redemption codes to some second owners who asked, but it's not guaranteed.
    Step 3
    If you're trying to update iLife or iWork apps that were installed from a purchased DVD, or if you have a refurbished Mac bought directly from Apple, contact App Store customer service for a redemption code. You may be asked for the part number of the DVD.
    Step 4
    From the App Store menu bar, select
              Store ▹ View My Account
    Enter your Apple ID password at the prompt. At the lower right corner of the window that opens, click the Reset button. Close the window.

  • What is the syntax for this?

    Hi,
    I'm new to CF and am trying to create a security layer for a
    page that has some links where users can download a program.
    I am trying to say, "If you're not logged in and you request
    "myapplication.cfm", abort and go back to the index page. What is
    the correct syntax for this? Also, could you please spell it out
    since, as I said, I'm new to CF and to programming. Thank
    you!

    AmyEverAfter wrote:
    > I was putting it in the Application.cfc file.
    >
    > The OnRequestStart function doesn't seem to work for
    what I'm doing.
    OnRequestStart has always worked for me for this type of
    function. But
    as I have no clue to what you are doing, I can't say why it
    is different
    for you then for me.
    Have you reviewed the example in the documentation?
    http://livedocs.adobe.com/coldfusion/8/htmldocs/appSecurity_14.html
    http://livedocs.adobe.com/coldfusion/8/htmldocs/appSecurity_15.html
    http://livedocs.adobe.com/coldfusion/8/htmldocs/appSecurity_16.html
    http://livedocs.adobe.com/coldfusion/8/htmldocs/appSecurity_17.html
    And the entire section on Securing Applications in the
    ColdFusion
    Developer's Guide?
    http://livedocs.adobe.com/coldfusion/8/htmldocs/appSecurity_01.html
    If you have and are still having trouble, we need to know
    what the
    actual problem(s) is|are, how you have tried to solve them
    (i.e. code)
    and what the results where as well as any error messages
    generated.

Maybe you are looking for