Issue in Rpadding with concatenation

Hi,
I have a issue with one of the column in RTF.
The Column has the value of
'Two Hundred Nineteen And Twenty-Seven'( numbers may vary for different input)
Required Output
the column has TWO LINES,In single line it can print upto 49 characters (Courier New font)
The output should display like below,
Two Hundred Nineteen Pounds And Twenty-Seven
Pence Only *******************************
My requirement is Pounds should be added before AND and pence only should be added at last and to be padded with * in remaining spaces of the two lines.
Please help me with the same.
Thanks,
Sabari

Hello,
Please follow the rules to output PDF correctly for ZF/ZH language:
(1) workprocess need run under
       ZF/ZH language   (logon with ZF/ZH or switch by set locale)
       codepage 8300/8400 (or compatible codepages)
(2) SAPScript need include ZF/ZH version. Please verify by:
       Go SE71->input SAPScript name, language key ZF/ZH -> display
(3) SAPScript need assign Chinese font for paragraph used to output
     Chinese character
(4) SAPScript need open with ZF/ZH language(OPEN_FORM with ZF/ZH language)
Regards,
David

Similar Messages

  • Execution plan with Concatenation

    Hi All,
    Could anyone help in finding why concatenation is being used by optimizer and how can i avoid it.
    Oracle Version : 10.2.0.4
    select * from
                               select distinct EntityType, EntityID, DateModified, DateCreated, IsDeleted
                               from ife.EntityIDs i
                               join (select orgid from equifaxnormalize.org_relationships where orgid is not null and related_orgid is not null
                                  and ((Date_Modified >= to_date('2011-06-12 14:00:00','yyyy-mm-dd hh24:mi:ss') and Date_Modified < to_date('2011-06-13 14:00:00','yyyy-mm-dd hh24:mi:ss'))
                                        OR (Date_Created >= to_date('2011-06-12 14:00:00','yyyy-mm-dd hh24:mi:ss') and Date_Created < to_date('2011-06-13 14:00:00','yyyy-mm-dd hh24:mi:ss'))
                     ) r on(r.orgid= i.entityid)
                               where EntityType = 1
                and ((DateModified >= to_date('2011-06-12 14:00:00','yyyy-mm-dd hh24:mi:ss') and DateModified < to_date('2011-06-13 14:00:00','yyyy-mm-dd hh24:mi:ss'))
                                              OR (DateCreated >= to_date('2011-06-12 14:00:00','yyyy-mm-dd hh24:mi:ss') and DateCreated < to_date('2011-06-13 14:00:00','yyyy-mm-dd hh24:mi:ss'))
                               and ( IsDeleted = 0)
                               and IsDistributable = 1
                               and EntityID >= 0
                               order by EntityID
                               --order by NLSSORT(EntityID,'NLS_SORT=BINARY')
                             where rownum <= 10;
    Execution Plan
    Plan hash value: 227906424
    | Id  | Operation                                 | Name                          | Rows  | Bytes | Cost (%CPU)| Time     | Pstart| Pstop |
    |   0 | SELECT STATEMENT                          |                               |    10 |   570 |    39   (6)| 00:00:01 |       |       |
    |*  1 |  COUNT STOPKEY                            |                               |       |       |            |          |       |       |
    |   2 |   VIEW                                    |                               |    56 |  3192 |    39   (6)| 00:00:01 |       |       |
    |*  3 |    SORT ORDER BY STOPKEY                  |                               |    56 |  3416 |    39   (6)| 00:00:01 |       |       |
    |   4 |     HASH UNIQUE                           |                               |    56 |  3416 |    38   (3)| 00:00:01 |       |       |
    |   5 |      CONCATENATION                        |                               |       |       |            |          |       |       |
    |*  6 |       TABLE ACCESS BY INDEX ROWID         | ORG_RELATIONSHIPS             |     1 |    29 |     1   (0)| 00:00:01 |       |       |
    |   7 |        NESTED LOOPS                       |                               |    27 |  1647 |    17   (0)| 00:00:01 |       |       |
    |   8 |         TABLE ACCESS BY GLOBAL INDEX ROWID| ENTITYIDS                     |    27 |   864 |     4   (0)| 00:00:01 | ROWID | ROWID |
    |*  9 |          INDEX RANGE SCAN                 | UX_TYPE_MOD_DIST_DEL_ENTITYID |    27 |       |     2   (0)| 00:00:01 |       |       |
    |* 10 |         INDEX RANGE SCAN                  | IX_EFX_ORGRELATION_ORGID      |     1 |       |     1   (0)| 00:00:01 |       |       |
    |* 11 |       TABLE ACCESS BY INDEX ROWID         | ORG_RELATIONSHIPS             |     1 |    29 |     1   (0)| 00:00:01 |       |       |
    |  12 |        NESTED LOOPS                       |                               |    29 |  1769 |    20   (0)| 00:00:01 |       |       |
    |  13 |         PARTITION RANGE ALL               |                               |    29 |   928 |     5   (0)| 00:00:01 |     1 |     3 |
    |* 14 |          TABLE ACCESS BY LOCAL INDEX ROWID| ENTITYIDS                     |    29 |   928 |     5   (0)| 00:00:01 |     1 |     3 |
    |* 15 |           INDEX RANGE SCAN                | IDX_ENTITYIDS_ETYPE_DC        |    29 |       |     4   (0)| 00:00:01 |     1 |     3 |
    |* 16 |         INDEX RANGE SCAN                  | IX_EFX_ORGRELATION_ORGID      |     1 |       |     1   (0)| 00:00:01 |       |       |
    Predicate Information (identified by operation id):
       1 - filter(ROWNUM<=10)
       3 - filter(ROWNUM<=10)
       6 - filter(("DATE_MODIFIED">=TO_DATE(' 2011-06-12 14:00:00', 'syyyy-mm-dd hh24:mi:ss') AND "DATE_MODIFIED"<TO_DATE(' 2011-06-13
                  14:00:00', 'syyyy-mm-dd hh24:mi:ss') OR "DATE_CREATED">=TO_DATE(' 2011-06-12 14:00:00', 'syyyy-mm-dd hh24:mi:ss') AND
                  "DATE_CREATED"<TO_DATE(' 2011-06-13 14:00:00', 'syyyy-mm-dd hh24:mi:ss')) AND "RELATED_ORGID" IS NOT NULL)
       9 - access("I"."ENTITYTYPE"=1 AND "I"."DATEMODIFIED">=TO_DATE(' 2011-06-12 14:00:00', 'syyyy-mm-dd hh24:mi:ss') AND
                  "I"."ISDISTRIBUTABLE"=1 AND "I"."ISDELETED"=0 AND "I"."ENTITYID">=0 AND "I"."DATEMODIFIED"<=TO_DATE(' 2011-06-13 14:00:00',
                  'syyyy-mm-dd hh24:mi:ss'))
           filter("I"."ISDISTRIBUTABLE"=1 AND "I"."ISDELETED"=0 AND "I"."ENTITYID">=0)
      10 - access("ORGID"="I"."ENTITYID")
           filter("ORGID" IS NOT NULL AND "ORGID">=0)
      11 - filter(("DATE_MODIFIED">=TO_DATE(' 2011-06-12 14:00:00', 'syyyy-mm-dd hh24:mi:ss') AND "DATE_MODIFIED"<TO_DATE(' 2011-06-13
                  14:00:00', 'syyyy-mm-dd hh24:mi:ss') OR "DATE_CREATED">=TO_DATE(' 2011-06-12 14:00:00', 'syyyy-mm-dd hh24:mi:ss') AND
                  "DATE_CREATED"<TO_DATE(' 2011-06-13 14:00:00', 'syyyy-mm-dd hh24:mi:ss')) AND "RELATED_ORGID" IS NOT NULL)
      14 - filter("I"."ISDISTRIBUTABLE"=1 AND "I"."ISDELETED"=0 AND (LNNVL("I"."DATEMODIFIED">=TO_DATE(' 2011-06-12 14:00:00',
                  'syyyy-mm-dd hh24:mi:ss')) OR LNNVL("I"."DATEMODIFIED"<=TO_DATE(' 2011-06-13 14:00:00', 'syyyy-mm-dd hh24:mi:ss'))) AND
                  "I"."ENTITYID">=0)
      15 - access("I"."ENTITYTYPE"=1 AND "I"."DATECREATED">=TO_DATE(' 2011-06-12 14:00:00', 'syyyy-mm-dd hh24:mi:ss') AND
                  "I"."DATECREATED"<=TO_DATE(' 2011-06-13 14:00:00', 'syyyy-mm-dd hh24:mi:ss'))
      16 - access("ORGID"="I"."ENTITYID")
           filter("ORGID" IS NOT NULL AND "ORGID">=0)ife.entityids table has been range - partitioned on data_provider column.
    Is there any better way to rewrite this sql OR is there any way to eliminate concatenation ?
    Thanks

    We cant use data_provider in the given query. We need to pull data irrespective of data_provider and it should be based on ENTITYID.
    Yes table has only three partitions...
    Not sure issue is due to concatenation....but we are in process to create desired indexes which will help for this sql.
    In development we have created multicolumn index and below is the execution plan.....Also in development it takes just 4-5 seconds to execute. But in production it takes more than 8-9 minutes.
    Below is the execution plan from Dev which seems to perform fast:
    Execution Plan
    Plan hash value: 3121857971
    | Id  | Operation                                 | Name                          | Rows  | Bytes | Cost (%CPU)| Time     | Pstart| Pstop |
    |   0 | SELECT STATEMENT                          |                               |     1 |    57 |   353   (1)| 00:00:05 |       |       |
    |*  1 |  COUNT STOPKEY                            |                               |       |       |            |          |       |       |
    |   2 |   VIEW                                    |                               |     1 |    57 |   353   (1)| 00:00:05 |       |       |
    |*  3 |    SORT ORDER BY STOPKEY                  |                               |     1 |    58 |   353   (1)| 00:00:05 |       |       |
    |   4 |     HASH UNIQUE                           |                               |     1 |    58 |   352   (1)| 00:00:05 |       |       |
    |   5 |      CONCATENATION                        |                               |       |       |            |          |       |       |
    |*  6 |       TABLE ACCESS BY INDEX ROWID         | ORG_RELATIONSHIPS             |     1 |    26 |     3   (0)| 00:00:01 |       |       |
    |   7 |        NESTED LOOPS                       |                               |     1 |    58 |   170   (1)| 00:00:03 |       |       |
    |   8 |         PARTITION RANGE ALL               |                               |    56 |  1792 |    16   (0)| 00:00:01 |     1 |     3 |
    |*  9 |          TABLE ACCESS BY LOCAL INDEX ROWID| ENTITYIDS                     |    56 |  1792 |    16   (0)| 00:00:01 |     1 |     3 |
    |* 10 |           INDEX RANGE SCAN                | IDX_ENTITYIDS_ETYPE_DC        |    56 |       |     7   (0)| 00:00:01 |     1 |     3 |
    |* 11 |         INDEX RANGE SCAN                  | EFX_ORGID                     |     2 |       |     2   (0)| 00:00:01 |       |       |
    |* 12 |       TABLE ACCESS BY INDEX ROWID         | ORG_RELATIONSHIPS             |     1 |    26 |     3   (0)| 00:00:01 |       |       |
    |  13 |        NESTED LOOPS                       |                               |     1 |    58 |   181   (0)| 00:00:03 |       |       |
    |  14 |         PARTITION RANGE ALL               |                               |    57 |  1824 |    10   (0)| 00:00:01 |     1 |     3 |
    |* 15 |          INDEX RANGE SCAN                 | UX_TYPE_MOD_DIST_DEL_ENTITYID |    57 |  1824 |    10   (0)| 00:00:01 |     1 |     3 |
    |* 16 |         INDEX RANGE SCAN                  | EFX_ORGID                     |     2 |       |     2   (0)| 00:00:01 |       |       |
    Predicate Information (identified by operation id):
       1 - filter(ROWNUM<=10)
       3 - filter(ROWNUM<=10)
       6 - filter("RELATED_ORGID" IS NOT NULL AND ("DATE_CREATED">=TO_DATE(' 2011-06-12 14:00:00', 'syyyy-mm-dd hh24:mi:ss') AND
                  "DATE_CREATED"<TO_DATE(' 2011-06-13 14:00:00', 'syyyy-mm-dd hh24:mi:ss') OR "DATE_MODIFIED">=TO_DATE(' 2011-06-12 14:00:00',
                  'syyyy-mm-dd hh24:mi:ss') AND "DATE_MODIFIED"<TO_DATE(' 2011-06-13 14:00:00', 'syyyy-mm-dd hh24:mi:ss')))
       9 - filter("I"."ISDISTRIBUTABLE"=1 AND "I"."ISDELETED"=0 AND "I"."ENTITYID">=0)
      10 - access("I"."ENTITYTYPE"=1 AND "I"."DATECREATED">=TO_DATE(' 2011-06-12 14:00:00', 'syyyy-mm-dd hh24:mi:ss') AND
                  "I"."DATECREATED"<TO_DATE(' 2011-06-13 14:00:00', 'syyyy-mm-dd hh24:mi:ss'))
      11 - access("ORGID"="I"."ENTITYID")
           filter("ORGID" IS NOT NULL AND "ORGID">=0)
      12 - filter("RELATED_ORGID" IS NOT NULL AND ("DATE_CREATED">=TO_DATE(' 2011-06-12 14:00:00', 'syyyy-mm-dd hh24:mi:ss') AND
                  "DATE_CREATED"<TO_DATE(' 2011-06-13 14:00:00', 'syyyy-mm-dd hh24:mi:ss') OR "DATE_MODIFIED">=TO_DATE(' 2011-06-12 14:00:00',
                  'syyyy-mm-dd hh24:mi:ss') AND "DATE_MODIFIED"<TO_DATE(' 2011-06-13 14:00:00', 'syyyy-mm-dd hh24:mi:ss')))
      15 - access("I"."ENTITYTYPE"=1 AND "I"."DATEMODIFIED">=TO_DATE(' 2011-06-12 14:00:00', 'syyyy-mm-dd hh24:mi:ss') AND
                  "I"."ISDISTRIBUTABLE"=1 AND "I"."ISDELETED"=0 AND "I"."ENTITYID">=0 AND "I"."DATEMODIFIED"<TO_DATE(' 2011-06-13 14:00:00',
                  'syyyy-mm-dd hh24:mi:ss'))
           filter("I"."ISDISTRIBUTABLE"=1 AND "I"."ISDELETED"=0 AND (LNNVL("I"."DATECREATED">=TO_DATE(' 2011-06-12 14:00:00',
                  'syyyy-mm-dd hh24:mi:ss')) OR LNNVL("I"."DATECREATED"<TO_DATE(' 2011-06-13 14:00:00', 'syyyy-mm-dd hh24:mi:ss'))) AND
                  "I"."ENTITYID">=0)
      16 - access("ORGID"="I"."ENTITYID")
           filter("ORGID" IS NOT NULL AND "ORGID">=0)Thanks

  • Since upgrading to Yosemite on my iMac, My Mail app refuses to open, Safari won't load, and I can't upload pictures from my iPad... Please help, any ideas very welcome. I've had my iMac since 2011, and have never had any issues to deal with before..

    Since upgrading to Yosemite on my iMac: My Mail app refuses to open, Safari won't load, and I can't upload pictures from my iPad...
    Please help, any ideas very welcome. I've had my iMac since 2011, and have never had any issues to deal with before..
    Thanks

    29/11/2014 20:17:01.315 com.apple.xpc.launchd[1]: (jp.buffalo.NASPower)
    Service only ran for 11 seconds. Pushing respawn out by 49 seconds.
    29/11/2014 20:17:37.013 com.apple.backupd[616]: Finished scan
    29/11/2014 20:17:43.108 com.apple.backupd[616]: Saved event cache at
    /Volumes/Time Machine Backups/Backups.backupdb/Geoff Lambrechts’s iMac
    (2)/2014-11-29-200648.inProgress/9B453663-603F-40B8-AC21-24F05C724E15/.6162AD34- 38F8-30AB-98E0-4A22FB9D311F.eventdb
    29/11/2014 20:17:43.207 com.apple.backupd[616]: Not using file event
    preflight for Macintosh HD
    29/11/2014 20:18:01.561 com.apple.xpc.launchd[1]: (jp.buffalo.NASPower)
    Service only ran for 11 seconds. Pushing respawn out by 49 seconds.
    29/11/2014 20:18:16.288 com.apple.xpc.launchd[1]:
    (com.apple.quicklook[715]) Endpoint has been activated through legacy
    launch(3) APIs. Please switch to XPC or bootstrap_check_in():
    com.apple.quicklook
    29/11/2014 20:18:23.705 com.apple.SecurityServer[56]: Session 100013 created
    29/11/2014 20:18:32.046 mdworker[718]: code validation failed in the
    process of getting signing information: Error Domain=NSOSStatusErrorDomain
    Code=-67062 "The operation couldn’t be completed. (OSStatus error -67062.)"
    29/11/2014 20:19:01.662 com.apple.xpc.launchd[1]: (jp.buffalo.NASPower)
    Service only ran for 11 seconds. Pushing respawn out by 49 seconds.
    29/11/2014 20:19:45.458 com.apple.xpc.launchd[1]:
    (com.apple.imfoundation.IMRemoteURLConnectionAgent) The
    _DirtyJetsamMemoryLimit key is not available on this platform.
    29/11/2014 20:19:59.123 com.apple.xpc.launchd[1]:
    (com.apple.PubSub.Agent[725]) Endpoint has been activated through legacy
    launch(3) APIs. Please switch to XPC or bootstrap_check_in():
    com.apple.pubsub.ipc
    29/11/2014 20:19:59.123 com.apple.xpc.launchd[1]:
    (com.apple.PubSub.Agent[725]) Endpoint has been activated through legacy
    launch(3) APIs. Please switch to XPC or bootstrap_check_in():
    com.apple.pubsub.notification
    29/11/2014 20:20:01.138 com.apple.xpc.launchd[1]: (jp.buffalo.NASPower)
    Service only ran for 10 seconds. Pushing respawn out by 50 seconds.
    29/11/2014 20:21:01.484 com.apple.xpc.launchd[1]: (jp.buffalo.NASPower)
    Service only ran for 10 seconds. Pushing respawn out by 50 seconds.
    29/11/2014 20:21:13.430 com.apple.backupd[616]: Found 4529 files (1.1 GB)
    needing backup
    29/11/2014 20:21:18.786 com.apple.backupd[616]: 2.82 GB required (including
    padding), 1.24 TB available
    29/11/2014 20:21:31.775 Console[734]: Failed to connect (_consoleX) outlet
    from (NSApplication) to (ConsoleX): missing setter or instance variable
    29/11/2014 20:21:34.230 WindowServer[162]: disable_update_timeout: UI
    updates were forcibly disabled by application "Console" for over 1.00
    seconds. Server has re-enabled them.
    29/11/2014 20:21:36.898 WindowServer[162]: common_reenable_update: UI
    updates were finally reenabled by application "Console" after 3.67 seconds
    (server forcibly re-enabled them after 1.00 seconds)
    29/11/2014 20:21:36.971 coreservicesd[83]: SFLEntryBase::ListHasChanged
    mach_msg returned 10000004d
    29/11/2014 20:22:01.817 com.apple.xpc.launchd[1]: (jp.buffalo.NASPower)
    Service only ran for 10 seconds. Pushing respawn out by 50 seconds.
    29/11/2014 20:23:02.170 com.apple.xpc.launchd[1]: (jp.buffalo.NASPower)
    Service only ran for 10 seconds. Pushing respawn out by 50 seconds.
    29/11/2014 20:24:02.547 com.apple.xpc.launchd[1]: (jp.buffalo.NASPower)
    Service only ran for 10 seconds. Pushing respawn out by 50 seconds.
    29/11/2014 20:25:02.168 CalendarAgent[218]:
    [Refusing to parse response
    to PROPPATCH because of content-type: .]
    29/11/2014 20:25:02.233 CalendarAgent[218]:
    [Refusing to parse response
    to PROPPATCH because of content-type: .]
    29/11/2014 20:25:02.236 CalendarAgent[218]:
    [Refusing to parse response
    to PROPPATCH because of content-type: .]
    29/11/2014 20:25:02.284 CalendarAgent[218]:
    [Refusing to parse response
    to PROPPATCH because of content-type: .]
    29/11/2014 20:25:03.059 com.apple.xpc.launchd[1]: (jp.buffalo.NASPower)
    Service only ran for 10 seconds. Pushing respawn out by 50 seconds.
    29/11/2014 20:25:12.674 com.apple.xpc.launchd[1]:
    (com.apple.imfoundation.IMRemoteURLConnectionAgent) The
    _DirtyJetsamMemoryLimit key is not available on this platform.
    29/11/2014 20:26:03.464 com.apple.xpc.launchd[1]: (jp.buffalo.NASPower)
    Service only ran for 10 seconds. Pushing respawn out by 50 seconds.
    29/11/2014 20:27:03.841 com.apple.xpc.launchd[1]: (jp.buffalo.NASPower)
    Service only ran for 10 seconds. Pushing respawn out by 50 seconds.
    On 29 November 2014 at 19:29, Apple Support Communities Updates <

  • Secure connection failed: The Certifying Authority for this certificate is not permitted to issue a certificate with this name. (Error code: sec_error_cert_not_in_name_space) PLEASE HELP ME!!

    I have gone to this website almost everyday for years and I have not changed anything in my internet settings, but now I'm getting this message: secure connection failed: The Certifying Authority for this certificate is not permitted to issue a certificate with this name. (Error code: sec_error_cert_not_in_name_space) The only thing I KNOW I did differently, was I installed a CAC reader to my computer, since then, this has been happening. Is there a setting I can change?? E-mail is: [email protected] Thanks! Megan

    There were recently several users getting this error code who use AVAST 2015. If you recently got that program, please see:
    * [https://support.mozilla.org/questions/1029578 Can NOT access https://www.google.com for google voice, mail etc.]
    * [https://support.mozilla.org/questions/1028985 Avast Forum connection failed - works in Chrome etc.]
    * [https://support.mozilla.org/questions/1028190 Since last FF update I can't sign out of Yahoo and when I close FF it tells me it has crashed.]

  • Is there an issue going on with the iPhones? And iPads? I cannot send text pics.  I can't get on Facebook, and I can't get on anything that uses Facebook ex Slotomania.  This has been going on for a few days!!!  It is happening with and without upgrades.

    Is there an issue going on with the iPhones? And iPads? I cannot send text pics.  I can't get on Facebook, and I can't get on anything that uses Facebook ex Slotomania.  This has been going on for a few days!!!  It is happening with and without upgrades.

    Contact facebook to address the facebook issues.

  • Setting for issue subcontract material with ME2O

    Hi,
    In our system presently we are issueing all the material to subcontract with MB1B movement type 541,  I wan tto knowthe settings and process of issue the material with ME2O, what settings are needed this is to control some that we can see the issue qunaity against that PO to the vendor.
    regards,
    zafar

    Hi,
      I have created a Subcontract PO now in ME2O I can see that POthen I select the PO number and click on Post goods issue,  but system is giving error message
    Please select header line(s) or reservation(s)
    Message no. ME152
    but which is the this header line or reservation i have not found reservation number in ME2O screen in our system.
    regards,
    zafar

  • Cant open web pages when connected to the internet via Telstra's Pre Paid WiFi has anyone else had the same issues works fine with BigPond WiFi

    Cant open web pages when connected to the internet via Telstra's Pre Paid WiFi (this connection is working on other devices) has anyone else had the same issues, works fine with BigPond Wifi

    and now, when i tried to check again my network preference below the airport tab is showing a message that
    "my airport does not have an IP address and cannot connect to the internet!"
    then after seconds it will goes back to the first message that
    "airport has the self assigned IP address etc....."
    i don't know whats going on now!
    airport tab is not showing green color anyway! i'ts always in yellow!
    i tried turning it on and off but nothing happen! HEEELLLLPP!!!!

  • Problem with concatenation, need output in a desired format

    Hi all,
    I have a weird problem with concatenation.
    I should get an output in such a way that the result would be
    Put C:\TEMP\test20090210.xml /FOLDER1/test20090210.xml
    For this first to get C:\TEMP\test20090210.xml format I said
    CONCATENATE  'C:\TEMP\test' sy-datum '.XML' INTO filepath.
    For this secondly to get /FOLDER1/test20090210.xml format I said
    CONCATENATE  '/FOLDER1/test' sy-datum '.XML' INTO filepath1.
    Now I need to get the format
    Put C:\TEMP\test20090210.xml  /FOLDER1/test20090210.xml
    And to get this I said
    CONCATENATE  'put' filepath INTO  filepath SEPARATED BY space.
    And the output for filepath was Put C:\TEMP\test20090210.xml.
    But I want u2026u2026u2026.Put C:\TEMP\test20090210.xml /FOLDER1/test20090210.xml.
    How can I achieve this?
    If I say
    CONCATENATE  filepath INTO  filepath1 SEPARATED BY space. It throws a syntax error saying
    u201CUnable to interpret filepathu201D
    Please help me..i am dying to figure out how to concatenate and get the required output.
    My filepath contains u2026 Put C:\TEMP\test20090210.xml
    My filepath1 contains u2026/FOLDER1/test20090210.xml
    I need final output asu2026u2026u2026u2026.
    Put C:\TEMP\test20090210.xml /FOLDER1/test20090210.xml
    How to attain this..please helpu2026where I am going wrong..i declared filepath and filepath1 as STRING

    Hi all,
    Thanks for immediate reply...now it works..
    but i also need to put a counter like thing to distinguish my files.
    for my filepath....
    i want it as C:\TEMP\test20090210110146 so i said....
    CONCATENATE '    C:\TEMP\test'    sy-datum s   y-uzeit  '.XML'.
    Actually i am generating XML files and naming them as testsystemdatesystemtime.
    But i am concerend that my filed might be overwrriten if a file gets generated in a fraction of a millisecond..so to avoid that now i want to put a counter.
    i.e my filepath should now be as follows each time loop executes...
    C:\TEMP\test20090210110146_1
    C:\TEMP\test20090210110147 _2
    C:\TEMP\test20090210110148 _3.........and son on how can i do it
    i.e testsystemdatesystemtime+ a counter(which tells how many times loop executed)
    Once again thanks to all for immediate help...

  • HT201401 I am writing to bring to your attention a serious issue I had with your product. My brother  bought one iPhone 4, 16 gb mobile phone from US last year and gifted me in India. but it couldnt be serviced in India why ?

    Hi,
    I am writing to bring to your attention a serious issue I had with your product. My brother  bought one iPhone 4, 16 gb mobile phone from US last year and gifted me in India. In few months it had a problem with its home key. I took the phone to service service center and they told me that your phone is having hardware problem and as the phone is under warranty cannot be replace in India. You can come back when this is out of warranty. Now few days back when i walk again to the service center they stated that this phone we cannot repair here in India because of this phone purchased from US. 
    This a total disgraceful service from such a big brand like apple.
    I hope to hear back from you about this incident.
    Sincerely,
    Niranjan
    <Personal Information Edited by Host>

    No iPhone has a international warranty. Warranty is valid only in
    country of original purchase. Since iPhone was bought in the US,
    you must return the iPhone to the US. That means you must personally bring
    the iPhone to Apple in the US or send it to a friend/relative in the US for them
    to take to Apple. After replacement, your friend can ship it back to you. Shipping
    and insurance costs are your responsibility.
    Apple does not accept international shipments for evaluation/repair
    and will not ship replacements out of the country.

  • IBM OS ISSUE: SYSTEM HANG WITH JFS2 AND HEAVY LOAD

    제품 : ORACLE SERVER
    작성날짜 : 2004-11-24
    IBM OS ISSUE: SYSTEM HANG WITH JFS2 AND HEAVY LOAD
    ==================================================
    PURPOSE
    이 문서는 IBM AIX5L OS 상에서 Arch Process가 online redo log
    를 release하지 못하고 OS의 kill 명령으로 kill조차 되지 않을 경우
    조치 방법이다.
    Problem Description
    이 문서는 다음 OS 정보와 Oracle version인 경우에 해당한다.
    Oracle Server - Enterprise Edition - Version: 9.2.0.5.0
    Oracle Server - Enterprise Edition - Version: 8.1.7.4.0
    AIX5L Based Systems (64-bit) or (32-bit)
    문제 발생 당시의 증상은 다음과 같다.
    - arch-process doesn't release redolog files
    - arch-process doesn't die after database shutdown
    - arch-process can't be killed
    genclntsh 수행 시 hang 상태이다.
    (sleeping...)28590: kwaitpid(0x2FF22470, -1, 4, 0x00000000, 0x00000000)
    또는 이 문제로 인하여 ORA-600[2103] 에러가 발생하기도 한다.
    이 에러가 발생하는 원인은 IBM AIX5L 64bit, 32bit OS 이슈에 있다.
    IBM OS issue: SYSTEM HANG WITH JFS2 AND HEAVY LOAD.
    Workaround
    none
    Solution Description
    OS AIX5L ML4.0(5.2.0.40)의 bos.up / bos.mp / bos.mp64 fileset level을
    갖는 JFS2 file system을 갖는 경우에 해당한다.
    AIX 5.3 APAR IY59387은 IY58143에 포함되어 있다.
    JFS2 file system에 Heavy I/O activity가 발생하면 database process에
    HANG 문제를 야기시킬 수 있다. 이 때 database process가 kill -9
    명령으로 kill되지 않는다. 데이타베이스를 SHUTDOWN하여도 Process가
    계속 살아 있게 된다.
    Process에게 SIGKILL 함수가 issue되었지만 영향을 주지 않게 된다.
    Process를 제거하는 유일한 방법은 OS를 reboot하는 것이다.
    문제를 예방하는 방법은 IBM APAR-FIX IY59082 를 적용하는 것이다.
    이 APAR는 bos.64bit 5.2.0.42에 포함되어 있다.
    Fix :
    Need to install the IBM APAR-FIX IY59082, this APAR is included on
    bos.64bit 5.2.0.42.
    (주) IBM 엔지니어에게 확인 결과 이 Patch 안에 AIX5L 32bit 용과 64bit
    용이 모두 포함되어 있는 것으로 확인됨.
    Reference Documents
    <Note:285158.1>

    b,
    The install was from my original Dell XP Pro-SP1 'Reinstallation' CD along with the complete MS XP-SP2 download that I burned to another CD. I also had all the latest Dell drivers from their website burned to a CD. Install went as follows:
    - Format HD
    - Install XP Pro SP1
    - Install SP2
    - Install Dell Drivers
    - Obtain any MS patches from their site
    - Install Office
    - Update Office from the MS website
    - Install iTunes
    - Tweak MS settings
    - Install many software programs
    - Make an interim Image of system and store to ExHD
    - Install other software programs (mostly security programs)
    - Make another 'complete' Image to ExHD
    - Restore backup data and music
    After additional testing last night, I determined that it is not iTunes at all (or to blame). I get intermittent hangs/freezes/pauses in other media players (WMP, etc.).
    Seems that something is causing the 'System' process to periodically jump up in CPU %age (though not more than 30-50%). Even this relatively small amount is enough to pause the playback of music or video, hang the mouse movement for a brief moment, or delay a menu opening. All very subtle - you have to be looking for it to notice (except with real-time audio-video, which is quite noticeable whenever this happens).
    I had this problem a year ago, which is why I reimaged then and stayed with SP1 on the advice of Dell and Webroot. I'm stumped as to where to look for the culprit. Every time I go back to the original HD with SP1, everything runs smoothly. Some sort of system call is generating this complete pause....
    I'll be limited in my Internet ability for the next several days, so I may be out of touch until Friday. I'll keep testing and playing with the limited equipment I take along....
    Any thought you or others want to toss out, I'll attempt when possible.
    Thanks!

  • Performance issue in correlation with hidden objects in reports

    Hello,
    is there a known performance issue in correlation with hidden objects in reports using conditional suppressions? (HFM version 11.1.2.1)
    Using comprehensive reports, we have huge performance differences between the same reports with and without hidden objects. Furthermore we suspect that some trouble with our reporting server environment base on using these reports through enduser.
    Every advice would be welcome!
    Regards,
    bsc
    Edited by: 972676 on Nov 22, 2012 11:27 AM

    If you said that working with EVDRE for each separate sheet is fin ethat's means the main problem it is related to your VB custom macro interdependecy.
    I suggest to add a log (to write into a text file)for you Macro and you will se that actually that minute is staying to perform operations from custom Macro.
    Kind Regards
    Sorin Radulescu

  • Goods Issue/Issue to Production with Batch in status Locked/Not Accessible

    I want to block users to add GI/Issue to Production with batch in status Locked/Not Accessible
    Is it possible to create an approval? A problem here that we have different forms for batch and Goods Issue. Maybe something else can help me?
    As I see that is I can create only alert, but I would like to prevent creating a document
    Thanks,
    Olga

    The B1 built-in approval only works with marketing documents.  This includes Goods Issue for 2007 version. For Issue to Production, you have to use SP Transaction Notification to block.
    Thanks,
    Gordon

  • 10.4.10 Audio Popping Issues: Information Check with Internal Speakers

    For people with internal speakers, or those without subwoofers: Please read all the way to the bottom to find a test that will determine whether you are also having audio problems, even if you can't hear pops.
    We've had a lot of discussion about audio popping due to 10.4.10, and the evidence indicates that the audio circuitry is going to sleep to conserve power, even on AC-only computers like the iMac, Mac Mini, and (at least one) Mac Pro. Some people claim to not have this problem, but I'm wondering if they just aren't noticing it.
    Having external speakers with a subwoofer, set to high amplification, are key to obvious detection of the problem. Let the sound subsystem go idle for 30+ seconds (wait a minute with no audio, just to be safe), turn up your external speakers really loud, and cause the computer to make a sound. You should hear a burst before the sound plays. If you repeat the sound, you won't hear the burst. This is the sound of the audio circuitry powering on, and the speakers are amplifying it.
    About 30 seconds after the sound finishes playing, if you leave the volume of your speakers turned way up, you should hear a "pop" as the circuitry is powered off. Then, playing another sound will recreate the burst.
    I haven't been able to hear these sounds with internal speakers, either on the Mini or iMac. But the problem still exists, and it is detectable... if you know what you are looking for.
    The burst of the audio circuitry turning on also causes a delay in the audio. The delay is a noticeable fraction of a second, an it can easily be detected if you have a repeatable source of sound. I like Terminal.app, because I use that application all day, every day. Here is how you can check to see if you are also subject to the audio problems:
    1. Start Terminal.app (in the /Applications/Utilities directory).
    2. Wait one minute for the audio circuitry to shut down.
    3. Without typing anything else, very quickly strike and release the Backspace key.
    4. If you pressed the key all the way, the program should have caused a beep. However, if the audio circuitry goes to sleep, the beep should occur after you have moved your hand off the key. This is because the circuitry takes time to power itself on before playing the sound.
    5. Now, quickly strike the Backspace key again. You should notice that the sound is produced immediately as you hit the key, without the delay you just witnessed.
    6. Strike the Backspace key repeatedly, to confirm that there is no audio delay. Do this about once every second or two. If you press the key too rapidly, not all of the presses will produce sounds... this behavior is not related to the issue we are testing.
    7. Wait another minute for the audio circuitry to shut down, and strike the Backspace key once more. You should again observe a delay between your strike and the sound production.
    If you witness delays like this, your audio circuitry is also going to sleep, and you are having the same audio problems as the rest of us. However, either because you are using internal speakers, or because your external speakers don't have the appropriate response, you aren't hearing the same bursts and pops as the rest of us.
    Please try this test, and report here. I want to build a list of people who previously couldn't hear the sounds, but still have the delay. This might give us a better picture of the scope of the problem.

    Re: 10.4.10 Audio Popping Issues: Information Check with Internal Speakers
    Your analysis of what is happening is right on.
    The problem on my Intel Mac mini with external Klipsch speakers (two mid-range/high and a subwoofer) is REAL obvious as the system emits a hum like a Spinal Tap amplifier turned up to #11 when 10.4.10 powers down the audio circuitry
    Then, if I play a song in iTunes, it first pops and the hum disappears right before playing.
    Quite annoying.
    Here's what I sent to Apple tech support:
    Guys/Gals (OS X Engineers):
    Concerning the Snap, Crackle Pop Audio problem in the 10.4.10 update:
    Please. Just do the right thing and fix the audio.
    There is no need to power cycle the audio subsystem to save .0005 amps on your laptops.
    And then to make your Mac mini/iMac/other desktop users have to put up with it when using AC power is ridiculous.
    Put the audio subsystem back like it was in 10.4.9 and let the laptop battery freaks looking for mini-amp savings get a "work-a-round".
    Crikey!
    Mac Mini 1.83 Ghz Intel Core Duo 1GB RAM   Mac OS X (10.4.9)   20 Years of Microsoft-Induced Grey Hair

  • Issue in smartform with Chinese logon

    Hello all,
    I'm facing a strange issue in smartform with chinese logon in Quality server.
    In quality server mail generates JUNK values in place of chinese texts in SOST.
    In development server its working fine.
    I checked through debugging in OTFDATA structure its taking Courier font by default.
    While in my development server in ZH logon its taking CNSONG font.
                                                                                    1     //        |XSAPWIN      046C 00000000001                                <
        2     IN        |041 form_name<
        3     IN        |05HDR_PAGE                                                     <
        4     OP        |DINA4   P 144  240 1683811906000010000100000                   <
        5     IN        |06%WINDOW9                                                     <
        6     MT        |0447102791                                                     <
        7     CP        |840000001                                                      <
        8     FC        |COURIER 095X 00114 SF001SF0118400001141 X                      <
        9     UL        | +0000000000000                                                <
       10     CT        |00000000                                                       <
    Can some please help me to solve this issue.
    Thanks in advance.
    regards,
    Lokesh

    Hello,
    Please follow the rules to output PDF correctly for ZF/ZH language:
    (1) workprocess need run under
           ZF/ZH language   (logon with ZF/ZH or switch by set locale)
           codepage 8300/8400 (or compatible codepages)
    (2) SAPScript need include ZF/ZH version. Please verify by:
           Go SE71->input SAPScript name, language key ZF/ZH -> display
    (3) SAPScript need assign Chinese font for paragraph used to output
         Chinese character
    (4) SAPScript need open with ZF/ZH language(OPEN_FORM with ZF/ZH language)
    Regards,
    David

  • Reconfigure issues in EPMA with hyperion products(essbase,HFM,Planning)

    Hi All,
    Reconfigure issues in EPMA with hyperion products(essbase,HFM,Planning,calc manager,etc.,)
    I have created new schema for foundation and one more schema for all other hyperion products and try to reconfigure but i unable to configure and all components are not shown in some hyperion products( in workspace in administer im unable to see classic application, in essbase im unable to see all application...).
    as per my understanding im unable to see *"Registerd with shared services"* for each products in the final stages of configure.
    Please try to know that what may be the cause.
    Thanks & Regards,
    Kittu.

    I can't answer the Import profile, though could you expand on
    mrojik-bubik wrote:
    In planning i was not able to import Security and planning units. Can you please help?Are you trying to import access permissions using LCM ?
    If you are importing security into a target application then I believe that the users will need to exist in the tables before you do so.
    I would run the provisionusers.cmd or go into the planning app and go to provision dimension security and click migrate identities.
    Cheers
    John
    http://john-goodwin.blogspot.com/

Maybe you are looking for

  • Associative Array problem in Oracle Procedure

    Hi, I've searched through the internet and this forum and haven't been able to resolve a problem using associative array values within an IN clause. Everything I've read states that I can't use the associative array directly in the SQL statement. I h

  • Navigational attribute problem

    Hi all, Its really strange to say like our master data is getting changed automatically, for material master data we are loading from ODS in that material their is one nav attr field, when we load some data to that material object it is showing corre

  • Cloning complete installation to a different environment

    Hi, We have a Production and a QA environment. We use Windows Backup to make complete system backups of all Hyperion servers. This backups strategy has been tested by breaking QA and requesting a restore from IT. Business now asked the question: Is i

  • System Center 2012 DPM SP1 Incorrect Status Indication

    I have a protection group that is protecting files on a windows server 2008 r2 server. The status of the protection group is Replica is inconsistent. If I perform a consistency check, the status changes to OK with the green check circle. However, the

  • Premiere Elements 12 Running Slow

    Hi, I recently purchased this program and installed it on my MacBook Pro 13.3" Late 2013, 2.4 GHz Dual Core i5 Processor, 8 GB 1600 MHz DDR3 RAM, Intel Iris 1024 MB Video Card, 256 GB Sold State Drive, and I have the external USB SuperDrive for DVD b