Click on f4  of  standard field it should show fields of another table

Hi all,
        it's Urgent, Plz,  tell me in edit mode of ooalv when i  click on f4  of particular standard field it should have feature to show fields of another table which are corresponding to this particular field.
               thanks in Advance .
      good answer will be Rewarded.

have a look at demo report BCALV_TEST_GRID_F4_HELP.
I couldn't explain it any better than this.

Similar Messages

  • MM - Material master data - move standard field to another view

    Hi everyone,
    ÉCC 6.0 - release 7.0.
    I've been adding many custom fields in Material master data MM01/02/03. Now I got a problem because we have to use a standard field in another view.
    The field MARA-HERKL is set up to 'SV'(attribute V_130F-PSTAT):
    Warehouse management = S
    Sales = V
    I want to add 'K - Basic data' in this field's attribute at OSMR Tcode , but this attribute is disactivated. I can not change this value.
    I've check this note 306966 that mention: You cannot create new entries and delete entries in client 000. This client contains only the entries delivered by SAP which are used for distinguishing customer-specific fields and SAP standard during the maintenance of the other clients.
    Is there any problem whether I delete this field and afterwards create it with the new values?
    I'm not in client 000. So, I want to just make sure I will do a legal change.
    thank you in advance,
    Alexandre

    None tips, Closed.

  • PC UI Advanced Search - Enhancement by standard fields of transaction table

    Hello,
    we are using CRM 5.0 SP13.
    We are familiar to enhance PC UI applications (BP+transactions) by EEW customer fields and how to use/hide them in the search functionalities etc.
    But now we need to enhance the advanced search for leads by the POSTING_DATE date of table CRMD_ORDERADM_H. Unfortunytely in PC UI advanced search structure for leads CRMT_BSP_LEA_SEARCH_ME the POSTING_DATE is not included like it is in the opportunity advanced search structure CRMT_BSP_OPP_SEARCH, where we were able to enhance the search easily by CRMC_BLUEPRINT_C customizing.
    The idea is to solve the problem to create EEW fields POSTING_DATE_FROM and POSTING_DATE_TO like they are existing in CRMT_BSP_OPP_SEARCH and use them in advanced search. So far no problem in creating and displaying the EEW fileds by CRMC_BLUEPRINT_C.
    But the part we are missing is to link the new EEW fields to the standard database-field POSTING_DATE and implement the search functionality "Searching by select option POSTING_DATE_FROM and POSTING_DATE_TO".
    Anybody any experience to link EEW-fields to standard fields of database tables for advanced search functionality in PC UI.
    Thank you for your help in advance.
    Best regards
    Marco

    Hi Marco,
    The best option here is to create redefination of the query method of the leads search class. Here you can first ensure that the call to the query method of super class takes place and the next would be do mapping between custom fields to local structure and then call the relevant API's to fetch the data.
    Best Regards, Adil

  • Standard fields in Total Table (FAGLFLEXT)

    Hi,
    can I add standard fields (like BLART - Document Type) to the Totals Table without create a new customer field???
    Thanks
    Stefano d
    Message was edited by:
            Stefano de Angelis
    Message was edited by:
            Stefano de Angelis

    Dear Stefano,
    You should avoid such modication to SAP Standard system, you can add the additional fields at the end of table but note that you are going to perform a modificarion which will probably need some adjustemt in the future (when importing a support package of during system upgrade).
    I recommend to add the additional fields under a table append. The appended structures does not change the standard table definition.
    i hope this helps.
    Lucio Rodrigues

  • Appending DS with a standard field from another DS

    Hi 
       I am appending a standard field( 0catcode_ud) from QM datasource to 2LIS_03_BF.Hence i created a ZZcatcode_ud field and appended to the MC03BFO Structure.Got to write an exit code to populate the zzcatcode field in BF datasource.Now my query is whether my standard field (0catcode_ud) in QM will get populated as well or not??Because i need to execute reports on the standard QM cube aswell.
    manythanks

    Hi Arun,
                 Your standard field will not be populated in BF extractor because you have appended ZZcatcode_ud to your extract structure.I think it will not disturb the standard flow of QM Cube.You can generate reports on QM Cube.
    Regards
    Karthik

  • How to Read data from a table which is defined as a field in another table

    Hi
    Iam working with FM: 'CUCB_GET_CONFIGURATION'
    <b>  Import parameter configuration as a table.</b>
      <u>but configuration has another table as a field.</u>
    i want to read the inner table fields.
    how can i read the table which is defined as field in configuration table.
    Please try to give me a solution.
    can i have the declartions too....
    Thanks,
    sri

    Hi jonnakuti,
    1. simple
    2.
    DATA : CONFG      TYPE IBCO2_INSTANCE_TAB2.
    <b>DATA : WA TYPE LINE OF IBCO2_INSTANCE_TAB2.</b>
    3. just copy paste
    4.
    report abc.
    TYPE-POOLS : IBCO2.
    DATA : INSTANCE     TYPE     CUIB_CUOBJ.
    DATA : CONFG      TYPE IBCO2_INSTANCE_TAB2.
    DATA : WA TYPE LINE OF IBCO2_INSTANCE_TAB2.
    CALL FUNCTION 'CUCB_GET_CONFIGURATION'
      EXPORTING
        INSTANCE                           = INSTANCE
      IS_BUSINESS_OBJECT                 =
      IV_MOMENT                          =
      IV_WITH_DB_INSTANCE                =
    IMPORTING
      IBASE                              =
       CONFIGURATION                      = CONFG
      EO_CBASE_REF                       =
    EXCEPTIONS
       INVALID_INPUT                      = 1
       INVALID_INSTANCE                   = 2
       INSTANCE_IS_A_CLASSIFICATION       = 3
       OTHERS                             = 4
    read like this
    LOOP AT CONFG INTO WA.
    ENDLOOP.
    regards,
    amit m.

  • Is it possible to write a result of query to a CLOB field in another table

    Hi all,
    I have a table with 50 columns which will ideally have around 250,000 rows. I want to select all the rows from this table and insert the result in to another
    table's CLOB or BLOB column. ( I think CLOB is preferred for strings !!)
    f.i
    Table1 : SELECT ID, COL1||','||COL2||','||COL3||','||COL4||','||COL5 FROM TF_TEMPREP
    ORDER BY COL1
    will have the output
    A001, 1,ABN LAYOUT,01-APR-11,30-APR-11,REMARK1
    A001, 2,CTS ,01-APR-11,10-APR-11,REMARK2
    A001, 3,BTS,01-APR-11,20-APR-11,REMARK3
    A001, 4,CWWS,01-JAN-11,31-JAN-11,REMARK4
    A001, 5,ZYNC,01-MAR-11,31-MAR-11,REMARK5
    I would like to store these rows into another table (TF_TEMPREP_OUTPUT) CLOB/BLOB column ,
    so the table TF_TEMPREP_OUTPUT will have one row with all the rows from TF_TEMPREP in the CLOB/BLOB column.
    TF_TEMPREP_OUTPUT will have column OUTPUTID (VARCHAR2) , OUTPUTDATA (CLOB DATATYPE)
    Will this be possible !!.
    Thanks in advance
    Regards
    Murali

    Hi all
    Thanks for your reply,
    The reason we would like to store the data in a CLOB file is that,
    Currently we are fetching the data from the table TF_TEMPREP and the recordset is passed into a function and writing the ouput to a CSV file in the local drive using the VB (front end application). once the process is completed, the temporary table will be deleted. this is used only for printing purpose.
    we are using the VB function
    Public Function RecordsetToCSV(rsData As ADODB.Recordset, pFileSeparator As String, Optional ShowColumnNames As Boolean = True, Optional NULLStr As String = "") As String
    Dim k As Long
    Dim RetStr As String
    On Error GoTo Errh
    If ShowColumnNames Then
    For k = 0 To rsData.Fields.Count - 1
    RetStr = RetStr & pFileSeparator & """" & rsData.Fields(k).Name & """"
    Next k
    RetStr = Mid(RetStr, 2) & vbNewLine
    End If
    rsData.MoveFirst
    RetStr = RetStr & """" & rsData.GetString(adClipString, -1, """" & pFileSeparator & """", """" & vbNewLine & """", NULLStr)
    RetStr = Left(RetStr, Len(RetStr) - 3)
    RecordsetToCSV = RetStr
    Exit Function
    Errh:
    RecordsetToCSV = ""
    Exit Function
    End Function
    But in this operation, as the number of records is more the system often throws out with the message "Not enough storage is available to complete this operation.". The Local HD is having around 50GB of free space. when we have less number of records (say around 30-40K), the above process works perfectly.
    Storing the File in the database server will be an issue, as the database server will be in a different location and it will not be possible/advisable to access the
    local directory thru mapped directory in the database server.
    our plan was if the data is available in a clob field, then we could try to read the clob and write to a file in the local directory thru our VB application itself. Not sure, will this also gives a same error as it was giving when reading from the table?.
    Hope I have clarified what we are aiming at.
    Regards
    Murali

  • Add a standard field in Complex table ctPart

    Hi All,
    I want to add transaction fields (like unloading point) in a complex table ctPart, so that the these fields appear in my search parameters along with other parameters in SAP Work Manager 6.0 App
    I want to know how to link it to the back end. I just have added the fields at agentry end
    I can find those fields in config panel AFVC and RESB tables. I have extended the Part POJO class to get these values in the Component object. But i need these values in complex table also.
    Please help me to proceed

    Vinuta,
    You need to extend the POJO responsible for ctPart CT (look in the config panel parameters for the CT_SAPOBJECT that matches), and make sure your new fields are even available in the BAPI that populates that complex table.  Figure out which BAPI that is by looking up the CT_BAPI_WRAPPER record matching ctParts.  Since your are adding UnloadingPoint, this field must be added to the POJO and must be populated from the BAPI if available.  Use transaction SE37 in SAP to examine the BAPI return table.  If not available, this would require a BAPI code change.
    Jason Latko - Senior Product Developer at SAP

  • Trigger to update field on a table with the sum of fields on another table

    My experience creating triggers and pl/sql in general can best be described in oracle terms as null. I've been practicing by creating tables and applications on my personal home server to help me with some of my work related tasks. Right now I'm trying to create a trigger that will, after insert, update, delete on the assignment_time_track table update the time_spent field on the assignments table with the sum of the time_spent fields on the assignment_time_track table. Hopefully that run on sentence there is clear to people other than myself. I've attempted to script this on my own using the trigger creation tool for Oracle Database Express Edition but I get the following error:
    Trigger create was not successful for the following reason:
    ORA-06552: PL/SQL: Compilation unit analysis terminated ORA-06553: PLS-320: the declaration of the type of this expression is incomplete or malformed
    Here is my attempt at creating the trigger on my own.
    create or replace trigger "ASSIGNMENT_TIME_TRACK_T1"
    AFTER
    insert or update or delete on "ASSIGNMENT_TIME_TRACK"
    for each row
    begin
    update assignments
    set time_spent = (select sum(time_spent)
    from assignment_time_track
    where assignment_time_track.name = assignments.name);
    end;
    If what I've posted isn't clear or more detail is needed, let me know and I'll respond with a complete description of both tables and my goals for each table. Thanks in advance for any help. I will also gladly accept links to tutorials or lessons that explain how to do this sort of thing.
    Edited by: bobonthenet on Mar 9, 2009 2:01 PM

    Hi,
    If the assignments table has only one row per assignment, why is the primary key the combination of name and time_spent? If you have two two assignments called "Lab Report", isn't it possible that you would spend the same amount of time on each of them? I suggest using a sequence to assign an arbitrary id number to each assignment, and use that as the primary key.
    What does each row in assuignment_time_track represent? It sounds like it is a chunk of time spent on one assignment (that is, you want to know that you spent 90 minutes on Tudesday morning working on some assignment, and that you spent another 30 minutes on Tuesday afternoon working on the same assignment). If so, then there should be a foreign key constraint in assignment_time_track referencing the primary key of assignemnt, and not the other way around.
    Alex is right; you can get the total time spent on each project in a query or view; there is no need to replicate that data.
    If you're new to Oracle and SQL, you should invest your time in getting more experience with the basics: everyday things like queries (using joins and GROUP BY) and views, and not spend much time on things that aren't used that much, like triggers.
    If you really did have to copy the data, then you could have a trigger on assignemnt_time_track that kept the total in assignment up to date, like this:
    UPDATE  assignment
    SET     total_time_spent = total_time_spent
                    + NVL (:NEW.time_spent, 0)
                             - NVL (:OLD.time_spent, 0);I suggest you name the column in assignment something different than the column in assignment_time_track, to reduce the risk of confusion. Also, since they represent different things, the same name can't be the most descripttive for each of them.
    In case you're wondering about the use of NVL, above: It allows the same statement to take care of the situation when you INSERT, UPDATE or DELETE a row in assignment_time_track. That is, if you UPDATE a row in assignment_time_track, and change the time_spent from 60 to 90, then you want to add the new time (90) and subtract the old time (60) fro the total_time_spent in assignment: that is, total_time_spent would increase by 30. If you INSERT a new row into assignment_time_track with time_spent=30, you just need to add the new time_spent (30): there is nothing to subtract. But rather than write an IF statement and a second UPDATE for that situation, you can just rely on hte fact that all :OLD values are NULL iwhen INSERTing, and treat that NULL as a 0. Likewise, when DELETing, all :NEW values are NULL..

  • Set Default Value based on Field from another table for a custom object

    I'm trying to set the default value on a custom object field to the value of an account field. I have tried the syntax 50 different ways, and just am getting no where. The account field label displays as DBA, the integration tag is ltDBA_ACCT, and it shows up in reporting fx area as Account.Text_22.
    The custom object field I'm triying to update is also called DBA, which was originally the "NAME" required field. Does the table name, Account, have to be included? Do I need a function in front of the field?
    I have been updating the external ID using the row ID with syntex <ID> (Less than ID greater than) so I know it is possible to set the Default Value, but <DBA>, <ltDBA_ACCT>, "Account"."DBA", and so on just don't not work.
    If anyone knows how to enter this I'd really appreciate the help.

    Ok, so if you want to default a field to the value from another object, you have to use the JoinFieldValue function. I think you understand that, based on your original post, but I want to be sure that you do.
    Next, this will only work as a default if the record is created from the object that you wish to join on because a default works at record creation and the ID needs to be available for it to work properly. It will not work if you choose the related object record after the custom object record is created. You could set the value as a post-default, but that does not seem to meet your requirements.
    The syntax for the Default Value would be as follows: JoinFieldValue(ref_record_type, foreign_key, field_name).
    In your case, ref_record_type is '<Account>', foreign_key is &#91;<AccountId>&#93;, and field_name is '<YourFieldName>'. The best way to determine what the field name is would be to create a new workflow for Account and use the Workflow Rule Condition expression builder to pick your field ("DBA") from the list. The value that is returned by the expression builder should be placed in the field_name variable in the JoinFieldValue function (minus the brackets and in single quotes).
    Give this a shot and let me know how you do.
    Thom

  • To pull data from avarchar field into a date field in another table

    Hi
    I pulled some records into a table from a remote server by means of a database link and one of the field which is varchar(30) needs to be pulled into other database which has a date column.
    so the varchar field needs to be converted into the date column so that the data can be loaded into that table.

    Now, we are talking. See, all you had to give us was the error first. Anyway, I think your 'format' coming in is different from the date 'format' you are using to do the 'to_date' function.
    Anyway, please show us what the incoming data looks like and we might be able to suggest what is the 'to_date' format you have to use (for eg: 'yyyy-mm-dd' or 'yyyy mm dd HH:mi:ssss').

  • Count field using fields at another tables

    Hi. I have invoice and deliveries:
    Create table Invoices (
    InvoiceID number primary key,
    OrganizationName varchar2(30),
    InvoiceDate date,
    TotalPrice money
    Create table Deliveries (
    InvoiceID number,
    ProductName varchar2(30),
    ProductPrice money,
    Amount number,
    Second table has information about products with in invoice.
    I would like not to count all Products:
    Select InvoiseID ,COUNT(ProductPrice*Amount) as "Total invoice Price"
    From somewhere
    Where something has the same InvoiceID
    Group by invoiceID
    I want it to count automaticlly and put it in TotalPrice field. How can I do it?

    some notes...
    Create or replace Procedure CountInvoiceSums IS
    begin
    cursor c1 is
    select *
    from Invoices;
    records number;
    records=(select COUNT(*) from Invoices);
    invoiceN varchar2(5);
    for j 1..records
    LOOP
    --get invoice name:
    invoiceN=
    --change invoice Total price for
    (select SUM(ProductPrice*Amount)
    from Products p
    where p.INVOICENAME=invoiceN)
    END LOOP
    end;
    --=========================================
    Create or replace trigger InvoiceTotalPrice
    after update of ProductPrice on Products
    call CountInvoiceSums;
    Am I on the right way? If I am, I have 2 questions:
    1)how to edit field in j record? delete old the add new?
    2)how to get field in j record?
    Thanks in advance.
    P.S. please just advice not make for me, i want to lean it myself.

  • Updating a date field witha field from another table

    Hi friends
    I have a table called Customer_Type with following fields
    Customer_type ,Active_date, Inactive_date
    regular,11/01/2011
    daily,11/04/2011
    monthly,11/05/2011/11/11/2011
    Tbale 2:Customer
    Customer_name,Customer_type,Customer_Inactive_date
    John,regular,
    James,monthly,
    Jake,daily,
    Jill,monthly
    What i wnat is to update the Customer_inactive_date with the Incative_date field from Customer_type
    based on their Customer_type... So james and Jill would have their rows updated in this scneario ..How can i achive this in pl/Sql
    Thank you in advance...

    Hi,
    You can look at this code; it's not PL/SQL but a simple MERGE statement:
    CREATE TABLE CUSTOMER_TYPE
      type_code VARCHAR2(10),
      active_date DATE,
      inactive_date DATE
    INSERT INTO customer_type VALUES('REGULAR', TO_DATE('11/01/2011', 'DD/MM/YYYY'), null);
    INSERT INTO customer_type VALUES('DAILY', TO_DATE('11/04/2011', 'DD/MM/YYYY'), null);
    INSERT INTO customer_type VALUES('MONTHLY', TO_DATE('11/05/2011', 'DD/MM/YYYY'), TO_DATE('11/11/2011', 'DD/MM/YYYY'));
    CREATE TABLE CUSTOMERS
      customer_name varchar2(10),
      customer_type varchar2(10),
      customer_inactive_date DATE
    INSERT INTO customers VALUES('John', 'REGULAR', null);
    INSERT INTO customers VALUES('James', 'MONTHLY', null);
    INSERT INTO customers VALUES('Jake', 'DAILY', null);
    INSERT INTO customers VALUES('Jill', 'MONTHLY', null);
    MERGE INTO customers dst
    USING customer_type src
    ON (dst.customer_type = src.type_code)
    WHEN MATCHED THEN
      UPDATE set dst.customer_inactive_date = src.inactive_date;
    SELECT * FROM customers;
    CUSTOMER_NAME CUSTOMER_TYPE CUSTOMER_INACTIVE_DATE   
    John          REGULAR                                
    James         MONTHLY       11-NOV-11                
    Jake          DAILY                                  
    Jill          MONTHLY       11-NOV-11                 If you don't understand it, just let me know...

  • BOXI3.0: 2 fields in a table link to 1 field in another table

    Greetings.
    I have a question.
    I have 2 tables:1-Employee_Data and 2-ABC
    I am using SQL.
    1.Employee_Data table
    Field -> EMPID_T
    Data Example -> 006862
    2.ABC Table:
    Field -> 1.Createby_T
                2.Modifyby_T
    Data Example -> 1. 006862 & 2.005914
    From ABC table, I want to link Createby_T and Modifyby_T to EMPID_T. Then in report, I want to view their names. In this case, there are 2 person(006862 & 005914).
    How I can view their names respectively?
    Best regards,
    Alias

    Hi Alias,
    You can create an alias of the Employee_Data table e.g Emplyee_Data_2
    Then you join Employee_Data.EMPID_T to ABC.CreateBy_T. Create the dimesion objects in the universe using Employee_Data to refer to all "created by" employees
    Join the Employee_Data_2.EMPID_T to ABC.ModifyBy_T. Create the dimension objects in the universe using Employee_Data_2 to refer to all "modified by" employees.
    In this case table ABC is you FACT table and the 2 Employee tables are dimesion tables.
    Hope this helps
    Jacques

  • Delete standard fields from template repository

    Hello,
    We've created a repository based on standard repository template, which contains several fields that we don't use and we want to delete.
    The problem appears after deleting different standard fields like:
    MDMSRM_PRICE_INFORMATION
    MDMSRM_CONTRACT_PRICE
    As it seems the system is using these fields when displaying the catalog into the portal through iviews.
    I've checked the UI Configuration into the web finished with .../MDM_SRM_UI_App, but I cannot find the fields I've deleted anywhere.
    I've been reading different threads on this forum, but I'm not sure if I need to delete the deleted fields from an XML structure.
    If I have to modify any file, where can I get the file to be updated?
    If not, how should I proceed?
    Thanks & regards,
    Carlos Santamaría.

    Hi Carlos.
    Are you looking forward to  1.  Revert back the fields which you have deleted  or
                                                  2.  Remove the fields from the XML data structure.
    If (1)  - Check the Note: 1171711 where you will find a PDF attached about the repository information which gives you more details about the fields which are available so that you can manually adjust your repository by adding those fields accordingly.
    If (2) -  In the configuration screen, provide your user credentials by selecting the repository and click "Transport Configuration" button where you can get the XML file to view the fields and edit the file by removing those fields and update  back to it.
    Note: SAP doesn't recommend you to delete fields from  its delivered repository. Especially its price fields. So try to achieve your solution without deleting it if you can.
    Regards
    Bala

Maybe you are looking for

  • Caller ID Not working

    I think i am going nuts, cos my new BTVerve 450 is a great phone, but it will not display Caller ID. I am with Virgin for my phone line etc, with a wireless router for my laptop. Can anyone help? I really dont want to return the phones, i am really p

  • Issue with variable values while adding report to Bookmarks/Favorites

    Hello All, I am able to save the reports from my portal as bookmarks with the appropiate navigation state & variable values for reports which do not have a mandatory value variable with no default value. For all other queries like queries with no man

  • Buy new iphone with just 30 days warranty (need help pls)

    Hi all, i've just bought an iphone 4s 32Gb with zp code (hongkong) for my friend on February 11 2013. and didn't activate it until now i looked up in estimated expiration date ended on April 13 2013. I have no ideas why it's happen. Can somebody plea

  • Accessing RSA1 issueYou have no authorization for basic types (activity 01)

    We are experiencing the following issue with RSA1 While accessing this it comes back with error You have no authorization for basic types (activity 01) This was working before and no authorizations got changed. Appreciate your feedback.

  • SSd drive and set up

    Good morning all, I want to change my hard drive to a ssd one, but for this, I will need to set up my macbook (end 2007-LION), to be sure that no copy of my personnal files will be done on the internal hard drive, but remains on the external drive. C