XL reporter Address format

Dear all,
In the XL reporter I've created a report which shows all deliveries created for a special period (daily basis).
This report will be created daily for the use of the transporter of our goods, the so called cargolist.
One of the fields we have to use is the SO_Address2 field which will show the address to where the goods will be send.
However the value of this field is printed in 1 long value and we have to bring it back to a nice addressformat.
Does anybody know if this is possible in the XL reporter?
Thanks in advance.
Regards,
Carl Verhagen

Hi Daan,
Thanks for the quick reply.
The reports are just a simple creation as we have SAP B1 for a few months now to test and we have to create several reports.
So for the cargolist, I just drag all the fields (from the Sales tab) we want to see from the report composer into the report view.
The (ODLN).Address2 field is one of them.
We also have sometimes more ship to addr for a BP so that's why I choose the Addr2 field from the ORDR,ODLN..tables.
Do we have to use another field or how can we format this field?
Regards,
Carl

Similar Messages

  • Address formatting in Cheque printing

    I am doing an enhancement on Cheque printig to change the address format.I coded a perform to call a subroutine to which i am giving the address number and retrieving the address as ADDRESS-END ADDRESS is causing some issues .but when the subroutine is called it passes address no. in some different format( like XXXXX) rather than actual value.I debugged script and in the particular window the adress no. is displayed as XXXX.i also used CONVERSION_EXIT_ALPHA_INPUT.Any suggestion is highly appreciated.Below is piece of my code
       /: DEFINE &GV_NAME& = ' '
       /: PERFORM GETADD IN PROGRAM ZRFI_FI110_CHCK_CA
       /: USING &GV_ADR&
       /:CHANGING &GV_NAME&
       /: ENDPERFORM
    REPORT  ZRFI_FI110_CHCK_CA.
    types : gtt_itcsy type standard table of itcsy .
    *&      Form  GETADD
    form getadd tables xt_intab  type  gtt_itcsy
                       xt_outab  type  gtt_itcsy.
    data: lv_name1 type NAME1,
          lv_adrnr type ADRNR,
          lwa_input type itcsy,
          lwa_output type itcsy,
          zadrc type adrc.
    read table xt_intab into lwa_input index 1..
    lv_adrnr = lwa_input-value.     ( here i am getting value of address no. from script as XXXXXXX)
    select single * into zadrc from adrc
                                 where addrnumber = lv_adrnr  and
                                       date_to  >=  sy-datum and
                                       nation     = space.
       lv_name1 = zadrc-name1.
    read table xt_outab into lwa_output index 1.
      lwa_output-value = lv_name1.
      modify xt_outab from lwa_output index 1.
      endform.

    hi amar,
    this is my subroutine. i fetch requiredvalues like this and not using address---endaddress.
    form get_ADDRESS TABLES  in_tab STRUCTURE itcsy
                          out_tab STRUCTURE itcsy.
      DATA : STREET1 LIKE ADRC-STR_SUPPL1,
             STREET2 LIKE ADRC-STR_SUPPL2,
             STREET3 LIKE ADRC-STR_SUPPL3.
      DATA :  ZADNR LIKE REGUH-ZADNR.
      DATA : LV_ADRNR TYPE AD_ADDRNUM.
      DATA : IT_ADRC TYPE ADRC OCCURS 0 WITH HEADER LINE.
    *BREAK MTABAP.
      READ TABLE IN_TAB INDEX 1.
      CONDENSE IN_TAB-VALUE.
      MOVE IN_TAB-VALUE TO  ZADNR.
      MOVE ZADNR TO LV_ADRNR .
    CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
      EXPORTING
        INPUT         = LV_ADRNR
    IMPORTING
       OUTPUT        = LV_ADRNR           .
    SELECT * FROM ADRC INTO TABLE IT_ADRC
      WHERE ADDRNUMBER  = LV_ADRNR .
      READ TABLE IT_ADRC WITH KEY ADDRNUMBER = LV_ADRNR.
      STREET1 = IT_ADRC-STR_SUPPL1.
      STREET2 = IT_ADRC-STR_SUPPL2.
      STREET3 = IT_ADRC-STR_SUPPL3.
    read table OUT_tab index 1.
    MOVE STREET1 TO OUT_TAB-VALUE.
    CONDENSE OUT_TAB-VALUE.
    MODIFY OUT_TAB INDEX 1.
    read table OUT_tab index 2.
    MOVE STREET2 TO OUT_TAB-VALUE.
    CONDENSE OUT_TAB-VALUE.
    MODIFY OUT_TAB INDEX 2.
    read table OUT_tab index 3.
    MOVE STREET3 TO OUT_TAB-VALUE.
    CONDENSE OUT_TAB-VALUE.
    MODIFY OUT_TAB INDEX 3.
    ENDFORM.
    in in sapscript , i added,
    /: DEFINE &STREET1&.
    /: DEFINE &STREET2&.
    /: DEFINE &STREET3&.
    /: PERFORM GET_ADDRESS IN PROGRAM ZRFFOUS_FORM
    /: USING &REGUH-ZADNR&.
    /: CHANGING &STREET1&.
    /: CHANGING &STREET2&.
    /: CHANGING &STREET3&.
    /: ENDPERFORM.
    A6 &SPACE(6)&&REGUH-ZNME1&               
    A6 &SPACE(6)&&REGUH-ZSTRA&
    A6 &SPACE(6)&&STREET1&
    A6 &SPACE(6)&&STREET2&&SPACE(1)&&STREET3&
    A6 &SPACE(6)&&REGUH-ZORT1&-&REGUH-ZPSTL&&ADRC-POST_CODE1&
    hope this helps u.

  • My apple id is not working on icloud because it is not in email address format.   how can i change my apple id to email format so icloud can work?

    Hello - I just purchased an iPhone 4s and would like to use iCloud but my apple id is not in email address format so when i try to sign into iCloud it won't let me use my apple id.  i tried to change my apple id through my account settings but could not find a way to do that.  i found ways to change everything else in my settings but when i pushed on the edit button to change my apple id the page didn't change.  Not sure how i can get to use iCloud?  Please help.

    You change the name of your ID at https://appleid.apple.com.  See http://support.apple.com/kb/HE40.

  • Changing Oracle Report Output Format at runtime

    Dear All,
    I've custom Oracle Report in Oracle Apps., and would like to give the users an option to select the output format (XML, TEXT, PDF, etc.) whilst submitting the request.
    As a SYSADMIN, we can modify the Output Format value of the concurrent program(Oracle Report in this case) to one we like.
    But I would like the user to select this output format option at runtime, rather then hard coding at SYSADMIN level. For that I've to create a Value Set with the desired report output format options, and attach this to the concurrent program.
    My question is, how we can make the desired output format to work at runtime?
    If any one can help?
    Thanks,
    Sandeep

    Hi Steve,
    I couldn't get it...???
    I'm running an Oracle Report in Oracle Apps. release 11.5.9
    The default output format of this report is TEXT, which is defined in its concurrent program.
    This report is submitted using standard request submission screen, and after successful completion we can view the output by pressing "View Output" button on "Requests" screen. This will open an another window and we can view the output page by page. Using "Tools>Copy File..." menu option, we can view the same output in IE window.
    Now, how does your resolution fits here and how can I view the same report in XML format?
    Many Thanks,
    Sandeep

  • SAP report print formats

    Hi!
    There are several report print formats in an ABAP report. You can choose between them during printing, some examples: X_65_80 (80 columns, 65 lines), X_90_120 (120 columns, 90 lines) and so on...
    Is there away to define more "standard" like printer formats?
    I know, I can give anything after the REPORT statement (like REPORT zreport LINE-SIZE 99 LINE-COUNT 99) but these are not standard and mostly the printers don1t like them.
    Thank you in advance
    Tamá

    Hi Tamas,
    When you run the report, the spool will be displayed on the screen. At this time, click on print,the system will show the print dialog. Click on properties, this will spool request attribites dialog. Click settings. in the next dialog box, select the required field, and the value and select the validity as required. This way you can set the standard format for all reports.
    Ravi

  • How to make Address Book obey Preferences? I run MacBook Pro 4.1 laptop,  Mac OS X 10.6.8  Address Book 5.0.3 (883) Preferences set at ... General First name following Last name   Sort for Last name Address Format Canada Font size Large Phone format set a

    How to make Address Book obey Preferences?
    I run MacBook Pro 4.1 laptop,  Mac OS X 10.6.8
    Address Book 5.0.3 (883) 
    Preferences set at ...
    General
    First name following Last name 
    Sort for Last name
    Address Format Canada
    Font size Large
    Phone format set at
    +1.123.456.7890
    When application quits - it's all forgotten and it self-resets to
    unwanted configuration.

    Whenever you remove system modifications, they must be removed completely, and the only way to do that is to use the uninstallation tool, if any, provided by the third-party developers, or to follow their instructions. If the software has been incompletely removed, you may have to re-download or even reinstall it in order to finish the job.
    Here are some general guidelines. Suppose you want to remove something called “BrickYourMac.” First, consult the product's Help menu, if there is one, for instructions. Finding none there, look on the developer's website, say www.brickyourmac.com. (That may not be the actual name of the site; if necessary, search the Web for the product name.) If you don’t find anything on the website or in your search, email the developer. While you're waiting for a response, download BrickYourMac.dmg and open it. There may be an application in there such as “Uninstall BrickYourMac.” If not, open “BrickYourMac.pkg” and look for an Uninstall button.
    If you can’t remove software in any other way, you’ll have to erase your boot volume and perform a clean reinstallation of OS X. Never install any third-party software unless you're sure you know how to uninstall it; otherwise you may create problems that are very hard to solve.
    Trying to remove complex system modifications by hunting for files by name often will not work and may make the problem worse. The same goes for "utilities" that purport to remove software.

  • How to setup the From header  in fullname and email address format

    when I sent mail from the messaging express , the mail that I sent cannot show the sender in the fullname and email address format. I use webmail and other mail client . It show only email address. I don't know how to setup this . I use the SUN JES messaging server 6.0 SP1 .

    exactly so.
    in general, for any configutil setting:
    0=off=no
    1=yes=on

  • Standard US Address format in Smart forms

    Hi All,
    Can any one please tell me how can we achieve standard US Address format while displaying Address.
    Thanking you in advance.
    Ragards,
    Bhanu.R

    Command ADDRESS - ENDADDRESS formats an address according to the postal standards of the destination country defined in parameter COUNTRY. the reference fields are described in structure ADRC
    Syntax
    /: ADDRESS
    write ur address between this commands
    /: ENDADRRESS

  • Composer Process Report XML Format

    Hi,
    We generated 'Process Report' -- XML format in Oracle BPM Composer. After generating saved content in a xml file. When tried to open this file, getting error message like not in proper xml format etc., Have we missed any thing in installing or configuring Composer. pleased suggest.
    -- Thanks .... Murthy

    @trevorbutler -  Could you send us what version of Ant you're using and a  sample of how you're using the <junit> Ant task?  Additionally,  can you validate that the example you gave for the JUnit output is from  the <junit> Ant task and not the <junitreport> task?  Could you also let us know which version of JUnit you used with Ant, just in case?
    FWIW - The XML output that you see from running tests in JUnit via the <junit> Ant task is output that has been defined without specification by the folks at Apache Ant.  There has been a lot of discussion on standardizing the output amongst the folks at TestNG, the Maven Surefire plugin and others, but I haven't seen anything standardized come out of that.  Here is a wiki page that has some of that discussion http://wiki.apache.org/ant/Proposals/EnhancedTestReports.  t's also important to note, that the aggregate results of the <junitreport> task contain a slight variation on the output produced by the <junit> task.  Consequently, we have to emulate the lowest common denominator that we know will work with the tools out there that parse the XML output associated with an xUnit framework (e.g. - Ant tasks, CI server, etc).  This being said, we rely on the community to keep us up to date with variations that we may have missed or for which need to update.  It's not so much that we've decided to exclude any particular elements from the output, we just need help fine tuning as time goes on.
    Thanks for the help.
    -Brian

  • Can I set the address format for individual contacts?

    I have some foreign friends and would like to set the address format for their individual cards correctly. I can't seem to find a way to do this. I will be taken aback if this can't be done - I think the old Claris contact product did that.
    Anyone with any answer?
    Bryan

    Hi Bryan,
    When in edit mode, can you right click on the address field and change the country format there? I'm not on a Mac at the moment to double check, but that's what you do in OS 10.4 so I'd be surprised if it were changed in 10.5.
    Edit: Here's picture to demonstrate what I'm referring to:
    !http://www.ampersandbox.com/imprint/change-address-format.jpg!

  • Preventing empty rows in address formats

    Hallo everyone!
    I'd like to know if there is a method to prevent SBO2005A from printing empty rows in the address fields when for instance there is missing county in BP addresses like this:
    I have defined an address format that goes
    Block
    County
    Street
    ZipCode | Freetext(" ") | City
    We use Block as "Name2" and County as "Name3" in master data just in case the customer wants to use additional names for his BPs.
    If I use the "Block" - field and I leave the "County" - field blank it prints an empty row between "Block" and "Street". This is not the behaviour I would like to see. In case "county" is missing I would rather see something like this in a printout:
    Block
    Street
    ZipCode | Freetext(" ") | City
    So, is there a method to force this? or any workaround?

    Hello Patryk,
    PLD does not offer the functionality to control the blank lines in an address field.  I would suggest you use a formatted search in your address field on the marketing document and have it formatted in the document itself before you print.
    Please see sample code for your requirment for the Ship to address.  If you want this to applied to the Bill to address field then you have to slight alter the query by cha
    For Shipto address formatting
    SELECT CASE WHEN T0.Block IS NOT NULL THEN + CHAR(13) + CHAR(10) + T0.Block + CHAR(13) + CHAR(10) ELSE '' END +
    CASE WHEN T0.County IS NOT NULL THEN + CHAR(13) + CHAR(10) + T0.County + CHAR(13) + CHAR(10) ELSE '' END +
    ISNULL(T0.Street, '') + CHAR(13) + CHAR(10) + ISNULL(T0.ZipCode, '') + '  ' + ISNULL(T0.City, '')
    FROM  [dbo].[CRD1] T0 WHERE T0.AdresType = 'S' AND T0.Address = $[$40.0.0] AND T0.CardCode = $[$4.0.0]
    For Billto address formatting
    SELECT CASE WHEN T0.Block IS NOT NULL THEN + CHAR(13) + CHAR(10) + T0.Block + CHAR(13) + CHAR(10) ELSE '' END +
    CASE WHEN T0.County IS NOT NULL THEN + CHAR(13) + CHAR(10) + T0.County + CHAR(13) + CHAR(10) ELSE '' END +
    ISNULL(T0.Street, '') + CHAR(13) + CHAR(10) + ISNULL(T0.ZipCode, '') + '  ' + ISNULL(T0.City, '')
    FROM  [dbo].[CRD1] T0 WHERE T0.AdresType = 'B' AND T0.Address = $[$226.0.0] AND T0.CardCode = $[$4.0.0]
    Suda

  • Non-Interactive Report Break Formatting

    I have a non-interactive report that is very large and I am trying to use break formatting to provide subtotals. It works, but is quite ugly. Can anyone tell me where I might find a list of the various substitution strings that can be used for controlling the appearance of the breaks? For example, right now when it breaks for a change in "Payor Name", the subtotal row is labeled "Total for Payor Name". It would be much friendlier if the row label said "Total for Aetna" when Aetna is the Payor Name and "Total for Cigna" when the Payor Name is Cigna, etc. For example
    [Parent Name|http://ndhoast.tsh.mis.mckesson.com:7778/pls/apex/f?p=123:75:720425469268847:fsp_sort_1_desc::RP&fsp_region_id=27444927281350588|Sort by this column] [Payor Name|http://ndhoast.tsh.mis.mckesson.com:7778/pls/apex/f?p=123:75:720425469268847:fsp_sort_2::RP&fsp_region_id=27444927281350588|Sort by this column] ClaimType ST [RH Payor ID|http://ndhoast.tsh.mis.mckesson.com:7778/pls/apex/f?p=123:75:720425469268847:fsp_sort_5::RP&fsp_region_id=27444927281350588|Sort by this column] [Naic/EmdPayor Id|http://ndhoast.tsh.mis.mckesson.com:7778/pls/apex/f?p=123:75:720425469268847:fsp_sort_6::RP&fsp_region_id=27444927281350588|Sort by this column] LOC TRX [TRX Count|http://ndhoast.tsh.mis.mckesson.com:7778/pls/apex/f?p=123:75:720425469268847:fsp_sort_9::RP&fsp_region_id=27444927281350588|Sort by this column] [TRX Dollar Amt|http://ndhoast.tsh.mis.mckesson.com:7778/pls/apex/f?p=123:75:720425469268847:fsp_sort_10::RP&fsp_region_id=27444927281350588|Sort by this column]
    World Insurance Company World Insurance Company I - COMM085001 75276 DBQ CLM 18 $40,679.82
    Total for: ClaimType *18* *$40,679.82*
    P - COMM098401 75276 DBQ CLM 457 $129,959.38
    Total for: Payor Name *475* *$170,639.20*
    Total for: Parent Name *475* *$170,639.20*

    This has been an area in need of some attention for quite a while, in my opinion.
    Re: Formatting of Reporting Totals
    Re: Report Break Formatting
    I've just looked at 3.2, and the help messages are the same &ndash; not at all helpful &ndash; ones I remember from 1.6.
    I'm seem to recall this was raised on one of the enhancement request threads, but it doesn't seem to have been touched...

  • REPORT DESIGNER FORMAT CATALOG BACKGOUND IS BLACK

    REPORT DESIGNER FORMAT CATALOG AND CELLS BACKGOUND ARE BLACK IN COLOUR, DIFFICULT TO FIND CELL ELEMENTS
    ANY SOLUTION TO THIS .
    THANKS,
    NAGESH

    Hello,
    Solution for that is to install the newest availlable Support Package for GUI. I assume that you have GUI version 7.10 and BI SP probably < 3. Please install SP 3 for BI and this issue should be solved.
    Regards, Karol

  • Crystal reports and formatted reporting.

    hi experts,
    i have a clarification about  crystal reports and formatted reporting.in what scenarios they are used..
    points ll be rewarded...
    thanks
    baskar

    Hi ,
    Crystal Reports is a powerful, dynamic, actionable reporting solution that helps you design, explore, visualize, and deliver reports via the web or embedded in enterprise applications. It enables end users to consume reports with stunning visualizations, conduct on-report business modeling, and execute decisions instantly from the report itself—reducing dependency on IT and developers.
    The report can then be previewed on the screen, printed onto paper or exported to one of several different file formats such as PDF, Excel, text or CSV.
    It is also possible to run a Crystal Report without using the full Crystal Reports designer software. These alternate methods for running reports include locally installed viewers, schedulers, and report distribution tools. These are typically third-party software programs (independent of Business Objects) that allow you to open, refresh, preview, print and export an RPT file. In 2007 Business Objects released their own viewer, Crystal Reports Viewer XI, but unlike the independent viewers it does not allow the user to refresh the report, but only to view static data saved in the RPT file.
    Thnx,
    Srinivas

  • Add CSV file as Scheduled Report Output Format

    Is there any option in BOXI R2 and R3 - Add CSV file as Scheduled Report Output Format. If not, how do we achieve this?

    Hai
    http://www.christiansteven.com/products/crd/
    http://webtrends.dbt.co.uk/wrc/help/webhelp/hlp_exrpt.htm
    http://www.businessobjectstips.com/tips/infoview/business-objects-cannor-not-create-an-excel-file/

Maybe you are looking for

  • Save view button in SAP BW Query Report view

    Dear all, When SAP BW Query report iview is called in portal, u will get Save view, Bookmark, variableSreen...etc buttons.. When u click on saveview button...it will ask u to save as a view of that report with specfic name. My question is, where it w

  • Regarding BDC for CO01

    Hi Friends, Can anybody help me for BDC CODE for CO01(Create production order). This is 1st time i am using BDC for CO01. I don't know how to do recording of CO01. How many fields are mandatory? Or Anyother way to Create production orde.(Like FM or B

  • Presentation Server Service is not Start

    Hi Experts, I follow the steps to Email deliver the reports as per Venkatakrishna blog, and I added bellow three lines in instanceconfig.ini file <CredentialStore> <CredentialStorage type="file" path="C:OracleBIData\web\Config\credentialstore.xml"/>

  • Brush to .pdf

    Dear Friends, Could anyone please tell me how to use brushes with .pdfs in Illustrator CS5? I imported the .pdf via the Place function. In fact I want to put a whole-page frame/boder in an A/4 document. MS Word has very simple borders. Thank you. Che

  • How to connect Time Capsule?

    I am looking for a backup solution and I am consider a Time Capsule. Consider the following situation: Mac Pro Leopard I have a few questions: 1. Can I connect the Time Capsule via ethernet and direct Time Machine to backup to the Time Capsule using