How to get a service notification number for given serial number

Please, someones know how to get a service notification number based on serial number.
In our process the notification can be created as first step (IW51) or can be created starting from service order (IW32).
Thanks in advance.
Luca

Hi pooja,
actually standard service request numbers are configured in spro->crm->transactions->Settings for Service Requests->Number Ranges. here they are maintain service request,incident,problem number ranges..
so when ever your creating any service request then that number range will appear in that object id.
you have to get that object id in your custom field get_method and based on that you have to change your number..
example:
current = me->bo.
current->get_property_as_string( EXPORTING iv_attr_name  = 'OBJECTI_ID'  RECEIVING rv_result  = lv_id ).
here you will get object_id based on that you have to write your own logic to display custom value.
" write your custom logic to populate custom field. pass that custom field value into returning parameter.
value = custom_value.
Thanks & Regards,
Srinivas.

Similar Messages

  • How to get ahold of apple about a lost serial number?

    I just replaced my motherboard and logic is asking for my serial number. I have entered the serial number for logic 9 but now it is asking for my previous serial number. I have looked everywhere for it. I bought Logic Studio with Logic pro 8 originally and I can't find a serial number anywhere in or on the box or in any of the books inside?

    AppleCare

  • How to get Delivery number for given Equipment number?

    Hi,
    I have the equipment number and this equipment contains material number and serial number. From these information, how do I get the delivery number/order number?
    Thank you.
    Ashish

    Hi All,
    The problem is solved.
    Here is the link >>
    Table OBJK > give equipment number ->>>> this will give us a list of records.
    Now go to SER01 > It will have only one record to get corresponding to value of different OBKNR received from filter. Means if we get 5 records from OBJK then out of 5 only one record will have corresponding record in SER01 and rest 4 records will not have any value SER01.
    To understand the logic review function module SERIAL_LS_PRINT which works otherway round. It takes delivery and item number and gives us back serial number.
    My requirement is otherway round but I know the path to get desired values.
    Thank you all for your help.
    Cheers,
    Ashish
    Edited by: Ashish Arya on Mar 4, 2008 2:05 PM
    Edited by: Ashish Arya on Mar 4, 2008 3:49 PM

  • Transaction IQ09 u2013 production ORDER number for the serial number not showed

    In the ALV generated by IQ09, we couldn´t see any production order number with its respectives serial numbers listed.
    We try to check in NOTES SAP, through "SER*" tables and programs RIQEUI21 and RIOBJK00, but without success.
    In the IQ02 and IQ03 transactions, we can find the orders numbers, but our users would like to see at the ALV list.
    Anybody knows any transaction that shows serial numbers and production orders in a unique LIST.
    Thanks
       Claudio.

    Hi,
    I think you can customized your requirement, see below table
    In table SER05, the list of serial number details can be obtained. key the order no in SER05 table, get field OBJKNR, then pass this OBJKNR in table OBJK .
    Some useful table for serial numbers
    SER00 Generic table for serial numbers
    SER01 Serial numbers assigned to a delivery
    SER02 Serial numbers assigned to a guarentee
    SER03 Serial numbers assigned to a material document
    SER04 Serial numbers assigned to an inspection lot
    SER05 Serial numbers for a production order
    SER06 Serial numbers for Handling Units
    SER07 Serial numbers for Stocktaking
    SER08 serial numbers for Orders (SD)
    I hope that this information clarifies the issue.
    Regards,
    Sankaran

  • How to get Oracle Service Bus 10gR3 for windows 64 bit

    Hi,
    I'm looking for Oracle Service Bus 10gR3 and Oracle Data Service Integrator 10gR3 installables for Windows 64-bit. However, I saw the available versions on download section are only for indows 32-bit. I'm using win 64-bit to detect 4BG RAM or more which is not possible in win 32-bit.
    Can anybody help me wheather compatable version are available or is there any solution for that?
    Thanks in advance,
    Ganesh

    Hi Ow;
    Please check:
    Step-By-Step Install of RAC with OCFS on Windows 2003 [ID 178882.1]
    WIN: Does Oracle Cluster File System (OCFS) Support Access from Mapped Drives? [ID 225550.1]
    How To Check The Certification Matrix for Real Application Clusters [ID 184875.1]
    Regard
    Helios

  • Get table partition name dynamically for given date range

    Dear All,
    Could you please tell me how to get the partition name dynamicaly for given date range ?
    Thank you.

    SQL> select table_name,
           partition_name,
           to_date (
              trim (
                 '''' from regexp_substr (
                              extractvalue (
                                 dbms_xmlgen.
                                 getxmltype (
                                    'select high_value from all_tab_partitions where table_name='''
                                    || table_name
                                    || ''' and table_owner = '''
                                    || table_owner
                                    || ''' and partition_name = '''
                                    || partition_name
                                    || ''''),
                                 '//text()'),
              'syyyy-mm-dd hh24:mi:ss')
              high_value_in_date_format
      from all_tab_partitions
    where table_name = 'SALES' and table_owner = 'SH'
    TABLE_NAME                     PARTITION_NAME                 HIGH_VALUE_IN_DATE_FORMAT
    SALES                          SALES_1995                     01-JAN-96               
    SALES                          SALES_1996                     01-JAN-97               
    SALES                          SALES_H1_1997                  01-JUL-97               
    SALES                          SALES_H2_1997                  01-JAN-98               
    SALES                          SALES_Q1_1998                  01-APR-98               
    SALES                          SALES_Q2_1998                  01-JUL-98               
    SALES                          SALES_Q3_1998                  01-OKT-98               
    SALES                          SALES_Q4_1998                  01-JAN-99               
    SALES                          SALES_Q1_1999                  01-APR-99               
    SALES                          SALES_Q2_1999                  01-JUL-99               
    SALES                          SALES_Q3_1999                  01-OKT-99               
    SALES                          SALES_Q4_1999                  01-JAN-00               
    SALES                          SALES_Q1_2000                  01-APR-00               
    SALES                          SALES_Q2_2000                  01-JUL-00               
    SALES                          SALES_Q3_2000                  01-OKT-00               
    SALES                          SALES_Q4_2000                  01-JAN-01               
    SALES                          SALES_Q1_2001                  01-APR-01               
    SALES                          SALES_Q2_2001                  01-JUL-01               
    SALES                          SALES_Q3_2001                  01-OKT-01               
    SALES                          SALES_Q4_2001                  01-JAN-02               
    SALES                          SALES_Q1_2002                  01-APR-02               
    SALES                          SALES_Q2_2002                  01-JUL-02               
    SALES                          SALES_Q3_2002                  01-OKT-02               
    SALES                          SALES_Q4_2002                  01-JAN-03               
    SALES                          SALES_Q1_2003                  01-APR-03               
    SALES                          SALES_Q2_2003                  01-JUL-03               
    SALES                          SALES_Q3_2003                  01-OKT-03               
    SALES                          SALES_Q4_2003                  01-JAN-04               
    28 rows selected.

  • I purchased photoshop elements 8 on line in 2010. I recently switched to a new desktop computer. Photoshop asked for my serial number. I entered the correct serial number (obtained from Adobe). It says it is invalid. How do I get this corrected so I can u

    I purchased photoshop elements 8 on line in 2010. I recently switched to a new desktop computer. Photoshop asked for my serial number. I entered the correct serial number (obtained from Adobe). It says it is invalid. How do I get this corrected so I can use the product I purchased?

    Hi Rosera,
    This is bad and I am sorry to hear that you are running into these issues.
    Let me connect with you, so right now, the current state is that you have installed copy of PSE 8 in trial on your windows 7 machine, and when you are trying to enter the serial number from your PSE 8 Box, it is saying the serial number to be invalid?
    It might sound pretty obvious, but please make sure that you are entering the serial number correctly and of PSE 8(in case you bought a PEPE box)?
    Have you tried the steps mentioned below by Barbara?
    If possible, you can send me the serial number through PRIVATE MESSAGE and I can check it on my end that whether the serial number is indeed invalid or that the issue is with your machine?
    Regards,
    Ankush

  • I recently subscribed to Acrobat XI after the trial expired but when I went to activate it I was asked for the serial number. I only have the order number on the invoice. How do I get the serial number for the trial software that is on my computer?

    I recently subscribed to Acrobat XI after the trial expired but when I went to activate it I was asked for the serial number. I only have the order number on the invoice. How do I get the serial number for the trial software that is on my computer?

    Please do not try to send attachments in mail responses to forum messages. Please return to the forum and click Reply. You can then use the CAMERA icon to add your pictures. Looking forward to seeing what is wrong with your license screens - the general advice is simply to sign in, and everything is done. Make sure you use the SAME Adobe ID that you used to purchase, and check your account details to be sure the subscription is active.

  • I have the Photoshop Photography Program and every time I try open Photoshop CC it asks me for a Serial Number. It keeps saying my trial period has ended. How can I get this working since Adobe doesn't issue Serial Numbers for CC.

    I have the Photoshop Photography Program and now every time I try open Photoshop CC it asks me for a Serial Number. It keeps saying my trial period has ended. How can I get this working since Adobe doesn't issue Serial Numbers for CC.

    Jodie84,
    I have just checked your account and found that you indeed have bought a Creative Cloud for Teams subscription but you have assigned the single seat to another user hence you ( If you are using your own Adobe ID ) are getting the trial error message.
    Two options : Either reassign the seat to your self or add an additional seat and invite your self in the same Team.
    Cheers,
    Kartikay Sharma

  • Aperture is now asking for the serial number "refer to your packaging to obtain a serial number"  I don't have any packaging or serial number because it was preloaded.  How do I get the serial number?

    I bought Aperture when I bought my Mac, so preloaded. "refer to your packaging to obtain a serial number"  I don't have any packaging or serial number because it was preloaded.  How do a I get a serial number for Aperture if I never received any packaging containing the serical number in the first place?  I've had this for almost five years and all of a sudden it's asking for a serial number...

    Just because this comes up as the first thing when you Google this problem...
    I resolved this issue by uninstalling Aperture and then reinstalling it from the App store.
    Pay it forward.

  • I need to reinstall my CS3 creative suite I bought with a student license.  It allows me to install but never asked for the serial number.  I can open the programs but can not use them, get a "Adobe updater quit unexpectedly" message.

    I bought a CS3 creative suite on a student license in 2008.  The original MAC laptop has died and I am trying to install it on a MAC desktop.  the programs installs successfully but never ask for a serial number.  the programs will open but I can not open any files,  I get a Adobe Updater quite unexpectedly message.  Is this because the serial number has not been entered? I have tried chat about this problem twice, also use Adobe connect and was not helped. How do I enter this serial number?

    activate is grayed out.  Registration is available and when I select it, it says "A problem was encountered while trying to send the information over the internet"  So I select "submit again" and nothing happens.  Then the program closes and I get the added updater quite message. 

  • How to get warranty service claim from nokia c5-03...

    how to get warranty service claim from nokia c5-03 in india because i have problem with nokia c5-03 I Purchase 2 week ago a new nokia c5-03 but from day 1 i facing same problem like 1) app close itself 2) internet browse close if any thing is downloading or downloading over 3) memory full always then i should reboot the phone then it work. 4) ovi map is open it shows memory full close the app So kindly help me how to get warranty service claim from nokia c5-03 in india i am unhappy with nokia c5-03
    Solved!
    Go to Solution.

    i updated software also but the same problem cont... I want to know that nokia will give back money or exchange for other new mobile

  • How to get the "last changed by" for a set of function modules?

    How to get the "last changed by" for a set of function modules?
    is there any table to get it??

    See [this|Re: Date of creation of function module] I posted earlier.
    >TFDIR will give you the name of the function group program and the include number.
    >E.g. SAPLZFUNCGROUP Include 01.
    >From this you can construct the include name: LZFUNCGROUPU01.
    >You can look this up in TRDIR to find the creation date (CDAT) of the function module.
    In your case, you need unam and udat.
    matt

  • How to configure proxy services in OSB for Rest based services?

    how to configure proxy services in OSB for Rest based services implemented using Jersey (Rest).
    The Client need to contact OSB proxy servies by posting application/xml using jersey client and OSB proxy service will call the OSB business service.
    i would like to know how to get this request in OSB proxy service and send it to the business service and get the response back.

    I would suggest you refer to the below links:
    https://blogs.oracle.com/jeffdavies/entry/restful_services_with_oracle_s_1
    https://blogs.oracle.com/jamesbayer/entry/using_rest_with_oracle_service
    Hope this helps.
    Thanks,
    Patrick

  • My laptop died. I am trying to reload CS4 Creative Suite. I have the serial number of the original program but it also asks for a serial number for an update. I'm happy with just the original. How can I load it?

    My PowerBook had Adobe Creative Suite 4 on it before it died. I had to have a new hard drive and ram disks installed. Now I can't reload the Creative Suite. How can I do it? I don't really need to upgrade for my purposes.

    I must admit I am not very computer savvy. I'm 81 and probably will 
    not pursue my work much longer. I have published and helped publish 
    self-published books for individual writers and companies since 1995. 
    I simply cannot, nor do I want to, afford to buy a CS4 upgrade, even 
    at the reduce price of $600 they offered. My wife has been handicapped 
    since have strokes in 2006 and later years. I can live without it if I 
    have to. However, I paid for it and hoped I could get it on the 
    laptop. You may be right about them asking for a serial number of an 
    older version, which as I said, I don't have.

Maybe you are looking for

  • I have a little problem with input in my program...(System.in, BufferedRead

    I'm coding a program that takes a input like this : Sample Input 1 11 5 2 6 7 3 13 9 12 7 16 14 3 25 19 18 22 23 13 29 24 4 28 So I wrote a code like this : public static void main(String[] args) throws Exception{           BufferedReader br = new Bu

  • Hook up mini mac to hdmi tv

    I've used a brand new HDMI cable to connect the new Mac mini to my HDMI monitor, but all I get is a black screen.  Occasionally, if I hit a key on the keyboard, a man's voice starts speaking in what sounds like Russian.  I know the cable works, I kno

  • Supported SP for BPM in XI 3.0

    Hi All i want to do the FILE RFC FILE using BPM in XI 3.0 with the help of following blog /people/arpit.seth/blog/2005/06/27/rfc-scenario-using-bpm--starter-kit what SP should my XI 3.0 should have? Regards bhasker

  • Running sql from a text item

    Hi. I build record groups that display information for the user. These record groups are built on custom SQL that the user can add themselves. As this is open to errors I want to add a "Check Syntax" button. All it needs to do is run the query that t

  • My adobe premiere pro don't download

    problems with the download avaliation my adobe premiere pro don't download