Regarding GET and PROVIDE coding

HI GURUS,
cud u plz explain the given statement:::::HOW does it work.
GET pernr.
  PROVIDE * FROM p0001
  BETWEEN pybegda AND pyendda.
  ENDPROVIDE.

Hi ravi,
HRABAP
http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PAPA/PAPA.pdf
http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PAPD/PAPD.pdf
http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PYINT/PYINT_BASICS.pdf
http://www.atomhr.com/training/Technical_Topics_in_HR.htm
http://www.planetsap.com/hr_abap_main_page.htm
you can see some Standard Program examples in this one..
http://www.sapdevelopment.co.uk/programs/programshr.htm
http://searchsap.techtarget.com/originalContent/0,289142,sid21_gci1030179,00.html?Offer=SAlgwn12604#Certification
These are the FAQ's that might helps you
http://www.sap-img.com/human/hr-faq.htm
http://www.sapgenie.com/faq/hr.htm
Common link:
http://www.easymarketplace.de/online-pdfs.php
go thruthe links which r very helpful

Similar Messages

  • Get the source coding and the interface of a from routine (4.6C)

    Hello,
    I am looking for a way to get the source coding and the interface of a Form routine. Having a look at the functionality used in SE80, I found the function module RS_SEARCH_FORM.
    By specifying the following parameters:
    Include Name:                      i_incl             
    Main program:                      i_mainprogram
    Form routine name                i_objectname      
    Object Type for Form routine: i_objecttype
    you receive the "pattern", which is being generated by using the drag and drop
    functionality for Form routines in SE80. For example:
    PERFORM test
                USING
                   a.
    In addition to this, I am looking for a way to get the source coding and the interface for a form routine in a 4.6C system.
    The mentioned function module has a tables parameter called i_source but I didn't find out how to execute it in order receive the source code.
    It would be great if you could help me to solve this issue.
    Best regards,
    Fabian

    Hi,
    the only idea I have is to scan the source code for the form routine in order to retrieve the needed information. It would be great to have a standardized function module, which provides this functionality.
    Regards,
    Fabian

  • I am using Adobe Pro 11 and on opening a pdf I am getting error 'Insufficient Data for an Image'. Please help and provide a workaround if the solution not there.

    Hi all,
    I am using Adobe Pro 11 and on opening a pdf I am getting error 'Insufficient Data for an Image'. Please help and provide a workaround if the solution not there.
    I have already set the preferences to for page view to low zoom settings, and page fit view settings, but it never opens the pdf. Please check and provide a solution asap.
    Thanks in advance!

    Most of the documents have sensitive info on them.  I will have to do some looking for some that i can share, but will get something to upload (dropbox) as soon as I can.
    Thanks for you help.

  • PE dism error - failed to get and initialize the PE provider

    This all started with: Win 8.1 could not be installed. error code 0X8007003. I ran DISM successfully with the /RestoreHealth flag, but it made no difference to installing Win 8.1. I ran DISM again (successfully) and looked at the log for "fails".
    The repeated fail was:
    2011-06-10 10:12:47, Warning               DISM   DISM Provider Store: PID=2552 Failed to Load the provider: C:\Users\ROSMAR~1\AppData\Local\Temp\0709052E-4C8D-43AD-B837-FB57E1CF832A\PEProvider.dll.
    - CDISMProviderStore::Internal_GetProvider(hr:0x8007007e)
    2011-06-10 10:12:47, Info                  DISM   DISM Provider Store: PID=2552 Failed to get and initialize the PE Provider.  Continuing by assuming that it
    is not a WinPE image. - CDISMProviderStore::Final_OnConnect
    How can I fix this? Is this the reason I can't install Win 8.1? Should I be looking at something else to fix whatever is generating error code 0X8007003?
    Thanks.

    WIM format changed in Win 8.1. You need to use the DISM from the ADK from Windows 8.1. Older versions of DISM cannot service drivers or packages for example.

  • I almost complete uploading a 32 page iPhoto book, on a number of occasions when I get an error message stating "An error occurred uploading your order" can anyone tell me why and provide a solution please?

    I am having problems uploading a photo book from my MacBook Pro!!! I almost complete uploading this 32 page iPhoto book when I get an error message stating "An error occurred uploading your order" This error message has occurred for each of my four attemps to upload. I have carried out a Disk Utility-Verify hard drive check and swapped from wireless to ethernet and still no joy. Can anyone suggest why this might be occurring and provide a solution please?

    Boot into Safe Mode and try again.

  • Get pernr and provide

    Hi,
    In HR ABAP, can you tell me what exactly "Get pernr" and "provide...end provide" does ? (with an example if possible)
    I appreciate your input.
    Thanks in advance.

    hi
    good
    get pernr->
    TABLES: PERNR,
            PCL2.
      INCLUDE ZHR_PCL2_CU_DATA - Payroll results.                        *
    Data declarations for the IMPORT of database PCL2 for cluster RU.    *
    DATA: CD_NEXT_SEQ    TYPE I,               "Next available seq number
          CD_LAST_PAY    TYPE D.               "Last payroll run date
    DATA: BEGIN OF OCD_VERSION.
            INCLUDE STRUCTURE PC201.  "Technical Version
    *DATA:   molga  LIKE t001p-molga.    "country identifier
    DATA: END OF OCD_VERSION.
    DATA: BEGIN OF RGDIR OCCURS 100.
             INCLUDE STRUCTURE PC261.  "(For Export and Import of Payroll Res
    DATA: END OF RGDIR.
    Key for database PCL2 cluster RU
    DATA BEGIN OF RX_KEY.
           INCLUDE STRUCTURE PC200.  "Payroll Results Key
    DATA: END OF RX_KEY.
    country dependent
    DATA: BEGIN OF  RU-VERSION.
            INCLUDE STRUCTURE PC201.  "Technical Version
    DATA: END OF  RU-VERSION.
    DATA: BEGIN OF ORU_VERSION.
            INCLUDE STRUCTURE PC201.  "Technical Version
    DATA: END OF ORU_VERSION.
    Cumulated-result table
    DATA:  BEGIN OF CRT OCCURS 30.
             INCLUDE STRUCTURE PC22Y.  "Cumulated result table (USA)
    DATA:  END   OF CRT.
    GET PERNR.
      IMPORT CD_VERSION TO OCD_VERSION
                           CD_LAST_PAY
                           CD_NEXT_SEQ
                           RGDIR
             FROM DATABASE PCL2(CU) ID PERNR-PERNR.
      CHECK SY-SUBRC EQ 0.
    This is where you select the particular period you are searching for.  The
    selection will change based on what dates you are looking for.
      LOOP AT RGDIR WHERE FPPER EQ P_PERIOD
                    AND   INPER EQ P_PERIOD
                    AND ( RUNDT GT Z_RUNDT
                    OR  ( RUNDT EQ Z_RUNDT
                    AND   RUNTM GT Z_RUNTI ) )
                    AND   SRTZA =  'A'
                    AND   PAYTY =  ' '
                    AND   VOID  NE 'V'.
        CHECK SY-SUBRC = 0.
        MOVE PERNR-PERNR TO RX_KEY-PERNR.
        MOVE RGDIR-SEQNR TO RX_KEY-SEQNO.
       IMPORT RU-VERSION TO ORU-VERSION
              CRT
         FROM DATABASE PCL2(RU) ID RX_KEY.
         CHECK SY_SUBRC = 0.
       LOOP AT CRT.
         Process crt data.
       ENDLOOP.
      ENDLOOP. 
    thanks
    mrutyun

  • Regarding setter and getter methods

    Hi,
    Can anybody tell me the use of setter and getter methods in webdynpro .
    It is generated when we set the calculate property of value attribute to true .
    Thanks a lot .

    Hi Jain
    <b>setter</b> and <b>getter </b>functions will be created when you set the calculated propertyto true
    Consider the following scenario where in you can get some basic idea
    1) First insert a Child "Image" UI Element
    2) Create a Context in a view in which you are using Image UI Element
    3) Value Node
    Name : Image
    Cardidality : 1..1
    4) create 2 Value Attributes
    4)a ImageAlt (Calculate property - true) //this will create getter and setter methods
    4)b ImageSrc (Calculate property - true) //this will create getter and setter methods
    5)Bind the properties of Image
    alt - Image.ImageAlt
    source - Image.ImageSrc
    6) in getImageSrc()
    retrun "XX.gif"
    7) in getImageAlt()
    return "Image Not Available"
    you can even achieve getter and setter methods by doing the following procedure
    goto <b>implementation</b> tab-> rightclick -> <b>source</b> -> <b>generate Getter and Setter methods...</b>
    Best Regards
    Chaitanya.A

  • VM Role Authoring Tool - Disable AdminCredential username and password in the UI and provide hardcoded value

    I am want to keep AdminCredential as a parameter in VM Role Authoring Tool but I do not want user to be able to able to provide the password. As an Enterprise, we have a password policy that we use for Admin Password. The reason i want to keep it as an parameter
    is because if we ever decide to change the policy, i do not have to go back and change it at 100 places it was used. I just change the parameter value and it gets applied everywhere.
    This is what i have tried so far:
    I added the AdminCredential parameter in the separate category. I made
    Configurable to No and provided DefaultValue
    in the format Administrator:Password1 in the parameter and imported the definition in the Admin Portal. Now Administrator:Password1 shows up in the username field and password is still editable.
    In short, if possible, i do not want users to see the AdminCredential parameter. If i cannot hide the parameter, i want to disable username and password fields and provide hard coded value for it.
    Is there a way to achieve what i am trying to do?

    The assumption with Azure Pack is that the OS is Server and the OS has been generalized.
    Now, in the Azure Pack world this local admin credential is actually a special credential.  You cannot take it away, but you can set a default value in the designer.
    If a default value is set, you may be able to hide it from the view definition (I am not sure, since this is a special parameter), but you cannot remove the parameter from the resource itself.
    And a credential in Azure Pack gets interpreted to a username plus password string.
    I have added secondary accounts that capture a password string and a username (as strings, not credentials).  But again, I am not positive that this is allowed.
    Sorry for not having a straight answer, maybe someone will jump in with a better one.
    Brian Ehlert
    http://ITProctology.blogspot.com
    Learn. Apply. Repeat.

  • Business Service , Service Group  and Provider System for CE 7.2

    Hi
    I need documentation about Business Service , Service Group  and Provider System for CE 7.2.
    Att,
    Marco

    Did you get one? I need too.
    In SAP Help Portal there are a large quantity of documents, such as:
    http://help.sap.com/saphelp_nwce72/helpdata/en/88/a552908d4c44dc99b3ec247069921e/frameset.htm
    But the content is so much and I do not know with which part I should start.
    In the web blog of Ms. Stefanie Bacher:
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/50d70a19-45a3-2b10-bba0-807d819daf46?quicklink=index&overridelayout=true
    she has mentioned how to create a service group shortly. But I cannot follow it in my NWDS CE7.1.
    Anyone could give me some tipps, how to resolve authorization problem of consuming web services.
    Thanks and regards
    Rene

  • HT3939 if I purchased iPhone 5 GSM A1429, then I tried to use CDMA SIM card inside the same phone, does it'll work and provide me signals ???

    Hi All,
    Regarding iPhone 5, at the latest model, if I bought an unlocked one from UK Apple Store,  iPhone 5 GSM   A1429, then I tried to use CDMA SIM card inside the same phone, does it'll work and provide me signals or not. ??
    Thanks for your answering.

    The answer is complicated. None of the major carriers offer PAYG service in the US, but if you buy a contract-free phone for full price you can get a plan that can be canceled at any time from any of the major carriers (AT&T, Verizon, Sprint and T-Mobile). There are smaller resellers that offer PAYG service (StraightTalk, for example), but they are hard to deal with.
    The most liberal is the GSM carrier T-Mobile. They have "unbundled" the phone from the service, so if you bring your own phone or pay full price for a phone the monthly cost will be lower.
    The other 3 will charge you the same monthly cost whether you pay full price for the phone or get a subsidized phone.
    Verizon iPhone 5 series phones are unlocked out of the box for international use (thanks to a condition the FCC imposed on Verizon when they were allowed to buy a substantial chunk of spectrum). They are the only phones sold in the US that will work on LTE bands in the UK and Europe.
    Sprint is not a good choice, because they give you a hard time if you want to unlock your phone.
    AT&T phones are locked, but they will unlock the phone if you pay full price or pay off your early termination fee. However, they will only work on GSM in the UK, not on LTE (4G).

  • Diff. btw. Region edit controls and provider.xml controls on rendering portlet UI

    hi,
    Apologize if this has been asked already.
    What are the differences if any between -
    - controlling the display of portlet header/border in the provider.xml file (containerRenderer set to false)
    V/S
    - controlling in the page edit mode (edit defaults) and uncheck the "display banners/borders" for the portlets at the region level.
    Appreciate it if anyone can explain any subtle differnces if they exist, or if they complement/overide each other. I am planning to set the containerRenderer to false to show them programmatically.
    regards
    -Ananth

    I'm using VS 2013 Coded UI Test Builder trying to add some new recorded elements to an existing window. The top level window that the coded ui test builder generated had to be modified since the title changes depending on the contents in a form. I've tried
    different ways to identify it but the simplest that seems to work looks like this (basically eliminated the name and just search for the winform name):
    public class UICustomerWindow: WinWindow
    public UICustomerWindow()
    #region Search Criteria
    this.SearchProperties[WinWindow.PropertyNames.ControlName] = "frmCustomerMaintenance";
    #endregion
    Like I said, this works in all the tests automated already and the coded ui test builder can find it if I click the refresh button. The problem occurs when I try to add any new element or exiting element. The UI builder likes to ignore all the previous recordings
    for that UI map and add a completely new top level window and elements in that window:
    public class UIViewEditCustomerDURGWindow : WinWindow
    public UIViewEditCustomerDURGWindow()
    #region Search Criteria
    this.SearchProperties[WinWindow.PropertyNames.Name] = "View/Edit Customer DURGAN, KENYON";
    this.SearchProperties.Add(new PropertyExpression(WinWindow.PropertyNames.ClassName, "WindowsForms10.Window", PropertyExpressionOperator.Contains));
    this.WindowTitles.Add("View/Edit Customer DURGAN, KENYON");
    #endregion
    Is there something I'm missing or this just a limitation of the Coded UI Test Builder? BTW, if more info is needed, let me know and I can probably provide it since its all dummy data.

  • Which type of setting we need to maintain in query to get Multi Provider data

    HI Friends.
    I created query on top of Multi Provider. Multi Provider created on top of Hybrid provider and Standard cube.
    When i executed the Query on top Multi Provider, i can't see the data of Hybrid Provider through Query.
    In BW side i can see the data on Multi provider.
    Can any one help me.

    Hi,
    First need to understand what is the use of Hybrid Provider in what cases we prefer provider.
    Multiprovider  :can be created based on DSO & Infocube
    Hybrid Provider : Can Be created based on DSO / HybridProviders based on direct access.
    For more Info on Hybrid Provider : Creating HybridProviders - Modeling - SAP Library
    There are no settings to get Hybrid provider data Or Multiprovider data in Bex .
    Even though if we need to do any settings we can do it in SPRO , check once in SPRO tcode related to Bex reporting  settings.
    Regards,
    Seshu.P

  • SAP BRIM Concept - BUAG and Provider Order EHP3

    Hello Experts,
    can anyone explain in how far the CRM objects business agreement (BUAG), provider order and provider contract are connected?
    What is the logical difference and in how far is there a coherence between these objects?
    Thank you for your support
    Vanessa

    Hi Vanessa,
    there's potentially a lot to add to this question and the following is for sure not complete, but hopefully helps you to get the basics:
    Provider Order and Contracts
    Provider Orders are used to capture any kind of create and change request with regard to subscription services provided to end customers. For the creation of services this can be the simple rate plan or a package comprising the delivery of hardware, installation services, activation fees and multiple rate plans reflecting different services bundled together.
    Once the customer accepts such an order during order fulfillment the system creates follow-up documents. For all items of type rate plan the system creates corresponding items in provider contracts.
    The contract is used to track the status of this services in downstream systems (billing, technical provisioning,...). It also serves as starting point for change requests and stores the time-dependent history of the contract data.
    When changes should be applied, the system copies the current contract state into a new Provider Order. It can be processed either through change processes or directly by changing field values. Again: once the customer accepts the changes captured by submitting the order, the changes are transferred back into the Provider Contract.
    In short: Provider orders tracks the change requests; the Provider Contract manages the installed base of the services.
    Business Agreement
    The business agreement is a separate object, that can be linked to Provider documents on header and item level. It's only used when you use CRM together with FI-CA (or RM-CA, depending on the industry solution you are using). In those cases the business agreement maps to the contract account object managed in ERP and allowing to group and settle the open items generate by the business transactions during the contract life time. The business agreement/contract account serves as one of the splitting criteria for invoices.
    It stores payment related data like payment terms, payment methods and dunning procedures.
    If you are not using FI-CA this data will be captured directly in the Provider documents without creating any business agreement. This mode is only available with CRM 7.0 EhP3 SP04.
    Best regards
    Stefan

  • Question regarding selectOneMenu and PROCESS_VALIDATIONS(3) phase

    Hi im a bit lost regarding selectOneMenu and how validation phase all works together.
    The thing is that i have a simple selectOneMenu
    <h:form id="SearchForm">                                                  
         <h:panelGrid columns="3"  border="0">
              <h:outputLabel id="caseTypeText" value="#{msg.searchCaseCaseType}" for="caseType" />                         
              <h:selectOneMenu id="caseType" value="#{searchCaseBean.caseType}" style="width: 200px;" binding="#{searchCaseBean.caseTypeSelect}">     
                   <f:selectItem itemValue="" itemLabel="#{msg.CommonTextAll}" />                                             
                   <f:selectItems value="#{searchCaseBean.caseTypes}"  />                              
              </h:selectOneMenu>
              <h:message for="caseType" styleClass="errorMessage" />
              <h:panelGroup />
              <h:panelGroup />
              <h:commandButton action="#{searchCaseBean.actionSearch}" value="#{msg.buttonSearch}" />
         </h:panelGrid>
    </h:form>Now when i hit submit button i can see that the bean method searchCaseBean.caseTypes (used in the <f:selectItems> tag) is executed in the PROCESS_VALIDATIONS(3) phase. How come? I dont whant this method to be executed in phase 3, only in phase 6.
    If i add the this in the method if (FacesContext.getCurrentInstance().getRenderResponse())
    public List<SelectItem> getStepStatuses(){
         List<CaseStep> caseSteps = new ArrayList<CaseStep>();
         if (FacesContext.getCurrentInstance().getRenderResponse()) {
              caseSteps = getCaseService().getCaseStep(value);     
         List<SelectItem> selectItems = new ArrayList<SelectItem>(caseSteps.size());
         for(int i=0; i < caseSteps.size(); i++){
              CaseStep step = caseSteps.get(i);               
              String stepStatus = step.getStatus() + "_" + step.getSubStatus();           
              selectItems.add(new SelectItem(stepStatus, step.getShortName()));
         return selectItems;
    } Now i get a validation error (javax.faces.component.UISelectOne.INVALID) for the select field and only phase1, phase2, phase 3 and phase 6 is executed.
    Im lost?

    I see. Many thanxs BalusC. Im using your blog very often, and its very helpfull for me.
    I changed now to use the constructor load method instead. But know im getting problem of calling my service layer (Spring service bean). Its seems they havent been init when jsf bean is calling its constructor.
    Can i init the spring service bean from the faces-config file?
    JSF Bean
        public SearchCaseBean() {
              super();
                    //caseService need to be init
              if(getCaseService() == null){
                   setCaseService((CaseService)getWebApplicationContextBean("caseService"));
              fillCaseTypeSelectItems();
              fillCaseStatusSelectItems();
    .....faces-config
    <managed-bean>
              <managed-bean-name>searchCaseBean</managed-bean-name>
              <managed-bean-class>portal.web.SearchCaseBean</managed-bean-class>
              <managed-bean-scope>request</managed-bean-scope>          
              <managed-property>
                   <property-name>caseService</property-name>
                   <value>#{caseService}</value>
              </managed-property>
         </managed-bean>

  • Question regarding roaming and data usage

    I am currently out of my main country of service, and as such I have a question regarding roaming and data usage.
    I am told that the airplane mode is sufficient from keeping the phone off from roaming, but does this apply to any background data usage for applications and such?
    If the phone is in airplane mode, are all use of the phone including wifi and application use through the wifi outside of all extra charges from roaming?

    Ann154 wrote:
    If you are getting charged to use the wifi, then it is possible.  Otherwise no
    Just to elaborate here, Ann154 is referring to access charges for wifi, which is nothing to do with Verizon, so if you are using it in a plane, hotel, an internet cafe etc that charges for Wifi rather than being free .   Verizon does not charge you (or indeed know about!) wifi usage, or any other usage that is not on their cellular network (such as using a foreign SIM for example in global phones)  So these charges, if any, will not show up on the verizon bill app.  Having it in airplane mode prevents all cellular data traffic so you should be fine

Maybe you are looking for

  • Sending smartform as pdf attachment through mail

    Dear All, Can anyone suggest me sample code of how an sap smartform output is sent as pdf attachment to a receipients email address? Thanks M A

  • Pls send some usefull doc related to CO

    MODERATOR:  Do not post your email address or links to copyrighted information on these forums.  If you do, the thread will be LOCKED and all points UNASSIGNED.  If you have some information, please consider posting it to the [Wiki|https://wiki.sdn.s

  • SPA2002 in SIP server environment

    Hello, I am using the SPA2002 that registers remotely to a SIP server. The phones register correctly and can reach any other user agent (not SPA2002). the problem is that other user agents cannot call the SPA2002 until the SPA2002 calls first then th

  • Cover for new iPad

    Was wondering if anyone can suggest a cover for my new IPad? My wife bought me the one they have at Apple, but since I am in commercial construction I need something with some more protection but can also let me use camera. Gotta be slim too. I loved

  • How do I turn of synching apps between multiple iPhones?

    How do I turn of the feature that synchs apps between multiple iPhones?