How to Maintain Relation for tables

Hi All,
Can anybod help me how maintain relationship/ connectivity for
purchase order between (ekko- ebeln) and Handling unit (vekp-exidv).
Here I need to fetch the HU details based on the purchase order. Please through some light on this.
regards,
Ashwin

you can make the connection using the inbound (outbound) delivery for that purchase order.

Similar Messages

  • How to maintain cluisterview for new business roles in SAP CRM2007

    How to maintain cluisterview for new business roles in SAP CRM2007.
    Table - CRMV_UI_NB
    Regards,
    Biplab

    I also look forward to a 'solved' answer to your question.
    In the meantime, I'm curious to know if there are any organizations today running SAP B1 HANA for their production system.   Would you know of any?

  • How to create variant for table/view ?

    Hi,
    When I go through SM30, I find a radio button called variant. I don't know the effect.
    Can anyone tell me how to create variant for table / view ?
    I want to know when we need to create variant for table/view.
    Best regards,
    Chris Gu

    hi ,
    Whenever you start a program in which selection screens are defined, the system displays a set of input fields for database-specific and program-specific selections. To select a certain set of data, you enter an appropriate range of values.
    For further information about selection screens, refer to Selection Screens in the ABAP User's Guide.
    If you often run the same program with the same set of selections (for example, to create a monthly statistical report), you can save the values in a selection set called a variant
    Procedure
    To create a new variant:
           1.      On the ABAP Editor initial screen, enter the name of the program for which you want to create a variant, select Variants, and choose Change.
           2.      On the variant maintenance initial screen, enter the name of the variant to be created.
    Note the naming convention for variants (see below).
           3.      Choose Create.
    If the program has more than one selection screen, a dialog box for screen assignment appears. The dialog box does not appear if the program only has one selection screen. The selection screen appears in this case.
           4.      If there is more than one selection screen, select the screens for which you want to create the variant
    5.      Choose Continue.
    The (first) selection screen for the report appears.
    If your program has more than one selection screen, use the scroll buttons in the left-hand corner of the application toolbar to navigate between them and to fill the fields with values. If you keep scrolling forwards, the Continue button appears on the last selection screen.
           6.      Enter the desired selection values, including multiple selection and dynamic selection.
           7.      Choose Continue.

  • How to maintain EOIO for JMS to multiple webservices scenario

    Hi,
    I have a requirement that
    how to maintain EOIO for JMS to multiple webservices scenario.
    JMS queue has multiple messages, each message has to be sent to either of 2 receivers.
    How to maintain EOIO in case, when there are 2 receivers.
    Regards
    Sekhar

    Hi,
    since messages are split between 2 webservices receivers, each would have its own SOAP adapter.
    So if order of messages in the JMS queues is M1, M2, M3 and M4 . There is a field based on which split happens.
    Say, if M1 and M3 have to go Webservice1 (will have its own mapping)
    and M2 and M4 have to go Webservice2. (will have its own mapping)
    we'll have two receivers in the receiver determination and hence two Interface determinations.
    The result should be
    M1 delivered to Webservice1
    M2 delivered to Webservice2
    M3 delivered to Webservice1
    M4 delivered to Webservice2
    How will we maintain EOIO in this case?
    Regards,
    Balaji.M

  • How to set optional for table structure in functiona module

    hi experts,
    as i have small doubt regarding
    while publishing web service by using rfc where i am unable to set optional for table structure i am able to put optional for import parameters may i know how to set optional for table structure ....
    reagrds prabhanjan

    Ignoring the TABLES/CHANGING/EXPORTING argument...
    while publishing web service by using rfc where i am unable to set optional for table structure i am able to put optional for import parameters may i know how to set optional for table structure
    Why not?  There's no issue with marking a TABLES interface parameter with 'Optional' and publishing the function module or function group as a web service...

  • How to maintain WORK for General Cost activity

    Hi,
    can anybody show me how to maintain WORK for a General Cost activity. In the detail screen I cannot find field WORK, so I also don't know how to confirm for a General Cost activity
    Thanks
    Long

    Hi,
    It seems you have 2 different requirment:
    1. Maintaining work: Use Internal activity
    2. Confirm cost activity: Refer [Link|Actual cost in Cost Activity;
    Regards

  • How to maintain gap between table and graph in a report

    HI,
    I have a report in which a graph is placed below a table  and data in the table gets increased with time , then how to maintain the gap as constant between table and the graph ?? Like i have 50 rows in a table and then next day 10 rows are added but then i want maintain same gap between the table and graph???

    >Right click on chart.
    >Open the property and go to the relative position.
    >Select the distance of the upper left point of the chart in relation to another report element by entering - the number of pixels; the part of the tavfrom which youble want to measure the pixels (in the first drop-down list); the report element from which you want to measure the pixels (in the second drop-down list).
    >Repeat this for the distance of the lower left point of the chart.
    Hope this will help you out.

  • Please help me how to maintain log for procedure execution

    Hi Experts,
    How to maintain the log for procedure execution
    I want to maintain the log for procedures as below.
    Once the procedure starts it should show status as RUNNING and PROC_END_TIME should be NULL.
    Once the procedure completes it should show status as COMPLETED and shold show the PROC_END_TIME.
    Once the MAIN_PROC completes then only the status of that procedure should show COMPLETED.
    STEP_ID RECORDS_INS_UPD  RECORDS_DELETED PROC_NAME PROC_START_TIME                PROC_END_TIME              JOB_STATUS ERROR_MSG
    1 500             0  MAIN_PROC 1/4/2014 5:47:38.000000 AM                         RUNNING
    2 100             0  SUB_PROC1 1/4/2014 5:49:30.000000 AM                         RUNNING
    3  0             0  SUB_PROC2 1/4/2014 5:47:38.000000 AM 1/4/2014 5:47:38.000000 AM COMPLETED
    I have tried the below code but it's not working properly.
    CREATE OR REPLACE PROCEDURE procedures_log
       p_seq                NUMBER,
       p_rec_ins_upd        NUMBER,
       p_rec_deleted        NUMBER,
       p_proc_name          VARCHAR2,
       p_start_time         TIMESTAMP,
       p_end_time           TIMESTAMP,
       p_job_status         VARCHAR2,
       p_error_msg          VARCHAR2
    IS
    PRAGMA AUTONOMOUS_TRANSACTION;
    BEGIN
        IF p_seq = 0 THEN
            INSERT INTO proc_log
                STEP_ID,
                ORG_ID,
                TABLENAME,
                RECORDS_INS_UPD,
                RECORDS_DELETED,
                JOB_NAME,
                PROC_NAME,
                JOB_START_TIME,
                JOB_END_TIME,
                JOB_STATUS,
                ERROR_MSG
            VALUES
                p_seq,
                p_rec_ins_upd,
                p_rec_deleted,
                p_proc_name,
                p_start_time,
                p_end_time,
                p_job_status,
                p_error_msg
        ELSE
            UPDATE proc_log
            SET
                RECORDS_INS_UPD = p_rec_ins_upd,
                RECORDS_DELETED = p_rec_deleted,
                JOB_END_TIME = p_end_time,
                JOB_STATUS = p_job_status,
                STEP_ID = p_seq,
                ERROR_MSG = p_error_msg
            WHERE UPPER(TRIM(PROC_NAME)) = UPPER(TRIM(p_proc_name))
            AND STEP_ID = 0
            AND JOB_STATUS = 'RUNNING';
        END IF;
        COMMIT;
        EXCEPTION
            WHEN OTHERS
            THEN NULL;
    END;
    Please help me.
    Thanks.

    ramya_162 wrote:
    Hi,
    I don't want to maintain multiple records for one procedure.
    The log table will grow huge.
    Please help me.
    Thanks.
    You have two options.
    Either a running log, from which you periodically delete old records, or maintain a standing record  for each process you are tracking.
    Ok, let's take the second, since that seems to be your preferred method.
    Going back to your original post, you gave us code and said "I have tried the below code but it's not working properly."
    Please define "not working".  That statement is totally devoid of actionable or diagnostic information. 

  • How to maintain variant in table RSRPARAMETRIZA?

    Dear Experts,
    I have to maintain variant in table RSRPARAMETRIZA via ABAP Program. Some thread in SDN advice the class CL_RSR_PARA but I don't know how to use this class to update the field "Content of Variant" in table RSRPARAMETRIZA.
    Please tell me the class or function that can update the variant?
    Thank you,
    Zilla D.

    Hello Narendar,
    Check the following link:
    http://help.sap.com/saphelp_erp2005/helpdata/en/45/adee2396f711d1b46b0000e8a52bed/frameset.htm
    Also, a table control wizard in Screen Painter(SE51) exists, which takes you step by step through the Table Control generation and also creates code, so you can start using the Table Control right away.
    You can either specify a database table, or use an internal table from program.
    If you want to use internal table, it needs to be predefined in your program, before you start creating the table control.
    Reward if helpful.

  • How to maintain keywords for a original files in DMS?

    Hi,
    How to maintain a Keywords for all original files which are already available in content server? I have done the following steps for full-text search(content search) with in originals.
    1.Configured RFC from TREX to R/3
    2.Created SSR with VERITY search engine
    3.Configured MIME types in DMS
    4.Indexing has been done
    5.We ran RSTIRIDX program as a background job.
    After doing above all for activating full text search in CV04N,  The text box search text is enabled, how ever when we try to search for a text in original we are getting the message:"No documents found with these selected parameters".
    Awaiting for your valuable response.
    Thanks
    Prasad

    Hi Prasad,
    could you please test the search behavior also in transaction SKPR07 because this transaction offers different tools for testing and analysing the TREX search. The class for DMS is DMS_PCD1.
    Best regards,
    Christoph

  • How to enter entries for  table TVZBT

    Hi,
    can any one help me how to maintain payment team description in defferent languge in TVZBT table.
    this table contain the following  data in english
    SPRAS     ZTERM       VTEXT
    E              ZA20          N 30 Due  from end billing
    Now i have to maintain same date in french ie
    F              ZA20           N 30d'f bill
    how can i update.

    HI,
      write a small program and insert it into the table .
    data : wa like TVZBT.
    wa-langu = 'F'.
    wa-zterm = 'ZA20'.
    wa-VTEXT =  '30d'f bill '
    insert tvzbt from wa.
    is it the case that you just want to maintain only one entry of how... if its only one time one entry then i have other way of doing it with out writing the program.. please let me know

  • How to construct CollectionModel for table component?

    I use ChildPropertyTreeModel to construct CollectionModel for table. If I need find rows in the table by rowkey, how to set rowkey for the CollectionModel?

    Hi,
    the rowKey is of type Set and contains the keys. In the POJO case the key entry in the Set is the row index (zero) based
    Frank

  • How to maintain version for sales order.

    Dear Guru.
                 Please tell me how do i maintain version for my sales order.

    Chaitanya,
    I think you are working in MTO scenario or Variant configuration.
    We can maintain versions in sales order by going to Header--> Sales tab
    Thanks,
    Raja

  • How to Maintain Reasons for the Opportunity Status in SPRO

    Dear all,
    I want to maintain reasons for the opportunity status. could any of you educate me about this. Your help will be highly rewarded.
    thank you
    Raghu ram

    hi Raja ram,
    u can maintain status reasons for Opportunity SPRO
    CRM-TransactionsSettings for Opportunity--Maintain Status Reason and Status Profile for Opportunities
    in this u need to select cataloge type (O1) in this u can maintain reasons for status
    Regards
    sreedhar

  • How to pass parameter for table name in  form6i.

    Hi ,
    I am facing the problem to pass parameter for table name in form6i.
    If any solution please infirm me earliest to my mail id.
    ([email protected])
    example:
    begin
    select ename into :ename
    from :tab_name
    where empno =7788;
    end;
    It gives error as bad bind variable 'tab_name'
    *** where :ename and :tab_name are form fields
    Thanking you,
    Balasaheb

    object name not taken as table --> what do u mean by
    this?
    Please be more clear..
    Regards
    PriyaI have two block. First block I am displaying all the table using user_objects table. Another block I want display, user which table selected, corresponding table all the records.

Maybe you are looking for

  • Stock Transfer by movement type 301 referring STO

    Dear Experts, I am unable to generate a stock transfer referring an STO in MB1B or MIGO by movement type 301. I am successfully doing whenever I refer a Reservation. Please advice. Regards,, Subhro Chakravarty

  • HT1689 my iphone 5s is not working shows that it needs to connect to itunes

    my iphone 5s is not working it shows that it needs to connect to itunes

  • Payment Consolidation error

    Hi, While creating Payment consolidation in BP following error is raised. "Cannot concatenate summary cards [Business Partner - BP Summary], 'BPcode' [Message 3502-1] What could be the reason. Can anybody help on this. Thanks in advance Narayanan

  • Cold Fusion Standart Edition Configuring iis7 Help!

    Hi, Well i just got this great task to install and configure a server for the first time. I am a coder, not a network specialist, and IIS7 differs from previous versions and i am still getting used to the interface. Anyways, so i have ColdFusion stan

  • DAO Error - Logon Failed

    Post Author: aurel60 CA Forum: General Hi everybody, We are working with VB6, Access and Crystal Report to make some reports.And today, some users have contact me because they have a new problem with a report.You could see bellow the error message :T