How to link two XL Reporter  templates into single sheet

Hi
I'm Using SAP Business One 2005B, PL 04.
I want to link one template into another XL Reporter Template. Kindly guide me, how to link.
Thanking You

How to create a to  new template with these two templates,  linking it  to a  base table.
I have taken delivery document based on Item delivered. I have grouped it by item Group. I want to link the Instock based on warehouse for those Items. If i try it in a single template i cant get the value for either one of them. How to get these data.

Similar Messages

  • How to merge two seperate free space into single partition/volume???

    Hey guys :)
    Please help me on merging two unallocated free spaces in my internal harddisk. I already tried searching for options in diskmanagement but nothing found to do that. The harddisk has two free spaces(1gb and 50.78gb) now, I want to merge them into single one
    and finally as a single parition/volume. Is there any other method or should use any other third party tool?
    I really wanted to attach a screenshot but sadly microsoft couldn't allow me.

    JAJ
    You need a third party tool like Easeus Partition Manager
    Wanikiya and Dyami--Team Zigzag
    Sure I'll try that. Thank you very much :)
    But it is really sad to say that it is real drawback of windows as it doesn't have its own choice in diskmanagement utility.

  • How to edit two starttime & end time into single start time and end time

    my application is to reserve a resource for particular period of time
    (min 1hr) so i store time into database as numerice value
    i need to edit the reserved time
    my problem is
    (for eg)
    a user reserve as 6.00 to 9.00
    the same user reserve as 15.00 to 18.00 on the same day
    if the user need to edit the time as 8.00 to 16.00 then i need to check the database and update it to 8.00 to 16.00 and those two reservation should not be present in the database
    i dont know how to solve this problem
    kindly help me in this regard
    thank u in advance

    How are you storing the two times?
    If u r storing as two different records u need to delete them and add a new one
    Other approach is to store the time as comma separated values like
    6.00-9.00, 15.00-18.00. when u want to change them just update it with the latest value.

  • Download the ALV Report output into excel sheet or notepad

    Hi,
    how to downlaod the alv report out into excel sheet or notepad in a proper manner. program contain large number records....
    Thanks in advance!!!!
    Regards,
    kranthi.

    Hi
    Download a report to excel with format (border, color cell, etc) 
    Try this program...it may help you to change the font ..etc.
    Code:
    REPORT ZSIRI NO STANDARD PAGE HEADING.
    this report demonstrates how to send some ABAP data to an
    EXCEL sheet using OLE automation.
    INCLUDE OLE2INCL.
    handles for OLE objects
    DATA: H_EXCEL TYPE OLE2_OBJECT,        " Excel object
          H_MAPL TYPE OLE2_OBJECT,         " list of workbooks
          H_MAP TYPE OLE2_OBJECT,          " workbook
          H_ZL TYPE OLE2_OBJECT,           " cell
          H_F TYPE OLE2_OBJECT.            " font
    TABLES: SPFLI.
    DATA  H TYPE I.
    table of flights
    DATA: IT_SPFLI LIKE SPFLI OCCURS 10 WITH HEADER LINE.
    *&   Event START-OF-SELECTION
    START-OF-SELECTION.
    read flights
      SELECT * FROM SPFLI INTO TABLE IT_SPFLI UP TO 10 ROWS.
    display header
      ULINE (61).
      WRITE: /     SY-VLINE NO-GAP,
              (3)  'Flg'(001) COLOR COL_HEADING NO-GAP, SY-VLINE NO-GAP,
              (4)  'Nr'(002) COLOR COL_HEADING NO-GAP, SY-VLINE NO-GAP,
              (20) 'Von'(003) COLOR COL_HEADING NO-GAP, SY-VLINE NO-GAP,
              (20) 'Nach'(004) COLOR COL_HEADING NO-GAP, SY-VLINE NO-GAP,
              (8)  'Zeit'(005) COLOR COL_HEADING NO-GAP, SY-VLINE NO-GAP.
      ULINE /(61).
    display flights
      LOOP AT IT_SPFLI.
      WRITE: / SY-VLINE NO-GAP,
               IT_SPFLI-CARRID COLOR COL_KEY NO-GAP, SY-VLINE NO-GAP,
               IT_SPFLI-CONNID COLOR COL_NORMAL NO-GAP, SY-VLINE NO-GAP,
               IT_SPFLI-CITYFROM COLOR COL_NORMAL NO-GAP, SY-VLINE NO-GAP,
               IT_SPFLI-CITYTO COLOR COL_NORMAL NO-GAP, SY-VLINE NO-GAP,
               IT_SPFLI-DEPTIME COLOR COL_NORMAL NO-GAP, SY-VLINE NO-GAP.
      ENDLOOP.
      ULINE /(61).
    tell user what is going on
      CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'
         EXPORTING
              PERCENTAGE = 0
               TEXT       = TEXT-007
           EXCEPTIONS
                OTHERS     = 1.
    start Excel
      CREATE OBJECT H_EXCEL 'EXCEL.APPLICATION'.
    PERFORM ERR_HDL.
      SET PROPERTY OF H_EXCEL  'Visible' = 1.
    CALL METHOD OF H_EXCEL 'FILESAVEAS' EXPORTING #1 = 'c:\kis_excel.xls'
    PERFORM ERR_HDL.
    tell user what is going on
      CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'
         EXPORTING
              PERCENTAGE = 0
               TEXT       = TEXT-008
           EXCEPTIONS
                OTHERS     = 1.
    get list of workbooks, initially empty
      CALL METHOD OF H_EXCEL 'Workbooks' = H_MAPL.
      PERFORM ERR_HDL.
    add a new workbook
      CALL METHOD OF H_MAPL 'Add' = H_MAP.
      PERFORM ERR_HDL.
    tell user what is going on
      CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'
         EXPORTING
              PERCENTAGE = 0
               TEXT       = TEXT-009
           EXCEPTIONS
                OTHERS     = 1.
    output column headings to active Excel sheet
      PERFORM FILL_CELL USING 1 1 1 'Flug'(001).
      PERFORM FILL_CELL USING 1 2 0 'Nr'(002).
      PERFORM FILL_CELL USING 1 3 1 'Von'(003).
      PERFORM FILL_CELL USING 1 4 1 'Nach'(004).
      PERFORM FILL_CELL USING 1 5 1 'Zeit'(005).
      LOOP AT IT_SPFLI.
    copy flights to active EXCEL sheet
        H = SY-TABIX + 1.
        PERFORM FILL_CELL USING H 1 0 IT_SPFLI-CARRID.
        PERFORM FILL_CELL USING H 2 0 IT_SPFLI-CONNID.
        PERFORM FILL_CELL USING H 3 0 IT_SPFLI-CITYFROM.
        PERFORM FILL_CELL USING H 4 0 IT_SPFLI-CITYTO.
        PERFORM FILL_CELL USING H 5 0 IT_SPFLI-DEPTIME.
      ENDLOOP.
    changes by Kishore  - start
    CALL METHOD OF H_EXCEL 'Workbooks' = H_MAPL.
      CALL METHOD OF H_EXCEL 'Worksheets' = H_MAPL." EXPORTING #1 = 2.
      PERFORM ERR_HDL.
    add a new workbook
      CALL METHOD OF H_MAPL 'Add' = H_MAP  EXPORTING #1 = 2.
      PERFORM ERR_HDL.
    tell user what is going on
      SET PROPERTY OF H_MAP 'NAME' = 'COPY'.
      CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'
         EXPORTING
              PERCENTAGE = 0
               TEXT       = TEXT-009
           EXCEPTIONS
                OTHERS     = 1.
    output column headings to active Excel sheet
      PERFORM FILL_CELL USING 1 1 1 'Flug'(001).
      PERFORM FILL_CELL USING 1 2 0 'Nr'(002).
      PERFORM FILL_CELL USING 1 3 1 'Von'(003).
      PERFORM FILL_CELL USING 1 4 1 'Nach'(004).
      PERFORM FILL_CELL USING 1 5 1 'Zeit'(005).
      LOOP AT IT_SPFLI.
    copy flights to active EXCEL sheet
        H = SY-TABIX + 1.
        PERFORM FILL_CELL USING H 1 0 IT_SPFLI-CARRID.
        PERFORM FILL_CELL USING H 2 0 IT_SPFLI-CONNID.
        PERFORM FILL_CELL USING H 3 0 IT_SPFLI-CITYFROM.
        PERFORM FILL_CELL USING H 4 0 IT_SPFLI-CITYTO.
        PERFORM FILL_CELL USING H 5 0 IT_SPFLI-DEPTIME.
      ENDLOOP.
    changes by Kishore  - end
    disconnect from Excel
         CALL METHOD OF H_EXCEL 'FILESAVEAS' EXPORTING  #1 = 'C:\SKV.XLS'.
      FREE OBJECT H_EXCEL.
      PERFORM ERR_HDL.
          FORM FILL_CELL                                                *
          sets cell at coordinates i,j to value val boldtype bold       *
    FORM FILL_CELL USING I J BOLD VAL.
      CALL METHOD OF H_EXCEL 'Cells' = H_ZL EXPORTING #1 = I #2 = J.
      PERFORM ERR_HDL.
      SET PROPERTY OF H_ZL 'Value' = VAL .
      PERFORM ERR_HDL.
      GET PROPERTY OF H_ZL 'Font' = H_F.
      PERFORM ERR_HDL.
      SET PROPERTY OF H_F 'Bold' = BOLD .
      PERFORM ERR_HDL.
    ENDFORM.
    *&      Form  ERR_HDL
          outputs OLE error if any                                       *
    -->  p1        text
    <--  p2        text
    FORM ERR_HDL.
    IF SY-SUBRC <> 0.
      WRITE: / 'Fehler bei OLE-Automation:'(010), SY-SUBRC.
      STOP.
    ENDIF.
    ENDFORM.                    " ERR_HDL
    Please note that this example maybe slow at filling the excel table
    (perhaps four fields per second on a 900 MHz machine - almost 30 seconds
    for a short example).
    To get the data on properties and methods - there is a bit of smoke and mirrors
    going on here; they are EXCEL properties and methods, not sap ones - so you need
    to look at excel help to determine how a particular function is structured. then
    build the block in sap, as shown in the example.
    If you only want to transfer the data to Excel like when you transfer the data from
    ALV to Excel simply use the Function Modules:
    XXL_SIMPLE_API
    If you want more modifications when you transfer it to Excel use:
    XXL_FULL_API

  • Calling the CSV Export link in a Report Template

    I'm trying to have our "download" link appear on the bottom left rather then the default which is to the far right in Look 4.
    When I look at the source code, I can see how look 3 and 4 differ - different HTML table set-up and "align=right" for the link.
    Unfortunately, looking at the source gives me the direct source for that specific report file not the command to include the csv export file, so I can't include it in a new report template design.
    Is there code I can use to include a CSV link in my report template?
    If not, how can I place the report download/csv export into my Nav bar region, or some other region?

    Michelle,
    Typically you'll find the substitution strings documented in the popup help when clicking on the item label. But this one doesn't seem to be listed there. It's documented in the online help though. Click in the help icon in the upper right corner of your page and search for CSV.
    Marc

  • How to link two combo boxes? (urgent)

    Hello,
    I am wondering how to link two combo boxes in Acrobat Pro 9. Basically, I need to link a building with a list of rooms. There are 3 building choices in my first combo box. For the sake of example, Building A, Building B and Building C. When one of the buildings is selected, I want a 2nd combo box to display the rooms that are located in that building. So by selecting building A, you would then be able to choose a room from the list of available rooms in the second drop box. The buildings cannot share a list of rooms because they have the same room numbers. Is anyone able to help?
    - Travis

    You can also use ajax. When the first combo box element is selected, it will call the ajax function and that ajax function will bring the data from the database and place it in second combo box.

  • How do I output a large pdf into single pages for press?

    How do I output a large pdf into single pages for press?

    It is certainly a good point that, if they need the files separately, and don't even know how to use Acrobat to split it themselves, it might lead one to question their expertise in the PDF field.

  • I'm using pages 5.2 and feeling completely stupid by not knowing how to link two text pages together. Can anyone help? please...

    Hi there, I'm trying to use pages 5.2 for the first time and I cannot find how to connect two consecutive pages together as I use to do with earlier versions of Pages... Any help?

    Word Processing templates have what is called a Document Body.
    That is the area defined by the margins and holds a default text area which flows from page to page.
    Examples of WP templates are the Letters, Reports, CVs etc.
    Layout templates have that switched off and require you to add Textboxes or Shapes into which you can type text. Each page is an individual Section and no text flows from page to page.
    Examples of Layout templates are the Brochures, Business Cards, Posters, Newsletters etc
    In Pages '09 you can manually link Textboxes to flow in your own set order and across pages. Pages 5 has dropped this along with 100 other features.
    Peter

  • How to compare two excel reports and find the difference in BI Publisher

    Hi All,
    I have a requirement that needs to compare two excel reports in XML Publisher 5.6.2. or BI publisher 10.1.3.4
    If anybody has an idea about this pls help us.
    Thanks,

    Since our customer wants to have this comparison only with BI reports....here is the scenario how the comparison should be..
    Now,we have a parameters called Customer name and version id. Version id list will be refreshed based on the customer selection.
    User can generate the report based on the selected customer name and version id. These data are fetch from the oracle database and we are using Data Template in the BI Publisher.
    Now the requirement is customer wants to compare two version id data. for example, v1.2 and v1.3
    Now they wanna to see both the reports while generating in the same work sheet, like, v1.2report should display in the left side and the v1.3report has to display in the right hand side of the same work sheet.
    Now...If there is any addition happened in v1.3 report,then that cell/data should display as a green color in that report.
    If any deletion happened in v1.3report then that should be in the red color.
    If any modification happened in v1.3 then that should be in the yellow color.
    If there is no difference then that should display as it is.
    the thing is that, the both the reports (v1.2 and v1.3)should display side by side in the same worksheet with the format and everything........only the difference should be highlighted.
    Template is same for both the reports..
    To display the data for both versions i think i can generate the template side by side of both in the same worksheet.
    Now, My question is how to find the difference of data in the RTF Template for both the versions
    Can anybody assist me?
    Thanks,
    Edited by: user753355 on Jun 9, 2009 12:03 AM
    Edited by: user753355 on Jun 9, 2009 12:06 AM
    Edited by: user753355 on Jun 9, 2009 12:16 AM
    Edited by: user753355 on Jun 10, 2009 3:59 AM

  • What is best way to link two interactive reports?

    Hi,
    =================
    Basic Set UP
    =================
    I've created two interactive reports-- Project report in Project page and Task report in Task page.
    Project report in Project page can contain multiple projects.
    Task report in Task page can contain multiple tasks.
    One project can have multiple tasks.
    But one task can have only one project.
    =================
    What I'm trying to achieve
    =================
    When I click a Project Name, it should pass Project ID to Task page and display tasks that are pertaining to the project.
    When I create a new task, the passed Project ID should be mapped to the task.
    =================
    Challenges
    =================
    1. How can I pass Project ID from Project page to Task page while clicking Project Name in Project page ?
    2. How can I get Project Name in Task page based on the Project ID passed from Project page ?
    3. How can I display tasks pertaining to the Project Name ?
    4. How can I take Project ID passed to Task page and map it to a new task?
    Thanks,
    Guy

    1. How can I pass Project ID from Project page to Task page while clicking Project Name in Project page ?Create hidden item in Task Page, for example :P2_PROJECT_ID. Than link on required column to Task page:
    Interactive Report -> Edit Column -> Link.
    2. How can I get Project Name in Task page based on the Project ID passed from Project page ? There is two ways you can create a function that will return project name by id or you can post project name to task page (The second way is unsafe, you can miss some parts of your project name if you will have a ',' symbol)
    3. How can I display tasks pertaining to the Project Name ?In interactive report source add condition to your query, for example:
    and task_table.project_id=:P2_PROJECT_ID

  • How to make two mono audio tracks into a stereo pair?

    My video clip, brought over into Premiere CS6 from Final Cut Pro 5, has the usual left and right audio tracks, but in Premiere they are not linked into a stereo pair. Thus the volume level has to be adjusted separately in each track.
    In Final Cut, I can quickly convert two independent audio tracks into a stero pair by selecting the tracks and then going to the menu Modify > Stereo Pair.  I can't figure out how to do this in Premiere.
    When two audio tracks are not linked, the volume level has to be adjusted separately in each track, which wastes time. But after two tracks are linked into a Stereo Pair in Final Cut, adjusting either track adjusts them both, together. That's what I want to do now in Premiere.
    So, how do I make two separate audio tracks into a linked Stereo Pair in Premiere?
    Tom

    Hi Tom,
    Tom77 wrote:
    I need to do in my videos that I either can't do in Premiere or that require involved workarounds like this, things that I can do instantly
    I used to think like you do. These aren't workarounds, per se. The issue is that Premiere Pro is a different program, so you have to approach some things slightly differently.
    Actually, Premiere Pro's audio capability is more like a DAW than Final Cut was, and more powerful too, so if you know that workflow it makes more sense. A lot of FCP people don't have training in programs like ProTools or Audition, so it's more difficult for folks like yourself (and me, too) to catch on. Once you learn it, though, you begin to see its power.
    Tom77 wrote:
    things that I can do instantly with the flick of a keyboard command in Final Cut, such as link and unlink audio tracks.
    In Premiere Pro CC, you can link and unlink audio and video tracks with a keyboard shortcut for "Linked Selection." You have to create it in your Keyboard Shortcuts dialog box, but it works just like the one in FCP. Make it Shift + L if you like.
    Tom77 wrote:
    Not to mention the fact that I can have as many projects open in Final Cut as I want, and copy and paste between them. Each open project becomes a tab on the timeline, and I can jump beween projects by just clicking on their tabs. I was shocked when I tried to open two projects in Premiere to find that it only allows one at a time to be open. That seems really primitive--
    Again, you can achieve what you want (copying and using items from other projects), you just have to go about it differently. All you do is navigate to the other project files in the Media Browser and import items that you need in this fashion. So, no, you don't have more than one project open at a time, but you got what you wanted, stuff from another projects in your current project. That works for me, anyway.
    Again, Premiere Pro is a different program. You can achieve the same goals, but sometimes have to go about it differently. Some things are faster, some slower. Some are easier to learn, some harder. Hopefully, you see my point.
    I need video generators to make arrows, circles, squares, etc. and transitions such as edge wipes and clock wipes to animate them, all to point out and emphasize things that I'm demonstrating and explaining in my videos. Premiere has no such generators, nor are there any third-party plug-ins available to add them, that I've been able to find.
    Do you know about the Titler? It has a lot of useful shapes. You can also create shapes in After Effects and Photoshop and import them. The shapes you make in those programs can look a lot better than the stock FCP effects.
    There are lots of third party effects, some that have generators. Check out Boris Continuum, FX Factory, CoreMelt, Film Impact, and more.
    There are pitifully few transitions in Premiere at all (the Mac version) compared to Final Cut.
    I'm really not a transitions person, and I find the FCP transitions looking tired anyway. The only one I really need is a white flash and I can either create it, or use a third party flash effect. If you need cool, modern transitions, check out Film Impact or the other third party plug in foundries I mentioned. There is an Edge Wipe transition, called "Wipe." If you need feathering, check out the Wipe Effect, which you can keyframe to look like a transition.
    More and more I would like to be moving completely into Premiere, but I keep running into these inadequacies in the program, these roadblocks, for my purposes at least.
    The more you work with it, the less you'll be working with FCP. That's what most people are saying anyway. Sure, there are minor annoyances associated with learning a new app, but you also take the good along with it. I suggest you just dive right in. It may take longer at first, but you can get your speed up in time.
    I have no doubt that sometime in the future Premiere will become everything that I want it to be, and at that time I can finally abandon Final Cut for good, as I wish I could do right now.
    I also came from FCP, taught FCP for nearly a decade, wrote a book about FCP, help start the first FCPUG, worked at Apple on two versions of FC Studio, so I do know what you are going through. Just keep at it and keep posting here. I'll be glad to help you with any workarounds or confusion related to moving over from FCP.
    Thanks,
    Kevin

  • How to link two authorizations to an object.

    Hello,
    In the EWA report I received the following recommendation:
    "If you do not want to disable development in your system, you have to exclude OBJTYPE=DEBUG with ACTVT=02 from the profile and allow any other object type for S_DEVELOP. This means that development and debugging with visualization are still possible.
    You can do this by linking two authorizations to object S_DEVELOP: One with all object types (except "DEBUG") and all activities and another for object type DEBUG only with all activities (except 02)."
    How to achieve this?
    Thanks
    Galina

    > I try not to maintain transactions in SU24. 
    >...
    > We have a small user population. 
    I can understand that, however it still has a downside when your user base grows, or you move on and someone else needs to take over, or the functional consultants leave the building and when you upgrade or apply support packs and need to make some changes, then you don't know why the authorization was added manually - at least not without having to sieve through a sea of documentation and mails etc.
    It is easier to find a transport request and it's documentation IMO, and who knows about it, approved it, tested it, etc.
    It is just a little organizational discipline thing, but it does go a long way.
    Cheers,
    Julius

  • How to link two ID account to only one

    I have two Apple ID account, and I would like to link them into one account without losing my purchase on both account. How this is possible?

    You cannot link two Apple ID's together.  You can only log into one and download its purchases, and then log out and into the other account.  You should choose one to continue using for the foreseeable future, and hope that someday Apple allows you to link accounts.

  • How to link two .java files together?

    hello everybody,
    is it possible to link two or more .java files together? I mean is if I have 3 .java files. (a.java, b.java, c.java) then I have 3 .class files too. How do I use the method in other .java files. For example :
    public a extends Applet {
    // call b.class
    b();
    public b extends Applet implements ActionListener {
    void title1() {
    How to call the b.class? How to call the title1() method?
    Is it related to JAR or package??
    Thanks for helping me. v(^_^)v

    O.K, you do not link ".java" files together.
    You compile them into class files and they can create new instances of each other and and access their variables and work together.
    I recommend "Sam's Teach Yourself Java in 21 Days".
    It will start you out with the basics.
    --Ian                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    

  • How do i upload a Musegrid template into Muse on my mac so i can edit it?

    Hi I am new to Muse.  I just bought a template from Musegrid that I want to upload onto Muse on my imac and then edit my content into it.
    I just cant see how to upload the template into Muse to get started, can anyone help please.
    Many Thanks
    Steve

    Hi Steve,
    Simply unzip the downloaded template. Then in Muse in the file menu at the top select open site. Then browse to the .muse file from the download.

Maybe you are looking for

  • Fp40 - in FI-CA: transfer open items

    hi gurus, in transferring open items from one contract to another, need to avoid selecting certain items (based on value in a field of table DFKKOP). ANY IDEA? 1. maybe avoiding those items from the open items list to be selected from? 2. adding that

  • H:panelGrid and td tag attributes

    Hi, I am using h:panelGrid for a static table with just 2 columns and a few rows. My UI designer created two styles for alternating rows. I added following to the panelGrid: rowClasses="rowbg1, rowbg2". The UI designer does not like the fact that tho

  • C6-00 mail for Exchange account consumes a lot of ...

    Hi all, I'm trying to set up push mail for my gmail account. I have tried RoadSync application and built-in 'Mail for Exchange' account in my phone. While RoadSync after one hour of instance connection consumes about 100kB of transfer built-in accoun

  • SAP PP  for BI reporting

    Hello, i am presently working on BI implementation project and my reporting area given is SAP PP. Has any body worked on PP area. please give some inputs. amit shetye

  • What determines which inputs you can select from when you're creating a VISA Resource Name Constant?

    Hey, I'm trying to write a labview driver an instrument. I have another instrument which came with labview drivers, and I had hoped that by looking at how they did it, I could write my own for this piece of equipment. However, the problem is they use