LSMW session name change

I have an LSMW routine which runs well for batch data input.   For authorization purposes, I need to change the name of the "batch input session"  -- last step of the LSMW recorded routine.   How can I change it?   It defaults to the LSMW object name.
Thanks.

Hello ,
you can make use of global variable g_groupname in your LSMW.
regards
Prabhu

Similar Messages

  • Lsmw project name change

    we have a lsmw.
    project ,subobject and object names have been given and saved.
    Project               Finance
    Subproject            Assests
    Object                GLACC
    Now i want to change only the project name Ie finance to IndiaFi , but i am not able to find the option.please tell

    Hi,
    go to administration option in the menu. You can then see all the projects.
    You will be able to rename over here.
    Regards,
    Ankur Parab

  • Creation Dynamic session name using BDC session Method

    Hi All,
    I have one typical BDC problem. If the number of records in file are crossing 80,my bdc is giving problem .So I need to split total records into sets of 80 and submit them. So I need to create the session name dynamically, pass the data dynamically. IF you have example code  or know the procedure as how to proceed kindly inform me
    Regards
    Praveen

    Hi Rob,
    Please find my code below..
    Part of the variables are in Polish since the original developer is a polish guy..
    Praveen
    Code.
    *& Report  ZCO_I025_WSKAZNIKI_STAT_DEV                                 *
    *& Interfejs wczytywania wskaźników statystycznych                     *
    REPORT  zco_i025_wskazniki_stat_dev                                 .
    TYPES:
      BEGIN OF l_tab_dane,
        indic LIKE rk23f-stagr,
        quant LIKE rk23f-mbgbtr,
        mpk LIKE rk23f-ekostl,
        order LIKE rk23f-eaufnr,
        text LIKE rk23f-sgtxt,
      END OF l_tab_dane.
    DATA:
      it_excel TYPE TABLE OF alsmex_tabline,
      wa_excel TYPE alsmex_tabline,
      it_data TYPE TABLE OF l_tab_dane,
      wa_data TYPE l_tab_dane,
      error  TYPE C,
      msg TYPE string.
    DATA:
      iv_pole TYPE string,
      ddatum(10),
      kdatum(10),
    *Inserted By satyam Developer
       filelist    TYPE filetable,
            rc          TYPE i.
    DATA: BEGIN OF bdctab OCCURS 5.
            INCLUDE STRUCTURE bdcdata.
    DATA: END OF bdctab.
    SELECTION-SCREEN BEGIN OF BLOCK p1 WITH FRAME TITLE text-001.
    PARAMETERS:
      p_zakla LIKE tka01-kokrs DEFAULT '1000',
      p_ddate LIKE sy-datum DEFAULT sy-datum,
      p_kdate LIKE sy-datum DEFAULT sy-datum.
    SELECTION-SCREEN ULINE.
    PARAMETERS:
      p_fname LIKE rlgrap-filename.  " DEFAULT 'd:dane.xls'.
    SELECTION-SCREEN END OF BLOCK p1.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_fname.
      CALL METHOD cl_gui_frontend_services=>file_open_dialog
        EXPORTING
          file_filter       = cl_gui_frontend_services=>filetype_excel
         multiselection    = 'X'
        CHANGING
          file_table        = filelist
          rc                = rc.
      IF LINES( filelist ) IS INITIAL.
        EXIT.
      ENDIF.
      READ TABLE filelist INDEX 1 INTO p_fname.
    START-OF-SELECTION.
    AUTHORITY-CHECK OBJECT 'TKA01'
      ID 'KOKRS' FIELD p_zakla.
    CONCATENATE p_ddate6(2) '.' p_ddate4(2) '.' p_ddate(4) INTO ddatum.
    CONCATENATE p_kdate6(2) '.' p_kdate4(2) '.' p_kdate(4) INTO kdatum.
    error = '0'.
    PERFORM wczytaj_dane.
    IF error = '0'.
      PERFORM utworz_sesje.
      PERFORM wprowadz_dane.
       PERFORM zamknij_sesje.   "comment by prav
    ENDIF.
      PERFORM zamknij_sesje.        "add by prav
    IF error = '1'.
      WRITE: msg, /.
    ENDIF.
    WRITE: 'Wykonano', /.
    *&      Form  wczytaj_dane
          text
    FORM wczytaj_dane.
      CALL FUNCTION 'ALSM_EXCEL_TO_INTERNAL_TABLE'
        EXPORTING
          filename                = p_fname
          i_begin_col             = 1
          i_begin_row             = 1
          i_end_col               = 8
          i_end_row               = 65000
        TABLES
          intern                  = it_excel
        EXCEPTIONS
          inconsistent_parameters = 1
          upload_ole              = 2
          OTHERS                  = 3.
      IF sy-subrc <> 0.
        WRITE: / 'B&#322;ad importu pliku wejsciowego: ', p_fname, ' - ',
        sy-subrc.
      ELSE.
        SORT it_excel BY row col.
        LOOP AT it_excel INTO wa_excel.
          IF wa_excel-row = 1.
            CONTINUE.
          ENDIF.
          iv_pole = wa_excel-value.
          CASE wa_excel-col.
            WHEN 1. wa_data-indic = iv_pole.
            WHEN 2.
              REPLACE ',' WITH '.' INTO iv_pole.
              wa_data-quant = iv_pole.
            WHEN 3. wa_data-mpk = iv_pole.
            WHEN 4. wa_data-order = iv_pole.
            WHEN 5. wa_data-text = iv_pole.
          ENDCASE.
          AT END OF row.
            IF wa_data-mpk IS INITIAL AND wa_data-order IS INITIAL.
              error = '1'.
              WRITE:
    'Musi by&#263; podane Stanowisko kosztów lub Zlecenie wewn&#281;trzne. Rekord: ',
              wa_excel-row, /.
              EXIT.
            ENDIF.
            IF wa_data-mpk IS NOT INITIAL AND wa_data-order IS NOT INITIAL.
              error = '1'.
              WRITE:
    'Musi by&#263; podane Stanowisko kosztów lub Zlecenie wewn&#281;trzne. Rekord: ',
              wa_excel-row, /.
              EXIT.
            ENDIF.
            IF wa_data-indic IS INITIAL.
              error = '1'.
              WRITE: 'Brak identyfikatora wska&#378;nika. Rekord: ', wa_excel-row
              EXIT.
            ENDIF.
            IF wa_data-quant IS INITIAL.
              error = '1'.
              WRITE: 'Brak informacji o ilo&#347;ci. Rekord: ', wa_excel-row, /.
              EXIT.
            ENDIF.
            APPEND wa_data TO it_data.
            CLEAR wa_data.
          ENDAT.
        ENDLOOP.
      ENDIF.
    ENDFORM.                    "wczytaj_dane
    *&      Form  wprowadz_dane
          text
    FORM wprowadz_dane.
      DATA:
        licznik TYPE i,
        l_txt TYPE string,
        pole(30) TYPE c,
        liczba(15) TYPE c.
      LOOP AT it_data into wa_data.
      PERFORM bdc_dynpro      USING 'SAPLSPO4' '0300'.
      PERFORM bdc_field       USING 'BDC_CURSOR' 'SVALD-VALUE(01)'.
      PERFORM bdc_field       USING 'BDC_OKCODE' '=FURT'.
      PERFORM bdc_field       USING 'SVALD-VALUE(01)' p_zakla.
      PERFORM bdc_dynpro      USING 'SAPLK23F1' '1200'.
      PERFORM bdc_field       USING 'BDC_OKCODE' '/00'.
      PERFORM bdc_field       USING 'COHEADER-SEND_REC_REL' '03SAP'.
      PERFORM bdc_field       USING 'RK23F-STATUS' 'L'.
      PERFORM bdc_field       USING 'COHEADER-BLDAT' ddatum.
      PERFORM bdc_field       USING 'COHEADER-BUDAT' kdatum.
      PERFORM bdc_field       USING 'BDC_CURSOR' 'EKOSTL(1)'.
      licznik = 0.
    LOOP AT it_data into wa_data.
        ADD 1 TO licznik.
        l_txt = licznik.
        CONCATENATE 'EL4(' l_txt ')' INTO pole.
        condense pole no-gaps.
        PERFORM bdc_field USING pole wa_data-indic.
        CONCATENATE 'ELR1(' l_txt ')' INTO pole.
           condense pole no-gaps.
          liczba = wa_data-quant.
          if liczba <  0.
              shift liczba circular  left up to '-'.
          endif.
            condense liczba no-gaps.
        PERFORM bdc_field USING pole liczba.
        IF NOT wa_data-mpk IS INITIAL.
          CONCATENATE 'EL2(' l_txt ')' INTO pole.
             condense pole no-gaps.
          PERFORM bdc_field USING pole wa_data-mpk.
        ENDIF.
        IF NOT wa_data-order IS INITIAL.
          CONCATENATE 'EL3(' l_txt ')' INTO pole.
             condense pole no-gaps.
          PERFORM bdc_field USING pole wa_data-order.
        ENDIF.
        CONCATENATE 'EL8(' l_txt ')' INTO pole.
           condense pole no-gaps.
        PERFORM bdc_field USING pole wa_data-text.
    call transaction 'KB31N' using bdctab mode 'A'.
    refresh:bdctab.
    clear bdctab.
      ENDLOOP.
    CALL FUNCTION 'BDC_INSERT'
       EXPORTING
         tcode            = 'KB31N'
       TABLES
         dynprotab        = bdctab
       EXCEPTIONS
         internal_error   = 1
         not_open         = 2
         queue_error      = 3
         tcode_invalid    = 4
         printing_invalid = 5
         posting_invalid  = 6
         OTHERS           = 7.
    IF sy-subrc <> 0.
       WRITE: / text-010 .
    ENDIF.
    call transaction 'KB31N' using bdctab mode 'A'.
    REFRESH bdctab.
    clear:bdctab.        "by praveen
    ENDFORM.                    "wprowadz_dane
    *&      Form  bdc_dynpro
          text
         -->PROGRAM    text
         -->DYNPRO     text
    FORM bdc_dynpro USING program dynpro.
      CLEAR bdctab.
      MOVE:
        program   TO bdctab-program,
        dynpro    TO bdctab-dynpro,
        'X'       TO bdctab-dynbegin.
      APPEND bdctab.
    ENDFORM.                    "bdc_dynpro
    *&      Form  bdc_field
          text
         -->POLE       text
         -->WARTOSC    text
    FORM bdc_field USING pole wartosc.
      CLEAR bdctab.
      MOVE:
        pole     TO bdctab-fnam,
        wartosc  TO bdctab-fval.
      APPEND bdctab.
    ENDFORM.                    "bdc_field
    *&      Form  utworz_sesje
          text
    FORM utworz_sesje.
      CALL FUNCTION 'BDC_OPEN_GROUP'
        EXPORTING
          client = sy-mandt
          group  = 'WSKASTAT'
          user   = sy-uname
          keep   = 'X'.
    **begin  of praveen
    *if sy-subrc ne 0.
    write 'hai'.
    endif.
    **end of praveen
    ENDFORM.                    "utworz_sesje
    *&      Form  zamknij_sesje
          text
    FORM zamknij_sesje.
      CALL FUNCTION 'BDC_CLOSE_GROUP'.
      IF sy-subrc NE 0.
        WRITE: /, 'B&#322;ad podczas zamykania sesji'.
        EXIT.
      ENDIF.
    ENDFORM.                    "zamknij_sesje

  • Msg.exe Error 5 Getting Session Names

    Ok after 2 days of research and messing with policys i still have yet to resolve this issue. Due to vista not having netsend anymore I tried using the msg.exe command. So far I have got it to work just on my local computer. But sending it to other vista computers It gives me an error:
    Error 5 getting session names
    I am computer Atlantis
    Destination: computer designated as "Challenger"
    Both running Vista Business SP1
    msg /server:atlantis admin "Test Message"
    (local to local pc works)
    msg /server:challenger admin "Test Message"
    ---> Response: "Error 5 Getting Session Names"
    We are in the same work group, we are not part of a domain
    Any help would be appreciated. From reading it seems to be a policy edit that needs to be changed, but I do not know what to change, so any detailed instructions would be greatly appreciated...
    Alternative i tried: Also i downloaded netsend by czero.com and I can only send the message to XP computers. I cannot send a message to even myself. 

    Hello,
    Based on some discussions about this topic, some community members provide the following tool as the replacement of net send that is not included in Windows Vista:
    http://www.cezeo.com/products/netsend/
    It’s said to support Windows Vista. Please give it a try. 
    Important Note: This response contains a reference to a third party World Wide Web site. Microsoft is providing this information as a convenience to you. Microsoft does not control these sites and has not tested any software or information found on these sites; therefore, Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or information found there. There are inherent dangers in the use of any software found on the Internet, and Microsoft cautions you to make sure that you completely understand the risk before retrieving any software from the Internet.
    Regards,
    Lionel

  • Connection Errors to Remote Desktop from OSX after Domain name change

    We have an issue using Microsoft Remote Desktop from Macs in our school. All was well until we changed the domain name of our RDS servers and installed a new wildcard certificate. Connections work perfectly in Windows 7/8 and also iOS on iPads, but we cannot
    get any Macs to connect having tried OSX 10.7 and 10.9. The error message says the connection failed to load but seems to add a spurious end to the connection string - TS/en-US/Default.aspx - but we cannot trace where this is being picked up.
    We can get to the site in a web browser and sign in to receive the "browser not supported" message in Safari so traffic is obviously getting to the severs.
    Has anyone else had a similar issue? We have spent days poking around with DNS etc but can't seem to make any progress here.

    Hi Jeremy,
    I have tried removing connections and also re-installing the App. We have been using this App since January with no real issues until we made our domain name change - I really don't understand why it works fine in Windows and iOS but not OSX. We are doing
    nothing different to what we have done from day 1.
    Log file from our old connection when it was working looked like this:
    [2014-Mar-24 10:41:43] RDP (0): Final rdp configuration used: redirectcomports=1
    server port=3389
    use multimon=1
    redirectdrives=1
    promptcredentialonce=1
    authentication level=0
    full address=rdsfarm.xxxxxxx.internal
    session bpp=16
    prompt for credentials on client=1
    redirectprinters=1
    drivestoredirect=*
    alternate shell=||OpenMind
    gatewayusagemethod=2
    alternate full address=rdsfarm.xxxxxx.internal
    workspace id=rdsgw.xxxxxxx.internal
    allow font smoothing=1
    redirectposdevices=0
    audiocapturemode=1
    gatewaycredentialssource=0
    remoteapplicationname=OpenMind 2.0
    devicestoredirect=*
    remoteapplicationmode=1
    remoteapplicationprogram=||OpenMind
    enablecredsspsupport=1
    redirectsmartcards=1
    redirectclipboard=1
    span monitors=1
    gatewayprofileusagemethod=1
    gatewayhostname=rds.xxxxxxx.sch.uk
    remoteapplicationcmdline=
    The log file looks very different now, all I am getting is:
    [2014-Jun-17 10:26:41] RDP (0): --- BEGIN INTERFACE LIST ---
    [2014-Jun-17 10:26:41] RDP (0): lo0 af=18  addr= netmask=
    [2014-Jun-17 10:26:41] RDP (0): lo0 af=30 (AF_INET6)  addr=fe80::1%lo0 netmask=ffff:ffff:ffff:ffff::
    [2014-Jun-17 10:26:41] RDP (0): lo0 af=2 (AF_INET)  addr=127.0.0.1 netmask=255.0.0.0
    [2014-Jun-17 10:26:41] RDP (0): lo0 af=30 (AF_INET6)  addr=::1 netmask=ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff
    [2014-Jun-17 10:26:41] RDP (0): gif0 af=18  addr= netmask=
    [2014-Jun-17 10:26:41] RDP (0): stf0 af=18  addr= netmask=
    [2014-Jun-17 10:26:41] RDP (0): en0 af=18  addr= netmask=
    [2014-Jun-17 10:26:41] RDP (0): en1 af=18  addr= netmask=
    [2014-Jun-17 10:26:41] RDP (0): en1 af=30 (AF_INET6)  addr=fe80::21f:5bff:feb8:3f72%en1 netmask=ffff:ffff:ffff:ffff::
    [2014-Jun-17 10:26:41] RDP (0): en1 af=2 (AF_INET)  addr=192.168.0.65 netmask=255.255.255.0
    [2014-Jun-17 10:26:41] RDP (0): fw0 af=18  addr= netmask=
    [2014-Jun-17 10:26:41] RDP (0): --- END INTERFACE LIST ---
    [2014-Jun-17 10:26:41] RDP (0): ----- BEGIN ACTIVE CONNECTION -----
    [2014-Jun-17 10:26:41] RDP (0): client version: 8.0.24875
    [2014-Jun-17 10:26:41] RDP (0): Protocol state changed to: ProtocolConnectingNetwork(1)
    [2014-Jun-17 10:26:41] RDP (0): correlation id: 9f18df13-7c84-dc4b-a780-e6b77a280000
    [2014-Jun-17 10:26:41] RDP (0): Protocol state changed to: ProtocolDisconnected(8)
    [2014-Jun-17 10:26:41] RDP (0): ------ END ACTIVE CONNECTION ------
    [2014-Jun-17 11:44:15] RDP (0): *** Application terminated ***
    [2014-Jun-18 09:51:37] RDP (0): *** Application terminated ***
    [2014-Jun-19 12:00:19] RDP (0): *** Application terminated ***
    [2014-Jun-19 12:15:32] RDP (0): *** Application terminated ***
    [2014-Jun-19 12:16:21] RDP (0): *** Application terminated ***

  • Rename Batch input session name

    I am generating  a BIM after executing the depreciation  run with a name "RAB" instead of "NL2Z".
    But i am unable to process the wrong named BIM,
    How can i change the Batch input session name to new one.

    Hi,
    @Andreas 1) Batch Name is an Authorisation Object
    You will have to contact your BASIS people to get the authorisation to process the file.
    Kind regards

  • Fetching session names from repository using Informatica SDK

    Hi guys, I'm using the Informatica SDK to create a java application that accesses the Informatica repository. I'm having a bit of an issue while trying to fetch the names of already created sessions from the Informatica Repository. I'm able to connect to the repo without any issues and have been able to add sources, targets, mappings, sessions, workflows, etc... and save them directly afterwards. However, when I try to fetch the session names from a folder in the repository, I get the following error: Mon Jul 27 15:03:01 PDT 2015  Severity:DEBUG  ThreadID:14 Running the pmrep process in the working directory: [C:\Informatica\9.6.1\clients\PowerCenterClient\client\bin].Mon Jul 27 15:03:01 PDT 2015  Severity:DEBUG  ThreadID:14 Running the command [listobjects -o session  -f "TechOps" -s .].Mon Jul 27 15:03:01 PDT 2015  Severity:DEBUG  ThreadID:14 Running the command [exit].Mon Jul 27 15:03:01 PDT 2015  Severity:DEBUG  ThreadID:14 Parsing the output of the ListObjects command for each folder.Mon Jul 27 15:03:01 PDT 2015  Severity:DEBUG  ThreadID:14 The following errors occurred while running the ListObjects command: [Failed to read repository connection information. Please first connect to the repository using the connect command.Failed to execute listobjects.].The following errors occurred while running the ListObjects command: [Failed to read repository connection information. Please first connect to the repository using the connect command.Failed to execute listobjects.].com.informatica.powercenter.sdk.mapfwk.exception.RepoOperationException: The following errors occurred while running the ListObjects command: [Failed to read repository connection information. Please first connect to the repository using the connect command.Failed to execute listobjects.].at com.informatica.powercenter.sdk.mapfwk.core.Folder.fetchSessionNamesFromRepository(Unknown Source)at com.informatica.powercenter.sdk.mapfwk.core.Folder.fetchSessionNamesFromRepository(Unknown Source)at com.mars.Main.main(Main.java:170) This doesn't really make sense to me as I'm able to connect to the repo fine to add and save changes. Here's my code for fetching: // Create a list of session names and store the namesList<String> sessionNames = null;try {      sessionNames = folder.fetchSessionNamesFromRepository();} catch (RepoOperationException e) {      // TODO Auto-generated catch block      e.printStackTrace();} catch (MapFwkReaderException e) {      // TODO Auto-generated catch block      e.printStackTrace();} // Print the list of session namesfor (int i = 0; i < sessionNames.size(); i++) {System.out.println("Session " + i + " is " + sessionNames.get(i));} I've confirmed that the folder object works fine as I can add and save other objects to that folder in the repo. The other thing is that if I go to the Informatica path on my drive and run the pmrep command followed by the command for fetching session names, it works fine. Any help on this would be greatly appreciated. Thanks

    Hi Shruti,
    Instead of doing the following when setting the font attributes:
    FontImpl fnt = (FontImpl)res.getFont();
    fnt.getDecoration().setTextColor(c1);
    res.setFont(fnt);
    Try doing this instead:
    res.getAttributes().setForeground(c1);
    res.getFont().setSize(10);
    Hope this helps.
    Regards,
    Dan

  • Session Names - Explanation

    Hi all
    We have about 70 thin clients in our network. We use devices names NComputing VSpace. We use it with
    Terminal Services. We run Windows Server 2008 R2 as an operating system. 
    I would like to create a new Item Level Filter - to create and delete printers for certain devices -
    but I am struggling a bit with the Session Names and the ClientNames. 
    Here is an example of a few sessions:
    At the first session: NC-VSpace#1 the ClientName is
    NCC-12185338-0@91854 
    The last part after the '@' keeps changing. 
    I would like to use the ClientName in the ItemLevel Filtering. So which part of the ClientName do I use?
    (I thought the underlined part should be used. I have created a filter, but it does not work when I use the underlined part)
    Can anyone please help me with this?
    Thanks

    Hi,
    I think you can try the wildcard. For example,
    NCC-12185338-0@*.
    Computer Name Targeting
    http://technet.microsoft.com/en-us/library/cc730752.aspx
    Hope this helps.
    Jeremy Wu
    TechNet Community Support

  • Why did my computer name change?

    Why would my computer's name change all of the sudden from 'macbookpro' to 'macbookpro-2'?
    There's no other macbook pro 2 in my house's wifi.

    The name on a network?  There still may be a session still connected on the router that never got released.  You can reset the router and should restore things back.

  • Help needed. I have a 3TB external hard drive partitioned into 1TB's. I used one partition as backup for the main computer hard drive. But now it is greyed out as shown in the disk utility and its name changed, i dont know how that happened, i tried verif

    Help needed. I have a 3TB external hard drive partitioned into 1TB's. I used one partition as backup for the main computer hard drive. But now it is greyed out as shown in the disk utility and its name changed, i dont know how that happened, i tried verifying and repairing it but had no luck. I also tried mounting and unmounting it but still no solution. Anyone to help please?

    Looks bad. I would strongly advise backing up the stuff on the other two partitions as soon as possible in case the rest of the drive goes wrong.
    Beyond that, Disk Utility has limited abilities to repair disks, DiskWarrior uses a different approach and might, emphasis might be more successful. It has certainly done the job for me in the past when Disk Utility could not.
    See http://www.alsoft.com/diskwarrior/

  • Problem with Sessions & CFID Changing Unexpectedly

    MY SETUP...
    ColdFusion version 8.01 Standard
    Hotfix version hf801-00002.jar 
    Java version 1.6.0_04
    server OS Windows 2008 Enterprise 32bit
    webserver IIS 7.0.6
    database MySql 5.0.67
    THE PROBLEM
    For some visitors, every page on the website gives them a new CFID/CFTOKEN. I tried to narrow it down to a particular browser, but it's happening in every browser. It's only happening for some people. It was happening to me, then it stopped. Not sure what I did to fix it, but it's still happening to others.
    I'm using CFID/CFTOKEN (or more recently, a random number stored in a session.variable) as their temporary ID when they add something to their shopping cart. Problem is, when the CFID or session value changes, the items in their cart are no longer associated with them anymore - their cart appears to be empty at that point.
    For the love of God, what is causing the CFID and Session variables to change on every page? I am storing the client global variables in a MySql table which was setup by CF Administrator and appears to be working properly.
    Lastly, this site has been working fine for years, all of the sudden after some PCI Compliance conformity and CF Patches, this problem arose, so I want to blame it on the patches, but I'm not sure.
    Has anyone else ever had this problem? How did you fix it?

    It can also be (and will always be caused) by any user who's browser (or any part of the connection) does not maintain the cookies.
    If the request does not contain a cookie with currently valid cfid|cftoken and|or cfsessionid values, ColdFusion will generate new ones.  This can be cause by security settings in the browser, OS, firewall, proxy etc.
    This has become an increasingly rare issue in modern Internet computing, but it was a fairly common back in the day when cookies where a new idea.

  • How to get the job logs from sm35 by using the queue id and session name?

    hi all,
    can any one please let me know how to read the job log from sm35 by using the session name and queue id. i have the job name and job count but is it possible to download the job log by using the queue id and session name.
    FYI..
    i want to read this job log and i want to send it to an email id.
    -> i am using the job_open and submitting the zreport via job name and job count and then i am using the function module  job_close.
    but this is not working in my scenario i have the queue id and session name by using this two i want to get the job log is there any function module available or code please provide me some inputs.
    thanks in advance,
    koushik

    Hi Bharath,
    If you want to download it to the local file then you can follow the instructions in the below link.
    How to download Batch Input Session Log?
    Regards,
    Sachin

  • Please read my question carefully, this is, I think, a question for the experts. It's not the usual name change question.   When I setup my new MacBook Pro, something slipped by me and my computer was named First-Lasts-MacBook-Pro (using my real first and

    Please read my question carefully, this is, I think, a question for the experts. It's not the usual name change question.
    When I setup my new MacBook Pro, something slipped by me and my computer was named First-Lasts-MacBook-Pro (using my real first and last name).
    I changed the computer name in Preferences/Sharing to a new name and Preferences/Accounts to just be Mike. I can right click on my account name, choose advanced, and see that everything looks right.
    However, If I do a scan of my network with my iPhone using the free version of IP Scanner, it lists my computer as First-Lasts-MacBook-Pro! And it lists the user as First-Last.
    So even though another Mac just sees my new computer name, and my home folder is Mike, somewhere in the system the original setup with my full name is still stored. And it's available on a network scan. So my full name might show up at a coffee shop.
    Can I fully change the name without doing a complete re-install of Lion and all my apps?

    One thought... you said the iPhone displayed your computer's old name? I think that you must have used the iPhone with this computer before you changed the name. So no one else's iPhone should display your full name unless that iPhone had previously connected to your Mac. For example, I did this exact same change, and I use the Keynote Remote app to connect with my MacBook Pro. It would no longer link with my MacBook Pro under the old name, and I found that I had to unlink and then create a new link under the new name. So the answer to your question is, there is nothing you need to do on the Mac, but rather the phone, and no other phone will display your full name.

  • Logical system name changes

    All,
    Has anyone faced a scenario where you need to change the logical name for any SAP system?
    For instance:
    System      Logical Name                                                    System      Logical name B
    BW                      A                     system is pointing to            ECC                  B
    ECC will be upgraded and system name will changed to C
    Is that possible? If so do you forsee any issues? Can we switch ECC B to ECC C with no issues?
    I appreciate any help.
    Regards

    Hello Mike,
    please elaborate a little more your inquiry. Are you talking about the ALE logical name changing? For this, please check the following notes:
    #544509 ALE: Converting the name of the "logical system"
    #121163 UTI: Logical System names
    If you're referring to a domain name changing (like a Windows domain name change) or a hostname change, please refer to the following notes:
    #96317:   Host names during R/3 upgrade, tips & tricks
    #1275273: Hostname change on 7.10/7.11 java stacks
    #757692:  Changing the hostname for J2EE Engine 6.40/7.0 installation
    #8307:    Changing host name on R/3 host: What do you do?
    #1070561: SMD: Best practice for planned domain name changes
    and on the following SDN threads:
    /message/9196590#9196590 [original link is broken]
    Re: Domain name change
    Re: Change the Domain Controller
    How to change hostname
    Change Domain Controller
    Or, lastly, you're talking about a SID change? On this case, you must perform a system copy to change de SID, please refer to the following note:
    #11692: Renaming the system ID
    (Sorry for the long and generic answer)
    I hope this information helps.
    Best regards,
    Tomas Black

  • Batch rename, name changes after frame 99

    Hi, I put a folder into bridge to do a batch rename and called the text MILAN/SYRIA and gave for first number 00.
    After frame 99 the name changed to a weird  Adobe Bridge Batch Rename Temp 10037
    Which you can see better in the RAW windows, the 99 and the following one.
    Photoshop doesn't like to open a name like that, can't blame her.
    of course I strongly suppose that I should have given 3 digits in Batch rename, and l am looking for your confirmation, and while I am here
    why was my card full at 0485 pictures when a folder I think takes as many as 9999, how do you finish a folder if your card is full?
    i suppose you change card and you keep going with the same folder? Sorry about the camera question, couldn't keep it, thanks dona

    no,no, i started with 00 two digits only, batch rename changed to 623  after i put the folder back in just in order to take the screenshot, i dont know why but that always happens if i put the folder back in after usage, but i do know for life now that if I am going to take over 100 shots, which is most of the time, i should start with 001 or 000.
    See, this is the first number that was given to the first file,  01,WHICH actually became  00, i don't have it here.
    So it rest to know where is "Preserve file name " in current metadata, and would that make it possible  to revert to the original CR2 number?
    Why not to change name straight from the new name? thanks

Maybe you are looking for

  • How do I include a JAVA file in my website  using DreamweaverCC ?

    Hi.  I searched the forums and it seems that all questions relating to JAVA and Dreamweaver elicit zero replies. I hope that someone has some direction.  Thanks again. I have a JAVA file that I want to include or have run within one of my pages in my

  • Lookup in same batch of messages

    hi all, is it possible to do a lookup in same batch of messages? Ex. FTP-XI-R/3 A textfile was transferred in FTP. I need to do a lookup if there are any 2 similar messages (messages containing same value in a certain field).

  • Which sequence settings for Canon Rebel T2i ?

    Hi everyone! I need immediate help. A friend of mine did a rough cut of a project (in Windows Movie Maker) shot with a Canon Rebel T2i. He gave me the file (in .wmv), so that I could do a little color correction and sound editing in Adobe Premiere Pr

  • Since upgrading to FF 7, I do not get pictures in my e-mail (earthlink).

    Prior to the upgrade, I was receiving pictures in my e-mail correspondence which uses earthlink mail. Will this be corrrected?

  • Oracle Execution Time for function inside view

    Hi Guys, i would like to ask if i call a function inside a view , how does it behave in term of execution time and performance For Example i have a view as below create or replace view CUST.CUST_VIEW select a.nice , a.getCustomDisplay(a.name,a.pin,a.