Can any body send HUM configuration settings

hi,
can any body send HUM configuration or documentation apart from standard liabrary, please.
regards,'
balajit

Hi,
Please check following best practices link. I hope this helps you.
http://help.sap.com/bp_bblibrary/600/HTML/G74_BB_EN_US.htm
Regards,
Abhee

Similar Messages

  • Can any body send me the Faq's on ALE/IDoC ?

    Can any body send me the Faq's on ALE/IDoC  ?

    hi,
    check these...
    http://www.onestopsap.com/interview-Question/ale/
    http://sap.ittoolbox.com/groups/career/sap-career/aleidoc-interview-questions-688290
    http://www.erpgenie.com/faq/ale.htm

  • Can any body send me material on Work flow

    Hi gurus,
    Can any body send me material on Work flow.
    Regards.
    Naveen

    Hi,
    Check the following links:
    http://www.sapbrainsonline.com/TUTORIALS/TECHNICAL/WORKFLOW_tutorial.html
    http://sapmaterial.com/workflow.html
    http://www.sap-img.com/workflow/sap-workflow.htm
    Regards,
    Bhaskar

  • Can Any body Send Me Sample Repositorys ?

    Hi  Can any body send me the Sample Repositorys (.xml files or xds file )
    praveen.sapmdm @gmail.com
    Edited by: g.praveen kumar on Jun 20, 2008 6:23 PM

    Hi ,
    U can get  sample repositories at the following link:
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/607beabe-950f-2b10-7687-8256ace1a435
    In the pdf links to two sample repository is given.
    Hope this may help u .
    Rgds
    Ankit

  • Can any one send CFM configuration document.

    hi all,
    can any one send CFM configuration document.
    it is urgent.
    Thanks
    Ramakrishna

    hi all,
    can any one send CFM configuration document.
    it is urgent.
    Thanks
    Ramakrishna

  • Can any body send me some issues about mail sending .

    can any body send me some issues about mail sending .
    thanks alot !
    mail to :<i><b>[email protected]</b></i>

    HI
    GOOD
    GO THROUGH THIS CODE
    REPORT ZTSAPMAIL.
    DATA: X_OBJECT_TYPE LIKE SOOD-OBJTP.
    DATA: BEGIN OF X_OBJECT_HD_CHANGE.
    INCLUDE STRUCTURE SOOD1.
    DATA: END OF X_OBJECT_HD_CHANGE.
    DATA: BEGIN OF X_OBJCONT OCCURS 10.
    INCLUDE STRUCTURE SOLI.
    DATA: END OF X_OBJCONT.
    DATA: BEGIN OF X_OBJHEAD OCCURS 0.
    INCLUDE STRUCTURE SOLI.
    DATA: END OF X_OBJHEAD.
    DATA: BEGIN OF RAW_HEAD.
    INCLUDE STRUCTURE SORH.
    DATA: END OF RAW_HEAD.
    DATA: BEGIN OF X_RECEIVERS OCCURS 0.
    INCLUDE STRUCTURE SOOS1.
    DATA: END OF X_RECEIVERS.
    PARAMETERS: RECEIVER LIKE X_RECEIVERS-RECNAM. " Name
    *BUILD MESSAGE HEADER
    MOVE 'Sort field goes here' TO X_OBJECT_HD_CHANGE-OBJSRT. " Sort field
    MOVE 'Name of the object goes here' TO X_OBJECT_HD_CHANGE-OBJNAM. " Name
    MOVE 'Document title goes here' TO X_OBJECT_HD_CHANGE-OBJDES. " Title
    MOVE 'F' TO X_OBJECT_HD_CHANGE-OBJSNS. " Functional OBJECT
    MOVE 'E' TO X_OBJECT_HD_CHANGE-OBJLA. " Language
    Object type of the new document
    MOVE 'RAW' TO X_OBJECT_TYPE.
    CLEAR X_OBJCONT.
    MOVE 'Contents of mail' TO X_OBJCONT-LINE.
    APPEND X_OBJCONT.
    CLEAR X_OBJCONT-LINE. APPEND X_OBJCONT.
    MOVE 'More contents' TO X_OBJCONT-LINE.
    APPEND X_OBJCONT.
    MOVE 'Still more contents'
    to x_objcont-line.
    APPEND X_OBJCONT.
    MOVE ' ' TO X_OBJCONT-LINE.
    APPEND X_OBJCONT.
    Specific header (Dependent on the object type, here RAW)
    REFRESH X_OBJHEAD.
    DESCRIBE TABLE X_OBJCONT LINES RAW_HEAD-RAWSIZ.
    MOVE RAW_HEAD TO X_OBJHEAD.
    APPEND X_OBJHEAD.
    *RECEIVERS table
    CLEAR X_RECEIVERS.
    REFRESH X_RECEIVERS.
    MOVE RECEIVER TO X_RECEIVERS-RECNAM. " Name
    MOVE 'B' TO X_RECEIVERS-RECESC. " Receiver type
    MOVE 'X' TO X_RECEIVERS-SNDCP. " Send as a copy
    MOVE 'X' TO X_RECEIVERS-SNDEX. " EXPRESS DOCUMENT
    APPEND X_RECEIVERS.
    CALL FUNCTION 'SO_OBJECT_SEND'
    EXPORTING
    folder_id = 'OUTBOX'
    forwarder = x_forwarder
    object_fl_change = x_object_fl_change
    OBJECT_HD_CHANGE = X_OBJECT_HD_CHANGE
    object_id = x_object_id
    OBJECT_TYPE = X_OBJECT_TYPE
    OUTBOX_FLAG = 'X'
    OWNER = SY-UNAME
    store_flag = x_store_flag
    importing
    object_id_new = x_object_id_new
    sent_to_all = x_sent_to_all "May need to use
    TABLES
    OBJCONT = X_OBJCONT
    OBJHEAD = X_OBJHEAD
    objpara = x_objpara
    objparb = x_objparb
    RECEIVERS = X_RECEIVERS.
    Firstly SAP Mail
    A SAP mail is a mail internal to the SAP system. It is a very good forum to exchange information with other users. Using a SAP mail in ABAP code facilitates exchange of automatic messages at various stages of the business process. It is easy to use and saves many hassles involved in using workflows for exchanging messages.
    The ABAP code to send a sap mail is built around the FM SO_OBJECT_SEND which has the following pattern.
    call function 'SO_OBJECT_SEND'
    exporting
    EXTERN_ADDRESS = ' '
    FOLDER_ID = ' '
    FORWARDER = ' '
    OBJECT_FL_CHANGE = ' '
    OBJECT_HD_CHANGE = ' '
    OBJECT_ID = ' '
    OBJECT_TYPE = ' '
    OUTBOX_FLAG = ' '
    OWNER = ' '
    STORE_FLAG = ' '
    DELETE_FLAG = ' '
    SENDER = ' '
    CHECK_ALREADY_SENT = ' '
    importing
    object_id_new =
    sent_to_all =
    tables
    OBJCONT =
    OBJHEAD =
    OBJPARA =
    OBJPARB =
    receivers =
    PACKING_LIST =
    ATT_CONT =
    ATT_HEAD =
    NOTE_TEXT =
    exceptions
    active_user_not_exist = 1
    communication_failure = 2
    component_not_available = 3
    folder_not_exist = 4
    folder_no_authorization = 5
    forwarder_not_exist = 6
    note_not_exist = 7
    object_not_exist = 8
    object_not_sent = 9
    object_no_authorization = 10
    object_type_not_exist = 11
    operation_no_authorization = 12
    owner_not_exist = 13
    parameter_error = 14
    substitute_not_active = 15
    substitute_not_defined = 16
    system_failure = 17
    too_much_receivers = 18
    user_not_exist = 19
    x_error = 20
    others = 21.
    THANKS
    MRUTYUN

  • Can any body send me oracle wip,bom and manufacturing student guide?

    Hello all,
    can any body share with me oracle WIP,BOM and manufacturing student guide? My mail id is [email protected]
    Thanks a lot
    Roopali agarwal

    Sorry I didn't find anything that is Kanban specific. Trying looking under flow manufacturing and also came up empty in R12. There was a R12 Inventory based class where Kanban resides in the user guide but it didn't look like it is going to be worth your while.
    The user guide is actually pretty straight forward and a whole bunch less inexpensive...

  • Can any body send mock project fico

    Hi,
    Can u pls send me mock project for fico...
    [email protected]
    thanks in advance
    ramesh

    hi
    Refer standard component :
    WDR_TEST_UI_ELEMENTS
    WDR_TEST_EVENTS
    SAP Online help : http://help.sap.com/saphelp_erp2005/helpdata/EN/0f/e8884118aa1709e10000000a155106/frameset.htm

  • Can any body send some paterial on alvs

    hi can anybody send some material on alvs

    Hi,
      Check these............
    http://www.sapfans.com/forums/viewtopic.php?t=58286
    http://www.sapfans.com/forums/viewtopic.php?t=76490
    http://www.sapfans.com/forums/viewtopic.php?t=20591
    http://www.sapfans.com/forums/viewtopic.php?t=66305 - this one discusses which way should you use - ABAP Objects calls or simple function modules.
    program double click in ALV
    http://www.sapfans.com/forums/viewtopic.php?t=11601
    http://www.sapfans.com/forums/viewtopic.php?t=23010
    add subtotals (I have problem to add them)...
    http://www.sapfans.com/forums/viewtopic.php?t=20386
    http://www.sapfans.com/forums/viewtopic.php?t=85191
    http://www.sapfans.com/forums/viewtopic.php?t=88401
    http://www.sapfans.com/forums/viewtopic.php?t=17335
    list heading like top-of-page in ABAP lists
    http://www.sapfans.com/forums/viewtopic.php?t=58775
    http://www.sapfans.com/forums/viewtopic.php?t=60550
    http://www.sapfans.com/forums/viewtopic.php?t=16629
    print page number / total number of pages X/XX in ALV
    http://www.sapfans.com/forums/viewtopic.php?t=29597 (no direct solution)
    ALV printing problems. The favourite is: The first page shows the number of records selected but I don't need this.
    http://www.sapfans.com/forums/viewtopic.php?t=64320
    http://www.sapfans.com/forums/viewtopic.php?t=44477
    set the cell color in ALV
    http://www.sapfans.com/forums/viewtopic.php?t=52107
    print a logo/graphics in ALV
    http://www.sapfans.com/forums/viewtopic.php?t=81149
    http://www.sapfans.com/forums/viewtopic.php?t=35498
    http://www.sapfans.com/forums/viewtopic.php?t=5013
    input-enabled fields in ALV
    http://www.sapfans.com/forums/viewtopic.php?t=84933
    http://www.sapfans.com/forums/viewtopic.php?t=69878
    ALV for reports that are going to be run in background
    http://www.sapfans.com/forums/viewtopic.php?t=83243
    http://www.sapfans.com/forums/viewtopic.php?t=19224
    I display an icon in ALV (Common requirement is traffic light icon).
    http://www.sapfans.com/forums/viewtopic.php?t=79424
    http://www.sapfans.com/forums/viewtopic.php?t=24512
    display a checkbox in ALV
    http://www.sapfans.com/forums/viewtopic.php?t=88376
    http://www.sapfans.com/forums/viewtopic.php?t=40968
    http://www.sapfans.com/forums/viewtopic.php?t=6919
    Regards..
    Step

  • Can any body send me the cross component meta data files of any cross compp

    HI,
    I want meta data files of cross component project could u please pass these meta data files as soon as possible.
    Thanks,
    Shabeer Ahmed.

    Hi,
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/a137c339-0b01-0010-a688-a87b88706845
    Regards,
    Sundar

  • Can any body send me the coding.!!!

    Write a program that, given seven-digit-number, write to a file every posibble seven-letter word combination corresponding to that number. That are 2187(3 power of 7) such combinations. Avoid phone numbers with the digit 0 and 1.!!
    please some 1 help me.!!
    thank you

    Write a program that, given seven-digit-number, write
    to a file every posibble seven-letter word combination
    corresponding to that number. That are 2187(3 power of
    7) such combinations. Avoid phone numbers with the
    digit 0 and 1.!!
    please some 1 help me.!!
    thank youLife's ain't easy. Gotta learn how to take care of yourself !!!

  • Can any body help me by sending the config settings of delivery scheduling.

    hi,
    sap gurus,
    in my project there is logistics execution module.  here my concern is they are depending on district
    and regions for fixing the frieght and all, so we have to schedule the deliveries to save the damarages
    and warphage to the client.
    can any body send me how the delivery scheduling and transportation scheduling cinfigured and
    if there is any other than this.
    plz let me know and help me on this.
    regards,
    balaji.t

    Hi Balaji..
    Just see weather this is helpful to your requirement...
    Backward scheduling is the calculation of deadline dates: the arrival time at the customer site is calculated as the earliest possible goods receipt time at the customers unloading point on the requested delivery date. All four of the delivery and transportation scheduling lead times are subtracted from the customeru2019s requested delivery date to determine if this date can be met.
    The transit time, loading time, and pick/pack time are subtracted from the customeru2019s requested delivery date to calculate the required material availability date.
    The system calculates backward scheduling as follows:
    Requested delivery date minus transit time = Goods issue date
    Goods issue date minus loading time = Loading date
    Loading date minus transportation lead time = Transportation scheduling date
    Loading date minus pick/pack time = Material availability date
    By default, the system will calculate delivery dates the closest day, taking into consideration the working days of the shipping point and a rounding profile. In this case the system assumes a 24 hour work day and lead times can be entered in days up to 2 decimal points. This is referred to as daily scheduling.
    Precise scheduling calculated down to the day, hour and minute is supported. This allows the scheduling of a delivery within a single day. It is activated by maintaining the working hours for a particular shipping point.
    Backward scheduling is always carried out first. If the material availability date or transportation scheduling date is calculated to be in the past, the system must then use forward scheduling.
    Forward scheduling is also done if no product is available on the material availability date calculated by backward scheduling. The system does an availability check to determine the first possible date when product will be available. This new material availability date forms the starting point for scheduling the remaining activities. The loading time, pick/pack time, transit time, and transportation lead time are added to the new material availability date to calculate the confirmed delivery date.
    Thanks,
    Safeer Rahman

  • Can any body explain about financial accounting (FI) and ...........

    hi,
    sap gurus,
    can any body send config steps from where we have to start in FI CO module.
    id is timmampalliatgmaildotcom
    regards,
    balaji.t
    09990019711.

    hi Balaji,
    You can find very helpful information at the following address
    http://www.sapdb.info/category/finance/
    thanx
    vijay

  • Hi  can any body please tell me how to open the .exe files in mac and why it is not supported with unarchiever app , also i am not able to run and dvd's in my mac its not accepting any cd's or dvd'd why do i need to do some settings for it ?

    Hi  can any body please tell me how to open the .exe files in mac and why it is not supported with unarchiever app , also i am not able to run and dvd's in my mac its not accepting any cd's or dvd'd why? do i need to do some pre defined  settings to run the cd's and dvd's ?

    A .exe file is a Windows executable. OS X does not run Windows programs. If you need to use .exe files then you will need to install Windows on your Mac:
    Windows on Intel Macs
    There are presently several alternatives for running Windows on Intel Macs.
    Install the Apple Boot Camp software.  Purchase Windows XP w/Service Pak2, Vista, or Windows 7.  Follow instructions in the Boot Camp documentation on installation of Boot Camp, creating Driver CD, and installing Windows.  Boot Camp enables you to boot the computer into OS X or Windows.
    Parallels Desktop for Mac and Windows XP, Vista Business, Vista Ultimate, or Windows 7.  Parallels is software virtualization that enables running Windows concurrently with OS X.
    VM Fusionand Windows XP, Vista Business, Vista Ultimate, or Windows 7.  VM Fusion is software virtualization that enables running Windows concurrently with OS X.
    CrossOver which enables running many Windows applications without having to install Windows.  The Windows applications can run concurrently with OS X.
    VirtualBox is a new Open Source freeware virtual machine such as VM Fusion and Parallels that was developed by Solaris.  It is not as fully developed for the Mac as Parallels and VM Fusion.
    Note that Parallels and VM Fusion can also run other operating systems such as Linux, Unix, OS/2, Solaris, etc.  There are performance differences between dual-boot systems and virtualization.  The latter tend to be a little slower (not much) and do not provide the video performance of the dual-boot system. See MacTech.com's Virtualization Benchmarking for comparisons of Boot Camp, Parallels, and VM Fusion. Boot Camp is only available with Leopard or Snow Leopard. Except for Crossover and a couple of similar alternatives like DarWine you must have a valid installer disc for Windows.
    You must also have an internal optical drive for installing Windows. Windows cannot be installed from an external optical drive.

  • Can any body tell me, how to send/receive the sms from java application

    Hi All,
    Can any body tell me, how to send/receive the sms from java application to mobile phones.
    I have installed the jsms engine and when i try to connect to the mobile device ,the jsms server is giving
    the following error.
    Cannot connect to GSM Device, error : -11

    The best place to ask your question is at the JSMS website, forum or mailing list since this is no error that directly comes from a class belonging to the core Java classes.

Maybe you are looking for

  • JTable and clipboard...

    Hi all! I'm trying to copy data from JTable to system clipboard. Here's my code that is supposed to do that except it doesn't work. Nothing happens. The system is Windows, rigth click invokes menu with only one position - COPY, which is served by a a

  • Error message when I Embed QT movie with Poster movie

    Hi, I posted a QT movie with poster movie to my blog, http://blog.ginauhlmann.com/ All info that I can think of is below, and any help would be greatly appreciated! I can't get my hosting company to help. Thanks! I uploaded a folder named video, with

  • Quality of digital zoom in N-82

    Currently I use N-93i with optical zoom. Can anyone say how good is the quality of digital zoom especially when shooting videos. I use my N-93i for lot of video shooting and the feedback on the topic help me take a decision. Conversely should I wait

  • How to specify in TS unsigned long? unsigned short?

    Hi, I'm lusing a c/c++ step type from TestStand. I need to use a structure whose fields according to the h file of the dll are: unsigned char unsigned long unsigned short Now, when I define a container in TestStand (to interface with the dll structur

  • N86 system error when connecting to college wifi?

    when i try to connect to college wifi i input the settings required and install certificates because it is wpa2 enterprise and i connect but when i want web browse or open app with wlan it comes up with system error and exclamation mark. how can i fi