SAP Associate Certification - How to get S-ID and Logo?

Hi,
I have completed my C_BOE_30 SAP Application Associate - Business Objects 3.1 Certification.
And, i have received my certificate also.
How do I get my S-ID?
How do I get my Certification Logo?
Kindly help me on this.
Regards,
Senthil.

Congratulations on your Certification,
Your S-ID should be in your Certificate, as per the logo please look at the Sticky posts like 4 rows before your post and you will find the answer.
As I can see you are new user on SDN and strongly suggest you to do first a search before posting questions like this so we won´t get filled with the same question over and over and over again!!
Regards,

Similar Messages

  • How to get automatic plant and shipping point and storage location

    hi,
    sap gurus,
    how to get automatic plant and shipping point and storage location automatically into the sales order
    i have done all the config settings for that
    but its not appearing automatically.
    regards,
    balaji.t

    Hi
    Balaji...
    U can get the plant in sales order,  by doing the default the same in customer master or in  material master. In customer master -- sales are data--shipping tab delivering plant there u can assign and get the same in order for that customer. it is better to do in customer master rather than in material master.
    Shipping point is getting determine in sales order and u can not make it default like plant. Shipping point is determine in the basis of Shipping condition of customer ( ship to party)+ loading group of material + Deliverying plant there u have to assing the shipping point and it will flow in the sales order. Tcode OVL2
    For S loc u have to enter manually in the sales order u can not get it automatically.
    Hope this will help you.
    Thx.

  • How to get current month and last month dynamically??

    how to get current month and last month dynamically
    like
    month = getCurrentMonth();
    lastmonth = getcurrentMonth() -1;
    please help
    thanks

    hi :-)
    /* depracated but can be still useful */
    java.util.Date dtCurrent = new java.util.Date();
    int month = dtCurrent.getMonth();
    int lastmonth = dtCurrent.getMonth() - 1;
    System.out.println("* " + month);
    System.out.println("* " + lastmonth);
    /* better to use this one */
    Calendar cal = new GregorianCalendar();     
    int imonth = cal.get(Calendar.MONTH);
    int ilastmonth = cal.get(Calendar.MONTH) - 1;
    System.out.println("*** " + imonth);
    System.out.println("*** " + ilastmonth);
    regards,

  • How to get count,index and compare to arraylists

    hi
    how to get count,index and comparing of 2 arraylist.... plz suggest me asap...

    How is your question related to JDBC? And what have you done so far with your code?

  • How to get system status and user status ?

    how to get system status and user status for the given production order?
    In which PP table we can
    find these?
    Thanks&Regards
    Satish

    Hi Ram,
    Use the FM "STATUS_READ" to read both the system and user statuses for an Order.
    Alternatively, the following tables store the user and system status info:
    JSTO- Status object information
    JEST- Individual Object Status
    Hope this helps.
    Let me know if u need further information.
    Regards,
    Sonal

  • How to get customer number and name from the SD document

    Hi All,
    Can you please let me know how to get Customer Number and Name from the SD Document?
    Thanks a lot....
    Anil

    Hi,
    It will be displayed in the SD (BIlling document) itself,  you clikc on the VF03. The customer name and number will also appear in the SO document also Tcode VA03
    regards,
    radhika
    Edited by: kolipara radhika on Jul 10, 2009 5:32 AM

  • How to get total numbers and total price in query reports

    Hi,
    how to get total numbers and total price in query reports.for example:
    particular item is issued 3 times a week...I need total quantity of item issued
    my query...
    SELECT T0.[DocNum], T1.[ItemCode], T1.[Quantity], T1.[Price] FROM OIGE T0  INNER JOIN IGE1 T1 ON T0.DocEntry = T1.DocEntry WHERE T1.[ItemCode]  Like '%%[%1]%%'  and  T1.[U_WOType]='[%0]'

    Hi,
    Try this:
    SELECT T1.[ItemCode], SUM (T1.[Quantity]) as [Total Quantity], SUM (T1.[Quantity] * T1.[Price]) as [Total Price] FROM OIGE T0  INNER JOIN IGE1 T1 ON T0.DocEntry = T1.DocEntry WHERE T1.[ItemCode]  Like '%%[%1]%%'  and  T1.[U_WOType]='[%0]'
    Group By T1.[ItemCode]
    Beni.

  • How to get current time and date??

    How to get current time and date from my PC time and date to the java application??
    i use java.util.* package but got error, that is:
    - java.util.* and java.sql.* class are match
    - abstract class cannot be instantiated
    so what can i do, pls guide...thanks...

    There is a method in the System class that will return the current system time. You could also instantiate a Date, Time, Timestamp, or Calendar object, all of which get created with the system time by default.
    Don't import *. Import the specific classes you need.
    Next time, post the actual text of the exceptions/compile errors. If you make people guess, most just won't bother.

  • How to get system date and time?

    Can someone show me a code on how to get system date and time.
    Thanks!

    there is one really easy way to get system time, the api gives a great example of code on this. use gregorian calendar, which you'll find in the api under GregorianCalendar. You only need to create one instance of GC, ie Calendar time = new GregorianCalendar();
    you save seconds, minute and hours into int values, so you don't have to access the system time every second, you can create a thread which adds one to the int second value, if oyu see what i mean, for example, i have saved the hours, minutes and seconds as int values;
    int hour, minute, second;
    i can then create a thread (Thread thread = new Thread(this) and run it like:
    Calendar time;
    int hour, minute, second;
    Thread thread = null;
    public MyTime() {
    hour= time.get(Calendar.HOUR_OF_DAY);
    minute = time.get(Calendar.MINUTE);
    second = time.get(Calendar.SECOND);
    if(thread == null) {
    thread = new Thread(this);
    thread.start();
    public void run() {
    Thread t = Thread.currentThread();
    while(thread == t) {
    thread.sleep(1000);
    second++;
    if(second > 59)
    minute++;
    if(minute>59)
    hour++;
    formatTime();
    public void formatTime() {
    second = (second > 59? 0 : second);
    minute = (minute > 59? 0 : minute);
    hour = (hour > 23? 0 : hour);
    System.out.println(hour+":"+minute+":"+second);
    public static void main(String[] args) {
    new MyTime();
    I know this looks like gibberish but it should work. If not, try to fix the problem, i have written from memory really but i guarantee you, this gets the time then every second, simply adds one to the second and then formats time. You can also access the day, month and year then format them using the above code. I don't like giving code since you should really do these things yourself but it is 2:04am, i have nothing better to do and i am not tired so i did you a favour - i have become what i always did not want to, someone ho stays upall night writing code.

  • Can any one help i have lost safari on my powerMAC g4 and cant figure out how to get it back  and safari 5 is not supported on my cumputer

    can any one help i have lost safari on my powerMAC g4 and cant figure out how to get it back  and safari 5 is not supported on my computer

    Make sure there's enough free space on the startup disk.
    Right or control click the MacintoshHD icon on your Desktop.
    Click Get Info. In the Get Info window you will see Capacity and Available.
    Make sure there's a minimum of 15% free disk space.
    If there's sufficient disk space, the startup disk may need repairing.
    Launch Disk Utility located in /Applications/Utilities
    Select the startup disk on the left then select the First Aid tab.
    Click Verify Disk  (not Verify Disk Permissions)
    You will need your install disc if the startup disk needs repairing.
    Using Disk Utility to verify or repair disks

  • I have an Apple I Phone 4S which is great but, can someone help me how to get the photos and videos to my PC which runs on MS XP. I would like to be able to edit and copy to a DVD.

    I have an Apple I Phone 4S which is great but, can someone help me how to get the photos and videos to my PC which runs on MS XP. I would like to be able to edit and copy photos and videos to a DVD.

    Connect your iPhone to your computer. Tp your pc should recognize your iPhone as a camera. Use what ever application you have on the pc to transfer files from a camera to your computer.

  • How to get rid of Quicktime logo

    Hello folks,
    thanks to James and his advice I had managed to post my videoclip on the website the way I wanted. (make it start to play right away as a loop without controller being attached to it)
    But there is one little problem, which I did not notice until now. Before the clip starts to play, Quicktime logo appears for about 2-3 seconds. Than it dissapears and clip shows up and starts to play. Does anyone know how to get rid of that logo?
    Thanks for any tip or advice.
    videoman

    I think this has to do with another setting that is available in QuickTime Pro....something like faststart or something like that. Basically, I think the QuickTime logo is being displayed while your movie is downloaded and your movie doesn't start until it is fully downloaded.
    I think you may be able to run your QT movie through iSquint and get the faststart thing activated if you don't have access to QTpro...
    http://www.isquint.org
    Just push the quality slider to FULL and in the advanced panel enter in your movie dimensions. I don't know if this will do the trick, but it's worth a try. Otherwise, you should be able to enable faststart in QuickTime pro.

  • Can anyone help me: How to check or update my status as SAP Certified Consultant / How to get my SAP Certificate ID Validated. - Reg.

    Dear Concern / All,
    Greetings of the day !!!
    I am an Indian. I have applied / booked for SAP Certification examination through PearsonVUE and the test centre was in Dubai.
    I have appeared and cleared SAP Certification Exam in the month of March, 2014 and received my SAP Global Certification which certifies me as "SAP Certified Application Associate" along with the Certificate ID after 4 weeks.
    I am seeking support / information / help for the below mentioned:
    How or where can I verify my SAP Certification details?
    How or where can I validate / update my SAP Certification details?
    How or where can I update my status as SAP Certified Consultant?
    Where or how can I get SAP Logo?
    I would be very thankful for extending your kind support / information / help in this regard.
    With Regards and Thanks in Advance
    Abhiman Surineni

    HI abhiman,
    How or where can I verify my SAP Certification details?
    Pearson VUE - Authenticate Score Report  --- go to this link and give your details and for
    How or where can I validate / update my SAP Certification details?
    Pearson VUE - Authenticate Score Report --- go to this link and give your details same link
    How or where can I update my status as SAP Certified Consultant?
    Pearson VUE - Authenticate Score Report --- go to this link and check once .... after 1 month the address which you have for pearson vue  and address details of you all your SAP certificates will reach you in 1 month to your postal address.
    Where or how can I get SAP Logo?
    Previously there is one person names Kenneth , he will issuing the SAP LOGO for certified consultants but now you can contact [email protected] they will issue you the logo if possible
    you will get all your documents and certification within short time , so no need to worry ...All the best and Good luck for your SAP carrer.
    Thank you.

  • How to get rid of IDES logo in the SAPScript Layout PSFC_PRINT_LAY ?

    Hello Guys,
    I am trying to print the standard production order.
    The printout has the IDES logo on top left corner for the SAPScript Layoutset PSFC_PRINT_LAY.
    How do I get rid of it?
    Is there a config setting for that?
    How do I insert my own logo?
    Thanks
    George King

    hi
    I tcode se78 where you have to import your logo from outside to SAP system. and then copy this to the  smartform of PSFC_PRINT_LAY
    but for this you have to consult with ABAPER
    Regards
    Pravin

  • How to get Request object and LDAP user

    Hi All,
    How to get Request object, coz i want to see the out put of this code
    IUser myUser = request.getUser();
    String uid=myUser.getUid();
    I want to get only LDAP user from the server, for that i am having  code but i think this code is returning me all user from the server.
    com.sap.security.api.IUser user = null;
    try {
          IUserFactory userFactory = UMFactory.getUserFactory();
         IUserSearchFilter searchFilter = userFactory.getUserSearchFilter();
    ISearchResult searchResult = userFactory.searchUsers(searchFilter);
       int count = 0;
        List list = new ArrayList();
         while (searchResult.hasNext()) {
                      count++;
                       String uniqueid = (String) searchResult.next();
                        user = userFactory.getUser(uniqueid);
                        list.add(user.getUniqueName());
    This code is giving me all user from the server LDAP and as well as portal user.
    But i want only LDAP.
    Please help me out. It's urgent.
    Regards,
    Deepak

    Hi
    use the following code
    //Request
    IWDRequest = WDProtocolAdapter.getProtocolAdapter().getRequestObject();
    //User
    IWDClientUser = WDClientUser.getCurrentUser();
    Regards
    Ayyapparaj

Maybe you are looking for

  • Problem with indesign CS4 program

    I've searched for this already but have had no luck finding a fix. My problem is that when I am running indesign CS4 on my laptop I cannot select the master page nor any other pages. Also certain other controls are not functioning like ruler guides,

  • BAPI for HU ( change of quantity)

    Hi, I need to change the Handling unit quantity which is maintained in table vepo using some bapi or FM. Request you to provide one.... i tried HU_iTEM_CHANGE but this doesn't fetch me the desired result...as it is called from some indep program... P

  • Display stock on hand information on Monday mornings

    Can you think of any way for us to be able to display stock on hand information on Monday mornings?  If the data is loaded from a file that has a Sunday date in the file it will not be displayed in the current week.  Since this would only happen on M

  • Report Restrictions

    Hi All, I am working on a report and in report designer I have taken Customer Account Number ,Account Type,Posting key, Doc Type,Posting Date, G/L Account and Type of Payment. Now I want to see only 3 Doc.Types Only few Customer Account Numbers Only

  • Three Questions Re: Monster iCarPlay FM Transmitter

    1. Is it worth the price? Its twice the cost of the Belkin TuneCast. Is the sound quality that much better? 2. Whats the difference between the iCarPlay and the iCarPlay Plus? 3. Is price wasnt an issue, what would be the FM transmitter of choice? Th