Are these steps correct  for ALE configuaration ?

1.An ALE Configuration we have to do five steps
a)Define logical System (SALEsending and receiving system logical systemdefine logical system)
b)Assign client to the logical system( SALEsending and receiving systemlogical system Assign client to the logical system)
c)We have to define port at (WE21)
d)GENERATING PARTNER PROFILES(WE20)
e)Define target system for RFC calls (sm59)
f)Creating Distribution model (BD64)
g)WE42 for creating process code.
h)Send Data ( bd10)
i)Get Data(bd11)
j)BD51
k)WE57
We have to repeat the FIRST 6 steps for each of the sender and receiver and those are compulsory. I am not yet clear about the last 5 steps.
E.g. our sender is 200 and receiver is 400
So for each of them we have to do the 5 steps twice.

folow the link
http://searchsap.techtarget.com/general/0,295582,sid21_gci1130337,00.html
/people/kevin.wilson2/blog/2006/11/13/ale-scenario-development-guide
which will givw u the steps for ale configuration
steps are
. ALE->Sending and Receiving Systems->Logical Systems->Define Logical System. a. Here you add the name of the logical system for the distributed system. To make them easy to find I like to name them based on instance/client so in the case of the system listed above I would call it DM7200. This naming convention makes it easy to follow in various systems.
2. ALE->Sending and Receiving Systems->Logical Systems->Assign Client to Logical System.
a. In this step you assign your logical system to a particular client. WARNING: DO NOT CHANGE THIS IF IT IS ALREADY CONFIGURED!!! That holds especially true on an FI system as it cannot be changed once it is set. Make sure to discuss this with the Basis team before entering the data.
3. ALE->Sending and Receiving Systems->Systems in Network->Synchronous Processing->Determine Target System for RFC Calls
a. This area allows you to tell SAP where to make RFC calls based on the logical system. That means that when I want to look up Vendor information in cases like infotype 194 and 195 where a function module is called that I can tell the system where to go to find that information. To configure this you should make sure that the system where the financial information will be kept is listed.
4. ALE->Modelling and Implementing Business Processes->Maintain Distribution Model and Distribute Views
a. In this step we will define where the FI data comes from and what data we expect to receive. We will also define the system that will be receiving the payroll posting and what data we will be sending that system.
b. SAP Recommends the following list of messages to be received from the financial system:
i. COACTV-IDoc for cost center/activity type
ii. COAMAS-Master activity type
iii. COELEM-Cost Element Master Data
iv. COGRP1-Cost Center Groups
v. COGRP2-Cost Element Groups
vi. COGRP5-Activity Type Groups
vii. COSMAS-Master Cost Centers
viii. CRECOR-Core Vendor master data distribution
ix. CREMAS-Vendor master data distribution
x. GLCORE-Master data G/L accounts (CORE IDoc)
xi. GLMAST-Master data G/L accounts (master IDoc)
xii. PRCMAS-Profit center master record
xiii. RCLROL-Reconciliation ledger rollup
c. To add these messages you can follow the steps listed here:
i. Go into change mode by clicking on the pencil/glasses button or Distribution model->Switch Processing Modes via the menu
ii. Click on the Create Model View Button
Fill in the data for your model. Below is my example.
iii. Now it is as simple as adding message types. Click on the Add message type button and enter the required data. The sender is the FI system and the receiver is the Payroll system. Tip: Once you add the first message type if you select it before adding the next message you will only need to fill out the message portion and not the sender and receiver
iv. Now we need to build the partner profiles so that the systems know where the distribution model needs to get or put things. To do this go to Environment->Generate Partner Profiles.
Enter the partner system you want to use and press execute or F8.
This screen shows the successful creation of the partner profiles. If you want to see them can go to transaction WE20.
v. Now we must send the model to the other system. To do this use menu path Edit->Model View->Distribute
Now I should be able to see this model in my FI system, in this case, DM3. I can take a look at this via transaction BD64 in the other system
You'll notice that the coloring on the messages and models is in gray. This indicates that the model is maintained in another system.
d. We also have to configure the model for posting to the other system. In this case we will be using BAPI's and not message types. SAP recommends the following BAPI's:
i. AcctngServices.DocumentDisplay, Accounting: Display Method for Follow-On Document Display
ii. AcctngEmplyeeExpnses.Post, Accounting: Post G/L Acct Assignment for HR Posting
iii. AcctngEmplyeeRcvbles.Post, Accounting: Post Cust. Acct Assignment for HR Posting
iv. AcctngEmplyeePaybles.Post, Accounting: Post Vendor Acct Assignement for HR Posting
e. For the most part the steps are the same as above but it is slightly different because you use the Add BAPI button instead of the Add Message Type. BAPI's are case sensitive so you'll need to be exact.
<REMOVED BY MODERATOR>
<REMOVED BY MODERATOR>
Edited by: Alvaro Tejada Galindo on Feb 22, 2008 2:27 PM

Similar Messages

  • Creating RMAN catalog. Are these steps correct?

    Are these steps to set up the RMAN catalog correct?
    I.
    The following two databases are the target databases which needs to be backed up.
    1. a 11.1.0.7.0 database
    2. a 10.2.0.1.0 databaseII.
    Catalog schema in a 10.2.0.4.0 database called catdb.
    III.
    I am going to use the RMAN client(10.2.0.1.0) in my laptop (Windows Server 2003).
    CATALOG schema creation
    =======================
    To create the Catalog Database (10.2.0.4.0), this what i am going to do in catdb
         a. create tablespace CAT_TBS
         b.     CREATE USER rman_cat_schema
              IDENTIFIED BY rman_cat_schema
              DEFAULT TABLESPACE cat_tbs
              TEMPORARY TABLESPACE temp
              QUOTA UNLIMITED ON cat_tbs;
         c.      GRANT create session TO rman_cat_schema;
         d.      GRANT recovery_catalog_owner TO rman_cat_schema;
         e.      GRANT execute ON dbms_stats TO rman_cat_schema;
       f. Invoke the <font color="red"><b>RMAN binary from my laptop</b></font> :
                  C:\>set ORACLE_SID=catdb
               C:\>rman catalog rman_cat_schema/rman_cat_schema@catdb log=catalog.log
                               Hopefully Catalog will get the created at catdb .
    Registering the database
    =========================
    To register the database,this is what i am going to do.
         a. Add the Tns Entry about the catdb in tnsnames.ora file of the target database
         b. Log in to target database's machine and invoke the<font color="red"><b> RMAN executable in the target database. </b></font>
            $  export ORACLE_SID=oraprod314
            $  rman TARGET / CATALOG rman_cat_schema/rman_cat_schema@catdb
                 c. Then i can give the REGISTER DATABASE command. like
                 $rman > register database;
            Edited by: Citizen_2 on 14-Sep-2009 11:46

    Yes, You can connect to RMAN catalog using a lower version client. see this.
    SQL> conn rman/rman@mycatdb
    Connected.
    SQL> select * from rcver;
    VERSION
    11.01.00.06
    SQL>
    rman
    Recovery Manager: Release 9.2.0.7.0 - 64bit Production
    Copyright (c) 1995, 2002, Oracle Corporation. All rights reserved.
    RMAN> connect target /
    connected to target database: STSTDB (DBID=2045697105)
    RMAN> connect catalog rman/rman@abcd.
    connected to recovery catalog database
    RMAN>
    You can take the backups and do recoveries. But, if you want to achieve certain features of the recovery catalog of higher versions to backup / recover your database, you better use the right RMAN client which allows the features to use.
    It is always advisable to use the RMAN Client same as the database version you want to backup to avoid any confusions.
    Hope it is helpul.
    Regards
    Edited by: vasu77 on Sep 15, 2009 10:01 AM
    Edited by: vasu77 on Sep 15, 2009 2:11 PM

  • JDBC-Adapter - Are these Properties Correct?

    Hi,
    I am trying to execute a stored procedure on a Microsoft MSSQL Server via the JDBC Adapter.
    The adapter is installed like it is described in the Driver-Manual and I configured the Adapter according to the User-Manual of the driver. But it doens't work.
    Are these properties correct?!
    http://www.devilstorm.com/downloads/jdbc.jpg
    Thank you for your help
    Thomas

    1. Did you check whether your communication channel is active and in green status in the adapter monitor ?
    2. If it is in the error status what is the error ? If it is in green status does it say it last polled at date and time ?
    3. it is not call ZZ_COPA_ZCHECK, it should be EXEC ZZ_COPA_CZECH.
    One other thing is you do not have a namespace, click on Advanced Mode (Erweiterter Modus) and add
    Name = docNamespace
    Value = <your namespaece>
    regards
    SKM

  • HT1751 Are these instructions correct?  They don't mention the ITL file...

    Are these instructions correct?  They don't mention the ITL file...

    I'd say they are generally correct, however they don't account for the circumstances in which, following advice given elsewhere in Apple's support documents, the media folder is no longer contained inside the main iTunes folder. This can happen when the media has been consolidated elsewhere,, e.g. an external drive, due to space constraints. This creates what I call a "split library". In such cases the media folder and iTunes folder (holding the .itl database) each need to be backed up and, when restoring, the media folder must be restored to exactly the same path or iTunes will have trouble connecting to the media.
    Should you have created a split library that you'd like to reconnect see make a split library portable.
    There is some odd numbering on the support doc. page so I can't give a section number, but the bit on where to find your iTunes folder doesn't make it clear that the "iTunes" (or "library") folder is normally the parent folder of the "iTunes Media" folder shown in the dialog box, and that they are not the same thing. I suspect this is one of the reasons that some users manage to migrate or restore their media only to find they have lost playlists, ratings, play counts etc.
    Another issue with the article is that it provides a way to backup the library once, but not to efficiently maintain that backup. Deleteing the entire backup to regenerate it would be a waste of time and potentially risky. See this iTunes backup tip for a suggested strategy.
    tt2

  • What are the steps requried for r/3 to xi and xi to r/3 configuraiton ?

    Hi Experts
    What are the steps requried for r/3 to pi 7.1 and pi 7.1 to r/3 configuraiton ?
    Thanks & Regards
    G.Praveen Kumar
    Edited by: praveen.tecnics on Apr 1, 2009 4:51 PM

    In case of RFC already signature will be defined in R/3 itself the same will there in PI too after importing .
    In case of idoc also you just need to import for the usage and can be used depending on scenario
    if the above answers doesnt suite your question then can you post query in detailed way
    In case of Configurations
    RFC destination types differ for idoc and RFC
    in idoc SM59 Type 3 conection you need to create
    for RFC you need Type T connection
    HTH
    Rajesh

  • ACE 4710 what are these ports used for?

    Hello, what are these ports used for please? What can I do with them?
    Thank you
    Sent from Cisco Technical Support iPhone App

    Hi Bilal,
    They are reserved for future use. Please have a look at the link below:
    http://www.cisco.com/en/US/docs/app_ntwk_services/data_center_app_services/ace_appliances/4710/hardware/installation/guide/Overview.html#wp1043136
    Regards,
    Kanwal

  • TS3274 Videos won't play.  Not YouTube or any other videos.  I also have no sound.  Are these common failures for a three year old gen 2  iPad?

    Videos won't play.  Not YouTube or any other videos (just started today).  I also have no sound, keypad clicks, shutoff click, etc.  Are these common failures for a three year old Gen 2 iPad?

    For the issue with the videos that will no longer work, try closing all apps and then reboot the iPad.
    Tap the home button once. Then tap the home button twice and the recents tray will appear at the bottom of the screen. Tap and hold down on any app icon until it begins to wiggle. Tap the minus sign in the upper left corner of the app that you want to close. Tap the home button twice.
    Reboot the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider if it appears on the screen - let go of the buttons. Let the iPad start up.
    For the issue with sounds, you have system sounds muted.
    Check the side switch above the volume rocker on the side of the iPad. Flip it the other way and see if you get sound from the apps, keyboard clicks, etc.
    If not, double tap the home button to bring up the task bar at the bottom. In the task bar swipe all the way to the right. Look on the far left side and see if there is a speaker icon. If there is, tap it and see if the sounds on apps come back. Then tap the home button.
    You can change how the side switch works to either lock screen rotation or to mute system sounds. You can go to Settings>General>Set Side switch to Lock Rotation or mute. If you choose mute, the switch will turn off apps sounds. Otherwise you use the task bar as described above to mute those sounds.
    This support article from Apple explains how the side switch works.
    http://support.apple.com/kb/HT4085

  • HT2463 Are these ports correct?

    Are these ports correct? NTP more usually uses UDP as does DNS. Also, we found that we needed to open TCP5223 as well.

    Don't worry, the numbers are correct.
    In Intel's calculation, FSB is calculated as Quad Rate, so you'll have to mutiply the reported FSB by 4 which is 200MHz x 4 = 800MHz.

  • How to get the step-by-step procedure for ALE senarios?

    Hi all,
    I want the Step-by-step procedurre for the ALE senarios for MM
    if any one did in real time plz can u share it with me(if possible with screen shots).
    Tks
    durusoju

    hi
    CATSDB CUSTOM IDOC TRANSFERMATION BETWEEN 2 DIFFERENT APPLICATION SERVERS
    For this scenario Client 800 of application server SAPADM is the Sender and client 800 of application server SAP-REMOTE is the Receiver
    1. Creating Logical Systems
    o       Login using 800 client
    o       Go to T. Code SALE
    o       Expand Sending and Receiving Systems
    o       Expand Logical Systems
    o       Click on Define Logical System
    o       Click on New Entries
    o       Create CATSSENDER, ECC Logical Systems
    o       Save and come back
    o       Assign the CATSSENDER Logical System to client 800 of Application Server SAPADMAssign the ECC Logical System to client 800 of Application Server SAP-REMOTE
    2. Creating the RFCs
    o       Go to T. Code SM59
    o       Expand R/3 Connections
    o       Enter RFC Name as CATSSENDER
    o       Connection Type as 3
    o       Language as EN
    o       Client as 800
    o       User as SAPUSER
    o       Password as YESV13
    o       Target host as SAPADM
    o       Click on Remote logon button to test the RFC
    o       Enter RFC Name as ECC
    o       Connection Type as 3
    o       Language as EN
    o       Client as 800
    o       User as SAPUSER               
    o       Password as YESV123
    o       Target host as SAPADM                                                                               
    o       Click on Remote logon button to test the RFC
    3. Creating the Message Type
    o       Go to T. Code WE81
    o       Click on change, continue
    o       Click on New Entries button
    o       Give message type as ZCATSTIME and description
    o       Save and back
    4. Creating the Segment
    o       Go to T. Code WE31
    o       Give segment name as ZSEGMENTTIME
    o       Enter Short Text
    o       Enter the Field Name and Data Element in the text boxes
    o       Save, continue,
    o       Click on Edit -> Set Release
    5. Creating the Basic IDOC Object
    o       Go to T. code WE30
    o       Give obj. name as ZTIMEIDOC
    o       Click on create
    o       Select create new radio button, give description and continue
    o       Select the IDOC obj name and click on create button
    o       Enter the segment name which is create earlier
    o       Select the check box if you want to make the segment mandatory
    o       Enter 1 in minimum number 99999 in maximum number, continue
    o       Save and backo       Click on Edit -> Set Release
    6. Creating Customer Distribution Model
    o       Go to T. Code BD64
    o       Click on change and Create model view button
    o       Enter the short text and Technical name as CATSSENDER
    o       Select the model and click on Add Message Type Button
    o       Give the Sender as CATSSENDER,
    o       Receiver as ECC,
    o       Message Type as ZCATSTIME
    o       Select the model view & click on Environment -> Generate Partner Profiles
    o       Select Transfer IDOC Immediately and Trigger Immediately radio buttons
    o       Click on Execute
    o       You should get a list in green color which means it executed successfully.
    o       Back to main screen, select the model view
    o       Click Edit->Model view->Distribute
    o       Click on continueo     
    You should get a list saying model view is distributed successfully.
    7. Checking the Port
    o       Go to T. Code WE21
    o       Expand Transactional RFC
    o       Find the port from the list which is created using BD64 for ECC (Receiving system) RFC Destination.
    8. Checking the Partner Profiles.
    o       Go to T. Code WE20
    o       Expand Partner Type LS
    o       Select the Partner profile ECC
    o       Double click on Message Type ZCATSTIME in Outbound parmtrs.
    o       Check Receiver Port is assigned correctlyo     
    Check the Basic type as your Basic IDOC object.
    9. Assigning the Message Type to Basic IDOC Object
    o       Go to T. Code WE82
    o       Click on Change & continue, New Entries button
    o       Give the Message type as ZCATSTIME
    o       Give Basic Type as ZTIMEIDOC
    o       Release as 4.6C
    o       Save and back10. Creating Inbound Function Module (Posting Program)
    o       Go to T. Code SE37
    o       Create a function Module ZCATSDB_TIMESHEET_SURESH
    o       Set the Processing type as Remote Enabled Module and mode as start immed, in Attributes Tab.   
    o       Import Parameters
              P_WORKDATE                    LIKE               CATSDB-WORKDATE
              P_COUNTER                        LIKE               CATSDB-COUNTER
              P_LSTAR                               LIKE               CATSDB-LSTAR
    o       Export Parameters
    o       Tables 
                 S_PERNR                      LIKE           ZCATSPERNR
    [PERNR is select option parameters in ZCUSTOMIDOC report program so that it should be passed to function module ZCATSDB_TIMESHEET_SURESH in tables section. And also in tables section we used ZCATSPERNR, which is a global structure, which contains four fields as
    Ø     SIGN
    Ø     OPTION
    Ø     LOW
    Ø     HIGH]
    o       Exceptions
    o       Source Code
    FUNCTION zcatsdb_timesheet_suresh.
    ""Local interface:
    *"  IMPORTING
    *"     VALUE(P_WORKDATE) LIKE  CATSDB-WORKDATE
    *"     VALUE(P_COUNTER) LIKE  CATSDB-COUNTER
    *"     VALUE(P_LSTAR) LIKE  CATSDB-LSTAR
    *"  TABLES
    *"      S_PERNR STRUCTURE  ZCATSPERNR
      TABLES: catsdb, edidc, edidd. " using structures of catsdb, edidc, edidd
      CONSTANTS: c_doctyp TYPE edidc-idoctp VALUE 'ZTIMEIDOC',  " idoc type
                 c_segnam TYPE edidd-segnam VALUE 'ZSEGMENTTIME',   "segment type
                 c_mestyp TYPE edidc-mestyp VALUE 'ZCATSTIME'.   " message type
    *001 comment begin
         creating internal tables with out header lines for catsdb, edidc, edidd and also
    -           work areas
    *001 comment end
      DATA: it_edidc  TYPE edidc OCCURS 0,    "  control internal table with out header line
            it_edidd  TYPE edidd OCCURS 0, " data internal table with out header line
            wa_catsdb TYPE it_catsdb1,  " work area for it_catsdb internal table
            wa_edidc  TYPE edidc,  " work area for it_edidc internal table
            wa_edidd  TYPE edidd,  " work area for it_edidd internal table
            wa_zsegmenttime TYPE zsegmenttime, " work area for zsegment internal table
            v_occmax  TYPE idocsyn-occmax,
            v_nbseg   TYPE i.
      CLEAR wa_catsdb. " clears work area of catsdb
      CLEAR wa_edidc.  " clears edidc work area
    *002  comment begin
    Save the message type and the basic IDoc type in the control segment.
    *002 comment end
      MOVE c_mestyp TO wa_edidc-mestyp. " assigning custom message type to edidc workarea
      MOVE c_doctyp TO wa_edidc-idoctp. " assigning custom idoc type to edidc workarea
    *003 comment begin
    Retrieve the maximum number of segments in the basic IDoc type.
    *003 comment end
      SELECT MIN( occmax ) FROM idocsyn INTO v_occmax WHERE idoctyp EQ c_doctyp AND segtyp EQ c_segnam.
    *004 comment begin
    Save the whole CATSDB table content in the IT_ZCATSDB internal table.
    *004 comment end
      SELECT pernr workdate lstar counter FROM catsdb INTO CORRESPONDING FIELDS OF TABLE it_catsdb WHERE pernr IN s_pernr AND workdate EQ p_workdate.
    *005 comment begin
    Create a data segment for each line of IT_ZCATSDB.
    *005 comment end
      IF sy-subrc EQ 0.
        LOOP AT it_catsdb INTO wa_catsdb WHERE pernr IN s_pernr.
          MOVE-CORRESPONDING wa_catsdb TO wa_zsegmenttime.
          CLEAR wa_edidd.
          MOVE c_segnam TO wa_edidd-segnam.
          MOVE wa_zsegmenttime TO wa_edidd-sdata.
          APPEND wa_edidd TO it_edidd.
          CLEAR wa_catsdb.
          CLEAR wa_zsegmenttime.
        ENDLOOP.
      ELSE.
        MESSAGE 'NO DATA FOUND FOR GIVEN SELECTION' TYPE 'I'.
      ENDIF.
    *006 comment begin
    Count the number of data segments.
    *006 comment end
      DESCRIBE TABLE it_edidd LINES v_nbseg.
    *007 comment begin
    If the number of data segments exceeds the maximum allowed number,then display an error message.
    *007 comment end
      IF v_nbseg GT v_occmax.
        MESSAGE  'IDOC ERROR Message' TYPE 'E000'.
      ENDIF.
      CALL FUNCTION 'MASTER_IDOC_DISTRIBUTE' " for creating an catsdb idoc
      EXPORTING
      master_idoc_control = wa_edidc
    OBJ_TYPE = ''
    CHNUM = ''
      TABLES
      communication_idoc_control = it_edidc
      master_idoc_data = it_edidd
      EXCEPTIONS
      error_in_idoc_control = 1
      error_writing_idoc_status = 2
      error_in_idoc_data = 3
      sending_logical_system_unknown = 4
      OTHERS = 5
       IF sy-subrc <> 0.
         MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
         WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
       ENDIF.
    ENDFUNCTION.
    Save, check and activate
    111. Assigning the Inbound Function Module to Basic Type & Message Type
    o       Go to T. Code WE57
    o       Click on change, continue, continue and New Entries Button
    o       Enter the Module as ZCATSDB_TIMESHEET_SURESH Type as "F"
    o       Basic Type as ZTIMEIDOC
    o       Message Type as ZCATSTIME
    o       Direction as 2
    o       Save and back
    Now Login in 800 client of Application Server SAP-REMOTE
    12. Assigning the Inbound Function Module in ALE Table
    o       Go to T. Code BD51
    o       Click on continue, New Entries button
    o       Give the Inbound Function Module ZCATSDB_TIMESHEET_SURESH
    o       Give Input t. as 0 (zero)
    o       Save and back13. Creating Process Code
    o       Go to T. Code WE42
    o       Click on Change, New Entries Button
    o       Give Process Code name as ZCATSDB, give Description & Save
    o       Select Processing with ALE Services Radio button
    o       Select Processing by Function Module Radio button
    o       Click the ALE Table (arrow Icon) in Identification
    o       Give the Function Module Name ZIDOC_INPUT_ZBAPI_STUD_MAS
    o       Give maximum number of repeats 0
    o       Save and back, back
    o       Select the process code from the list & click on Logical Messages Icon
    o       Give the Message Type as ZCATSTIME
    o       Save & Back, Save & Back, Save & Back
    14. Changing the Customer Distribution model in receiving system
    o       Go to T. Code BD64
    o       Click on change and Create model view button
    o       Enter the short text and Technical name as CATSECC
    o       Select the model view & click on Environment -> Generate Partner Profiles
    o       Select Transfer IDOC Immediately and Trigger Immediately radio buttonso       Click on Execute You should get a list in green color which means it executed successfully.15. Assigning the Process Code to Message Type in Receiving System
    o       Go to T. Code WE20
    o       Expand Partner Type LS
    o       Select the Partner Profile CATSSENDER
    o       Double click on Message Type ZCATSTIME in Inbound parmtrs.
    o       Give the Process Code as ZCATSDB
    o       Click on Trigger Immediately Radio button
    o       Save & Back
    Save & Back
    16. Creating the Selection Program (Outbound Program)
    -         Login in client 800.
    -         Go to T. Code SE38
    -         Create a Report Program as ZCUSTOMIDOC with the following code
    REPORT ZCUSTOMIDOC
           NO STANDARD PAGE HEADING.
    TABLES:catsdb. " using structure of cats db table
    *000 comment begin
         this selection screen contains one select option and one parameter
    *000 comment end
    SELECTION-SCREEN: BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
    SELECT-OPTIONS pernr FOR catsdb-pernr.
    PARAMETER: workdate LIKE catsdb-workdate,
              LSTAR like catsdb-LSTAR,
              COUNTER like catsdb-counter.
    SELECTION-SCREEN: END OF BLOCK b1 .
    DATA: wa_val TYPE i.
    wa_val = pernr-high - pernr-low.
    *001 comment begin
          calling custom function module
    *001 comment end
    CALL FUNCTION 'ZCATSDB_TIMESHEET_SURESH'
      EXPORTING
        p_workdate = workdate " passing workdate parameter
        p_LSTAR = LSTAR
        p_counter = counter
      TABLES
        s_pernr    = pernr. " passing pernr select option
    IF sy-subrc EQ 0.
      MESSAGE i000(zaluri) WITH 'IDOCS CREATED FOR EMPLOYEES BETWEEN' pernr-low ' AND ' pernr-high .
    MESSAGE i000(zaluri) WITH   'IDOCS CREATED FOR EMPLOYEES BETWEEN' PERNR-LOW 'TO' PERNR-HIGH.
    gives information message if idocs are created for given  employees
    ELSE.
      MESSAGE e000(zaluri) WITH 'NO IDOCS CREATED FOR EMPLOYEES' pernr-low  'TO' pernr-high. " gives error message
    " if idoc is not created
    17. Transferring the CATSDB records from sender Application Server SAPADM   to  receiver Application Server SAP-REMOTE
    -         Execute Report Program ZCUSTOMIDOC
    -         Give the Range of PERSONNEL NO'S, Date, Activity Type, Counter to Transfer
    -         Give Message Type as ZCATSTIME
    -         Give Receiver Logical system as ECC
    -         Execute
    -         You should get the IDOC Number
    -         Take the IDOC Number and go to T. Code WE05 & Execute
    -         In Outbox you can see the IDOC Status
    -         Select the status record in left side window
    -         Double click on the Status record in right side window-         You can see the Control Record, Data Record and Status Records for that IDOC
    If the ICON is green and the status code is 3, it means the IDOC is passed to PORT Successfully
    18. SENDING IDOCS FROM APPLICATION SERVER SAPADM
    TO APPLICATION SERVER SAP-REMOTE USING WEDI
    -         Go to T. Code WEDI & execute or T. Code WE19
    -         Give idoc number it is generated recently
    -         Continue & double click on segment to view data in segment
    -         Click on EDIDC to give port, partner no, message type, partner
    type of receiver. [For sender no need to give any port no leave it as
    blank]
    -         Click on Standard Outbound Processing button and click continue
    -         You will get a message as idocs successfully transferred
    Now Login in Receiver 800 client
    -         Go to T. Code WE05 & Execute
    -         You can see the status record in left side window
    -         If the status no is 53 and color is green, it means the IDOC is posted to Application successfully.
    -         You can see the Log Information by double clicking on the status record in right side window.
    -         Now in left side window, you can see the Control Record, Data Record & Status Record of the IDOC
    -         Now go to T. Code SE16
    -         Give the table name CATSDB & press F7
    -         See the contents of the table
    -         The table is updated with the catsdb records transferred from 800 client with our selection program.
    reward if u find use ful
    regards
    Nagesh.Paruchuri

  • Are these Chargers good for an iPod?

    Hey everyone. Listen, today I went in town and had some time to buy some stuff.
    Now i needed a charger for my iPod Touch 4G. I didn't buy the one from apple with 30 euro, i just got something else, that should do the same job.
    But I'm a bit unsure that it's working well.
    On the back if I can read:
    Input: 100-240VAC
              0.3A 50-60HZ
    Output: 5VDC---1A
    And the one for the car is like:
    Input: 12-24Vdc
    Output: 5.0Vdc --- 700mA
    Now I don't know if this is healthy for the iPod. Is it? o.O
    I used the one for the car (and i think the iPod is heating). That doesn't look good...
    Is this my imagination? or do these things really hurt the iPod?
    One other funny thing that happens. When I used these chargers, for some reason, the Audio disappears. If I open up music and so on, the volume level bar is vanished.... is that normal?
    Anyway, the main question is: Are these things safe??? o.O
    Thanks

    I use a basic Samsung phone charger for my Ipod Touch. It outputs the same 5.0v --- .7 A.
    When it overheats, thats just the battery charging.
    I've used the same charger on all my ipods for 3 years now.... and they all have continued to work just fine...
    You can use them safely.
    Other then that, I have absolutley no idea why your audio bar may dissapear. It's most likely a powersaving feature... In otherwords, check your settings.
    Hope This Helps

  • What are these recovery disk for??46066​8-001, 460669-001 and drivers 466267-B22

    I had purchased these recovery disk for a laptop that I was repairing. I want to give them to the person but need to kow what laptop they go to. The first two are recovery and the third is the applications disk.

    Hey,sc6lou.
    What notebook did you order those disk for ?
    Is there anything else on the cover of the disk or just the # ?
    THX

  • Are my settings correct for .m2t transfer through mpeg streamclip?

    hello,
    i shot a video on the **sony hvr z7u** using compact flash cards and the video was shot on 1080i ...all the files are currently in m2t...
    i used mpeg streamclip and used the follow settings:
    -apple pro res 422 codec
    -100 percent quality
    -uncompressed sound
    -frame size: 16:9
    -interlaced scaling was checked
    are these acceptable? some of the footage doesnt look good with dark colors, but it might just be the way it is shot...
    thank you!
    steven

    The Holy Grail in M2T conversion. Say it 3 times: clipwrap clipwrap clipwrap
    The only program that easily rewrap m2t files into QuickTime movies Faster than transcoding
    No generation loss. I have an nNovia Digital Drive to record my HD files from a Canon XH A1 camera. The M2T files were horrible to work with. No converter worked. Sound did not sync, Video artifacts, unusable. I downloaded trial- converts first minute and it worked GREAT! Bought it $49.99 very fast conversion. NO LOSS! I am in love! http://www.clipwrap.com

  • Newbie ? Are these settings normal for K7T Turbo2?

    Greetings All,
    First I would like to say I really enjoy this forum. I have learned much. Also I would like to say that I am fairly new at putting together systems so if my questions are basic please forgive me. Thanks for your patience and your willingness to teach. OK, here is my system and my questions:
    K7T Turbo2 v.5
    Duron 800
    2 sticks 128meg = 256
    PSU Sparkle 300w; 150w combined (according to sales slip)
    Asus 7100 Geforce 2mx 32 meg
    SB 128 pci sound card
    Western D 80gig special
    Acer 52x CD
    LiteOn 48x12x48
    Win 98se
    Most curent VIA drivers
    I think that about covers it.
    The questions:
    1) I have seen a lot of discussion about voltage seetings so I am wondering if mine are normal? They are as follows:
    Vcore = 1.55v
    5v = 5.05v
    3.3v = 3.27v
    12v = 11.60v
    2) This may need to be in the BIOS group but what are the optimum seetings for this board and my stuff?
    3) When I boot up I notice that just about all my hardware is using IRQ11. Is this normal?
    4) A while back I saw a lot discussion about ACPI. Is it best to use it or not? If you turn it off do you have to reload your OS?
    I think that about does it for now. Thanks again for your help.
    Dave

    Ian,
    Not that I am very technical and do sometimes get mixed up in my own settings...
    I got a canon A1 and use the easy set up for HV 1080i50 on interlaced footage
    and 1080p25 for the '25f' footage. When using the de-interlaced filter I hit the
    upper field and I am having a major headache from time to time with sequence
    settings and field dominance in particular with interlaced footage but do experiment
    quiet abit to my even larger frustration. I do find the '24f' frames quite pleasant to
    look at - maybe it is just because it is easier to work with I dont know, but interlaced
    got a reputation of being difficult.
    Likewise as far as I am aware then the '25f' canon setting is as good as progressive
    some will even say 'same'. check out more here
    http://www.dvinfo.net/conf/forumdisplay.php?f=138
    Henrik

  • Step by Step procedure for ALE

    Dear Friends,
    Can anyone please post the step by step procedure of creating ALE with an example.
    Regards
    SN

    Hi,
    Follow the below steps outbound side for IDoc transfer.
    1. Create logical system (t-code BD54)
    2. Assign client to logical system (t-code SCC4)
    3. Create Ports (t-code WE21)
    4. Create Partner Profile (t-code WE20)
    5. Create Distribution model (t-code BD64)
    At the inbound side,
    1. Create logical system (t-code BD54)
    2. Assign client to logical system (t-code SCC4)
    3. Create Partner Profile (t-code WE20)
    4. At the outbound side, once you create the distribution model, select the model, and from the menu bar, select, Edit->Model view->distribute.... this will create the model view at the receiver.
    Now use the respective transactions to send the respective customer or vendor or....of ur need.
    ~ Bineah

  • What are these duplicate charges for?

    Dear responce
    youtake from my card No.****************  ( 73.84 TL on 28/04/2014 and 73.84 TL on 28/04/2014 on same day and 73.67 TL on 01/05/2014  and 29.10 TL on 11/05/2014 ) it is about 250.54 TL  and my bank told me that you take mony bifour and i did not have it in my account
    olmust they say is not charged
    and from the bank you have charjed otomaqticly same amount on this month i will get statment on end of this month
    Please advice
    Post transferred to create its own new topic;
    subject/title amended accordingly;
    personal information redacted to maintain privacy.

    Yet, if these fonts are applied to text, standard English characters are displayed.
    Well, yes, because changing the font should not change the character set -- i.e., changing the text "Russian" to a font containing Cyrillic should not change the text to "Русский". It's just circumstantial these fonts also contain Latin characters; if they wouldn't, the text would change to pink boxes (indicating 'missing glyph').
    The fonts are set apart because ID uses some sort of classification, probably based on the Unicode coverage per font; it seems to group per script. Browsing my list, I see separations between fonts for Chinese, Japanese, Korean (?), Arabic, Thai, and Hebrew.

Maybe you are looking for

  • Reg.Account group creation in for FS00

    Dear Alll I try to create PR in our ides system all entries I done and after entering the sale order ask for GL account number,if I give the GL account which I created(in FP01) telling the same error 'GL account not yet created'. Let it be one side I

  • IOS8 erased all my diaries/projects from IPhoto!

    Why in heavens name has Apple erased IPhoto in IOS8?! I have many diaries and projects I have developed over the years, and then all of a sudden I can't access IPhoto. Try again apple! If I can't access my work, travel diaries and projects from my we

  • Remembering directories when importing photos

    When I do "Import Photos", "Copy Photos to a new location and Import", and I click on the "Choose" buttons, I would like the browser that opens to remember the last directory I used, and start browsing from there. Currently it starts from the Desktop

  • Can I delete photos from iPhoto that were used in an iMovie Project?

    I made an iMovie Project with a lot of photos from iPhoto. I don't want some of the photos anymore. I would like to delete them from iPhoto but I am afraid it might affect the iMovie Project. Does any body know?

  • Can't get a SWF that will display the content by itself

    Hi all, I was able to use the (for example) main.swf as a single stand-alone file until I upgraded to Cat CS5.5. Where is the output to just a basic SWF??? They will display it with the associated html, etc. though in a browser. I am using the SWF as