Looking for document condition value

Hi All,
I have order from transaction jha3x and i am looking for document condition of that order so that i'll get condition value from table KONV....so can anyone please tell me where i'll find this document condition value from order number.
Thanks.

Hi,
I searched the the tcode in google but it's not a tcode in ECC, but in Media Industry solution.
JHA3X - Display IS Media Order
This is really new for us. Can you try the following?
0ME_ISM_SD_ORD_ITEX               IS-M/SD: Subscription Order Item
I haven't found a IS-M DataSource that contains condition data. Maybe you have to append structure and enhance.
Maybe you need to first activate it in RSA5 and then test in RSA3.
At last, all order related DataSource are here, for your reference:
0ME_ISM_SD_ORDST_1                IS-M/SD: Orders on Hand on Key Date
0ME_ISM_SD_ORDTR                  IS-M/SD Transactions Affecting Live Subscriptions
0ME_ISM_SD_ORD_ACC                IS-M/SD: Liability Account
0ME_ISM_SD_ORD_ADDR               IS-M/SD: Address Data for Subscription Order
0ME_ISM_SD_ORD_ITEM               IS-M/SD: Subscription Order Data
0ME_ISM_SD_ORD_ITEX               IS-M/SD: Subscription Order Item
0ME_ISM_SD_ORD_PROM               IS-M/SD: Subscription Promotion Data
0ME_ISM_SD_ORD_REM                IS-M/SD: Renewal Payment
Regards,
Frank

Similar Messages

  • How to Change the Document Condition Values in PO print

    HI,
    I have a requirement to change the document condition values in PO printout. We are using the copied form of MEDRUCK.
    Please tell me how can i change the Document Condition Values at run time.
    Thanks....

    hi
    hence you have copied standard script you cant able to change the driver program for this you have to use itcsy structure.
    go to the page window and select the window which you have the amount field. open the text editor of the windoiw here write
    /:           PERFORM CONTACT IN PROGRAM ZAMOUNT_ZF110_IN_AVIS1_C
    /:           USING &REGUH-ZALDT&
    /:           CHANGING &DT&
    /:           ENDPERFORM
    now create a report program with name  ZAMOUNT_ZF110_IN_AVIS1_C.
    and follow as the example program is .
    *&      Form  CONTACT
          text
         -->IN_TAB     text
         -->OUT_TAB    text
    FORM contact TABLES in_tab STRUCTURE itcsy
                       out_tab STRUCTURE itcsy.
      DATA : v_telf1 TYPE telf1.
      DATA : v_telfx TYPE telfx.
      DATA : v_adrnr TYPE ad_addrnum.
      DATA : v_flagcomm6 TYPE ad_flgcm06.
      DATA : v_datum(10) TYPE c.
      DATA : v_sydatum TYPE sy-datum.
      DATA : v_lifnr TYPE lifnr .         " Santosh Rawat , 19th Feb
      DATA : v_email TYPE ad_smtpadr .   " Santosh Rawat , 19th Feb
      LOOP AT in_tab.
        IF in_tab-name = 'REGUH-LIFNR'.
      CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT' " Santosh Rawat , 19th Feb
            EXPORTING
              input  = in_tab-value
            IMPORTING
              output = v_lifnr.
          SELECT SINGLE telf1 telfx adrnr FROM lfa1
            INTO (v_telf1, v_telfx, v_adrnr)
            WHERE lifnr = v_lifnr.
          SELECT SINGLE smtp_addr FROM adr6    " Santosh Rawat ,19th Feb
         INTO v_email WHERE ADDRNUMBER = v_adrnr. " Santosh Rawat ,19th Feb
         SELECT SINGLE flagcomm6 FROM adrc INTO v_flagcomm6
           WHERE addrnumber = v_adrnr.
        ELSEIF
          in_tab-name = 'REGUH-ZALDT' OR in_tab-name = 'REGUP-BLDAT'   .
          MOVE in_tab-value TO v_datum.
          REPLACE ALL OCCURRENCES OF '.' IN v_datum WITH ' '.
          CONDENSE v_datum.
          MOVE v_datum TO v_sydatum.
    *CALL FUNCTION 'CONVERSION_EXIT_INVDT_INPUT'
    EXPORTING
       input         = V_DATUM
    IMPORTING
      OUTPUT        = V_DATUM
          CALL FUNCTION 'CONVERT_DATE_TO_EXTERNAL'
            EXPORTING
              date_internal            = v_sydatum
            IMPORTING
              date_external            = v_datum
            EXCEPTIONS
              date_internal_is_invalid = 1
              OTHERS                   = 2.
          IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
          ENDIF.
        ENDIF.
      ENDLOOP.
      LOOP AT out_tab.
        IF out_tab-name = 'TEL'.
          MOVE v_telf1 TO out_tab-value.
        ELSEIF out_tab-name = 'FAX'.
          MOVE v_telfx TO out_tab-value.
        ELSEIF out_tab-name = 'EMAIL'.
          MOVE v_email TO out_tab-value.        " Santosh Rawat , 19th Feb
        ELSEIF out_tab-name = 'DT'.
          MOVE v_datum TO out_tab-value.
        ENDIF.
        MODIFY out_tab FROM out_tab.
    *MODIFY TABLE OUT_TAB .
      ENDLOOP.
    ENDFORM.             }
    reply for any query.
    regards,
    venkat.

  • How to look for a certain value in a database using sql

    Hello everyone. How do you do this in SQL? Or, is there a way to look for a certain value in a database? What I'm trying to do is this:
    I want to look for the exact value "abcdefg" in the database so that oracle will return me details on the following that contains the said value:
    1. the name of the table(s)
    2. the column/field name(s)
    Note: "abcdefg" could exist in different tables with different column names with different data types.
    Any help is much appreciated. Thanks.
    UPDATE: What about if I just want to check those fields/columns with string data types?
    Message was edited by:
    dongzky
    Message was edited by:
    dongzky

    Just a teeny tweek
    DECLARE
       l_dummy   VARCHAR2 (4000);
    BEGIN
       FOR rec IN (SELECT table_name
                     FROM all_tables)
       LOOP
          FOR rec2 IN (SELECT column_name
                         FROM user_tab_cols
                        WHERE table_name = rec.table_name)
          LOOP
             BEGIN
                EXECUTE IMMEDIATE    'select 1 from '
                                  || rec.table_name
                            || ' where to_char('
    || rec2.column_name
    || ') = ''CAS'' and rownum = 1'
                             INTO l_dummy;
                DBMS_OUTPUT.PUT_LINE (rec.table_name || ' ' || rec2.column_name);
             EXCEPTION
                WHEN NO_DATA_FOUND
                THEN
                   NULL;
             END;
          END LOOP;
       END LOOP;
    END;

  • ABAP code in to JAVA for overwritting condition value for IPC pricing

    Dear experts i am an IPC JAVA developer and i am trying to translate an ABAP Routine in to JAVA code for overwriting condition value in the pricing user exit of IPC
    Here is the ABAPcode segment i am trying to transulate
      DATA: l_kdkg1  LIKE komk-kdkg1,
            l_work TYPE f,
            l_umren LIKE marm-umren,
            l_umrez LIKE marm-umrez.
      SELECT SINGLE peinh FROM mbew INTO mbew-peinh         
      WHERE matnr = komp-matnr
      AND bwkey = komp-werks.
      I need some  help in the following things
      1. I don't know how to transulate the following Line of ABAP code into JAVA
         " AND bwkey = komp-werks."
    Bwkey stands for plant details. I don't know how to get plant details from  Pricing Item.
      2. Someone please tell me weather the following JAVA transulation is correct
      Vector x = prItem.getUserExitConditions();
      db database = pricingEngine.getDatabase();
         // set table name
      String tableStart = "mbew";                                             
         // set query parameters
      sys_query_pair[] queryPair = null;
      //matnr = komp-matnr . Getting the material Number
      String materialNo= prItem.getProduct().toString();
      //bwkey = komp-werks.Getting plant.
      // TODO: werks stands for plant. Not sure how to get it from prItem
       String plant = "";
       queryPair = new sys_query_pair[2];                    
       queryPair[0] = new sys_query_pair("matnr", materialNo);
       queryPair[1] = new sys_query_pair("bwkey", plant);
      // set query columns
       String ZZFIELDStart = "peinh";
       String ZZFIELD_VALUEStart;                   
       String[] projectionStart;
       projectionStart = new String[];
       BigDecimal pricingUnit = null;
       try{     
          // execute query
          res resultSetStart = database.db_read_table(tableStart, queryPair,projectionStart) ;
          if (!res.db_empty_results_p(resultSetStart))
         ZZFIELD_VALUEStart = resultSetStart.db_get_row_element_string(0);
         pricingUnit = new BigDecimal(ZZFIELD_VALUEStart);
         resultSetStart.db_finish();
       else
         System.out.println("Coudn't find a value of field peinh in table mbew!");
       catch (exc_database_error e)
         e.printStackTrace();

    Please login to the server where IPC is installed. In the IPC folder u find libs folder  or search for docs in IPC folder. There it is dealt how ABAP routines are mapped to  user exits in java coding
    Thanks
    Surya

  • Different execution plan for same query but for different condition value

    Hi All,
    I'm facing a strange situation where same query for different condition not working.
    1--
    Select  top 10 * from revenuefact(nolock) 
    where feecode ='OW4'
    2--
    Select  top 10 * from revenuefact(nolock)
    where feecode ='BTE'
    1st query is returning result easily but 2nd query is taking too long. Column
    feecode has already Non-clustered index and Clustered index is also available for another col RevenueSID.
    I was surprised when checked the query execution plan for both the above queries  which is quite different (as per attached below). Can anyone suggest me the reason behind it.
    And solution for the same. One more thing that data for feecode BTE is inserting through different source instead of others feecode and table contains more than 300 million rows.

    When I speak with people inside Microsoft who work with the optimizer, the refuse to accept the work "bug" when a query produces the correct result, but with a suboptimal plan. They prefer to use the word "limitation".
    The limitation here is that when the optimizer compares two plans, it only looks at the estimated cost. As far as I know, it does not perform any analysis from the perspective "what if the statistics are wrong"? They do provide the hint OPTIMIZE
    FOR UNKNOWN, but that does not work then there is a constant as in this case.
    The optimizer will surely distinguish between TOP 10 and TOP 10000000. With the latter, you have all reason to expect a Clustered Index Scan no matter which value you search for - unless you pick a value for which the histogram indicates that there are no
    rows.
    Interesting enough, I was able to reproduce the situation in my Northgale database, which is an inflated version of Northwind, and where statistics should be accurate.
    SELECT TOP 10 * FROM Orders WHERE EmployeeID = 8
    results in a CI scan, and so does also EmployeeID = 7, and even 5. There are only 2292 rows out of a total of 344305 rows. If I try EmployeeID 808 for which there are 1797, the optimizer goes for the index seek.
    Erland Sommarskog, SQL Server MVP, [email protected]

  • Looking for documents about stand-by & failover

    Hi,
    I'm looking for a document, which should explain stand-by DB & failover procedure, and how to realize it. It is best to give a scenario as details. Who could do me a favor to post it?
    Thanks
    Robin

    If the information that you are looking for is regarding 9i. Here you are:
    Data Guard Broker Contents / Search / Index / PDF
    Data Guard Concepts and Administration Contents / Search / Index / PDF
    http://otn.oracle.com/pls/db92/db92.docindex?remark=homepage
    Joel Pérez

  • Looking for documents on application forms

    Hi all,
    I m looking for some documents on application forms (transaction EFRM).
    step by step documentation for changing a form.
    Thanks.

    Hi,
    1. Do yo have 1 to 1 relationschip between a form class and an application form?
    No , It is not 1 to 1 Relationship
    so if i have to make a new smartform/sapscript do i have to make a new application form/application class?
    For creation of smartform or script , you dont need to Any Application form or Application class
    2.
    Where in the system i can assign a form to the class?
    If it is Adobe form (Tcode SFP), You have to create Interface and form, And assign interface to form , whenevr we are going to create form that momemnt we have to provide implenation name , Check SFP Tcode.
    3.
    some one has for me a step by step tutorial hoe to make changes?
    Regards
    Jana
    Are you going to change smartform or script, If it is smartform or script, No need to assign to Applcaition form

  • Looking for document management software.

    I am looking at document management software but can't seem to find what I need. I want something that creates a numerical file name for every document that I save that is automatically generated. In the PC world I know that Worldox does this but I cant seem to find something for the mac. I tried to get some help with this a while back when I was starting my business but had to make do with what I had and have been busy since then. Any help would be greatly appreciated.
    the goal would be to open a new pages document and it was save as "00001" then if I scanned something in after that it would be "00002" then the next pages document would be "00003" and so on.

    http://www.versiontracker.com/php/qs.php?mode=basic&action=search&str=document+m anagement&srchArea=macosx&submit=Go

  • FM for item condition values in RFQ

    Hi,
         I have a RFQ number. now the i want a function module which will return me the item condition values ( eg freight,gross price etc).
         i have gone through a FM named 'PRICING' but thats not helping me
          any help

    Hi,
         I have a RFQ number. now the i want a function module which will return me the item condition values ( eg freight,gross price etc).
         i have gone through a FM named 'PRICING' but thats not helping me
          any help

  • Table name for storing condition value determined for Transactions

    Hi,
    For a routine that we need to write for pricing procedure, we need to pick up the value of the condition record that gets determined in any order.
    We were not able to find this table name.
    Any pointers?
    regards,
    Jaya

    >
    Jaya Nigam wrote:
    > Hi,
    > For a routine that we need to write for pricing procedure, we need to pick up the value of the condition record that gets determined in any order.
    >
    > We were not able to find this table name.
    > Any pointers?
    > regards,
    > Jaya
    Hi Jaya,
    It will be really helpful if you tell the business requirement.
    However you can use the following code snippet to loop the conditions.Hope this helps.
    IPricingItemUserExit prItem
    used in method calling as an parameter
    java.util.Vector conditions =prItem.getConditionsWithoutInvisible();
    for (int i = 0; i < conditions.size(); i++)
    IPricingConditionUserExit cond =
                                       (IPricingConditionUserExit) conditions.get(i);
    Warm Regards,
    Sumit

  • Looking for documents

    i installed pages and synced two documents through iTunes ... but when I open Pages, I can't find them - not sure how I'm supposed to find and open documents that were brought to pages by syncing, rather than created new... any suggestions?
    hopefully I synced them correctly - the files & documents I synced with regards to other apps (ie, pdf reader) are there fine...
    thanks'
    w

    I haven't tried importing .rtf files into Pages, but I have read, concerning text editors, that there are none that handle RTF because Apple hasn't included a library in the developer's code that does RTF and thus developers can't use RTSs in their text apps.
    I've read about this problem several times in the forum, but I do know of one text editor that now creates RTF files, Notability, but I haven't tried to use it to read RTFs from other sources.
    BTW, I just read after doing a search in this forum on RTF that Docs To Go can read RTF files. You might try doing your own search.

  • Modify MVGR4 in formula for condition value

    Hello everyone,
    I want to modify komp-mvgr4 in a formula for condition value. Changes in komp structure are not saved, any idea which field I have to modify?
    Many thanks!
    Andreas

    Sure. I have a new formula for a condition value which checks a lot of things to calculate the condition value. The result can also be zero. In all other cases than zero, I want to set an additional flag on the position to show that the condition is used. For this I choosed the material group 4. Now I have to modify the materialgroup 4 MVGR4 in the formula, if I change komp-mvgr4 is does not save the changes...
    Andreas

  • Condition Values different fro Billing and Excise Invoice in some cases

    Hi All,
    Excise Invoice for domestic sales is having different condition values.
    I am scenerio like this when Billing doc manually VF01, excise Invoice in generated automatically and condition values
    were corrrect.But when I create Billing Document using BAPI in program, Excise Invoice is not generating,then
    we are running BDC for T-code J1IIN and creating Excise Invoice.Excise Invoice generated in second case (by BDC)
    is having wrong condition values.
    Can anyone explain why it is happing.Is there any user exist to copy Billing Doc condition values to Excise Invoice?
    Thanks in Advance ,
    Rayudu

    Thanks for you response Lakshimipathy.
    The above mentioned configurations were all ready done.Excise Invoice is getting generated when we create Billing Doc online.
    Problem here is Excise invoice is not getting generated automatically when Billing Doc is created by our program,so we were running BDC code to created excise Invoice.
    Condition values ( Duties :AED,Ecess,SHEcess) were getting calculated wrongly in excise Invoice which is created by running BDC code in program. But the Excise invoice which was created automatically while saving Billing doc manually is having correct condition values.  But the billing document condition values remain the same & correct for both.
    Regards,
    Rayudu

  • Change history (for perticular condition type) in scheduling agreement

    All SAP Gurus,
    We have a scheduling agreement, in which certain condition (condition type for freight condition) value have changed several times.
    Where we can find the changes in the value of this condition type?
    Regards,

    Hi Rajan,
    You should be able to see in
    Item -- Statistics -- Changes. You can find that line item wise.

  • What to look for when purchasing a new heatsink and fan?

    I bought a Phenom II 970 and its fantastic, but the stock cooling system seems to be very loud and really not get much done.  I dont like it at all, but before I spend more money on newegg or at my local computer parts store, what should I look for in a new cooler? 
    I honestly do not even know where to start!  I know I have an AM3 socket, so as Im browsing the heat-sinks on Newegg I saw 6 socket types that all said AM3, Im so confused! 
    I dont have a specific price range in mind, just know I am looking for a good value.  This is difficult when I have no idea what makes it good or less good. 
    Sorry for a noobish question yall. Thank you for your time. 

    Most, if not all the aftermarket coolers come with mounting brackets for most of the current boards.
    I have had good results with my Arctic Cooling products. Zalman air coolers are another excellent option, but your budget will determine which one to get.
    Do a search on the net and you will stumble upon numerous reviews of the differing coolers. FrostyTech is a good review site. http://www.frostytech.com/articleview.cfm?articleID=2607
    Although I gave you a link to the freezer13 pro, on the site you can choose from the tested coolers from the dropdown list at the top of the site.
    There will always be a compromise between price, efficiency and noise. I don't know the model you linked, but whatever you consider, do some research first.
    Here you go     http://www.frostytech.com/articleview.cfm?articleid=2569&page=1
    Quote
    The fans are not PWM compliant but a PCI bracket mounted fan speed controller is supplied if you want adjust fan speed.
    That is the one thing I always check for. PWM controlled fans.

Maybe you are looking for

  • I want to send a clip from FCP to Motion

    i am selecting a clip in my sequence and using the 'send to motion' menu but when it comes up in Motion it's not the clip i selected. It is using the out point for the clip i selected as the in point and making a new out point at the duration of the

  • Dbm_getf_error (Tcode DB13)

    Hello! I have the following error, entering the tcode DB13 Name und Server     : <SAPSID> - server1020 DBMRFC Function     : DBM_GETF Command            : DBAHIST DATE=20060907 Error             : Systemerror error message       : timeout during allo

  • Adobe flash 5.5 jvm error or crash. Solutions?

    Hi i have 2 different problem with Cs5.5 first problem , when i launch flash cs5.5, several time "jvm error" occur. only opening flash , before opening fla!. So i can only close flash, close all the application, restart flash or reboot machine. i hav

  • Can't programmatically control FLVPlayback with ActionScript

    Hello, I'm trying to control the video playback of a live video stream using ActionScript 3 code in Flash Professional. There's a FLVPlayback component on my stage titled "flvPlayer", and in Frame one of my "Actions" layer, I have the following code:

  • Failure to restart BI Publisher

    Hi, I can't restart BI Publisher because of this error : Starting OC4J from /apps/OraBI/OracleBI/oc4j_bi/j2ee/home ... *11/06/22 16:00:00 Error initializing server: /apps/OraBI/OracleBI/oc4j_bi/j2ee/home/config/server.xml, Fatal error at line 1 offse