Help in masterdata rules

Hi Experts,
Please help me how to acheive the below for master data
Requirement
Create a Infoobject  ZCAORD
i) Extraction job from R/3                         
     Use ZWBS rule as template                    
     Similar to ZCORD (get key & text from 0COORDER)                    
     Restricted to Order type Z040 and Z045     
     Special rule for attributes (get attributes based on ZCAORD_ZCPAR)                    
          ZCAORD_ZCFAM    =           ZCPAR_ZCFAM     
                                           ZCAORD_ZCTYP    =           ZCPAR_ZCTYP     
          ZCAORD_ZCTYN    =           ZCPAR_ZCTYN
     Special rule for attribute ZCAORD_ZCPAR                    
          Get Settlement (field EMPGE from structure DKOBR)               
          Result will be an existing value for ZCPAR (see above)
     Special rule for attribute ZCAORD_ZCPARF                    
          If ZCAORD_ZCPAR = ZCAORD, then               
          ZCAORD_ZCPARF = Y, else N               
     Special rule for attributes ZCAORD_ZPLANYN                    
          Get value from 0COORDER status. If closed = "N", if open "Y"          
Thanks In Advance,
Nitya

Hi Nitya,
What I understood from your two Questions,you need to load the 0COORDER ATTR & TEXT data to two Zobjs, with Order types are equal to Z040(ZNTORD) and Z040,Z045( ZCORD) right? Create two Zobjs with template Obj as 0COORDER.now map the 0coorder_attr ds with  ZNTORD with a selection in the Info Package as order type=Z040,do the same for ZCORD with a fixed selections Z040,Z045.u'll get data upto PSA only for the selected Order Types.
And for below i didn't get you clearly.
Special rule for attributes (get attributes based on ZCAORD_ZCPAR)
ZCAORD_ZCFAM = ZCPAR_ZCFAM
ZCAORD_ZCTYP = ZCPAR_ZCTYP
ZCAORD_ZCTYN = ZCPAR_ZCTYN
Special rule for attribute ZCAORD_ZCPAR
Get Settlement (field EMPGE from structure DKOBR)
Result will be an existing value for ZCPAR (see above)
Special rule for attribute ZCAORD_ZCPARF
If ZCAORD_ZCPAR = ZCAORD, then
ZCAORD_ZCPARF = Y, else N
Special rule for attributes ZCAORD_ZPLANYN
Get value from 0COORDER status. If closed = "N", if open "Y"

Similar Messages

  • Creating an embedded Konsole in KDE, need help with "Window Rules"

    Hey guys! I hate that my first post on here is asking for help, but here goes nothing:
    I've been working on creating an embedded konsole that sits on your desktop, without installing any 3rd party software. The konsole will have certain properties set so that it has no title bar, no border, no task bar entry, completely transparent, etc, so that only the konsole text itself is seen.
    I was able to set up the konsole profile and window settings successfully using this link as a guide. The only problem is that using the aforementioned link's method creates a persistent profile that affects all future konsoles.
    My goal is to auto start a single konsole that uses a specified konsole profile and a specified window rule, but doesn't affect any other konsoles I open after startup. I've recently learned that a konsole profile can be specified with the "-profile" option which solves the first half, but I still can't figure out a way to have my window rule apply to only the startup konsole and no others.
    I'm new to Arch and KDE, so any suggestions would be greatly appreciated.
    Thanks!
    -Grey

    Look at http://userbase.kde.org/KWin_Rules and particularly 'Window Matching'.
    Maybe (I didn't test it) using:
    Window title - restrict the match to the title of the window.
    and
    KDE options:
      --caption <caption>       Use 'caption' as name in the titlebar
    Or finding some specific matching rule which applies only to that window...

  • Abap Code help in update rule

    Hi Gurus,
    I have  a requiement, that is if there are 5 line items with in a document and each one has diffeerent tax jurisdiction code, then we should be showing only one tax jurisdiction code for a document. Line items are not displayed in report. The condition to pick up tax jurisdiction code is the one which has least ending zeros among all the lime items with in a document.
    Supppose
    Doc1 Item Tax Jurisdiction code
    1800000002 1 CNQC00000000000
    1800000002 2 CNQC00000000000
    1800000002 3 CN0000000000000
    1800000002 4 CNQC00000000000
    1800000002 5 TXJOHNCLEBUR000
    So here the value of Tax Jurisdiction code is TXJOHNCLEBUR000 as it has least ending zeros compared to other values with in a document.
    Any help how to use the string function and acheive the desired result.
    Thanks,
    Raj.

    Hi Anand,
    Thanks for the reply. we don't expect any non-zeros after seeing first zero. Now i have added another z object which will contain only least zeros for a doc. What I am doing is now after loading the data into the cube from ods  i am doing loop back and updating the new z object. Below is the code I am trying to do
    TABLES: /BIC/AZFGLO10100.
    Defining an internal table as ods table****
    Types: BEGIN OF ITAB_01,
    doc_no LIKE /BIC/AZFGLO10100-AC_DOC_NO,
    item_no LIKE /BIC/AZFGLO10100-ITEM_NUM,
    taxjur LIKE /BIC/AZFGLO10100-TAXJURCODE,
    length like num,  ***** this will hold the length of the zeros
    END OF ITAB_01.
    loading the data from active ods table into defined internal table*****
    select AC_DOC_NO ITEM_NUM TAXJURCODE  from /BIC/AZFGLO10100 into table
      Itab_01 where AC_DOC_NO = /BIC/AZFGLO10100-AC_DOC_NO and
      item_num = /BIC/AZFGLO10100-ITEM_NUM.
    sort itab_01 doc_no item_no
    now I want to use code too populate the vlaue of length field in internal table (which shows how many zeros a tax jurisdiction code has for every corresponding line item)
    then in the update rule of z tax jurisdiction i will wirte a routine such that
    select taxjur into result from itab_01 where doc_no = COMM_STRUCTURE-doc_no and length = min(length).
    now I have one more doubt , the number of items in a document will be varying so how to takecare of this...
    If possible can you please provide me with the abap code that you have mentioned in earlier post.
    Any more help on this is really appreciated.
    Thanks,
    Raj

  • ABAP Help on Update Rule Needed

    Hello.  I am trying to write a routine on an key figure in an update rule.  Basically, I am trying to load a custom key figure with either a 1 or a 0. 
    Here is the pseudocode:
    IF
    (((GI_DATE - ACT_GI_DTE) < 0) OR
      ((GI_DATE - ACT_GI_DTE) > 3)
    THEN
        NEW_KEY_FIGURE = 1
    ELSE
        NEW_KEY_FIGURE = 0
    ENDIF.
    Here is the code I currently have in the routine.  Any ideas on where I am going wrong here?  I am not an ABAP developer so please keep this in mind when responding.
    result value of the routine
      CLEAR RESULT.
    if the returncode is not equal zero, the result will not be updated
      IF COMM_STRUCTURE-GI_DATE - COMM_STRUCTURE-ACT_GI_DTE < 0 OR
         COMM_STRUCTURE-GI_DATE - COMM_STRUCTURE-ACT_GI_DTE > 3.
         COMM_STRUCTURE-NEW_KEY_FIGURE = 1.
      ELSE.
         COMM_STRUCTURE-NEW_KEY_FIGURE = 0.
      ENDIF.
      RESULT = COMM_STRUCTURE-NEW_KEY_FIGURE.
      RETURNCODE = 0.
    if abort is not equal zero, the update process will be canceled
      ABORT = 0.
    Thanks for any help you can give.

    Hi,
    I think you can not put "-" in if command, so code should be like this:
    data: datediff type n.
    result value of the routine
    CLEAR RESULT.
    clear datediff.
    detediff = COMM_STRUCTURE-GI_DATE - COMM_STRUCTURE-ACT_GI_DTE.
    IF datediff < 0 OR datediff > 3.
    Result = 1.
    ELSE.
    Result = 0.
    ENDIF.
    RETURNCODE = 0.
    if abort is not equal zero, the update process will be canceled
    ABORT = 0.
    Regards,
    Andrzej

  • Need some help using CSS Rules and Positioning Image Place Holders

    Evening all,
    I need to get this done by tomorrow so some speedy help would be very much appreicated!
    I'm doing a website for an IT company, and as you may/may not know, support for XP and Office 2003 is dropped tomorrow - they want a button in the header of their site which basically says 'click here for upgrade advice' and when you click on it you're taken to a page telling you the benefits of upgrading. They want it to look like the mock up below:
    I've had a right old job even getting the button (it's in PNG format) to go above the BrownTech logo. I inserted a placeholder, linked it to the PNG file, and then I made a custom CSS rule/class called '.header_fltrt' to put the image in and position it in that place, directly above the BrownTech logo.
    To get the upgrade button in the desired position, here are the 'Box' CSS properties I used for the .header_fltrt CSS rule.
    It's worth noting that the dimensions for the header itself are 960x235px, and the BrownTech logo is the background image for the header class (and is 960x235 in dimensions).
    The problem I am having is that when I view the page in Design Mode in Dreamweaver, it looks fine, but when I view it in Live View or in a web browser, it looks like this:
    As you can see, the upgrade button is not even visible!
    Furthermore, when I go back into design mode on Dw, when I click on the upgrade button, I don't get any placeholder properties like I do when I click on green logo in the top left (which by the way is just a link back to the index page).
    I'm not sure why this is but I cannot find any way to resolve it. I've even tried putting the BrownTech logo on a transparent background thinking that the block white background may be covering the upgrade button, but that's not the case.
    Sorry if I haven't explained it very clearly. Hopefully you can see my problem.
    Any help in etting the upgrade button to preview in the correct place would be very much appreciated!

    Try this in place of what you have now.
    .header {
        background-color: #FFFFFF;
        min-height: 335px; /**adjust as needed**/
        width: 960px;
        background: url(../assets/banner2.png) no-repeat;
    .header_fltrt {
    /**no floats or positioning required**/
        width: 552px;
    Nancy O.

  • Help with QOS rules while using Actiontec router as a bridge

    In my family's house I have a Verizon Actiontec MI424-WR Rev F currently acting as strictly a modem with WiFi turned off. I connected a Netgear N600 from its LAN port to the Actiontec's LAN port and that is acting as my wireless network. I did this because it is a 2-story house and the Netgear offered better WiFi coverage throughout the house than the Actiontec. The Actiontec router has its 192.168.1.1 ip address and the netgear has a 192.168.1.2 ip address and neither one has anything plugged into its WAN port. Everything (laptops, Xbox, cellphones, etc.) was working well until I recently purchased a new home theatre receiver. The receiver has network capability so I purchased a few Netgear Powerline 500 nanos. I have a total of 4 of the "powerline plugins", The first one, the hub, I have plugged directly into the Actiontec router and the other three I'm using for the Xbox,  the receiver, and a WDTV live smart box. I got them all working but I've noticed WiFi speeds on the laptops have dropped and the netgear plugin I have alotted for the Xbox is going slower than the other two plugins that really don't require that much internet usage. The main home PC is directly connected to a LAN port on the actiontec router so I turned off the Netgear N600 and ran a speed test with no interference. I got results of 58.99 Download and 39.03 Upload. So what I want to know is if my setup I'm using currently okay or do I need to change some settings on the Actiontec to make it a "true bridge" rather than more of a modem? And if my setup is okay will QOS rules in place (with assigned Static IP's) help to make things more efficient? If that's the case how do I set QOS rules on the actiontec that fit my needs? I appreciate any help anyone can give me!  
    So to sum up:
    1. Actiontec MI424WR Rev F has a router plugged into its LAN port from the LAN port of a....
    2. Netgear N600 router which is being used as main router/WiFi. Have a total of...
    3. 4 Netgear Powerline 500's throughout the house with the main Hub plugged into a LAN port on the Actiontec.
    All have reception but with major efficiency issues. WiFi has also slowed due to this.  
    Thanks again! 

    olly230 wrote:
    on a similar note.
    My brother has BT internet and has the 2 generations of router White hub aned black hub.
    He has thick stone walls and would liek to know if he can use his old white hub as well to expand the avaliable ammount of wifi ness
    this might help but not if HH2  http://www.jarviser.co.uk/jarviser/hubasdongle.html
    If you like a post, or want to say thanks for a helpful answer, please click on the Ratings star on the left-hand side of the post.
    If someone answers your question correctly please let other members know by clicking on ’Mark as Accepted Solution’.

  • I need help setting a "rule" in my email so that emails from a specific person always gets sent to the trash.

    I have some emails from businesses that I receive all the time. I want to make it so that they go straight to my trash. Any help would be appreciated!

    Mail>Preferences>Rules, then write the one you need:The result will look like this:

  • Help on PE02 - Rule

    I have a rule (ZHEL) that I have created that will calculate a 5% premiun on all wage types that have a premium number from CATS. There is one exception to that. We have a meal payment that should not receive the payment.  I have the rule in 2 parts
    one as WT = 1156 then premium is 0%
    the other as WT = **** them premium is 5%
    I have tried a couple different variations on the rule and cannot get it to work correctly.
    When I have the rule setup in the schema as:
    FUNC    PAR1
    PIT        ZHEL
    No premium gets calculated at all.
    When I have the rule set up as:
    FUNC    PAR1    PAR2     PAR3
    PIT        ZHEL      GEN      NOAB
    It calculates the premium on all the wage types including the meal payments.
    When I have the rule set up as:
    FUNC    PAR1    PAR2     PAR3
    PIT        ZHEL                   NOAB
    The rule executes for the meal payment  and calculales the 0% premium.  But it doesn't calculate the 5% premium on all the other wage types.
    Any ideas?
    Thanks,
    Brent Adams

    Hi,
    From what I can see this could be an issue with the splits. You can check the split and with operation SETIN you can put splits as you want and with operation ELIMI you can eliminate the splits that does not work for you. You can also have two different rules, but it shouldn´t be necessary. Just check the splits (for PCR to work they have to be the same).
    If you want you can post your PCR here and also your IT and we may give you more help.
    Hope it helps.
    Kind Regards,
    Edoardo

  • Help on a rule - Rule to pick up employeeu00B4s boss salary to pay bonus

    Dear all,
    We have a little problem to customize a rule for a company which has a particular way to pay employee´s bonuses.
    We need a rule that intead of taking the employee´s IT08, it will take his boss´ salary to propose the initial amount. Does anyone know how to do this?
    We´re using 6.0, international payroll...
    Thank you very much,
    Jennifer

    Hi Jennifer,
    You can take the help of an ABAPER and write a program as provided below:
    1.  Program to check the Table HRP1001 (Relationship Infotype) and find out the Supervisor for the particular employee fro whom you want to implement the rule.
    2. Then Check the PA0008 of Supervisor and based on the how you want to further write the logic.
    Hope this helps.
    Regards
    Venu

  • Help with CSS rule cross platform browser compatibility

    I am an advanced beginner website designer.
    The website I need help with is www.sprungtheatre.com
    I designed this site on a PC machine. Each page has a
    different CSS Background Image rule. The only rule I have set is
    image and the "non-repeat." I have not set rules for its placement.
    Each of these images had a feather effect applied to it in
    Illustrator so the image would fade into the black background. This
    works fine on Windows machines in IE and Firefox.
    However, on Macs, the left-hand side of the image is chopped
    off. Which is to say, it appears if the feathered edge has been cut
    off and the image ends abruptly.
    Is there any way to fix this problem?
    My only guess is that the following my be happening:
    The CSS Background Image rule is applied to a nested table
    that is editable in a template. I'm thinking that the Mac browswers
    are moving the image to the upper left of the overall, "poppa"
    table in which the editable region is nested, cutting off that part
    of the image that appears in the non-editable region of the "poppa"
    table and showing that part of it that appears in the nested,
    editable table. I hope that makes sense. Would applying the
    placement rules help this? If not, what might?
    Many thanks,
    Jon

    Don't use a fixed background image.
    Sorry to break the news but the code is hidous for an
    advanced beginner.
    Youre sure to run into much trouble unless you are preapred
    to take
    some time out and learn this stuff correctly.
    Using layout mode and spliting and merging tables into all
    sorts of
    shapes is a seriously bad method and one you should quickly
    move away
    from for the sake of your own sanity.
    zaphron wrote:
    > I am an advanced beginner website designer.
    >
    > The website I need help with is www.sprungtheatre.com
    >
    > I designed this site on a PC machine. Each page has a
    different CSS Background
    > Image rule. The only rule I have set is image and the
    "non-repeat." I have not
    > set rules for its placement.
    >
    > Each of these images had a feather effect applied to it
    in Illustrator so the
    > image would fade into the black background. This works
    fine on Windows machines
    > in IE and Firefox.
    >
    > However, on Macs, the left-hand side of the image is
    chopped off. Which is to
    > say, it appears if the feathered edge has been cut off
    and the image ends
    > abruptly.
    >
    > Is there any way to fix this problem?
    >
    > My only guess is that the following my be happening:
    >
    > The CSS Background Image rule is applied to a nested
    table that is editable in
    > a template. I'm thinking that the Mac browswers are
    moving the image to the
    > upper left of the overall, "poppa" table in which the
    editable region is
    > nested, cutting off that part of the image that appears
    in the non-editable
    > region of the "poppa" table and showing that part of it
    that appears in the
    > nested, editable table. I hope that makes sense. Would
    applying the placement
    > rules help this? If not, what might?
    >
    > Many thanks,
    >
    > Jon
    >
    >
    >

  • I Need help for creating rules - very high values !!

    Hi,
    i have some troubleshooting by creating rules at HFM 11.1.1.3. I have declarate an array where some Data from an Account is stored. Then there should be stored one of the numerical data in another HFM account (f.e. "EB_MITTEL"). The stored data is much higher than the value in the log file ("write2File") showed. If i divide this value by 100000000000000 then the right value will be reported.
    Example: Value in log-file: 16492,8691588785 ("," = decimal-delimiter)
    Value in the Data-Grid: 164.928.691.588.785 ("." = thousands-separator)
    Part of the rule-file:
    Sub
         Dim lMittelWert, lMaxWert, lMinWert
         lMittelWert = 0
         lMaxWert = 0
         lMinWert = 0
         a = 0
         For x = 1 To 13
              If arListe(x) <> 0 then
              lMittelWert = lMittelWert + arListe(x)
              a=a+1
              End if
              If lMaxWert < arListe(x) Then
                   lMaxWert = arListe(x)
              End If
              if x = 1 then
                   lMinWert = arListe(x)
              End if
         Next
         lMinWert = lMaxWert
         For x = 1 To 13
              If lMinWert > arListe(x) and arListe(x) <> 0 Then
                   lMinWert = arListe(x)
              End If
              write2file arListe(x)
         Next
         if a <> 0 Then
              lMittelWert = lMittelWert / a
         End if     
         HS.Exp "A#EB_MITTEL.C1#" & C1Item & " = " & lMittelWert
         HS.Exp "A#EB_MIN.C1#" & C1Item & " = " & lMinWert
         HS.Exp "A#EB_MAX.C1#" & C1Item & " = " & lMaxWert
    End Sub
    I hope someone can help me, many thanks in advance. (and i am so sorry about my bad english)
    Juergen

    VB Scripts using String to number conversions in some languages require special consideration when handling numbers. (e.g. French, German and others that use commas as decimal delimiter).
    Internally, HFM VB Scripts use periods (.) as the decimal delimiter. One workaround is to force the use of decimals and force the Scripting engine to use decimals by declaring the local to be English US with:
    b = setLocale("en-us")

  • Help~~:'MD_SALES_ORDER_STATUS_REPORT' filter rule for MD04?

    As you know we can use function 'MD_SALES_ORDER_STATUS_REPORT' to relate the (PR PR PlanOrder Prorder) with Sales Order.
    But when the screen go to MD04,the number of (PR PR PlanOrder Prorder) showed is less than the function 'MD_SALES_ORDER_STATUS_REPORT' Export table IIOELX.
    I want to know the filter rule of the order data?
    How can?
    Thanks a million~~

    Lorryhappy,
    It is not clear to me that this function module will perform the task that you expect.
    Anyhow, have you looked at OSS notes [326325|http://service.sap.com/sap/support/notes/326325] or [325543|http://service.sap.com/sap/support/notes/325543]?
    Rgds,
    DB49

  • Help needed in Rules in workflow

    Hi all,
             I am beginner in workflow. I was trying to apply custom rules in my workflow design. I did the following steps :
    1.  have created a custom rule through the transaction PFAC_INS.
    2. There I have used a function module for the determination of agent. The custom function module will give me the superior name for an employee.I have used ztables to store the name of the employee and their superiors.
    3. The Rule has been successfully created and has been tested. It is working as required. I have tested it in PFAC itself by using Simulation button.
    The problem I am facing is
    When I am trying to use this Rule in the workflow at the User decision Step it is not working. I have given the Rule number in the Agent section of  the User decision step.
    According to my Workflow design the email should go to the Superior of the employee but instead it is coming to my Inbox.
    Please suggent me what to do.
    Thanks in advance.
    Points will be rewarded for good suggestions.
    Thanks & Regards.
    Reshmi Das.

    Hi Raj,
              I have created a custom rule and its working fine. Please check the following steps:
    The rule I have created gives the superior name of an user/agent.
    Steps:
    1. I have created a ztable( ztest_users)which will contain the name of users and their superiors.
    2. Create a custom function module(ztest_find_superior) which will return back the table containing all the superior information for a particular user/agent.
    Note: This custom function module created should have the same interface as that of the SAP standard function module RH_GET_ACTORS.
    The following table’s parameters have to exist in the custom function module.
                       ACTOR_TAB STRUCTURE SWHACTOR
                       AC_CONTAINER STRUCTURE SWCONT
    Example:
    FUNCTION ZTEST_FIND_SUPERIOR.
    ""Local Interface:
    *"  TABLES
    *"      ACTOR_TAB STRUCTURE  SWHACTOR
    *"      AC_CONTAINER STRUCTURE  SWCONT
    *"  EXCEPTIONS
    *"      NOBODY_FOUND
      INCLUDE <cntn01>.
      TYPES : BEGIN OF ty_users.
              INCLUDE STRUCTURE ztest_users.
      TYPES : END OF ty_users.
      DATA: org_agent LIKE wfsyst-agent,
                  lt_holders TYPE STANDARD TABLE OF swhactor,
                  lwa_holders TYPE swhactor,
                  lt_users TYPE STANDARD TABLE OF ty_users,
                  lwa_users TYPE ty_users,
                  v_len TYPE i,
                  v_bname LIKE ztest_users-bname,
                  num_lines TYPE i.
    *Read values assigned to the rule criteria
      swc_get_element ac_container 'org_agent' org_agent.
    *Get the superior
      SELECT SINGLE * FROM ztest_users INTO CORRESPONDING FIELDS OF lwa_users
      WHERE bname = org_agent.
    IF NOT lwa_users IS INITIAL.
        REFRESH lt_holders[].
        lwa_holders-otype = 'US'.
        lwa_holders-objid = lwa_users-zsuperior.
        APPEND lwa_holders TO lt_holders.
        APPEND LINES OF lt_holders TO actor_tab.
      ENDIF.
      DESCRIBE TABLE actor_tab LINES num_lines.
      IF num_lines IS INITIAL.
        RAISE nobody_found.
      ENDIF.
    ENDFUNCTION.
    3. Now assign the function module on the rule.
    Goto PFAC_INS  to create the Custom Rule.
    In the rule definition category select Agent Determination: Function to be executed.
    In the Function module field give the name of the function module created (ZTEST_FIND_SUPERIOR).
    Check the Terminate if Rule resolution without result check box.
    4. Create a container element ( org_agent)for the agent or user which will be passed to the function module.
    Type:
    WFSYST-AGENT.
    properties: import.
    5. Test the Rule by the Simulation button on the application toolbar.
    Enter the user name in the Container Element value section and press enter.
    It displays the name of the superior for the agent/user and the Agent Found is displayed in Green color.
    Now you can use this rule in your Workflow definition.
    Thanks,
    Reshmi

  • Need help in Update rule coding - URGENT

    Hi Gurus,
              I am creating an update rule there i need to compare some filed with the fields in inforsouce so here what should be the name used for the infosource can i use something like this
    read table TAB where
          <fields1>       =  DATA_PACKAGE-<field1>.
    where DATA_PACKAGE is the infosource
    is this the rite method
    waiting for reply
    Ravi

    Hi,
    Use this in Update Routine.
    IF COMM_STRUCTURE-field1 = 'value1' AND
    COMM_STRUCTURE-field2 = 'value2'.
    RESULT=field3*100.
    ELSE.
    RESULT=field*10.
    END IF.
    here field name will be in format of :     /bic/fieldname
    Regards,
    rik

  • Urgent help  - to copy rules document

    Hello All,
    we have developed our own program to copy certain rules to new rules with few changes in the operations for the new rules. This is all working fine.
    Now we would like to copy the documenation also from old rules to a new rules, how do I go about it.
    Is thier any FM/table which we can use to copy the document from a rule to a new rules we have created, it should work similar to copy function in PE02 but we have handle this in ABAP as we already have new rules in place.
    Kindly inform me
    Regards,
    Mangalagi S V

    Hello All,
    I have used FM - HRDSYS_DOCU_COPY
    Regards,
    Mangalagi S V

Maybe you are looking for

  • Multiple columns for more than one record?

    Crystal Reports Xi I have a list of addresses, etc.  with attached route numbers.  If an address has 2 different route numbers, it will appear as two records.  Is there a way that I can list the address once, and have the route numbers just grow to m

  • Material Master Extract with some fields in legacy shorter then SAP

    Hi ,      I need to Extract Material master data and send to Material Management System(MMS), i am able to fetch the data into internal table with fields of MMS structure. My problem is SAP has 18 characters for MATNR field and MMS has only 6 charact

  • Best computer for logic studio

    hi I am running logic express on my G4 & soon i want to upgrade my computer to one which will run logic studio comfortably for the next few years, what i want to know is would the processing power an 8 core G5 be overkill, would logic studio use this

  • Embedded OC4J shuts down every time I close a Jasper Viewer window

    I have created a basic application using ADFBC, one component of the application requires reports which have been made using iReport. Now the reports are displayed fine via the application, no problems in passing of params and stuff. My program retur

  • WLSE version 21.5u upgrade and problem thereafter

    Cisco WLSE Wireless Lan Solution Engine was recently upgraded to release 2.15u. Following the upgrade, the device seems to shut itself down after approximately 30 - 40 minutes of uptime. This has occurred three times in 24 hours I have all the instal