Query regarding Concatenate statement functionality from ECC 6.0 to 46B ver

Hi,
I got new requirement ie I have to copy reports from ECC6.0 to 46B version. While copying I faced number of issues and I am not clear for below one.
concatenate i_result1-result p_delim into i_result1-result respecting blanks. ( this is in ECC6.0)
now my requirement is I have to use the same functionality in 46B version without respecting blanks the statement is working but I need the functinality of respecting blanks also.
Thanks in advance.
-Kumar.

Try like this in 46B:
concatenate i_result1-result p_delim into i_result1-result SEPARATED BY SPACE.
Regards,
Naimesh Patel

Similar Messages

  • Can we call DMS Attachment Function from ECC to SRM

    Hello All,
    We have the below requirement.
       a)  User Create the RFx(SRM) from PR(ECC) vai CPPR functionality.Now during creation we need to copy the DIR Links of  PR to RFx .
      b) In SRM RFx ,at item level we need to place a button called "DIR" ,when user click on the button , we need to bring the   DMS Attachment POP UP from ECC to SRM , where user can add new DIR or Delete the DIR.
               Can we do the requirement  "b" ? , is there way we can call the "DMS Attachment Function"  from SRM? . Kindly share your thoughts.
    Thanks
    Channa.
    DMS Attachment Function"

    Dear Channa,
    due to your screenshot I saw that you are still working with old object link dynpros.
    To grant that allways the currenct screens and authorizations were called please maintain also the value "1" into the "Authorization" column. For further informations on this maintainance please see the attached note 1066915. It's important that you not enter the mentioned screen number wihtout the leading "1" as this number is added automatically by the system (e.g. object MARA 1201 maintain like MARA 201). You can do this in customizing under:
    Transaction SPRO
    > Cross-Application-Component
         > Document Management
              > Control Data
                  > Define screen for object links
    If you need the dynpro number or object you will find all standard SAP objects and their screen number in function module CV130 (Screens) by transaction SE80. Please maintain all necessary SAP objects.
    Best regards,
    Christoph

  • Replication of partner function from ECC to CRM

    Hi experts,
    We are working on CRM 5.0 with back end ECC 6.0
    In our scenario we are creating sales orders in ECC and replicating it to CRM.
    Now the problem is we have a partner function created in ECC which is entered manually ( not through partner determination procedure) . We have also created the same partner function in CRM but we are not able to populate that partner function field automatically.
    Is there any way by which we can populate this ?
    Points will be rewarded for suitable solution.
    Regards,
    Madhu

    hi
    just mainatining partner function wont be enough ,you need to do two things
    1. mapping of BP function between CRM and ECC
    2. specify the path from ECC to CRM so that they can be replicated successfully
    so,IMG: Customer Relationship Management -> Basic Functions -> Partner Processing -> Data Transfer -> Distribution of Partner Functions from SAP ECC into CRM
    this is the path where in distribution you need to specify the path
    and maintain there the mapping between the R3 and CRM
    RFC destination should be CRM and source is ECC
    best regards
    ashish

  • Query Regarding fetching selected records from table

    Hi All,
    I have a table like below:
    NUM1     NUM2     TYPE
    1     2     A
    1     2     S
    2     3     S
    3     4     A
    3     4     S
    4     5     S
    If for a record TYPE='A' then do not select the records for those num1 and num2.
    Eg: for num1=1 and num2=2 there are two records with type='A' and 'S', only records with type 'A' should get selected.
    Output should be like this:
    NUM1     NUM2     TYPE
    1     2     A
    2     3     S
    3     4     A
    4     5     S
    Please anyone could help me in this query.
    Any help would be highly appreciated.
    Thanks & Regards
    Anuj

    Just MIN function will get what you want
    SQL> with t
      2  as
      3  (
      4     select 1 num1, 2 num2, 'A' type from dual union all
      5     select 1, 2, 'S' from dual union all
      6     select 2, 3, 'S' from dual union all
      7     select 3, 4, 'A' from dual union all
      8     select 3, 4, 'S' from dual union all
      9     select 4, 5, 'S' from dual
    10  )
    11  select num1, num2, min(type) type
    12    from t
    13  group by num1,num2
    14  order by num1,num2
    15  /
          NUM1       NUM2 T
             1          2 A
             2          3 S
             3          4 A
             4          5 S

  • Does SRM support Vendor Partner Functionality from ECC?

    Does SRM support or sync up with Vendor Partner functions in ECC such as OA, VN, PI, etc.?
    Initial look at SRM does not suggest that SAP has made it easy to replicate partner functions in SRM.

    Hi,
    See these related threads:
    Partner function Payee in SRM
    Adding Partner Function to R/3 PO from SRM in Classic using BADI
    BR,
    Disha.
    <b>Pls reward points for useful answers.</b>

  • Query on loaded the data from ECC to BI

    Hello Bw guys,
                               I kept one responsibility in my resume as Loaded the data from ECC to BI and used intialization with delta update and full update methods.What does it means? Can u please help me out?
    Thanks
    Amarnath K

    Very simple.
    This is somewhat like how you updated your resume by transfering from another and did a fake update to your resume.
    The difference is ECC does that using a authorized route to update it in BI.
    PS:If you have provided the client name you are going to join it will be easy for us to explain to them directly.
    ~Andrew
    Edited by: Andrew J on Dec 18, 2009 3:44 PM

  • Query regarding finding Business Partner from the External Number

    Hi Group,
    I have a requirement to update Address of the Business Partner from the External Number and then using that Business Partner I have to update the Address.
    Now the question is that, <b>how I can get the value of the Business Partner by using the External Number</b>( i.e., PAN Number).[PAN No is used to get the
    differentiate the Organizations].
    So please kindly let me know how I can achieve this requirement.
    Thanks in advance.
    Regards,
    Vishnu.

    Vishnu,
    Depending on where it is stored, your first option would be use the function module BUPA_NUMBERS_GET.
    The other option is to read table BUT0ID if it is stored in the identification details of the business partner.
    Good luck,
    Stephen

  • Query regarding case statement

    Hi,
    I have a SP which has in_rc as an input parameter
    Now I have a select query which is as follows in pseudo
    select....
    where <condition1>
    And <condition2>
    And <condition3>
    Now my requirement is that I want to add one more filter based on the in_rc
    ie if in_rc is not null, then I want to add one more filter condition along with the existing condition else only the existing condition.
    pseudo:
    select....
    where <condition1>
    And <condition2>
    And <condition3>
    case <in_rc><when not null>then
    AND <condition 4>
    possible?
    regds,
    Sun

    I am not pedantic. Just pointing out some things to be aware of (should be allowed, shouldn't it?);)
    It only requires a few more NVL's. ;) or lnnvl? ;)
    michaels>  VAR mgr number
    michaels>  EXEC :mgr := 7782
    michaels>  SELECT ename, mgr
      FROM emp
    WHERE lnnvl (mgr != :mgr)
    ENAME             MGR
    KING                     /*  want nulls or not?  */
    MILLER           7782
    michaels>  EXEC :mgr := NULL
    michaels>  SELECT ename, mgr
      FROM emp
    WHERE lnnvl (mgr != :mgr)
    ENAME             MGR
    SMITH            7902
    ALLEN            7698
    WARD             7698
    JONES            7839
    MARTIN           7698
    BLAKE            7839
    CLARK            7839
    SCOTT            7566
    KING                
    TURNER           7698
    ADAMS            7788
    JAMES            7698
    FORD             7566
    MILLER           7782

  • A query regarding a class function

    What is/are the difference(s) between static and non--static function of a class?
    I mean, a 'static' keyword anyways states that all instances of the class would share the same function. So does that mean a 'non-static' function of a class, 'provides' a copy of the function to each class instance?
    Plz help me in clearing my doubts.
    Thanks.

    Non-static methods aren't given copies of the method. They need a reference to an instance but the instance doesn't get its own copy of the method. So you don't have to worry about wasting memory by using non-static methods, if that's what you're thinking.

  • Problem in passing customer Partner Functions from ECC to CRM

    Hi to all, I am facing the following error in the crm system
    1.Partner 0000080059(DCEAB7AC31DA22F1B7CE001372368B21): the following errors occurred
    Message no. BUPA_MW_EXCHANGE010
    2.Status exists already for this business partner
    Message no. CRM_BUPA_FRG0050012
    3.Validation error occurred: Module CRM_BUPA_MAIN_VAL, BDoc type BUPA_MAIN.
    Message no. SMW3018
    My scenario in ECC is: I use a custom BTE copy of VMD_VENDOR_BTE_1421_IMPL which is executed when I save a new vendor. In this BTE I use the FM SD_CUSTOMER_MAINTAIN_ALL to create a customer with the same attributes as the vendor, because only customer informations (not vendor informations) pass as Business Partners in CRM. The problem is that when I pass only master datas to the FM SD_CUSTOMER_MAINTAIN_ALL, the customer passes to CRM as a Business Partner with the same number, but when I pass also Partner Functions to FM SD_CUSTOMER_MAINTAIN_ALL, no Business Partner is created in CRM, and the error I get is that up.
    What can I do?
    Thank you very much,
    Antonio

    Hola Antonio,
    I have a same problem.
    You can tell me the solution.
    Please.

  • Query regarding Expand all functionality in hier seq list.

    Hello Every body,
    Application: I am displaying a list(Hier seq) using cl_salv_hierseq_table method.
    Important peices of code:-
    cl_salv_hierseq_table=>factory(
      EXPORTING
        t_binding_level1_level2 = gt_binding
      IMPORTING
        r_hierseq = gt_table
      CHANGING
        t_table_level1 = gt_final_h
        t_table_level2 = gt_final_i ).
    *... set expand column
      gt_columns->set_expand_column( 'EXPAND' ).
    *... set items expanded
      gt_level = gt_table->get_level( 1 ).
      gt_level->set_items_expanded( ).
    *register to the event on_user_command
      SET HANDLER gt_events->on_user_command FOR lt_events.
    Here i had added Refresh button in the application toolbar of the above ALV which is not in the standard one.
            PERFORM refresh_list_info USING e_salv_function.
            inside this perform the main peice of code is:
            gt_table->refresh( ).             "Refresh: Rebuilds the display list.
    QUERY: The first display show all the header and items records as expanded by default.
                  when i am trying to refresh the list, its displaying me the list with updated data in it
                 properly BUT the only problem is the items are closed by default after refresh.
                 so every time user needs to click the Expand option to view item records after refresh.
                 Here I would like to have the items records expanded as well by default after Refresh.
                 how to acheive this?
                Any suggestions to use any more methods or so..
               Your help will be highly appreciable.
    Thanks,
    Pavan.

    check this document for reference:
    https://www.sdn.sap.com/irj/scn/wiki?path=/display/profile/using%252bhierarchically%252b-sequential%252btable%252bfactory%252bmethod
    cheers
    Aveek

  • Query regarding insert statement ( help me)

    how to insert 10 rows at a time???
    wheather it is possible??

    Hi user648016!
    What you are looking for is called "Multi Table Insert".
    INSERT ALL
    INTO sales (prod_id, cust_id, time_id, amount)
    VALUES (product_id, customer_id, weekly_start_date, sales_sun)
    INTO sales (prod_id, cust_id, time_id, amount)
    VALUES (product_id, customer_id, weekly_start_date+1, sales_mon)
    INTO sales (prod_id, cust_id, time_id, amount)
    VALUES (product_id, customer_id, weekly_start_date+2, sales_tue)
    INTO sales (prod_id, cust_id, time_id, amount)
    VALUES (product_id, customer_id, weekly_start_date+3, sales_wed)
    INTO sales (prod_id, cust_id, time_id, amount)
    VALUES (product_id, customer_id, weekly_start_date+4, sales_thu)
    INTO sales (prod_id, cust_id, time_id, amount)
    VALUES (product_id, customer_id, weekly_start_date+5, sales_fri)
    INTO sales (prod_id, cust_id, time_id, amount)
    VALUES (product_id, customer_id, weekly_start_date+6, sales_sat)
    SELECT product_id, customer_id, weekly_start_date, sales_sun,
    sales_mon, sales_tue, sales_wed, sales_thu, sales_fri, sales_sat
    FROM sales_input_table;
    For more information about this look here:
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14200/statements_9014.htm#i2163698
    Hope this helps!

  • Query regarding running Java application from Batch file

    Hi,
    I have written an application in Java and I have packaged it as a JAR file.
    In my system I use a batch file called 'run.bat' to execute the program. The batch file is as follows:
    java -classpath "%CLASSPATH%;editor.jar" editor.JPad
    This works fine in my system. But when it is executed in other systems where JRE is not configured properly, I am not able to correctly start the Java application.
    Please can anybody tell me, how to detect the JRE from the Batch file and refer to it correctly, so that it will run in any system with JRE.
    Can we do this from a Batch file ?
    Hoping for a quick reply.
    Thanks,
    S.Sampath

    You can't really "detect" whether a JRE is available from a batch. All I can think of is to check for the typical Java variables (JVM_HOME, CLASSPATH etc) to exist. If they don't, especially JVM_HOME, a JRE is probably not installed.

  • VO query with SQL table function (MS SQL) and update of parameter value

    Hello All,
    I use VO where Query is the SQL function that returns a table (MS SQL Server):
    select * from getData('XXXX')
    where ‘ХХХХ’ should be binded to the specific ID (e.g. selected row in the tree view on the another facet).
    More details: I have two facets. Left facet contains a tree view that displays the list of the projects grouped by industry. Right facet contains a pivot table (source query is a ‘table function’ from above).
    I want to have the pivot table (right facet) to be updated with the data specific to the project (selected row in the tree).
    I know about the possibility to dynamically update the where clause (setNamedWhereClauseParam method), but in my case there is no ‘where’ clause. Is there any kind of ‘bind variable’ to be used to refresh the data?
    Any guidance, ideas, examples are greatly welcome.
    With best wishes,
    Anatol

    Are the columns that are being selected different each time or the same?
    If they are the same then you don't need to do any additional binding - the pivot table is connected to the VO at design time and it wouldn't care if the underlying from/where have changed.
    If on the other hand your columns change (but the number of them stay the same) then use aliases for the initial definition (select ename a, id b, salary c) and then when you change the VO change the mapping but keep the names (select dname a, moo b, foo c).
    If the whole query is changing and you don't know in advance the structure - then there is no out of the box solution with a pivot table - you'll need to code a backing bean that will provide the data model to the pivot table based on your query.

  • A query regarding synchronised functions, using shared object

    Hi all.
    I have this little query, regarding the functions that are synchronised, based on accessing the lock to the object, which is being used for synchronizing.
    Ok, I will clear myself with the following example :
    class First
    int a;
    static int b;
    public void func_one()
    synchronized((Integer) a)
    { // function logic
    } // End of func_one
    public void func_two()
    synchronized((Integer) b)
    { / function logic
    } // End of func_two
    public static void func_three()
    synchronized((Integer) a)
    { // function logic
    } // End of func_three, WHICH IS ACTUALLY NOT ALLOWED,
    // just written here for completeness.
    public static void func_four()
    synchronized((Integer) b)
    { / function logic
    } // End of func_four
    First obj1 = new First();
    First obj2 = new First();
    Note that the four functions are different on the following criteria :
    a) Whether the function is static or non-static.
    b) Whether the object on which synchronization is based is a static, or a non-static member of the class.
    Now, first my-thoughts; kindly correct me if I am wrong :
    a) In case 1, we have a non-static function, synchronized on a non-static object. Thus, effectively, there is no-synchronisation, since in case obj1 and obj2 happen to call the func_one at the same time, obj1 will obtain lock for obj1.a; and obj2 will obtain lock to obj2.a; and both can go inside the supposed-to-be-synchronized-function-but-actually-is-not merrily.
    Kindly correct me I am wrong anywhere in the above.
    b) In case 2, we have a non-static function, synchronized on a static object. Here, again if obj1, and obj2 happen to call the function at the same time, obj1 will try to obtain lock for obj1.a; while obj2 will try to obtain lock for obj2.a. However, since obj1.a and obj2.a are the same, thus we will indeed obtain sychronisation.
    Kindly correct me I am wrong anywhere in the above.
    c) In case 3, we have a static function , synchronized on a non-static object. However, Java does not allow functions of this type, so we may safely move forward.
    d) In case 4, we have a static function, synchronized on a static object.
    Here, again if obj1, and obj2 happen to call the function at the same time, obj1 will try to obtain lock for obj1.a; while obj2 will try to obtain lock for obj2.a. However, since obj1.a and obj2.a are the same, thus we will indeed obtain sychronisation. But we are only partly done for this case.
    First, Kindly correct me I am wrong anywhere in the above.
    Now, I have a query : what happens if the call is made in a classically static manner, i.e. using the statement "First.func_four;".
    Another query : so far we have been assuming that the only objects contending for the synchronized function are obj1, and obj2, in a single thread. Now, consider this, suppose we have the same reference obj1, in two threads, and the call "obj1.func_four;" happens to occur at the same time from each of these threads. Thus, we have obj1 rying to obtain lock for obj1.a; and again obj1 trying to obtain lock for obj1.a, which are the same locks. So, if obj1.a of the first thread obtains the lock, then it will enter the function no-doubt, but the call from the second thread will also succeed. Thus, effectively, our synchronisation is broken.
    Or am I being dumb ?
    Looking forward to replies..
    Ashutosh

    a) In case 1, we have a non-static function, synchronized on a non-static object. Thus, effectively, there is no-synchronisationThere is no synchronization between distinct First objects, but that's what you specified. Apart from the coding bug noted below, there would be synchronization between different threads using the same instance of First.
    b) In case 2, we have a non-static function, synchronized on a static object. Here, again if obj1, and obj2 happen to call the function at the same time, obj1 will try to obtain lock for obj1.a; while obj2 will try to obtain lock for obj2.a.obj1/2 don't call methods or try to obtain locks. The two different threads do that. And you mean First.b, not obj1.b and obj2.b, but see also below.
    d) In case 4, we have a static function, synchronized on a static object. Here, again if obj1, and obj2 happen to call the function at the same time, obj1 will try to obtain lock for obj1.a; while obj2 will try to obtain lock for obj2.a.Again, obj1/2 don't call methods or try to obtain locks. The two different threads do that. And again, you mean First.b. obj1.b and obj2.b are the same as First.b. Does that make it clearer?
    Now, I have a query : what happens if the call is made in a classically static manner, i.e. using the statement "First.func_four;".That's what happens in any case whether you write obj1.func_four(), obj2.func)four(), or First.func_four(). All these are identical when func_four(0 is static.
    Now, consider this, suppose we have the same reference obj1, in two threads, and the call "obj1.func_four;" happens to occur at the same time from each of these threads. Thus, we have obj1 rying to obtain lock for obj1.aNo we don't, we have a thread trying to obtain the lock on First.b.
    and again obj1 trying to obtain lock for obj1.aYou mean obj2 and First.b, but obj2 doesn't obtain the lock, the thread does.
    which are the same locks. So, if obj1.a of the first thread obtains the lock, then it will enter the function no-doubt, but the call from the second thread will also succeed.Of course it won't. Your reasoning here makes zero sense..Once First.b is locked it is locked. End of story.
    Thus, effectively, our synchronisation is broken.No it isn't. The second thread will wait on the same First.b object that the first thread has locked.
    However in any case you have a much bigger problem here. You're autoboxing your local 'int' variable to a possibly brand-new Integer object every call, so there may be no synchronization at all.
    You need:
    Object a = new Object();
    static Object b = new Object();

Maybe you are looking for

  • Migrate Windows Essential Business Server 2011 to Windows 2012 R2.

    We are running Windows Essential Business Server 2011 and plan to migrate it to Windows Server 2012 R2. Can someone direct a step by step article or links? Thank you. Bob Lin, MCSE & CNE Networking, Internet, Routing, VPN Troubleshooting on <p><a hre

  • Concurrent program with executable of type HOST

    Hi, I am having 11.5.10.2 on Red Hat Linux AS 4 . I have created a shell script and I wanted it to run as a concurrent program.For that I created executable of type HOST and created one concurrent program and added it to one request group. This works

  • IPod, iTunes, & Outlook Calendar

    I recently updated to iTunes v5.0 and was excited to find that I could sync my Outlook Calendar and Contacts. I enabled the setting to automatically update my calendar and contacts. When I update, the transfer of my contacts is fine. However, when iT

  • PDFs and books changed date of documents

    iTunes seems to be changing the date on documents transferred to apps. For example, I imported Adobe Photoshop CS5 One on One PDF and even though it is dated 2/21/11 in Finder, in iTunes's File Sharing/Apps/GoodReader Documents it is dated 3/14/70. T

  • Failed to get hierarchy group elements from middleware

    When iam configuring the Mobile Infrastructure and clicked on Hierarchy Grouping i got the following error. Error:Failed to get hierarchy group elements from middleware. Reason: Could not connect to middleware Could anyone tell meaning the above stat