What is an Infotype header?

please tell me that also. iam preparing for job iam a fresher i don't have any experience in sap-hr.so ,please help me in that
<Moderator Comments: Pl do not use all caps>

Hello,
The headers displayed on each infotype and on the initial PA20/PA30 screen is configurable. The relevant IMG path is:
Personnel Mgmt > Personnel Admin > Customizing User Interfaces > Define Screen Header
The infotype header is just the 3 lines in the header part (with personnel number, name, EE group. EE subgroup, etc)
Here are the 3 main tables : V_T588J Header Modifier Definition
V_T588I Header Modifier to Screen Header
V_582A_B Screen Header to Infotype
that you will find in the IMG path above.
Hope it helps,
Christine

Similar Messages

  • Photo upload in infotype 2, or infotype header

    Can anyone tell me in detail how to upload photo of employee in infotype header and what all needs to be done in terms of basis also , archieve link or something.  I know oAAD but how does that linkage happen.

    Solution in https://wiki.sdn.sap.com/wiki/display/ERPHCM/Add%20Employee%20Photo%20on%20Infotype%200002?showChildren=false is very good.
    Mass upload program ZHR_BDC_UPLOADPIC requires input every file path for photos in dialog window.
    I have improved this process:
    1. Made a copy of program OANEWCON (program in transaction OAOH)  ZOANEWCON (hung on new transaction ZOAOH)
    inserted two lines  allow to pass a path as a parameter to this program:
    PROGRAM ZOANEWCO MESSAGE-ID OA.
    TABLES: TOAV0, TOAOM, TWFDB, TOAPA.
    DATA: KEY LIKE OJINT-KEY.
    DATA: OBJECT LIKE OJINT-NAME.
    DATA: OBJECT_ID LIKE TOAV0-OBJECT_ID.
    DATA: ARCHIV_ID LIKE TOAV0-ARCHIV_ID.
    DATA: ARC_DOC_ID LIKE TOAV0-ARC_DOC_ID.
    DATA: ABLAGEDATUM LIKE SAPB-SAPABLDATE.
    DATA: AR_DATE LIKE TOAV0-AR_DATE.
    DATA: DEL_DATE LIKE TOAV0-DEL_DATE.
    DATA: SAP_OBJECT LIKE TOAOM-SAP_OBJECT.
    DATA: AR_OBJECT LIKE TOAOM-AR_OBJECT.
    DATA: EXPIRY_TIM LIKE TOAOM-EXPIRY_TIM.
    DATA: METHOD LIKE OJINT-METHOD.
    DATA: RETURN LIKE OJINT-RETURN.
    DATA: PARAMETER LIKE OJINT-PARAMETER.
    DATA: BEGIN OF I_TOAV0 OCCURS 1.
            INCLUDE STRUCTURE TOAV0.
    DATA: END OF I_TOAV0.
    DATA: BEGIN OF I_TOAOM OCCURS 1.
            INCLUDE STRUCTURE TOAOM.
    DATA: END OF I_TOAOM.
    DATA: BEGIN OF FIELDS OCCURS 1.
            INCLUDE STRUCTURE OJFIELDS.
    DATA: END OF FIELDS.
    DATA: OK_CODE(4)         TYPE C,
          OK_CODE_SAVE(4)    TYPE C.
    DATA: CREATE(2) VALUE '01'.
    DATA: infile(70).
          MODULE INIT0100 OUTPUT                                        *
    MODULE INIT0100 OUTPUT.
      SET TITLEBAR '000'.
      CLEAR: OBJECT, AR_OBJECT.
      SET PF-STATUS 'POPU100'.
    ENDMODULE.
          MODULE EXIT_BEARBEITEN INPUT                                  *
    MODULE EXIT_BEARBEITEN INPUT.
      OK_CODE_SAVE = OK_CODE.
      CLEAR OK_CODE.
      CASE OK_CODE_SAVE.
        WHEN 'ESC'.
          SET SCREEN 0.
          LEAVE SCREEN.
        WHEN 'BACK'.
          SET SCREEN 0.
          LEAVE SCREEN.
        WHEN 'CANC'.
          SET SCREEN 0.
          LEAVE SCREEN.
      ENDCASE.
    ENDMODULE.
          MODULE READ0100 INPUT                                         *
    MODULE READ0100 INPUT.
      OK_CODE_SAVE = OK_CODE.
      CLEAR OK_CODE.
      CLEAR KEY.
      CASE OK_CODE_SAVE.
        WHEN 'NEW'.
          OBJECT = TOAOM-SAP_OBJECT.
          AR_OBJECT = TOAOM-AR_OBJECT.
          SELECT * FROM TOAOM WHERE AR_OBJECT = AR_OBJECT
          AND SAP_OBJECT = OBJECT.
          ENDSELECT.
          IF SY-SUBRC <> 0.
            MESSAGE W251 WITH AR_OBJECT OBJECT.
            "MESSAGE: NO NCI-DOCTYPE with this Objecttyp
          ELSE.
    Corr. 3.0. Begin
    Authority check with Archive id
            ARCHIV_ID = TOAOM-ARCHIV_ID.
            PERFORM AUTHORITY_CHECK_CREATE(OAALL)
               USING ARCHIV_ID OBJECT SPACE AR_OBJECT SPACE
               CHANGING SY-SUBRC.
            IF SY-SUBRC NE 0.
              MESSAGE ID SY-MSGID TYPE 'E' NUMBER SY-MSGNO
                      WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
            ELSE.
    Corr. 3.0 End.
    Change 5.0 for BOR Objecttypes with GUID vok
             METHOD = 'EDIT'.
        Eingabe der Object_Id
             CALL FUNCTION 'OJ_KEY_FIELDS'
                  EXPORTING
                       KEY                  = KEY
                       METHOD               = METHOD
                       OBJECT               = OBJECT
                       TITLE_DIALOG         = TEXT-001
                  IMPORTING
                       KEY                  = KEY
                  TABLES
                       FIELDS               = FIELDS
                  EXCEPTIONS
                       EXC_OBJECT_NOT_FOUND = 01.
              CALL FUNCTION 'ARCHIV_POPUP_OBJECT_KEY'
                  EXPORTING
                DISPLAY               = ' '
                    OBJTYPE               = OBJECT
                    TITLE                 = TEXT-001
                OBJKEY                = ' '
                LASTTYPE              = ' '
                LASTKEY               = ' '
                    CHECKEXISTENCE        = 'X'
                GENERIC               = ' '
                EDIT                  = ' '
                 IMPORTING
                CHANGED               =
                RETURN                =
                    OBJKEY                = KEY
                USE_LAST              =
                  EXCEPTIONS
                    ERROR_PARAMETER       = 1
                    USER_CANCEL           = 2
                    OTHERS                = 3
    End of change 5.0 for BOR Objecttypes with GUID vok
              IF SY-SUBRC <> 0.
                MESSAGE ID SY-MSGID TYPE 'W'      NUMBER SY-MSGNO
                WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
                CLEAR TOAV0.
              ELSE.
                TOAV0-OBJECT_ID = KEY.
                IF KEY EQ SPACE.
                  MESSAGE W252.
                  CLEAR TOAV0.
         'Kein SAP-Beleg vorhanden.'.
                ELSE." create archiveobject versus dialog
                  PERFORM CREATE_ARCHIVE_OBJECT.
                ENDIF.
              ENDIF.
            ENDIF.
          ENDIF.
      ENDCASE.
    ENDMODULE.
          FORM CREATE_ARCHIVE_OBJECT                                    *
    FORM CREATE_ARCHIVE_OBJECT.            "Create an archiveobject
      CALL FUNCTION 'ARCHIV_CREATE_DIALOG_META'
           EXPORTING
                AR_OBJECT                = TOAOM-AR_OBJECT
                OBJECT_ID                = TOAV0-OBJECT_ID
                SAP_OBJECT               = TOAOM-SAP_OBJECT
                FILE                     = infile
           IMPORTING
                ARCHIV                   = TOAV0-ARCHIV_ID
                ARCHIV_DOC_ID            = TOAV0-ARC_DOC_ID
                DOCUMENTCLASS            = TOAOM-DOC_TYPE
           EXCEPTIONS
                ERROR_ARCHIV             = 01
                ERROR_COMMUNICATIONTABLE = 02
                ERROR_CONNECTIONTABLE    = 03
                ERROR_KERNEL             = 04
                ERROR_PARAMETER          = 05
                ERROR_SCANQUEUE          = 06
                others                   = 7.
      IF SY-SUBRC <> 0.
        MESSAGE ID SY-MSGID TYPE 'W'      NUMBER SY-MSGNO
        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        CLEAR TOAV0.
      ELSE.
        MOVE TOAOM-DOC_TYPE TO TOAV0-RESERVE.
        TOAV0-SAP_OBJECT = TOAOM-SAP_OBJECT.
        TOAV0-AR_OBJECT = TOAOM-AR_OBJECT.
        COMMIT WORK.
        MESSAGE I044.
      ENDIF.
    ENDFORM.
    2. in program ZHR_BDC_UPLOADPIC calling transaction ZOAOH
    added parameters for data file, for a photo ID in archive, and add date of a photo into the data file
    e.g.: 0000000527.09.2004C:\Photos\5.jpg
    {REPORT ZHR_BDC_UPLOADPIC NO STANDARD PAGE HEADING LINE-SIZE 255.
    DATA : BEGIN OF IT_DATA OCCURS 0,
             PERNR(8), " LIKE RP50G-PERNR,
             DATUM(10), "date of the photo
             FILENAME(128),
           END OF IT_DATA.
    DATA:  T1(80),
                 file_path(132).
    SELECTION-SCREEN: BEGIN OF BLOCK sp WITH FRAME TITLE text-f01
      NO INTERVALS.
      SELECTION-SCREEN BEGIN OF LINE.
        SELECTION-SCREEN COMMENT 5(4) A1 .
      SELECTION-SCREEN   END OF LINE.
    SELECTION-SCREEN: END   OF BLOCK sp.
       INCLUDE BDCRECX1.
    SELECTION-SCREEN SKIP 2.
    SELECTION-SCREEN: BEGIN OF BLOCK vst WITH FRAME TITLE text-f02.
    SELECTION-SCREEN BEGIN OF LINE.
      SELECTION-SCREEN COMMENT 3(25) TEXT-S11 FOR FIELD IDOBJ.
      selection-screen position 45.
      PARAMETERS POPFILE(128)  VISIBLE LENGTH 50
        DEFAULT 'C:\PICTURE.TXT'.  "input data file
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN BEGIN OF LINE.
      SELECTION-SCREEN COMMENT 3(25) TEXT-S12 FOR FIELD IDOBJ.
      selection-screen position 45.
      PARAMETERS IDOBJ(2) DEFAULT '01'.  "id object
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN: END   OF BLOCK vst.
    at selection-screen on value-request for POPFILE.
      call function 'F4_FILENAME'
             exporting
                 field_name = file_path
             importing
                 file_name = POPFILE.
           exception
                others    = 1.
    START-OF-SELECTION.
      PERFORM OPEN_GROUP.
      CALL FUNCTION 'WS_UPLOAD'
        EXPORTING
          FILENAME = POPFILE
          FILETYPE = 'ASC'
        TABLES
          DATA_TAB = IT_DATA
        EXCEPTIONS
          CONVERSION_ERROR = 1
          INVALID_TABLE_WIDTH = 2
          INVALID_TYPE = 3
          NO_BATCH = 4
          UNKNOWN_ERROR = 5
          GUI_REFUSE_FILETRANSFER = 6
          OTHERS = 7.
      IF SY-SUBRC NE 0.
        WRITE : / 'No to able read input file'.
        STOP.
      ELSE.
        WRITE : / 'Data processing ...'.
        T1 = 'Data processing ...'.
        MESSAGE T1 Type 'S'.
      ENDIF.
      LOOP AT IT_DATA.
        PERFORM BDC_DYNPRO USING  'ZOANEWCON'         '0100'.
        PERFORM BDC_FIELD  USING  'BDC_CURSOR'       'TOAOM-AR_OBJECT'.
        PERFORM BDC_FIELD  USING  'BDC_OKCODE'       '=NEW'.
        PERFORM BDC_FIELD  USING  'TOAOM-SAP_OBJECT' 'PREL'.
        PERFORM BDC_FIELD  USING  'TOAOM-AR_OBJECT'  'HRICOLFOTO'.
        PERFORM BDC_FIELD  USING  'INFILE'           IT_DATA-FILENAME."JPG
        PERFORM BDC_DYNPRO USING  'SAPLOA12'         '0200'.
        PERFORM BDC_FIELD  USING  'BDC_CURSOR'       'OBJID-VALUE(03)'.
        PERFORM BDC_FIELD  USING  'BDC_OKCODE'       '=OK'.
        PERFORM BDC_FIELD  USING  'OBJID-VALUE(01)'  IT_DATA-PERNR.
        PERFORM BDC_FIELD  USING  'OBJID-VALUE(02)'  '0002'.
        PERFORM BDC_FIELD  USING  'OBJID-VALUE(04)'  IDOBJ.
        PERFORM BDC_FIELD  USING  'OBJID-VALUE(05)'  IT_DATA-DATUM.
        PERFORM BDC_TRANSACTION USING 'ZOAOH'.
        clear IT_DATA-FILENAME.
      ENDLOOP.
      PERFORM CLOSE_GROUP.}

  • Infotype header definition

    hi all
    what is infotype header definition???
    what is the use of table T588J
    regards

    Hello,
    in each infotype you can select which fields are to be diplayed, PERNR-PERSG etc.
    In customizing under Customizing user interfaces-change screen header you first select Header modifier where you create or select one of the exististing if it is ok with you and you assign it to master data or applicant data.
    In infotype header definition(which is the table you asked for) you define in your header modifier the fields, the infotype to which are to be displayed, the column and the field type.
    You will have to do several changes until the result is satisfying!
    At the end you assign to the infotype the header modifier at Header structure per infotype
    ps. don't forget to generate the table T588J when you are finished.
    Regards
    Nadia

  • Authorization Check Infotype Header

    Hi all,
    i posted the following threat in HCM Forum, but i think it is also a question for ABAP Forum
    Authorization Check Infotype Header
    Thanks & regards

    1. authorisations in hr cannot be controlled at infotype-header level and/or infotype field level.
    2. If only a few fields of a specific infotype are to be allowed for a user the most efective way of doing it is by way of creating a view for the infotype with only the allowed fields in it.
    3. another way of doing it is by way of a custom authorisation object (potentially) but then again your requirement is not going into explicit details,. so this option is a possibility you may want to do some due diligence on.
    cheers

  • Infotype Header

    Hi,
    I have created a custom PA infotype and as per the requirement the database table for this infotype would have dates defaulted to 01.01.1800 and 31.12.9999 since the actual data would be stored in OM tables.
    Now, the infotype header is retrieving data as of the BEGDA and hence in the header of the infotype the latest values are not getting displayed. I want the header to display the values valid as of system date.
    Please let me know where to configure that.
    Thanks,
    Harini

    Got the solution.

  • Infotype header the format

    hello,
    As you know in the infotype header the format name that the screen shows is diferent
    for USA:            Last Name  , Name
    for MEX version :   Name , Last Name
    I need both to have the same format (Name , Last Name)
    Is that posible?
    Best Regards.

    Hello,
    Sure it's possible.
    1º) Open an infotype in pa20/pa30
    2º) Go system -> Status
    3º) Save the value of Program(Subscreen). E.g.: /1PAPAXX/HDR_00288A
    4º) Open Se38
    5º) Open the copied header. E.g.: /1PAPAXX/HDR_00288A
    6º) Check the comments in blue. The header modifier will be the 2 number on second column. E.g.:
    T588J (Table to change the header fields)
    002  88  1  01  TXD   0000   PERNR   08   PN1
    88 = Header modifier. Save this number.
    7º) Open SM31
    8º) Table T588J
    9º) Open the corresponding header modifier. E.g.: 88
    Now you can change the header
    If you nede to change the format displayed go thru table T552N and set the value at field "Conversion".
    Example:
    Conversion = 07 , make this:
                     Before   >    After
                   - GJM      >  G.J.M.
                   - ThChr    >  Th.Chr.
    Hope that helps.
    Márcio Leoni

  • Enhancements on Infotypes header screen

    Can I insert a push button in Infotype header screen?
    How can I do it?
    Regards
    Angela

    Hi all,
    I need to know if is it possible to add a custom field in COR1 for process order. I searched forum for something about this, but cannot find anything.
    can anybody please suggest me something ?
    thanks
    Kruthik

  • What values in EBM Header maps to error notification entry in AIA console

    Hi Guys,
    Can any one tell me which values of EBM Header maps to error notification entry in AIA console for sending notification to user created ?
    What elements in EBM Header maps to this fields *(SYSTEM CODE, ERROR CODE, SERVICE NAME, and PROCESS_NAME)* in Error notification in AIA Console for sending notification to a particular user other than AIAIntegrationAdmin?

    Hi Gerhard,
    I tried to send notification using feature available in AIA FP whenever remote and binding fault happened to user SysAdmin creatred in Admin console under user & groups.
    I have done the below configuration
    1. Made entry in AIA console under error notification (Error code : blank service name: SampleBpel system code : sys process name: SampleBpel Role: SysAdmin FYIRole: SysAdmin).
    2. configured email driver properties and work flow notification properties.
    3. made entry in http://localhost:7001/sdpmessaging/userprefs-ui/ with user logged in SysAdmin and entered mail-id.
    4. Populated EBM Header with the below values
    <part name="AIAFault">
    <Fault>
    <EBMReference>
    <BusinessScopeReference>
    <InstanceID>SampleBpel</InstanceID>
    </BusinessScopeReference>
    <SenderReference>
    <ID>SYS</ID>
    <ObjectCrossReference/>
    <Application/>
    </SenderReference>
    </EBMReference>
    <B2BMReference/>
    <FaultNotification>
    <FaultMessage>
    <Code/>
    <Text></Text>
    <Stack></Stack>
    <IntermediateMessageHop/>
    </FaultMessage>
    <FaultingService>
    <ID>SampleBpel</ID>
    <ImplementationCode>BPEL</ImplementationCode>
    <InstanceID>10011</InstanceID>
    <ExecutionContextID>480626c0ac4cb5bd:-64972e88:13bb690ac70:-8000-0000000000010746</ExecutionContextID>
    </FaultingService>
    </FaultNotification>
    </Fault>
    </part>
    5.Included fault-policies and fault-bindings.xml in project.
    when testing the project with negative scenario generates the remote fault. I am able to see fault data i.e EBM Header in AIAReadJMSNotificationProcess.
    But  it is unable to send notification for the user created (SysAdmin).
    It is showing the default user values
    Message ID (Recipient)     b89bc86bc0a805f10110c4aa3d93719f (USER:AIAIntegrationAdmin)
    Operation     Send
    Overall Status     Failed
    Status Code     ENGINE_PROCESSING_FAILURE
    Status Message     User could not be resolved to device addresses. Please see the log file for details.
    Timestamp     Dec 20, 2012 7:28:56 PM IST
    Gateway Message ID     
    Sender     
    Recipient     USER:AIAIntegrationAdmin
    Driver Instance Name     
    Engine     /Farm_base_domain/base_domain/AdminServer/usermessagingserver
    Application Name     soa-infra
    Application Instance Name     
    It is unable to send notification to the user   SysAdmin
    Can you provide solution how can i send notification to user created (SysAdmin)?
    what are the EBM Header values that need to be populated for sending notification to user created (SysAdmin)?

  • Sap HR: what r the infotypes to be given under...

    Hi Gurus,
    Please let me  know what r the infotypes should be given under the Personal Actions like.
    1) termination
    2)Retirement
    3)transfer
    4)promotion
    5)Hiring.
    also what additional configuration should be done,
    akhil

    Hi,
    As per your case,
    these are the below infotypes we use normally,
    1. Termination:
       A. Actions - IT0000(default)
       B. Org. assignment - IT0001.
       C. Absence Quota - IT2006.
       D.Time Quota Compensation - IT0416
       E . Recurring Payments/Deductions  -IT0014
       F . others as per the requirement.
    2. Retirement.
       A . Actions - IT0000 (default)
       B. Org. assignment - IT0001.
       C. Absence Quota - IT2006.
       D.Time Quota Compensation - IT0416
       E . Recurring Payments/Deductions  -IT0014
       F . Additionals Payments - IT0015.
       G . bank details  - It0009.
    3. Transfer.
       1. Actions - It0000 (default).
       2. Org. assignment - IT0001.
       3. Planned Working Time  -It0007.
       4. Basic pay  - It0008.
       5. others.
    4. Promotion.
       1. Actions - It0000 (default).
       2. Org. assignment - IT0001.
       3. basic pay - IT0008.
       4. Additionals Payments - IT0015.
       5. Recurring Payments/Deductions  -IT0014.
    5. Hiring.
       1. Actions - It0000 (default).
       2. Org. assignment - IT0001.
       3. personal details - IT0002.
       4. Address - IT0006.
       5. Date specifications. IT0041.
       6. Planned Working Time  -It0007.
       7. Basic pay  - It0008.
       8. Additionals Payments - IT0015.
       9. Recurring Payments/Deductions  -IT0014.
    10   others.
    thanks,
    vasu.

  • Infotype Header Data - Cost center- System to read the latest data

    Dear Group Members,
    I am modifying Infotype Header data and calling Cost center (Field - KOSTL) in header data via modifying header data in   table T588J. The cost center values appears on the  header data (As stored in Infotype 0001) however it appears with the oldest data. i.e. if the employee cost center had been changed after his joining system does not picked up the Latest data/ Latest cost center value.
    Any one on how to resolve this issue with SAP Standard functionality.
    Regards
    VISHAL SAXENA
    SAP Specialist - HCM

    Hi,
    The answer to your question lies in table V_582A_B. You can either access it through SM30 or by following IMG path:
    SPRO>Personnel Management>Personnel Administration>Customizing User Interfaces>Change Screen Header>Header structure per infotype
    There is a u201Cchoose datau201D indicator for each infotype. If that is checked, the header displays data as per the start date of infotype displayed; otherwise, it shows data valid as of system date. Please bring up SAP help on the field by F1 for more information.
    Also check table T588H (data selection field) as it has some dependencies for the above mentioned settings. The table can be brought up from:
    SPRO>Personnel Management>Personnel Administration>Customizing User Interfaces>Change Screen Header> Infotype header data selection control
    Hope this helps.
    Donnie

  • Infotype header - best practice

    Hi group
    Today our ifnotype headers are created in a way that makes us have to break a lot of infotypes just to refresh the header.
    There are 2 reasons in my opinion:
    - We have chosen to read header on infotype begda
    - We have eg. position information in the header
    We want to change this so we don't have to break eg. address just to read correct data.
    I don't feel reading header at sy-datum is a right choice.  This can give an incorrect picture if you read an infotype and the header is inconsistent with the actual situation in the date-range for the infotype.
    So I am leaning towards letting the header contain much less information.
    Does anyone have some "best practice" thoughts?
    Any documentation I can read up on regarding best practice on this matter?
    Thanks in advance
    Kirsten

    Hi,
    Headers, in general, are part of the whole philosophical debate. Iu2019ve seen both ways: current dated and infotype date driven. Iu2019m an advocate of them being infotype date driven for the very same reason that you mentioned: display what is on the record.
    The other school of thought is to always display current information. It also gets some leverage depending on what is being displayed. If you have OM related data like position, job, org units etc, and clients may want to always display the current information. Maybe they are trained that way to only pay attention to headers to give them ad-hoc type information. They can get historical data through other reports.
    I donu2019t think there is any u201Cbest practiceu201D with headers; itu2019s a purely philosophical choice.
    Hope this helps.
    Donnie

  • What are the infotypes required for maintaining benefits....

    Hi
    Please help ...
    What are the ingotypes required for maintaing benefits....

    Hi Srikanth,
    Please find below the list of Infotypes required for maintaining benefits:
    1. General Benefits Information (Infotype 0171)
    2. Adjustment Reasons (Infotype 0378)   
    3. Health Plans (Infotype 0167)  
    4. Insurance Plans (Infotype 0168)  
    5. Savings Plans (Infotype 0169)  
    6. Flexible Spending Account (Infotype 0170)  
    7. Miscellaneous Plans (Infotype 0377)  
    8. Family/Related Person (Infotype 0021)
    There are also other benefits infotypes e.g. Stock Purchase Plans (Infotype 0379), Credit Plans (Infotype 0236) and many COBRA and retirement plan infotypes but these are used based on the company requirement.
    I hope this helps.
    Regards,
    Anand Jalan
    Edited by: Anand Jalan on Jan 6, 2010 9:50 PM
    Edited by: Anand Jalan on Jan 6, 2010 9:52 PM

  • What table stores delivery header and item texts?

    Hi Gurus,
    Which table stores header and item text of delivery? We use VBBP text object and provide test id, language to read the texts using function module 'READ_TEXT'.
    Can you please tell me which table store the texts?
    Best regards,
    Pavan

    >
    Pavan1 wrote:
    > Hi Gurus,
    >
    > Which table stores header and item text of delivery? We use VBBP text object and provide test id, language to read the texts using function module 'READ_TEXT'.
    >
    > Can you please tell me which table store the texts?
    >
    > Best regards,
    > Pavan
    This stores in text objects so you need to pass
    Here is simple thing to find what to pass to the read_text function module.
    Go to delivery - If you want to find header text - GOTO (on application menu) - Header -texts - Double click on the text where you enter text - GOTO (on application menu) - Header - This will give you a popup kind of screen where you can find the
    text name (if it is header - only delivery number and if it is item - deliverynumber + item number ) , lang, Text id, Text object
    This will give you the required parameters... .

  • Reg:What are the infotypes mandatory for transfer,pramotion,term Actions

    Hi all,
    I am new for SAP.My client Requirement is actions of transfer,appraisal,promotion,Termination and reassignment.In these actions what r the mandatory infotypes we need to maintain.If any one knows tell me
    Thanks,
    Laxmi

    Hi Laxmi ,
    Please go through below link. You will get lot of information about infotype.
    http://saphruser.com/category/sap-hr-infotypes/
    Also find below number range used for different module infotype.
    0000-0999- Personnel Admin
    1000-1999 -Personnel Planning/Org Mgt
    2000-2999 -Time Data
    4000-4999 -Applicant Data (recruitment)
    9000-9999 -Customer specific infotypes for both PA and PD
    Thank you
    Ashutosh

  • What information in email header identifies an email as a voicemail?

    I have 2, 5.X Unity systems. Neither one is aware of the other.  One Unity is working with unified messaging, the other on a separate network in a separate domain uses Internet subscribers that will forward voice messages to the .  When an outside caller calls, leaves a voice message and reaches an internet subscriber the voice message is sent to the outlook mailbox of a user on the other Unity system.  When that voicemail arrives in outlook mailbox from the internet subscriber it lights the lite on the users phone.
    When the email with the voicemail attached arrives from a different Unity what information in the email header tells the exchange monitor to send a MWI activation message to the Notifier queue?
    Thanks
    Jeff

    It's not anything in the header that identifies it. When the notifier service goes through the mailbox when Unity gets a MAPI update that a new item has arrived in a subscriber mailbox, it looks for a value called IPM.Note.Voice.Unity that identifies it as voicemail. Regular email has only the attribute IPM.Note. You can view this through a tool on Unity called DohPropTest that accesses the mailbox items of a specified subscriber and you can see the different values including the message type that results in this value.
    Tray

Maybe you are looking for

  • 500 Internal server error when loging in to Enterprise portal after refresh

    Hi, We had a data base refresh of test system with production data. After the refresh, when users are trying to log in to portal test server, they are getting error as follows: The initial exception that caused the request to fail, was:    com.sap.tc

  • GarageBand Performance Issues

    Greetings: I've been using GarageBand 3.04 for a couple of years without any problems. However, these past couple of weeks my performance has been sluggish. I've received "Core Audio - Disk is too slow" notices and also notices that I'm playing too m

  • PowerBuilder won't reactivate License after update

    Current;y have PowerBuilder Classic 12.5.2 build 5006 installed on a Windows 7 64bit machine.  This was licensed and activated properly.  Went to run the install again to add a missing database driver.  After updating, when I ran Powerbuilder, it cam

  • Sort records when there is no timestamp

    Hello All, I'd like to know how we can do a sort based on timestamp on an oracle table when there is no timestamp column. I have a table create table x_log (A varchar,B varchar,C varchar); /* note I do not have a timestamp col */ I'd like to know if

  • Control hints tab for an attribute of a view object shows null pointer erro

    hi I am using j developer 11g. I have a view object and it is working fine and i set control hints for an attribute , i set display label and length etc there. now i am taking the view object the control hints tab for the particular tab didnt shows a