Change Pointers activation for customer specific Infotype

dear friends,
could you please let me know how to activate the change pointers for customer specific infotypes? Currently we are using message type HRMD_ABA.
regards,
jp

Anand:
Unfurtunatly, not all the modification are registered in the log. For ei., You can track the systema status modification, the PR generation, etc. What fields change are you trying to modify?
Hope this help
Ezequiel

Similar Messages

  • How to find out what are all the change pointers assoicated for an idoc ??

    Hi ,
    How to find out what are all the change pointers activated for an idoc ??
    Thanks,
    Varma

    Verma,
    You can check what are the active Change Pointers for the message type in tcode <b>BD50</b>
    Use tcode <b>BD61</b> to check whether change pointers are active or not??
    Hope this helps..

  • Screenshots for this customer specific Infotypes

    Hi,
    Can any one send me the screen shots for following customer specific infotypes.
    9002 Checklist
    9003 Bond
    9011 Cost of Recruitment
    9025 Appraisal
    Samriddhi

    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/60a7586d-edd9-2910-68a8-8204303835a1
    check this one creation of infotype
    and according to this u customise ur coustmer speciofic infotype  might be helpful

  • Where to maintain Turksih translation for customer specific status?

    HI gurus,
    How was your New Year?
    I am kindaa of stuck at maintaining translations from English to Turkish. To maintain translation e.g. For Ee grp I go to Table T501 > on the menu GOTO > Translate > select the language > enter Turkish words. but for the following the translate option is coming dim for me. I don't know if there any other place to maintain it. I am having trouble with the following:
    - customer specific status    Table: VV_T529U_1__AL0   or  Prnl mgmt. > Pernl. admn. > Custm proc. > Create cust. Spec. status               
    - Marital status  V_T502T   or Prnl. Mgmt. > Prnl. admn. > Personal data > Personal Data > Create Marital Status
    - Pay scale type V_t510A  or Prsnl mgmt. > Prsnl admn> Payroll data > Basic Pay > Check Pay Scale Type
    Thanks a ton,
    JEss..

    Hi
    I was able to do the translation for customer specific status and MArital status. For this, when logging in change the language to Thai > Use Tcode SU3 > on the second tab change the language to Thai. from here, everything comes in Thai. you can easily maintain it from there using your table or through SPRO.
    Thanks,
    JEss..

  • Regarding Customer Specific Infotype

    Hi Gurus,
    I had created one ad-hoc query. When i run this query in SQ01. I selected one filed in customer specific infotype. then it shows that data is tooo long.
    Can any body give the sollutions for this???
    Regs,
    Brahma

    Hi
    Debugging is best option.
    Manoj Shakya

  • Error for customer specific Authorization check (User Exit)

    Dear Experts,
    I am facing a problem in PM.
    I have created a maintenace plan for calibration via t code IP42 and mentioned the order type PM05. Scheduling is done for the order. I got the order number.
    I have released the order and got the inspection lot number.
    While entering the results recording through t code QE17, the reluts are out of the specified range, i have given the valuation Rejected, immediately system is giving an error message as below:
    "Error for customer specific Authorization check (User Exit)"
    Though there is no user exit activated in the system, this message is coming and not allowing the result recoring for rejection.
    If I'm entering the result recording within the specified range, then valuation is Accepted and its allowing to save.
    I have checked the following user exits:
    QQMA0002: QM: Authorization Check for Entry into Notif. Transaction
    QQMA0026: PM/SM: Auth. check when accessing notification transaction.
    The above 2 User Exits are not active.
    I have also checked a note 429066. But it says incase of any dump for that user exit only its applicable and more over the current version of the system is ECC 6.0 packae 15, where as that note is applicable upto 4.6C.
    Please some one help me on this issue.
    Thanks and Regards,
    Praveen.

    Dear Pete,
    I have cheked with my technical team, There is no hotpacks updated recently. This is the implementaion project I'm in, so performing the cycle for the first time.
    Any how I got it solved, in T code QE17, after entering the Inspection lot in next screen goto menu path Settings - User settings - Defects recording mention the reprt type and tick on Reprt type Changable.
    At the time of result recording if the valuation is Rejected then it ask for defects recording close that window if not rwequired then save, the error message no longer apperaing now.
    Regards,
    Praveen

  • Change Message Control for Customer Master data

    Hi Friends,
    I have to choose/populate a message when the user is about to create an already existing customer.
    In SPRO --> Financial Accounting --> Accounts Receivable and Accounts Payable --> Customer Accounts --> Master Data --> Preparations for creating customer master data --> "change message control for customer master data" ...
    OK...
    When u click this it goes into Change View "message control by User" Overview screen wherein u can insert new messages and texts and the type of message ....
    Now .....
    I want to display the 145th message (F4 help of the Message column) ..... it picks up the text "Customer found with same address;check"..... with Online mesasage type 'I' and batch type 'I' and with standard type '-' ..
    I want to have the same message with message types 'E','E', and 'I' respectively.......
    How is this possible (or) what should i do to meet my requirement :-|
    Expecting ur answers
    Thanks in advance ........
    Cheers,
    R.Kripa.

    Hey yes it is not possible (as of now
    I ve met the requirement by just using message statement in the program itself ............
    My requirement is met but still if anyone knows about this do answer / reply
    Thanks
    Cheers,
    R.Kripa.

  • How to change the delay for a specific message

    Hi,
    I need to change the delay for an specific message, So how can I consume message by JMSCorrelationID which is enqueued with delay?
    I am using Java and Oracle.JMS classes.
    This a sample code of the deque method
    public BasicAQData dequeue(int insId)
    try
         String usr = dbUtil.getCurrentUser();
         AQjmsStreamMessage stream_message = null;
         int id = 0;
         int priority = 0;
         int destino = 0;
         String selector = null;
         String instanceId = String.valueOf(insId);
         BasicAQData dd = new BasicAQData();
         queue = q_sess.getQueue(usr, queue_name);
         selector = "JMSCorrelationID = '"+instanceId+"'";
         receptor = q_sess.createReceiver(queue, selector);
         stream_message = (AQjmsStreamMessage)receptor.receive(sleeptime);
         if (stream_message == null) return null;
         id = stream_message.readInt();
         priority = stream_message.readInt();
         destino = stream_message.readInt();
         stream_message.clearBody();
         dd.setId(id);
         dd.setPriority(priority);
         dd.setDestino(destino);
    return dd;
    It returns the desired message if that is available; however it returns null if the message was enqueued with delay and isn4t still available.
    Thanks in advance.

    Hi Glenn,
    Messages enqueued with a delay can be dequeued by specifying message id. In your example,
    you can dequeue the message with message_id, change the delay and enqueue the message again.
    Thanks,
    Brajesh.

  • Business scenario where change pointers method for cross apps is used

    can any one explain the business scenario where change pointers method for cross apps is used.even explain whether it is used in an implementation project or a support project

    There are hell number of business scenarios examples provided by SAP itself kindly check the link below..
    you will be able to choose one from many available from different application areas..
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/22/c5a8f2a9840d48a24491c20086e0f9/frameset.htm
    enjoy SAP.
    Pankaj Singh

  • [svn:fx-trunk] 13288: Changing the workaround for custom whitespace preservation in spark components in order to cater for fixes to SDK-24699 and SDK-24611 .

    Revision: 13288
    Revision: 13288
    Author:   [email protected]
    Date:     2010-01-05 15:21:57 -0800 (Tue, 05 Jan 2010)
    Log Message:
    Changing the workaround for custom whitespace preservation in spark components in order to cater for fixes to SDK-24699 and SDK-24611.
    We now preserve whitespace for all of the spark "text" tags at compile time (but not only-whitespace content if an alternate text attribute was specified).
    QE notes: Please ensure that whitespace preservation continues to work, including for the scenarios mentioned in previous issues SDK-22601, SDK-23160, SDK-23972.
    Doc notes: N/A
    Bugs:
    SDK-24699 - Binding does not work with Spark TextInput "text" property
    SDK-24611 - MXML compiler should preserve whitespace in FlowElement tags (such as
    Reviewer: Paul
    Tests run: checkintests, mustella RichText, List, TextArea (the 2 baseline position failures existed prior to these changes)
    Is noteworthy for integration: Yes
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-24699
        http://bugs.adobe.com/jira/browse/SDK-24611
        http://bugs.adobe.com/jira/browse/SDK-22601
        http://bugs.adobe.com/jira/browse/SDK-23160
        http://bugs.adobe.com/jira/browse/SDK-23972
        http://bugs.adobe.com/jira/browse/SDK-24699
        http://bugs.adobe.com/jira/browse/SDK-24611
    Modified Paths:
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/dom/MxmlScanner.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/dom/Node.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/lang/StandardDefs.java

    This bug figures out also when creating a custom spark ComboBox, then trying to programatically update the userProposedSelectedIndex property. The proposed selected index is selected, but does not apply the same skin as when mouse is on rollover or item is selected due to up and down keys.
    The issue seems like updating the status of the item renderer to rollover or selected to get the same skin applied.
    Please could you attach DropDow nList.as that you edited ?
    Thank you so much.

  • How to create customer specific InfoTypes in CRM?

    Hi folks,
    we want to distribute customer specific InfoTypes from HR to CRM. Thus we have to create these InfoTypes in CRM. Does anyone know how to do so? In HR this is done with TA PM01 which does not exist in CRM.
    Thanks!
    Martin

    Martin,
    Yes I think just using a BADI and storing in custom tables is the easiest approach in your case.  However if these infotypes are employee data contained in personnel administration, then you should consider extending the Business Partner via the eewb.  You would still then enhance the IDOC and then extend the data transfer to the new attributes in CRM.
    If it is just organizational data attributes, then you can either do custom tables, or try to create new infotypes via manual configuration in the CRM system.
    Take care,
    Stephen

  • PA - Creating customer specific infotypes

    Hello experts,
          How to create customer specific infotype in PA? i tried creating in PM01, but it is not getting reflected in PA30. is there any other method to create customer specific infotype? or do i have to copy from standard infotypes? If you can send me any document it will be really helpfull. my email id is [email protected]
    Thanks and Regards,
    Shilpa

    Hi
    would you mind forwarding the documents to me as well
    my mail id is [email protected]
    Thanks in advance
    Regards,
    RK

  • Setting a private flag on an activity for a specific Partner Function

    Hi. I have this requirement. Display on private flag "My activities". Display just the Activities for a specific Function partner ej. Parner Responsible. Actually the system displays on "my activities" the activities not just for person responsible but also the activities for the created by or agent partner function
    Report: Activity Monitor
    Does anybody knows if there is a way to modify this to display the activities for a specific Function partner on the Biz Activity?

    Max,
    I tried to find any exits in this program but couldnt find any.
    But I have following idea in mind:
    1. I dont think you need to make this change on 'my activities'. Instead use of the third 'My ...activities' where you can give partner function & BP number as your own number. I hope it works.
    2. Create a new program by copying the Actvity Monitor program and make the small change you are looking for somewhere in that program (I dont know where).
    Sorry, I dont have any concrete solution for you.
    Best Regards,
    Vivek

  • Java BAdI implementation for Customer specific Spell check

    In IS-M/AMC, I am working on implementation of a Java BAdI, namely ICustSpellCheck, which enables Customer Specific Spell check instead of the standard MS-Word spell check. Could someone provide pointers on the java code that goes into different methods of this class?

    Hi Dharmendra,
      Check if this is your case..
    Note
    This Business Add-In is not suitable for checking individual field content in an installed base, or installed base component: To do this, see Business Add-In: Additional Checks When Modifying Installed Base Headers and Business Add-In: Additional Checks When Modifying Components.
    Regards.
    Manuel

  • Change Reconciliation Account for customer.

    Hi All,
    I want to change the Reconciliation Account for customer. it is giving me message that Account has been posted to; hold balance sheet adjustment (Message no. F2067). How do I change it.
    Thanks
    Utpal.

    Hi
    Make the reconciliation account balance nullify by tranferring to new GL Account and the nassing new one
    Assign points if useful,
    Regards
    Raj

Maybe you are looking for

  • Display of month insted of date in report!

    Hi Experts, Question 1: I want to display month instead of date as a characteristic in my report. Is this possible in BEx without using Virtual Characteristic and without changing existing data module. Question 2: I am able to display the month as ke

  • Syching Photos from Itunes to Ipod Photo 30G

    I am having the worst time syching my photos from my PC computer to my ipod photo. I am using my family computer because my laptop is kaput. I am starting over...from scratch. Deleted everything on my ipod and hoping to synch it all back on there fro

  • Any BAPI for Auto clearing of Vendor accounts

    Hai, Any body know, any BAPI for Auto clearing of the Vendor account(transaction F.13). This urgent issue. Reward will promote you. Bye , Elamaran

  • Problem when trying to create a template with vdi 3.2.1

    Hi, I´m using vdi 3.2.1 in solaris 10 x86. I´m using Virtualbox in the same server as a desktop provider. I created a windows 7 virtual machine without any problem. My problem appears when I´m trying to import that VM into a template, I follow "Pools

  • Don't Pay for Onsite Service Contract!

    My AC adapter died this week on a 9-month old T500.  Lenovo says that it will take 5-10 business days to ship me a new one and that there is nothing they can do for me in the timing being.  They also won't send an onsite representative out, as they a