How to know create or change DEBMAS02 IDOC?

hi,
1. Can anyone let me know whether DEBMAS02 outbound  idoc is used for create and change of Customer master records or not?
2. How to identify whether it is change or Create in IDOC? which field is referring it?
regards,
Khaja.

hi,
This is Outbound  IDOC, this is going from SAP to other application,  I need to know which field is having this identification of Create or Change?

Similar Messages

  • How do you create or change excel spreadsheet downloaded from windows

    how do you create or change excel spreadsheet on macbook pro?

    Hi meadcm,
    You would need to have Excel installed on your Mac....
    You can get Office for Mac, which has Excel as a part of the package from Microsoft:
    http://www.microsoft.com/mac/buy
    Cheers,
    GB

  • How can u creat LSMW port in Idoc Processing

    how can u creat LSMW port in Idoc Processing
    actullay i'm using Lsmw with bapi

    Hello Ronei
                 *After giving the project ,sub project ,object & short description
                      *go to menu bar click on settings  in that select idoc inbound processing ,
                      *in that screen click on maintain port push button
                      *port creation screen will be displayed in that left menu expand the file
                      *after that select file_port
                      *click on copy button
                      *provide your port name
                      *provide the short description
                      *after that deselect the uni code check box
          --->*this is the main step
                     *in the directory you will provide the path of your flat file other wise your
                      project will be terminated after 13 th step .
    thanks .
    prasad gandepalli     

  • How to know created date of table of info ?

    for example :
    select v.*
    from v$session v
    how to know the created date of one line info in v$session ?
    who can help me ?
    thanks!

    Hello
    The program column is the name of the program (OS executable) that owns the session. Take this example on windows (note that I've edited out some lines):
    SQL> select sid,serial#,program,username from v$session;
           SID    SERIAL# PROGRAM                                                          USERNAME
           420         11 sqlplus.exe                                                      TYLERD
           427          5 ORACLE.EXE (q001)
           429          3 ORACLE.EXE (CJQ0)
           431          3 ORACLE.EXE (QMNC)
           434         10 ORACLE.EXE (q000)
           436          1 ORACLE.EXE (MMNL)
           437          1 ORACLE.EXE (MMON)
           438          1 ORACLE.EXE (RECO)
           439          1 ORACLE.EXE (SMON)
           440          1 ORACLE.EXE (CKPT)
           441          1 ORACLE.EXE (LGWR)
           442          1 ORACLE.EXE (DBW0)
           443          1 ORACLE.EXE (MMAN)
           444          1 ORACLE.EXE (PSP0)
           445          1 ORACLE.EXE (PMON)
            You can see that there are the various Oracle sessions for the various background processes/threads and there is my session, which as you can see I created by connecting to the database with SQL*Plus. I'll get rid of the oracle sessions in the next one and create another session with SQL Navigator (spit on the floor as I click the icon) and another one with powerbuilder (throw myself on a spike)
    SQL> select sid,serial#,program,username from v$session where username=user;
           SID    SERIAL# PROGRAM                                                          USERNAME
           419         12 SQLNav5.exe                                                      TYLERD
           420         11 sqlplus.exe                                                      TYLERD
           421        163 pb80.exe                                                         TYLERDIf I rename the powerbuilder executable (to something more apt) and re-connect, you can see this shows up in the program column
    SQL> select sid,serial#,program,username from v$session where username=user;
           SID    SERIAL# PROGRAM                                                          USERNAME
           417         14 Dodgy builder 80.exe                                             TYLERD
           419         12 SQLNav5.exe                                                      TYLERD
           420         11 sqlplus.exe                                                      TYLERDHTH
    David
    p.s.
    As guido suggested, you should become familiar with the documentation, here's some links:
    V$Session reference
    10g documentation home page
    Concepts guide

  • How can we create info record using IDOC INFREC?

    Hi Friends,
    Can we create info record using IDOC INFREC. If Yes. How?
    Regards,
    Narendra

    Using IDOC INFREC & FM IDOC_INBOUND_SINGLE

  • How can we create and change RSS XML?

    1. What tools can we use to create RSS XML pages?
    2. The pages should use data of the other XML pages generated by the XML-forms (e.g. News XML pages)?
    3. How can we setup and change RSS XML templates (e.g. add new tags, change properties and values)?

    Hi
    Is  there any way to create Rss for personal blogs and add it into our portal. That means we can add it newly by clicking button.
    Thank You
    Regards
    Krishnamurthy

  • How to replace/create the changes made in plsql function that is in package

    My problem here is that,
    There is a sql file , contains package,In that package there are more functions .I had made changes in one function body.I want it to be created with changes made in that package without effecting remaining functions.
    Here is my file
    CREATE OR REPLACE PACKAGE i2_pack_match IS
    -- Function to check whether date conditions are met or not
    FUNCTION fn_check_date(pd_sn_earliest_start_dt IN i2_sn_details.earliest_start_date%TYPE,
    pd_sn_latest_end_dt IN i2_sn_details.latest_end_date%TYPE,
    pn_sn_min_duration IN i2_sn_details.minimum_duration_weeks%TYPE,
    pd_tn_earliest_start_dt IN i2_tn_details.earliest_start_date%TYPE,
    pd_tn_latest_end_dt IN i2_tn_details.latest_end_date%TYPE,
    pn_tn_min_duration IN i2_tn_details.minimum_duration_weeks%TYPE,
    pn_date_margin IN NUMBER)
    RETURN BOOLEAN;
    FUNCTION fn_check_degree(ps_sn_degree IN i2_sn_details.degree%TYPE,
    ps_tn_degree IN i2_tn_details.degree%TYPE)
    RETURN BOOLEAN;/
    show errors
    PROMPT Creating Package Body PACK_MATCH ...
    CREATE OR REPLACE PACKAGE BODY i2_pack_match IS
    FUNCTION fn_check_date(pd_sn_earliest_start_dt IN i2_sn_details.earliest_start_date%TYPE,
    pd_sn_latest_end_dt IN i2_sn_details.latest_end_date%TYPE,
    pn_sn_min_duration IN i2_sn_details.minimum_duration_weeks%TYPE,
    pd_tn_earliest_start_dt IN i2_tn_details.earliest_start_date%TYPE,
    pd_tn_latest_end_dt IN i2_tn_details.latest_end_date%TYPE,
    pn_tn_min_duration IN i2_tn_details.minimum_duration_weeks%TYPE,
    pn_date_margin IN NUMBER)
    RETURN BOOLEAN IS
    lb_ok BOOLEAN := TRUE;
    ld_sn_latest_start_date DATE;
    ld_tn_latest_start_date DATE;
    BEGIN
    ld_sn_latest_start_date := pd_sn_latest_end_dt - (pn_sn_min_duration * 7) +
    pn_date_margin;
    ld_tn_latest_start_date := pd_tn_latest_end_dt - (pn_tn_min_duration * 7) +
    pn_date_margin;
    IF (pd_tn_earliest_start_dt > ld_sn_latest_start_date) OR
    (ld_tn_latest_start_date < pd_sn_earliest_start_dt) THEN
    --dbms_output.put_line('Date condition failed');
    lb_ok := FALSE;
    END IF;
    RETURN lb_ok;
    END;
    FUNCTION fn_check_degree(ps_sn_degree IN i2_sn_details.degree%TYPE,
    ps_tn_degree IN i2_tn_details.degree%TYPE)
    RETURN BOOLEAN IS
    lb_ok BOOLEAN := TRUE;
    BEGIN
    Vijaya-341-----Get the ALL count data equal to sum of Undergraduate,Bachelor and Masters count----------------------
    IF ps_tn_degree != -1 THEN
    IF ps_sn_degree = 75 THEN
    IF ps_tn_degree > 0 AND ps_sn_degree > 0 AND ps_tn_degree = ps_sn_degree THEN
    --dbms_output.put_line('Degree condition failed');
    lb_ok := TRUE;
    END IF;
    ELSIF ps_sn_degree = 50 THEN
    IF ps_tn_degree > 0 AND ps_sn_degree > 0 AND ps_tn_degree = ps_sn_degree THEN
    lb_ok := TRUE;
    END IF;
    ELSIF ps_sn_degree = 25 THEN
    IF ps_tn_degree > 0 AND ps_sn_degree > 0 AND ps_tn_degree = ps_sn_degree THEN
    lb_ok := TRUE;
    END IF;
    END IF;
    ELSIF (ps_tn_degree = -1) AND (ps_sn_degree = 50 OR ps_sn_degree = 25 OR ps_sn_degree = 75) THEN
    lb_ok := TRUE;
    END IF;
    Vijaya-341---------------------------------------END-------------------------
    RETURN lb_ok;
    END;
    END;
    show errors
    i made changes in function fn_check_degree.
    How can i create in oracle ?Plz any one help me.

    You need to get that revised code into the database - what you are doing with the 'alter package' command is simply recompiling what is already in the database (not your new code).
    In SQL*Plus:
    sql>@c:\myfile.sqlwhere c:\myfile.sql is the name of the file.
    Running this script will then replace the code stored in the database with the new code from your file.

  • How to know who last changed a sapscript form

    Hello experts,
    Our QA server was recently refreshed and we are currently checking if our sapscript program is latest one. How can we know who last changed it? Also, can we also know if a certain DEVK has been transported to QAS? Thanks a lot!

    sapscript header have information regading changes..
    for request u  can check on stms in qa server.
    also check table for request.
    like E070,E071,E07*

  • How to know whether the changes are implemented by sap or not(not manually)

    Hi,
    On 4.7 version in some standard objects(SAP Objects) some changes are done by custom by using modification assistance.
    On ecc 6.0 version I need to know whether the same changes are done by custom or sap? ( not manually)
    Let me know is there any process to know the changes done by sap or custom on ecc 6.0.
    Thanks,
    Radhika

    Hi ,
    u can check  for entries  in table ADIRACCESS.
    Regards
    prabhu

  • How to know the database changes between different releases

    Where can I get the information of database changes, like for example new columns new tables, etc, between different releases?
    My goal to try to determine the current version, or is there a better way?
    Thank you

    For JD Edwards World or for JD Edwards EnterpriseOne - you can go to upgradejde.com Once this screen comes up, pick Resources. You will then have an option to take JD Edwards EnterpriseOne or JD Edwards World. On the next screen, you can select the tab Compare Releases. This will allow you to enter the release that you are currently on and enter the latest GA release of software. You will then see all the differences between your current release and the release you should upgrade to. You can also format this into a printed report.

  • How to know whether there is any change in a transaction in ic webclient

    Hi,
    There is one activity screen in the ic web(CRM 5.0). There is two button(Change, Save , Sendnotification) on that screen.
    Sendnotification: if i click this button then it will check whether there is any change done using  below logic and will send the noti..:
    DATA:lv_transaction   TYPE REF TO if_bol_transaction_context,
    lv_entity       TYPE REF TO cl_crm_bol_entity.
    lv_transaction = lv_btorder->get_transaction( ).
          IF lv_transaction->check_save_needed( ) EQ 'X'.
             then save the changes  and send notification
          ENDIF.
    Question:
    Now i clicked on the Change button and did some changes.Then saved.
    Then again i did some changes, now i clicked on the Sendnotification button.It sent an notification.
    Now i again clicked on the Sendnotification(this time i didnt do any changes), it sent the same notification again.
    So how to know that  actully changes done or not & how to write code if there is no changes?
    During debugging , i found that the method check_save_needed always returns 'X' as long as i am in the chage mode of that activity. As a result if i dont do any changes also in the activity and click the button , it sends the notification.
    please suggest how to restrict  using coding........
    Thanks
    sudhansu

    Not solved.

  • Create a change pointer

    Hi everybody.
    I need to throw a change pointer when a equipment is modified (Table EQUI). I´d like to throw this change pointer when the user change the status of this object (Tabla JEST, field STAT). The problem is that in transaction BD52 I can´t find an adecuate entry and when the user only modifies this status the change pointer is not created. How could I create this change pointer when this field is modified? Exist any FM to create a change pointer or only is possible by customizing?
    Thanks a lot.
    Regards

    The check box is not checked.... That means the change pointer can´t be created when this field is modified??
    Thanks a lot
    Edited by: Christian  Abad Chico on Nov 4, 2009 9:35 AM
    Edited by: Christian  Abad Chico on Nov 4, 2009 9:35 AM

  • How to trigger a sales order Idoc ORDERS05 when ever we create or change it

    Hello Experts,
    What are all the configuratons that we need to do on SAP to configure triggering of sales order when ever its created or changed.
    It will be very helpfull if you give in step - step process to do it.
    If any have any documentation please sendme
    Please Help,

    If i understand your message correctly, You want to trigger an ORDERS05 IDOC with message type ORDRSP from the sales order right. You can configure the output type in transaction NACE under application V1 and assign it to you output determination procedure. You need to check the box Multiple issueing if you want the output to be proposed every time you change the order. You also need to create partner profile for the customer in WE20.

  • How to know I'm creating or changing the service order in ICweb?

    Hi,
    I need to disable or enable some fields based on if the service order is being created or changed . I'm new to IC web .. .can someone pelase help me understand how can I differentiate ?

    Hi,
       Which view in service order are you referring to? Normally there will be two seperate inbound plugs in the window level e.g. IP_CREATE and IP_EDIT that displays the same edit view.
    One way will be to set a flag in either of the inbound plugs for you to identity in the corresponding view whether it is a edit scenerio or a create scenerio. Depending on this flag value, you can proceed to disable fields selectively (may be in do_prepare_output method).
    Reward points if helpful!
    Thanks,
    Sudipta.

  • I changed my Apple ID. I can log in on my computer with it, I get in. but my Iphone and iPad don't seem to know its been changed. Creating many problems. How do I sync that info?

    I changed my apple ID, I can log in on my MAC so I know it works but my iphone 4S and my ipad mini dont know it has changed!!
    Causing many issues.

    You need to go to Settings > General > iCloud or Settings > General > iTunes Store and update your account information there. You need to do this on each device you have that account set up on.

Maybe you are looking for

  • Photoshop Elements 11 Editor : File/Open - How can I set a default folder ?

    Hi When I am in the Photoshop Elements 11 Editor and I want to load a picture from "My Pictures" on my hard disk ... I go the menu item File/Open ... Right now PE11 opens the last picture folder I worked with before ... How can I make PE11 show the r

  • Error while running Inventory Audit Report

    Hi All, While running the inventory audit report based on posting date, we get the message,'The report returns too many records for this action and may cause SAP Business One to stop responding for a long time or shut down. Do you want to continue?'

  • Date field initial; Select clause.

    Hi All, I have a requirement where I need to select all the records where the data field (AUFK- IDAT2) is INITIAL. I have given the query: SELECT A~AUFNR A~AUFPL INTO TABLE IT_ITAB FROM AFKO AS A INNER JOIN AUFK AS U ON AAUFNR = UAUFNR WHERE U~AUART

  • Sun One application server connection problem for Oracle DB

    On our project in live environments we have six Sun One application servers that have been configured to connect to RAC Oracle database using OCI drivers. ( JDBC thick driver) Sun one application server : Version 7.0.0 Oracle Database : Version 9.2.0

  • My Macbook Pro just shuts off.....not very happy

    I got my 17" MBP a week ago Saturday. Everything was fine for almost a week. Friday it shut odwn on me three times. I called Apple Care and they walked me through a series of steps that supposedly would take care of the problem: remove the battery, p