Assigning value in the records

Hi,
I have a business scenario in which I am creating vendor and extending it for 320 company codes.
Now suppose I have to make change in the phone number in the data manager in place of XYZ to ABC.
Do I have to go and make change 320 place in the data manager or there is any method by the help of validation rule. So that I will write that rule and run on the set of the record automatically system will change phone number for those set of records  from XYZ to ABC.
If you know any such validation or with help of assignment rules then please just let me know that validation rule or u have any idea please do share with me.
Thanks,
Rohit

Hi Rohit,
  if(phone_number = XYZ , ABC , phone_number)
See we are checking the phone_number filed, first we are checking for the condition; which in this case is wether the value of any row in phone_number column is 'XYZ' if it matches the replace it with 'ABC' else preserve the same value which exists.
for example
  phone_number
   III
   ABC
  UEU
  XYZ
  KKK
  LLL
  JDD
suppose these are the values under phone_number field and we are applying assignment to all of them; now it will first check as
   III = XYZ it does not match so III is preserved.
  ABC = XYZ it does not match so III is preserved
XYZ = XYZ it does match so XYZ is replaced with ABC
in this way records are compared and values are changed.
If you do not provide the else statement then MDM considers the default values as "TRUE" and assigns it to the record. so its must to provide the else value in the if statement to have the expression completed.
I hope this will clear you dought; any thing else please let me know
Regards,
Charan

Similar Messages

  • How can i assign value to the certain field in dynmic table ?

    i have created a dynmic table .now i want to assign value to the certain field,how can i do that?
    for eg,
    <dyn_table> contains fields of  name age ,now i want assign 'jack' to this internal talbe's field name ,

    Hi,
    try this:
    FIELD-SYMBOLS: <GT_ITAB>      TYPE TABLE,
                   <GS_ITAB>,
                   <FS>, <FS1>.
    DATA: GT_DATA   TYPE REF TO DATA.
    DATA: GS_DATA   TYPE REF TO DATA.
    START-OF-SELECTION.
      CREATE DATA GT_DATA TYPE TABLE OF PA0002.
      ASSIGN GT_DATA->*   TO <GT_ITAB>.
      CREATE DATA GS_DATA    LIKE LINE OF <GT_ITAB>.
      ASSIGN GS_DATA->*      TO <GS_ITAB>.
      ASSIGN COMPONENT 'NACHN' OF STRUCTURE <GS_ITAB> TO <FS>.
      <FS> = 'Smith'.
      ASSIGN COMPONENT 'VORNA' OF STRUCTURE <GS_ITAB> TO <FS>.
      <FS> = 'Paul'.
      APPEND <GS_ITAB> TO <GT_ITAB>.
      ASSIGN COMPONENT 'NACHN' OF STRUCTURE <GS_ITAB> TO <FS>.
      <FS> = 'Jones'.
      ASSIGN COMPONENT 'VORNA' OF STRUCTURE <GS_ITAB> TO <FS>.
      <FS> = 'Martin'.
      APPEND <GS_ITAB> TO <GT_ITAB>.
      LOOP AT <GT_ITAB> INTO <GS_ITAB>.
        ASSIGN COMPONENT 'NACHN' OF STRUCTURE <GS_ITAB> TO <FS>.
        ASSIGN COMPONENT 'VORNA' OF STRUCTURE <GS_ITAB> TO <FS1>.
        WRITE: / <FS>, <FS1>.
      ENDLOOP.
    Regards, Dieter

  • How can i dynamically assign values to the tld file

    How can i dynamically assign values to the tld file

    In the tld you write for the tag handler mention the following sub tags in the attribute
    <attribute>
    <name>xyz</name>
    <required>true</required>
    <rtexprvalue>true</rtexprvalue>
    </attribute>
    import the packagejavax.servlet.jsp.tagext.DynammicAttributes;
    add the method
    public void setDynamicAttribute(String rui, String localname, Object value) throws JspException
    <Your Required task>
    Its better if you SimpleTagSupport class to be extended.

  • Assign value to a record in a loop?

    I have the record as following:
    TYPE Curr_Select_Rec IS RECORD
    ser_date date,
    blk_route varchar210)
    p_select Curr_Select_Rec;
    How do I assign value to it in a loop?
    I know I can do this
    p_select.blk_route := 'aaaa';
    but in the loop
    Loop
    How??????
    end loop;
    NEXT, LAST, FIRST Did not work
    null

    Hi,
    here a little package I wrote to select a table into a plsql_table and to work with the pl/sql table .
    Package STIL_utils
    IS
    type r_export_tags is record
    (bezeichnung stilvorlagen.bezeichnung%TYPE,
    start_tag stilvorlagen.text_beginn%TYPE,
    end_tag stilvorlagen.text_ende%TYPE);
    type t_export_tags is table of r_export_tags
    index by binary_integer;
    procedure fill_tag_table(p_export_tags in out t_export_Tags,
    p_export_typ in varchar2);
    procedure show_tag_table(p_export_tags in t_export_Tags);
    procedure find_tag(p_export_tags in out t_export_tags,
    p_export_typ in varchar2,
    p_tag_typ in varchar2,
    p_start_tag in out stilvorlagen.text_beginn%TYPE,
    p_end_tag in out stilvorlagen.text_ende%TYPE);
    END; -- Package Specification UTL_STIL
    Package Body STIL_utils
    IS
    -- Stilvorlagen Array
    procedure show_tag_table(p_export_tags in t_export_tags)
    is
    v_index number;
    v_index_last number;
    begin
    v_index := p_export_tags.first;
    v_index_last := p_export_tags.last;
    loop
    dbms_output.put_line(p_export_Tags(v_index).bezeichnung);
    dbms_output.put_line(p_export_Tags(v_index).start_tag);
    dbms_output.put_line(p_export_Tags(v_index).end_tag);
    exit when v_index = v_index_last;
    v_index := p_export_Tags.next(v_index);
    end loop;
    end;
    procedure fill_tag_table(p_export_tags in out t_export_Tags,
    p_export_typ in varchar2)
    is
    cursor tags is
    select bezeichnung,text_beginn,text_ende
    from stilvorlagen
    where bezeichnung like p_export_typ&#0124; &#0124;'_%'
    and loesch_kz is null;
    v_count number := 0;
    --Prozedur zur Ermittlung welche Tags verwendet werden sollen.
    -- Aus der Tabelle Stilvorlagen wird ein Array mit den Start und
    --Ende Tags des entsprechenden Export Typs gef|llt.
    begin
    for rec in tags
    loop
    p_export_tags(v_count).bezeichnung := rec.bezeichnung;
    p_export_tags(v_count).start_tag := rec.text_beginn;
    p_export_tags(v_count).end_tag := rec.text_ende;
    v_count := v_count + 1;
    end loop;
    --show_tag_table(p_export_tags);
    end;
    procedure find_tag(p_export_tags in out t_export_tags,
    p_export_typ in varchar2,
    p_tag_typ in varchar2,
    p_start_tag in out stilvorlagen.text_beginn%TYPE,
    p_end_tag in out stilvorlagen.text_ende%TYPE)
    is
    v_index number;
    v_index_last number;
    v_bezeichnung stilvorlagen.bezeichnung%TYPE;
    begin
    v_index := p_export_tags.first; --Arrayindex setzen
    v_index_last := p_export_Tags.last; --Abbruchkriterium ermitteln
    p_start_tag := null;
    p_end_tag := null;
    loop
    v_bezeichnung := p_export_tags(v_index).bezeichnung;
    -- Ist das der richtige Tag?
    if v_bezeichnung = p_export_typ&#0124; &#0124;'_'&#0124; &#0124;p_tag_typ then
    p_start_Tag := p_export_tags(v_index).start_Tag;
    p_end_Tag := p_export_tags(v_index).end_Tag;
    -- Tag gefunden also raus
    exit;
    else
    -- Wenn alle getestet, dann raus
    exit when v_index = v_index_last;
    -- Ndchstes Feld aus Array
    v_index := p_export_Tags.next(v_index);
    end if;
    end loop;
    end;
    END; -- Package Body UTL_STIL
    Hope that helps
    Detlev
    null

  • How to assigne value in sub record type

    Dear below mention record type database,now i want to assigne value in payr_rec type,in this recrocrd type have one column party_id,but how can assigne value int this field ,
    TYPE group_rec_type IS RECORD(
    group_name VARCHAR2(255),
    group_type VARCHAR2(30),
    created_by_module VARCHAR2(150),
    -- Bug 2467872
    mission_statement VARCHAR2(2000),
    application_id NUMBER,
    party_rec PARTY_REC_TYPE := G_MISS_PARTY_REC
    please guide.

    to get the desired default party_rec attribute value, just assign the "sub-record" attribute defaults as desired; PL/SQL will assign a default (non-null) record as the party_rec value using those attribute defaults:
    create or replace package P_Test_It
    as
         type party_rec_type is record (
              dummy varchar2(1) default 'X'
         type group_rec_type is record (
              group_name VARCHAR2(255),
              group_type VARCHAR2(30),
              created_by_module VARCHAR2(150),
              -- Bug 2467872
              mission_statement VARCHAR2(2000),
              application_id NUMBER,
              party_rec PARTY_REC_TYPE
    end;
    set serveroutput on
    declare
         rec p_test_it.group_rec_type;
    begin
         dbms_output.put_line(rec.party_rec.dummy);
    end;
    X
    PL/SQL procedure successfully completed.Hope it helps.
    Gerard

  • Assigning values to the charecterstics in a purchase order

    Hello,
    I have to create the configuration object and assign the values to it in a purchase order.
    I am able to generate the temporary CUOBJ using FM CUXM_SET_CONFIGURATION but not able to save it to the database.
    I am using FM CUCB_CONFIGURATION_TO_DB to save the cuobj to the DB but getting a short dump.
    MESSAGE_TYPE_X
    Technical information about the message:
    Message class...... "CUIB1"
    Number.............. 699
    And hence not able to run the FM 'CUCB_CONFIGURATION_TO_DB' properly.
    Can anyone help me how do I create the cuobj, assign values to it and then save it to the purchase order...
    Any help will surely be rubarbed...
    Thanks in advance.
    Husain

    Thank you for your respond, but I have few questions:
    myText = myText.replace(/\bred\b/gi, "<font color='#ff0000'><a href='event:redClick'>$&</a></font>");
    -myText.replace: how this finction works?
    -what is this?
    /\bred\b/gi
    -it's not a link , I need a hover listener to this spesific word.
    -where do you assign the word you want to highlight? And can I assign more than one word without writing the same code over again?
    -this looks like html and I don't use any in my project, can you write this line without html?
    <font color='#ff0000'><a href='event:redClick'>$&</a></font>
    I don't understand the functionality of these line:
    var pattern:RegExp = new RegExp("\(\?\<\=\\s)" + string + "(?=[\\s|\,])", "ig");
         var result:Object = pattern.exec(text);
         while (result) {
              textField.setTextFormat(highLightFormat, result.index, result.index + string.length);
              result = pattern.exec(text);
    what is
    RegExp?
    result?
    pattern.exec?
    Sorry if these are alot of questions, I just want to understand.

  • Problem to assign values to the methods of @PrePersist  and @PreUpdate !

    Good afternoon staff.
    First I want to make clear that I do not speak English, so forgive some errors in writing.
    I have a class that has some attributes that are not displayed on the screen and are populated only when the persist or merge, using it to the callbacks and @ @ PrePersist PreUpdate the JPA.
    Let's give names to be summarized easier to write. So my first class I will call X and another Y, and the class X has, is, aggregates, contains a list of Y.
    When I create a new object X leaving Y NULL, ie, no item, X is kept perfectly even with the aforementioned attributes (populated by the application in PrePersist @) with the correct values!
    If I create an object X while Y populo with one or more objects and persist X command, everything is done properly as well, because I have a rule of CASCADE in the relationship with Y, so the persistence provider already does everything automatically and attributes that are included with the application of methods and @ @ PrePersist PreUpdate also are correctly recorded in both the X and Y (they both have these attributes).
    The problem occurs when I edit the object X but I add a new instance of Y. I run the merge of X and persistence provider does the rest automatically. So far so good, works fine, but the attributes of the new object Y that should be populated by the application via the @ PrePersist are not recorded.
    When performing an action DEBUG editing including an X Y, I noticed something "weird" that I will try to report below:
    The first action that occurs when I run the merge of X is the object @ PrePersist Y. The method that is bound to @ PrePersist runs and ALL internal routine is performed perfectly, including the attributes that should be completed by the application, are actually met. But once the method ends @ PrePersist I noticed that the constructor of the class Y is run and the moment the attributes satisfied by the application are all NULL, and the other attributes of the User remains filled with the values that were. How do you know? I know because after the constructor of the Y to run, the next action performed is the @ PreUpdate object X and the moment I send the view state of the object Y and it is, as I said, filled with the attributes User-ok and filled by applying attributes from @ PrePersist all NULL! After the method @ PreUpdate be finalized, the log generated by the persistence provider terminates the recording, or actually perform the DML in the following sequence:
    UPDATE .... X
    INSERT INTO Y ...
    And in this case my attributes Y populated by the application are all also NULL in the database (of course).
    Thanks and I look!

    The issue is that with merge the object is first persisted, then merged, so the fields the event initialized are reset to the clone's values.
    But this seems to have been fixed in EclipseLink. What version are you using? Maybe try the latest EclipseLink release.
    James : http://www.eclipselink.org : http://en.wikibooks.org/wiki/Java_Persistence

  • How to assign values to the parameter

    I have write a procedure in procedure builder like this:
    PROCEDURE "GETMCTOREPORT" (
    p_logname IN VARCHAR2,
    p_mysql IN VARCHAR2,
    p_opyear IN VARCHAR2,
    p_exrate IN VARCHAR2,
    p_flag IN OUT VARCHAR2)
    but I don't know how to run this procedure, espically how to declare a variable and then assign to last parameter, in the procedure builder environment.
    Anyone helps me,Thanks
    PL/SQL>

    Have a look at JDeveloper and it's PL/SQL development capabilities. You can write a PL/SQL procedure click run and a window will popup letting you fill values for the parameters. And you can even debug the procedure.
    For more info:
    http://otn.oracle.com/products/jdev/htdocs/database/db_overview.html

  • How to Create Pop up window and assign values to the table in it

    Hi All,
      I have a code which checks for duplicate value in the database and displays that duplicate record. I want to put the duplicate record value in a table of a popup window. Can you please tell me how do i acheive this?
    I tried the below code for creating a popup but most of the methods used here are deprecated. Please help
    IWDWindowInfo windowInfo =(IWDWindowInfo) wdComponentAPI.getComponentInfo().findInWindows(
    "MyWindowName");
    // create the Window
    IWDWindow window = wdComponentAPI.getWindowManager().createWindow(windowInfo, true);
    window.setWindowPosition(WDWindowPos.CENTER);
    window.setTitle("WindowTitle");
    // Save WindowInstance in Context
    wdContext.currentContextElement.setWindowInstance(window);
    // and show the window
    window.open();
    Regards
    Suresh

    Hi Suresh,
    "createModalWindow" is not a depricated method.
    Check this code.
    IWDWindowInfo windowInfo =(IWDWindowInfo) wdComponentAPI.getComponentInfo().findInWindows(
              "SalesAreaWindow");
    //             create the Window
              IWDWindow window = wdComponentAPI.getWindowManager().createModalWindow(windowInfo);
              window.setWindowPosition(WDWindowPos.CENTER);
              window.setTitle("Sales Window");
              window.setWindowSize(100,100);
    //             Save WindowInstance in Context
              wdContext.currentContextElement().setWindowInstance(window);
    //             and show the window
              window.show();
    "WindowInstance" is the context attribute of type "com.sap.tc.webdynpro.services.session.api.IWDWindow"
    Re: opening a new window on lead select in a table!!!
    Regards,
    Mithu

  • Default account assignment values during the life time of the session

    Hi Experts,
    In SRM7.0 default account assignment values in 'Change Personal Default Settings' has to be retained in the life time of the user login.
    Eg. A user enters into SRM7.0 web screen(NWBC) and will go to 'Change Personal Default Settings' and enters the values and saves the values and he will do other activities like creating SC and other things, when user logoff from the web screen (NWBC), the values should wipe off and when he logs in again, there shouldnt be any values in account assignment in 'Change Personal Default Settings'.
    Thanks
    SR

    Sam,
    our client's requirement is, those values has to be cleared when user logsoff from NWBC portal, when again he logsin, values should be blank and user can enter the values according to his/her  requirement.
    we tried to capture the action under 'Logoff' button, but, as this button is written in HTML/Java Script, we couldnt able to capture in SRM and I am not Java known person.
    thanks
    SR

  • Execute SQL Task: Cannot assign value to the variable

    DECLARE
    @PartitionDate varchar(8),
    @Date int
    SELECT
    @PartitionDate = MAX(PartitionDate)
    FROM PartitionLog (NOLOCK)
    SELECT
    @Date = MIN(DateKey)
    FROM DimDate WHERE CAST(DateKey as varchar(8)) > @PartitionDate
    IF NOT CONVERT(varchar(8),GETDATE(),112) = @PartitionDate
    SELECT @PartitionDate = CAST(DateKey as varchar(8))
    FROM DimDate (NOLOCK)
    WHERE DateKey = @Date
    SELECT @PartitionDate AS PartitionDate ,
    'IISDW_' + @PartitionDate AS PartitionName
    GO
    I have the above SQL stmt in the excute SQL task and declared 2 variable "PartitionDate" and "PartitionName" in the Package, the RESULT SET I hav given as "Single Row" and when I run the ETL I get the error as 
    [Execute SQL Task] Error: An error occurred while assigning a value to variable "PartitionDate": "Exception from HRESULT: 0xC0015005".

    Does your package variable datatype match the datatype of your parameter?
    Is your Package variable assigned to the parameter in the task editor?
    And does the parameter name in the task editor match the parameter names in your stored procedure?

  • Assigning value to the dynamic item

    Hi All,
    I am trying to achieve the following
    1. Create a program unit that passes the block name and item name
    2. Build :<BlockName>.<ItemName> and assign the value say 'Yes' / 'No' based on the condition.
    3. I do not want to hard code the block name and item name.
    Any ideas on how to complete this?
    TIA,
    Nilesh

    Hello,
    Use the Copy() built-in.
    Francois

  • How to assign values in the webservice and execute it

    Hi ,
    I m using web Dynpro JAVA and want to execute web service by setting the parameter as the values taken after execution of BAPI.
    I  m able to display the values fetched from the BAPI in the view controller but  when I m trying to set those same values as a parameter of  the web service and execute it then it is not displayed in the view controller.
    I have initialized the web service and assign the values by using the structure binding and copying all the values from model node to value node and then I assigned the values node as a parameter of the web service and then I execute it.
    But the web servide doesnot execute properly.It is not showing me any error.But the problem is unexecution of web service.
    Please solve my querry ASAP.
    Edited by: dkjha123 on Oct 4, 2010 2:27 PM

    Hi Poojith,
    1. It is not throwing any error when I try to execute it through WDJ application.
    2.I imported  the WS model using logical destinations .
    3.Yes I set the input parameters in the expected form for WS.
    For your refrence
    for(int i=0;i<size;i++)
              wdContext .currentRequest_R2WebswsViDocument_SOWriteBackElement().setSocc(wdContext.nodeR2So().getR2SoElementAt(i).getComp_Code());
              wdContext .currentRequest_R2WebswsViDocument_SOWriteBackElement().setSoid( wdContext.nodeR2So() .getR2SoElementAt( i).getEmployee());
              wdContext .currentRequest_R2WebswsViDocument_SOWriteBackElement().setSoname( wdContext .nodeR2So() .getR2SoElementAt(i).getEe_Sname());
              wdContext .currentRequest_R2WebswsViDocument_SOWriteBackElement().setSoso( wdContext .nodeR2So() .getR2SoElementAt(i).getSales_Off() );
              wdContext .currentRequest_R2WebswsViDocument_SOWriteBackElement().setSostatus( wdContext .nodeR2So() .getR2SoElementAt(i).getEmplstatus());
              String msg1= wdContext .nodeR2So() .getR2SoElementAt(i).getEe_Sname();
              wdComponentAPI.getMessageManager().reportSuccess("Successfully submited values"msg1"<BR>");
    // for the execution:-
    wdThis .wdGetSoWriteBackCustController() .executeRequest_R2WebswsViDocument_SOWriteBack() ;
    //for checking the execution
    wdComponentAPI.getMessageManager().reportSuccess("Successfully submited values");

  • Assign value to the DFF fields in the OA Page

    Hi,
    I have a requirement to copy customer address defined at the customer level to the contact while creating customer contact in Sales User.
    The page has the address fields like - Address1, Address2, county, state etc. when I open the page in JDev, I can't see these fields defined anywhere. But there is a region under a MessageComponentLayout region and under it one flex item, which is having a View Instance.
    This VO includes all the fields from HZ_LOCATIONS table. But on the page only few fields are visible.
    Can anyone tell me how I can assign the customer address to these DFFs that are visible on the Page.
    Thanks.

    Hi,
    The Address section is rendered using the Address DFF of the Receivables applications. Hope you know the navigation to see the details of the DFF.
    I think the ASN is also using the same, by extending the AR region, /oracle/apps/ar/hz/components/address/webui/HzPuiAddressCreateUpdate.
    What you have to do is, in order to get complete handle to this address section, you have to do the controller extension. That is, write a new controller which extends oracle.apps.ar.hz.components.address.webui.HzPuiAddressCreateUpdateCO class. Using the personalization, set your custom controller class to the region /oracle/apps/ar/hz/components/address/webui/HzPuiAddressCreateUpdate.
    Here is the sample code.
    * Procedure to handle Address1 Field.
    * @param pageContext the current OA page context
    * @param webBean the web bean corresponding to the region
    public void handleAddress1Field(OAPageContext pageContext, OAWebBean webBean, String calledFrom)
    OADescriptiveFlexBean flexBean = (OADescriptiveFlexBean)webBean.findChildRecursive("HzAddressStyleFlex");
    if(flexBean!=null)
    DescriptiveFlexfield descriptFlex = (DescriptiveFlexfield)flexBean.getAttributeValue(FLEXFIELD_REFERENCE);
    if(descriptFlex!=null)
    try
    Segment address1Segment = descriptFlex.getSegment(1);
              address1Segment.setValue("TO_BE_REPLACED");
              OAApplicationModuleImpl applicationModule = (OAApplicationModuleImpl)pageContext.getApplicationModule(webBean);
              OAViewObjectImpl locationVO = (OAViewObjectImpl)applicationModule.findViewObject("HzPuiLocationVO");
              OAViewRowImpl locationRow = (OAViewRowImpl)locationVO.getCurrentRow();
              if(locationRow!=null)
                   locationRow.setAttribute("Address1", valueBuffer.toString());
                   OAEntityImpl locationEO = (OAEntityImpl)locationRow.getEntity(0);
                   locationEO.setAttribute("Address1", valueBuffer.toString());
    }catch(FlexException flexException)
                   throw new OAException(flexException.toString());
    Use this code as reference and modify this based on your requirement. Thanks

  • Just need the record from the right (many) table with the max value for the Record on the left (one) side table

    SELECT
      ADHOC.ATS_ESH.Entry_Num
      ,ADHOC.ATS_ESH.Importer
      ,ADHOC.ATS_ESH.Version AS [ATS_ESH Version]
      ,ADHOC.ATS_ESL.Version AS [ATS_ESL Version]
    FROM
      ADHOC.ATS_ESH
      INNER JOIN ADHOC.ATS_ESL
        ON ADHOC.ATS_ESH.Customs_Entry_Num = ADHOC.ATS_ESL.Customs_Entry_Num
    I just need to see the MAXIMUM version number in the ESL table for each Entry_Num in the ESH table. ESH is the one side, ESL is the MANY side.

    Do you understand what this query is doing? Did you check the blogs I pointed you to?
    The query I provided gets the latest ESL version for each custom number. So, if max ESL version is higher than ESH version, it's just a coincidence. If you only want to see rows where versions do not match, just add an extra where condition, e.g.
    SELECT * FROM cte WHERE Rn = 1
    AND  [ATS_ESH
    Version] <>  [ATS_ESL
    Version]
    BTW, what is the type of these version
    columns and what kind of data in them? If they are character columns, sorting them in DESC order will not necessary return the latest version. Can you show some samples of the data in these two columns?
    For every expert, there is an equal and opposite expert. - Becker's Law
    My blog
    My TechNet articles

Maybe you are looking for

  • Switching From One Apple ID To Another HELP!!

    (Really Didn't Know Where To Put This, Sorry) Hi There, I Have Been Using My Fathers Apple ID Account For About 3 Years, In That Time I Have Downloaded Many Apps. My Problem Is That Now I Am Leaving Home I Think It Is Only Right That I Set Up My Own

  • Calculate Month-to-Date in Obiee11g

    Hi, I'm using OBIEE11g, im facing a problem- Problem : Month-to-date  results of this month vs. Month-to-date results of previous month example: if Im in 12th February the calculation is *1st February to 12 February* also *1st January to 12 January*

  • Manual pricing condition type in values in - BAPI_SALESORDER_SIMULATE

    Hi Guys    I am using Function Module <b>BAPI_SALESORDER_SIMULATE</b> to get the prices. I also want to enter a particular condition type for which i need price simulation. This is equal to <b>manually</b> entering the <b>condition type</b> , apart f

  • Displayed values and printed values are different.

    I have multiple pages in PDF and each page consists of multiple form fields.The data in form fields displays the correct values but when on clicking on any of the field value is getting changed(the value in 1st page is getting displayed for the remai

  • How to trigger a workflow when a bank record of an employee is delimited

    Hi Friends,   I want to trigger a workflow when a bank record of an employee is delimited(Infotype  IT0009). When delimiting the bank info, the old record's ENDDA is changed and a new record is created with the BEGDA. In this case two events are trig