Logical command...

Hello,
Please help me on how to use the logical command.
Here is the details of my problem.
In program, a flat file is created and put on the file system. Right after storing the flat file on the file system, an additional logical command needs to be called that starts an FTP script.
logical command: Z_POSTING_PUT
The problem is, I don't know how to use the said logical command. Can any body help me please....
Thanks a lot.
massive

it is used to connect the various external system..
the commond varies according to the system you are using
it can be seen in SM49 transaction and according you need to chose that
* connect to the FTP server and send the files.
* Calculate password length
u201C password used for connection
  v_slen = strlen( ppwd ).
* Encrypt password
  call function 'HTTP_SCRAMBLE'
    exporting
      source      = ppwd
      sourcelen   = v_slen
      key         = v_key
    importing
      destination = v_encrypted_pwd.
* Connect to destination server
  call function 'FTP_CONNECT'
    exporting
      user            = puser
      password        = v_encrypted_pwd
      host            = phost     u201CHost address
      rfc_destination = c_rfc_destination u201Cit is a constant   c_rfc_destination type rfcdes-rfcdest value 'SAPFTPA'.
    importing
      handle          = v_handle
    exceptions
      not_connected.
  if sy-subrc <> 0.
    message e002 with phost sy-subrc.
  endif.
  refresh it_result.
  refresh it_commands.
Commands will depend on which OS is being used on server side and client side.
This code is for unix machines
* change the directory on the destination machine
  concatenate 'cd' prpath into wa_command-line separated by space.
  append wa_command to it_commands.
* Change the local directory on the sap server
  concatenate 'lcd' plpath into wa_command-line separated by space.
  append wa_command to it_commands.
* Set Ascii mode
  clear wa_command-line.
  if pbin eq 'X'.
    move 'bin' to wa_command-line.
  else.
    move 'asc' to wa_command-line.
  endif.
  append wa_command to it_commands.
* files to be transferred
  loop at it_list into wa_list.
* Put the file from the sap server to the destination machine
    concatenate 'put' wa_list-name wa_list-name
                         into wa_command-line separated by space.
    append wa_command to it_commands.
  endloop.
* Send FTP commands to server
  call function 'FTP_COMMAND_LIST'
    exporting
      handle        = v_handle
    importing
      command_index = v_command_index
    tables
      data          = it_result
      commands      = it_commands
    exceptions
      command_error = 1
      tcpip_error   = 2.
  v_subrc = sy-subrc.
  if v_subrc ne 0.
* if there is an error disconnect from the server
* and display an appropriate message
    perform ftp_disconnect using v_handle c_rfc_destination.
    message e004.
  endif.
form ftp_disconnect using
  in_handle
  in_rfc_destination.
* Disconnect from destination server
  call function 'FTP_DISCONNECT'
    exporting
      handle = in_handle.
* Close RFC connection
  call function 'RFC_CONNECTION_CLOSE'
    exporting
      destination = in_rfc_destination
    exceptions
      others      = 1.
endform.                    "ftp_disconnect

Similar Messages

  • Logical command in ABAP.....Urgent

    Hi,
      i am pretty new using ABAP program so i neeed help urgently. i am trying to move a file on the application server from one directory to the other and i was using the open dataset function to do that. but the file i am trying to move is pretty big and because i am using internal table to store, it is causing problems with the space.
      i have consulted the basis guys and they have managed to create a logical file for copying from one directory to the other on the application server. to help you furthter. i am enclosing the mail sent to me.
    I have created a logical command which should copy the file from one location to the other but you need to pass it the source dir and file name and the destination dir and file name.
    The logical command is ZCOPY and uses cmd /c copy
    Copies one or more files to another location.
    COPY [/V] [/N] [/Y | /-Y] [/Z] [/A | /B ] source [/A | /B]
         [+ source [/A | /B] [+ ...]] [destination [/A | /B]]
      source       Specifies the file or files to be copied.
      /A           Indicates an ASCII text file.
      /B           Indicates a binary file.
      destination  Specifies the directory and/or filename for the new file(s).
      /V           Verifies that new files are written correctly.
      /N           Uses short filename, if available, when copying a file with a
                   non-8dot3 name.
      /Y           Suppresses prompting to confirm you want to overwrite an
                   existing destination file.
      /-Y          Causes prompting to confirm you want to overwrite an
                   existing destination file.
      /Z           Copies networked files in restartable mode.
    The switch /Y may be preset in the COPYCMD environment variable.
    This may be overridden with /-Y on the command line.  Default is
    to prompt on overwrites unless COPY command is being executed from
    within a batch script.
    the problem now is i have no idea about how to use the logical command. can any one help me.
    Thank you,
    Ravi.

    If memory is not an issue, then there should be no reason why this should not work.
    report zrich_0001.
    parameters: d1 type localfile default '/usr/sap/TST/SYS/Data1.txt',
                d2 type localfile default '/usr/sap/TST/SYS/Data2.txt'.
    data: itab type table of string with header line.
    start-of-selection.
    * Read old file
      open dataset d1 for input in text mode.
      if sy-subrc = 0.
        do.
          read dataset d1 into itab.
          if sy-subrc <> 0.
            exit.
          endif.
          append itab.
        enddo.
      endif.
      close dataset d1.
    * Write to new file
      open dataset d2 for output in text mode.
      loop at itab.
        transfer itab to d2.
      endloop.
      close dataset d2.
    * Delete the old file
      delete dataset d1.
    Regards,
    Rich Heilman

  • CALCULATE_DIFFERENCE  Logic command purpose and usage

    Experts,
    Recently we are facing the issue of send governor hanging issue and it's causing one of the appserver goes down automatically when users send data using input schedules ,to fix this kind of issues one of the experts suggeted us we should use CALCULATE_DIFFERENCE logic command in the default logic, this is not a permanent fix though but if we use this command the send governor will be active until it reaches the certain no.of sends, for example 20 to 30 , after that we need to manually restart the send governer service.
    But as far as I know the purpose of this  CALCULATE_DIFFERENCE is at what time delta value should calculated i.e either execution of the logic or posting of the values.
    In general when do we use this CALCULATE_DIFFERENCE command? is this command mandatory to include in the logic?
    what are the impacts of this command if we include in the logic as currently we are not using command in any of the logic?
    How does CALCULATE_DIFFERENCE  command affect the send governor service ?
    Is there any relation ship between CALCULATE_DIFFERENCE   command and send governor service ?
    Any help will be apprecited greatly! Thanks

    Hi Krishna,
    The CALCULATE_DIFFERENCE option allows you to turn off or on the write back by difference.
    Here is some further info:
    When posting values, BPC needs to write in the database just the difference between what is already stored and the new value. The calculation of the difference takes time. If such calculation is performed directly by the Logic Module at the time of executing the logic, it is possible that the subsequent posting time will be reduced. This is what the logic module does by default. To override the default, the following instruction can be entered in a logic file:
    *CALCULATE_DIFFERENCE = 0  (default is 1)
    When the calculation of the difference is turned off, the write engine is instructed of the change in behavior and takes over the job of calculating (and posting) the difference, so that the final values will be correct. The main reason for using this instruction is that the debug file will show the values exactly as the user expects them to look like in the fact tables.
    Thanks,
    John

  • Some script logic commands not supported any longer

    Hello, it seems like Prior, *APP(in runallocation), *Name in runallocation...these commands are no longer supported in MS 7.5. I ran the same script logic under MS 5.1 it passes validation in script logic. but in 7.5 it gives error. please advise. thanks.

    Hi Tom
    I don't see where you define or set value for #TEMP_REV and #TEMP_VIS
    something like
    *WHEN CATEGORY.FLAG
    *IS = Y
      *REC(CATEGORY=#TEMP_VIS)
    *ELSE
      *REC(CATEGORY=#TEMP_REV)
    *ENDWHEN
    *GO

  • Logic command question - please help!

    Hi!
    Is there key command to return my cursor to last play point
    Secondary pressing to Stop return cursor to Zero point
    Thanks!

    You know, so many Mac users, have no idea what that does! I didn't before I read your post. I only joined in 10.3.4 and hadn't a clue as to what it did. I just thought it was another carriage return, and so never used it. You learn something new every day! Well, with Logic, I guess I learn about 10 things... Cheers Immo!!!

  • Changing apple remote and Logic commands?

    Is there a way to change what the apple remote does with logic--change what each button does and which function it affects?

    So does ANYONE know if this is even possible? Please help with any info...

  • ABAP-Logic/Command: Execute An Expression Stored In A Variable

    Consider the following code - <b>Is it possible to execute the statement/expression stored in variables expression1, expression2 and expression3?</b> The result should be:
    sum = 5 , subname = 'First' & i_output should be sorted by lifnr and ebeln.
    *---DATA DECLARATIONS
    DATA: sum         TYPE i,
          op1         TYPE i,
          op2         TYPE i,
          name        TYPE string,
          subname     TYPE string,
          offset      TYPE i,
          expression1 TYPE string,
          expression2 TYPE string,
          expression3 TYPE string.
    DATA: BEGIN OF i_output OCCURS 0,
          lifnr TYPE lfa1-lifnr,
          ebeln TYPE ekko-ebeln,
          ebelp TYPE ekpo-ebelp,
          END OF i_output.
    *---BUILD EXPRESSION 1
    op1 = 2.
    op2 = 3.
    expression1 = 'sum = op1 + op2'.
    *---BUILD EXPRESSION 2
    name   = ' First Name'.
    offset = 5.
    expression2 = 'subname = name+1(offset)'.
    *---POPULATE ITAB I_OUTPUT
    MOVE: '111111' TO i_output-lifnr,
          'PO1'    TO i_output-ebeln,
          '010'    TO i_output-ebelp.
    APPEND i_output.
    MOVE: '111511' TO i_output-lifnr,
          'PO1'    TO i_output-ebeln,
          '020'    TO i_output-ebelp.
    APPEND i_output.
    MOVE: '111111' TO i_output-lifnr,
          'PO3'    TO i_output-ebeln,
          '010'    TO i_output-ebelp.
    APPEND i_output.
    MOVE: '114111' TO i_output-lifnr,
          'PO2'    TO i_output-ebeln,
          '010'    TO i_output-ebelp.
    APPEND i_output.
    MOVE: '111121' TO i_output-lifnr,
          'PO2'    TO i_output-ebeln,
          '020'    TO i_output-ebelp.
    APPEND i_output.
    CLEAR i_output.
    *---BUILD EXPRESSION 3
    expression3 = 'sort i_output by lifnr ebeln'.
    Thanks in advance!

    > You can achieve this by generating a subroutine pool
    > dynamically, passing the code lines (expressions) as
    > an internal table. Here is the syntax:
    >
    > GENERATE SUBROUTINE POOL itab NAME name.
    >
    > Hope this helps,
    > Bhanu
    Hey Banu, thanks!
    Message was edited by: Sam

  • Use of prompted hierarchy's base members in Script Logic

    Hello all,
    I have a data manager package which prompts the user for a dimension called P_BUDGET_MODEL. The prompt is SELECT hence the user selects a hierarchy node on this dimension.
    In the relevant Script Logic I have a variable %P_BUDGET_MODEL_SET%, which is automatically created by the system. I would like to run the logic for the basemembers of the hierarchy node.
    Please note - the basemembers are not direct children of the selected hierarchy node (i.e. the selected node is the "grandparent" of the basemembers).
    I tried the following simple logic command:
    *XDIM_MEMBERSET P_BUDGET_MODEL = BAS(%P_BUDGET_MODEL_SET%)
    It yielded a message that "Member BAS() does not exist".
    I have also noticed the following thread:
    [BPC 7.5 NW - HIER NODE in PROMPT using Formule in Package ?;
    If I understood properly it is not relevant to my case because the hierarchy is more that 2 levels deep.
    Any ideas?
    TIA
    Avihay

    Hi,
    As it seems after further investigation the problem is that I use "_" in the dimension names and variable names. This creates a problem to BPC in some cases.
    For example here there is no problem:
    *SELECT(%MODEL%,ID,P_BUDGET_MODEL,ID="%P_BUDGET_MODEL_SET%")
    Here there is a problem hence the use of [ ]
    *XDIM_MEMBERSET P_MONTH = BAS([%P_VERSION_SET%.YEAR].TOTAL)
    Here there is not "_" so the code is fine:
    *XDIM_MEMBERSET P_BUDGET_MODEL = BAS(%MODEL%)
    Strange yet seems that this was the problem...
    Avihay

  • CCMS Auto-React: Operating System Commands

    Hi Gurus,
    I want to run an operating system command in the event that an alert is raised in my CEN CCMS system.
    I have set up the operating system command in SCEN (using SM69) and tested it -- no problems. I have used the example given on help.sap.com. It works great from SM69 or SM49.
    I have created a custom MTE Auto-Reaction Method that is a copy of the SAP standard and it points to the logical name of the op system command I created in SM69.
    But, when I assign the Auto-Reaction method to an MTE and kick off the auto-reaction, nothing happens. I have tried assigning it auto-reaction method as a method for a local MTE and also as a central auto-reaction, but I get nothing.
    Please help me see what I am missing.
    Many thanks in advance,
    Nic Doodson

    Hi Michael,
    Thanks for the response, I hope you can help.
    Logical command is called: Z_NI_ALERT_OVO
    It calls the operating system command: /usr/sap/tmp/test.sh
    It allows additional parameters.
    test.sh is :
    #!/usr/bin/sh
    echo $2 alert from $1 Message $5 $4 > /usr/sap/tmp/alert_$3.txt
    I can run this from SM49/SM69 and it works fine.
    Method is: Z_SEND_ALERT_TO_OVO
    Calls function module: SALO_EXECUTE_SYSTEM_COMMAND_V2
    Can be executed on: Any Server
    Execution Method: Periodically in Dialog Process
    Parameters:
    COMMAND : Z_NI_ALERT_OVO
    PARAMATERS : <blank>
    REACT_ON_ALERTS : red
    MTENAME : SID/SEGMENT/CONTEXT/OBJECT/ATTRIBUTE
    PARAMLIST_1: COLOR DATE_TIME MSG
    PARAMLIST_2: ID
    Help!
    I can only think there is something about it being a local/centrally distrubuted auto-reaction method...I'm assigning it as a cenrally distributed auto-reaction method.
    Any input would be great.
    Cheers,
    Nic

  • Smartforms : How to include Printer commands in smartforms

    I want to include printer command <esc>&l1T at the end of the smartform so that the printer can staple the form after printing.
    Can any one please let me know how to include this in smart form ..?
    Is there any way ..?

    You should use the following way:
    - Copy the device type into the Customer name space.
    - Go via transaction SPAD - Device types into the device type and
    here to tab strip 'Print controls'. Here add a print control
    with the following contents: \e&l1T
    (without flag 'Hexadecimal'; the \e is the escape character)
    - Now go to your Smartform and add a command node (right-click
    on the tree, Create - Flow logic - Command) and enter the print
    control name into the field 'Include Printer Control'.
    This adds the print control at this point. You only have to
    select the right position of the command node in the tree
    (and therefore the point of time, when the sequence shall be sent).
    - If you want to check the print data, which the SAP sends to the
    printer (and therefore whether the escape sequence was included
    correctly), you can use note 5799, method 2.

  • Regarding event & command in smartforms

    i have an assignment like this,i need to develop an smartforms in which
    employees details will come page wise means for first employee the details will come
    in the first page for second employee the details will come in the second page
    like this i need the outptut ,here i need to use templates plz let me know how will
    i proceed in smartforms as well as in the driver programs....
    if possible plz send ur codes as i m new to smartforms.
    FOR THIS i already post the maater and got this answer,
    write the driver program in se38 ......with taking an internal table with the details of all
    employees for your selection.......
    in the driver program itself call ssf_function_module ........and pass the internl atable to
    this FM .......sort the table by employee number
    now create a smartform ......with one page...desgin the page as per your requirement.....
    in the mail window create a loop (assgin the tAable ....to it which has been passed from driver program....)
    inside the loop create at new (down you will see ) and put the employee number field.....
    next inside the loop create a command ...and put a new page(call) ...
    new page will trigger automatically for each employeee.
    and i did as per the answer but i m not getting here in my smartforms i m using
    table under this i have sorted pernr in the data tab and under this event i m
    putting command in this command i m using go to new page,as per this scenario
    i m getting my output but one blank page is also coming in the output ,
    how to remove this page plz help me i also tried in the condition not on first page but it is not coming.
    plz help me

    Hi,
    Uncheck the goto new page command and put the condition pernr not equal to prevevious pernr in the conditions tab of the new command.
    This can be done as follows.
    with in loop and endloop at the end of the loop create text node(cretae a var called W_prev_pernr and then w_prev_pernr = itab-pernr.) which stores the current pernr.at in the conditions tab of the new command(Create>Flow Logic>Command) put the condition like : pernr NE w_prev_pernr.
    Hope this helps you.
    Regards,
    Rama.P.

  • MDX in DIM Logic

    I heard that using MDX is not ok in Dim Logic...could someone please explain why that is? Thanks.

    I'm speaking here regarding BPC on MS in particular; I'm not sure if the exact same situation exists on NW.
    The other concern with dimension logic (as opposed to script logic) is that the formula must be evaluated whenever the user queries for that calculated member (i.e., runs the report). Each subsequent time the member is queried, it must be re-calculated. The result is only stored in the OLAP memory, which may be cleared for other purposes by Analysis Services, depending on many different factors outside your control.
    Script logic, on the other hand, runs the calculation once ( when the data first changes, or when the batch logic command is given), and stores the result to the database. This normally makes data retrieval much faster, and allows you to schedule complex or long calculations during off-peak times.
    Within script logic, there's still an option to use MDX syntax, but the performance is very poor compared to other scripting options.

  • I have a MacBook Pro, 10.10.2 Yosemite. My external hard drive no longer appears on my screen or in Time Machine

    I have a MacBook Pro, 10.10.2 Yosemite. My external hard drive no longer appears on my screen or in Time Machine. I have gone into Disc Utility to repair disc, and get the message: Error: Partition map check failed because no slices were found. I was trying to follow Melophage's instructions by going into "Terminal" and entering  "diskutil list; diskutil cs list; mount"  and "diskutil info disk2."  Then I entered the command "sudo got show disk1."   I am sure I have made the problem worse. Can you give me some help?  Thank you. blelambert
    Last login: Wed Mar 11 19:23:03 on ttys000
    ~ belambert$ diskutil list
    /dev/disk0
       #:                       TYPE NAME                    SIZE       IDENTIFIER
       0:      GUID_partition_scheme                        *251.0 GB   disk0
       1:                        EFI EFI                     209.7 MB   disk0s1
       2:          Apple_CoreStorage                         250.1 GB   disk0s2
       3:                 Apple_Boot Recovery HD             650.0 MB   disk0s3
    /dev/disk1
       #:                       TYPE NAME                    SIZE       IDENTIFIER
       0:                  Apple_HFS Macintosh HD           *249.8 GB   disk1
                                     Logical Volume on disk0s2
                                     7A998EAE-68FB-4BAC-BF40-7A31D2806B2C
                                     Unlocked Encrypted
    /dev/disk2
       #:                       TYPE NAME                    SIZE       IDENTIFIER
       0:      GUID_partition_scheme                        *2.0 TB     disk2
       1:         Microsoft Reserved                         134.2 MB   disk2s1
    ~ belambert$ diskutil cs list
    CoreStorage logical volume groups (1 found)
    |
    +-- Logical Volume Group 883A56F4-5559-4872-A8DA-960F99655B63
        =========================================================
        Name:         Macintosh HD
      Status:       Online
        Size:         250140434432 B (250.1 GB)
        Free Space:   8921088 B (8.9 MB)
        |
        +-< Physical Volume 7EDAFA20-FF9A-45FB-BA44-6526BB46C381
        |   ----------------------------------------------------
        |   Index:    0
        |   Disk:     disk0s2
        |   Status:   Online
        |   Size:     250140434432 B (250.1 GB)
        |
        +-> Logical Volume Family B47B0B40-CBF2-4D02-BFEF-182061AC6F8E
            Encryption Status:       Unlocked
            Encryption Type:         AES-XTS
            Conversion Status:       Complete
            Conversion Direction:    -none-
            Has Encrypted Extents:   Yes
            Fully Secure:            Yes
            Passphrase Required:     Yes
            |
            +-> Logical Volume 7A998EAE-68FB-4BAC-BF40-7A31D2806B2C
                Disk:                  disk1
                Status:                Online
                Size (Total):          249779191808 B (249.8 GB)
                Conversion Progress:   -none-
                Revertible:            Yes (unlock and decryption required)
                LV Name:               Macintosh HD
                Volume Name:           Macintosh HD
                Content Hint:          Apple_HFS
    ~ belambert$ mount
    /dev/disk1 on / (hfs, local, journaled)
    devfs on /dev (devfs, local, nobrowse)
    map -hosts on /net (autofs, nosuid, automounted, nobrowse)
    map auto_home on /home (autofs, automounted, nobrowse)
    localhost:/vB3z604U-dvSpES6320fHq on /Volumes/MobileBackups (mtmfs, nosuid, read-only, nobrowse)
    ~ belambert$ diskutil info disk2
       Device Identifier:        disk2
       Device Node:              /dev/disk2
       Part of Whole:            disk2
       Device / Media Name:      WD My Book 111A Media
      File System:              None
       Content (IOContent):      GUID_partition_scheme
       OS Can Be Installed:      No
       Media Type:               Generic
       Protocol:                 USB
       SMART Status:             Not Supported
       Total Size:               2.0 TB (2000365289472 Bytes) (exactly 3906963456 512-Byte-Units)
       Volume Free Space:        Not applicable (no file system)
       Device Block Size:        512 Bytes
       Read-Only Media:          No
       Read-Only Volume:         Not applicable (no file system)
       Ejectable:                Yes
      File System:              None
       Content (IOContent):      GUID_partition_scheme
       OS Can Be Installed:      No
       Media Type:               Generic
       Protocol:                 USB
       SMART Status:             Not Supported
       Total Size:               2.0 TB (2000365289472 Bytes) (exactly 3906963456 512-Byte-Units)
       Volume Free Space:        Not applicable (no file system)
       Device Block Size:        512 Bytes
       Read-Only Media:          No
       Read-Only Volume:         Not applicable (no file system)
       Ejectable:                Yes
    belambert  ttys000                   Wed Mar 11 17:34 - 17:39  (00:05)
    belambert  ttys000                   Wed Mar 11 17:33 - 17:34  (00:00)
    wtmp begins Sun Mar  8 14:40
    ~ belambert$ ~ belambert$ diskutil list
    -bash: :~: command not found
    ~ belambert$ /dev/disk0
    -bash: /dev/disk0: Permission denied
    :~ belambert$    #:                       TYPE NAME                    SIZE       IDENTIFIER
    ~ belambert$    0:      GUID_partition_scheme                        *251.0 GB   disk0
    -bash: 0:: command not found
    :~ belambert$    1:                        EFI EFI                     209.7 MB   disk0s1
    -bash: 1:: command not found
    ~ belambert$    2:          Apple_CoreStorage                         250.1 GB   disk0s2
    -bash: 2:: command not found
    ~ belambert$    3:                 Apple_Boot Recovery HD             650.0 MB   disk0s3
    -bash: /dev/disk1: Permission denied
    ~ belambert$    #:                       TYPE NAME                    SIZE       IDENTIFIER
    ~ belambert$    0:                  Apple_HFS Macintosh HD           *249.8 GB   disk1
    -bash: 0:: command not found
    ~ belambert$                                  Logical Volume on disk0s2
    -bash: Logical: command not found
    ~ belambert$                                  7A998EAE-68FB-4BAC-BF40-7A31D2806B2C
    -bash: 7A998EAE-68FB-4BAC-BF40-7A31D2806B2C: command not found
    ~ belambert$                                  Unlocked Encrypted
    -bash: Unlocked: command not found
    :~ belambert$ /dev/disk2
    -bash: /dev/disk2: Permission denied
    ~ belambert$    #:                       TYPE NAME                    SIZE       IDENTIFIER
    :~ belambert$    0:      GUID_partition_scheme                        *2.0 TB     disk2
    -bash: 0:: command not found
    ~ belambert$    1:         Microsoft Reserved                         134.2 MB   disk2s1
    -bash: 1:: command not found
    ~ belambert$ ~ belambert$ diskutil cs list
    -bash: ~: command not found
    ~ belambert$ CoreStorage logical volume groups (1 found)
    -bash: syntax error near unexpected token `('
    ~ belambert$ |
    -bash: syntax error near unexpected token `|'
    ~ belambert$ +-- Logical Volume Group 883A56F4-5559-4872-A8DA-960F99655B63
    -bash: +--: command not found
    ~ belambert$     =========================================================
    -bash: =========================================================: command not found
    ~ belambert$     Name:         Macintosh HD
    -bash: Name:: command not found
    ~ belambert$
    -bash: 3:: command not found
    ~ belambert$ /dev/disk1
       Whole:                    Yes
       Internal:                 No
       OS 9 Drivers:             No
       Low Level Format:         Not supported
    :~ belambert$ Last login: Wed Mar 11 19:23:03 on ttys000
    ~ belambert$ diskutil list
       Whole:                    Yes
       Internal:                 No
       OS 9 Drivers:             No
       Low Level Format:         Not supported
    ~ belambert$ Last login: Wed Mar 11 19:23:03 on ttys000
    ~ belambert$ diskutil list
       Volume Name:              Not applicable (no file system)
       Mounted:                  Not applicable (no file system)

    racergirl,
    have you tried resetting your MacBook Pro’s System Management Controller, to see if that makes a difference with the heat?

  • Terms and conditions not getting displayed on the last page

    Hi All,
    I have to display a smartform, on the front side of the page i have to display material details and on the back side of the page i have to display terms and conditions. I' am unable to print the material details and terms and conditions in duplex mode, but on the last page only material details are getting displayed, terms and conditions are not getting displayed.
    Can you please help me how to make the terms and conditions get printed on the back side of the last page.
    Thanks,

    I'm a bit confused by the statement "I' am unable to print the material details and terms and conditions in duplex mode".
    I suppose you meant to say "I am able to print the material details and terms and conditions in duplex mode", correct?
    If the problem is that on the last form page, the T&C is not getting printed on the back of the form, you could force the T&C page by using a flow logic command as the very last element of the main window, which gets processed when all the data is already output. For the command, use the 'Go to New Page' and specify the page name for the Terms & Conditions.
    In case this causes an issue that the last page is printed twice (since the T&C page is likely defined with the next page being NEXT_PAGE), then copy the already existing T&C page, call it LASTPAGE and leave the Next Page attribute empty.

  • BRCONNECT unable to find oracle library

    Hi
    After SAP upgrade to Netweaver 7.0 with Oracle 10.2 on HP-UX system, the BRCONNECT program unable to execute DBA jobs. It is ending with following error with user <sid>adm
    Execute logical command BRCONNECT On host <wxyz>
    Parameters: -u / -jid CHECK20080812023451 -c -f check
    /usr/lib/pa20_64/dld.sl: Unable to find library 'libclntsh.sl.10.1'.
    Process died due to signal 9
    And if I run it using user ora<sid>, it ends with insufficient privileges.
    BR0801I BRCONNECT 7.00 (32)
    BR0301E SQL error -1031 at location BrLicCheck-14, SQL statement:
    'SELECT COUNT(*) FROM SAP_SAPLIKEY'
    ORA-01031: insufficient privileges
    BR0804I BRCONNECT terminated with errors
    The roles granted to users OPS$<SID>ADM and OPS$ORA<SID> are RESOURCE, CONNECT and SAPDBA.
    please provide your inputs on these issues i.e. how to make the oracle library available when running brconnect using <sid>adm user and how to remove the "ORA-01031: insufficient privileges"  when running brconnect using ora<sid> user.
    Thanks
    Vinod

    Hi All
    I have tried executing it on <sid>adm commandline but it is giving same error.
    >brconnect -u / -c -f check
    /usr/lib/pa20_64/dld.sl: Unable to find library 'libclntsh.sl.10.1'.
    Killed
    The following are the env for <sid>adm
    _=/usr/bin/env
    THREAD=NOPS
    SHLIB_PATH=/usr/sap/<SID>/SYS/exe/run:/oracle/client/10x_64/instantclient
    ORACLE_PSRV=<SID>
    PATH=/oracle/<SID>/102_64/bin:/home/<SID>adm:/usr/sap/<SID>/SYS/exe/run:/opt/sudo/bin:/opt/sudo/sbin:/usr/bin:/opt/ansic/bin:/usr/ccs/bin:/usr/contrib/bin:/opt/hparray/bin:/opt/nettladm/bin:/opt/upgrade/bin:/opt/fcms/bin:/opt/pd/bin:/usr/bin/X11:/usr/contrib/bin/X11:/opt/resmon/bin:/opt/perf/bin:/opt/prm/bin:/opt/mx/bin:/opt/ignite/bin:/opt/gnome/bin:/opt/mozilla:/opt/wbem/bin:/opt/wbem/sbin:/opt/langtools/bin:/opt/imake/bin:/opt/graphics/common/bin:/usr/sbin/diag/contrib:/opt/sudo/bin:/opt/networker/bin:/opt/hpnpl//bin:/opt/OV/bin/OpC:/opt/OV/bin:/opt/cfg2html:/opt/ssh/bin:/opt/java1.4/bin:.
    NLS_LANG=AMERICAN_AMERICA.WE8DEC
    COLUMNS=125
    ORACLE_BASE=/oracle
    EDITOR=vi
    LOGNAME=<sid>adm
    dbs_ora_tnsname=<SID>
    ORACLE_SID=<SID>
    ERASE=^H
    PS1=
    <sid>adm>
    DB_SID=<SID>
    DIR_LIBRARY=/usr/sap/<SID>/SYS/exe/run
    ORA_NLS10=/oracle/<SID>/102_64/nls/data
    dbs_ora_schema=SAP<SID>
    SHELL=/usr/bin/sh
    JAVA_HOME=/opt/java1.4/bin
    SAPDATA_HOME=/oracle/<SID>
    HOME=/home/<SID>adm
    TERM=xterm
    ORACLE_HOME=/oracle/<SID>/102_64
    PWD=/home/<SID>adm
    TZ=CST6CDT
    dbms_type=ORA
    SAPSYSTEMNAME=<SID>
    LINES=44
    The following is command outputs as requested by Fidel
    ls -lR /oracle/client
    drwxr-xr-x   3 ora<sid>     dba           1024 May 30 11:32 10x_64
    drwxr-xr-x   8 ora<sid>     dba           1024 Jan 10  2007 9207
    drwxr-xr-x   4 ora<sid>     dba             96 Mar 12  2004 92x_64
    /oracle/client/10x_64:
    total 87438
    -rwxr-xr-x   1 ora<sid>     dba        44765594 May 30 11:28 OCL10264.SAR.1
    -rw-rr   1 ora<sid>     dba            100 May  4  2006 dbclient.lst
    lrwxr-xr-x   1 ora<sid>     dba             19 May 30 11:32 instantclient -> instantclient_10202
    drwxr-xr-x   2 ora<sid>     dba           1024 May  4  2006 instantclient_10202
    /oracle/client/10x_64/instantclient_10202:
    total 231858
    -rrr--   1 ora<sid>     dba        1594191 Apr 20  2006 classes12.jar
    -rwxr-xr-x   1 ora<sid>     dba        36684488 Apr 20  2006 libclntsh.so.10.1
    -rwxr-xr-x   1 ora<sid>     dba        5231200 Apr 20  2006 libnnz10.so
    -rwxr-xr-x   1 ora<sid>     dba        3322720 Apr 20  2006 libocci.so.10.1
    -rwxr-xr-x   1 ora<sid>     dba        70117848 Apr 20  2006 libociei.so
    -rwxr-xr-x   1 ora<sid>     dba         201112 Apr 20  2006 libocijdbc10.so
    -rrr--   1 ora<sid>     dba        1540457 Apr 20  2006 ojdbc14.jar
    /oracle/client/9207:
    total 2
    drwxr-xr-x   5 ora<sid>     dba             96 Jan 10  2007 jdbc
    drwxr-xr-x   2 ora<sid>     dba           1024 Jan 10  2007 lib
    drwxr-xr-x   3 ora<sid>     dba             96 Jan 10  2007 network
    drwxr-xr-x   3 ora<sid>     dba             96 Jan 10  2007 ocommon
    drwxr-xr-x   5 ora<sid>     dba             96 Jan 10  2007 oracore
    drwxr-xr-x   3 ora<sid>     dba             96 Jan 10  2007 rdbms
    /oracle/client/9207/jdbc:
    total 62
    -rwxr-xr-x   1 ora<sid>     dba          30654 Jan 10  2007 Readme.txt
    drwxr-xr-x   2 ora<sid>     dba             96 Jan 10  2007 demo
    drwxr-xr-x   2 ora<sid>     dba             96 Jan 10  2007 doc
    drwxr-xr-x   2 ora<sid>     dba           1024 Jan 10  2007 lib
    /oracle/client/9207/jdbc/demo:
    total 880
    -rwxr-xr-x   1 ora<sid>     dba         450560 Jan 10  2007 demo.tar
    /oracle/client/9207/jdbc/doc:
    total 14140
    -rwxr-xr-x   1 ora<sid>     dba        3619840 Jan 10  2007 javadoc.tar
    -rwxr-xr-x   1 ora<sid>     dba        3619840 Jan 10  2007 jdbcdoc.tar
    /oracle/client/9207/jdbc/lib:
    total 34090
    -rwxr-xr-x   1 ora<sid>     dba        1413613 Jan 10  2007 classes111_g.jar
    -rwxr-xr-x   1 ora<sid>     dba        1423863 Jan 10  2007 classes111_g.zip
    -rwxr-xr-x   1 ora<sid>     dba        1234433 Jan 10  2007 classes12.jar
    -rwxr-xr-x   1 ora<sid>     dba        1245538 Jan 10  2007 classes12.zip
    -rwxr-xr-x   1 ora<sid>     dba        1476640 Jan 10  2007 classes12_g.jar
    -rwxr-xr-x   1 ora<sid>     dba        1487705 Jan 10  2007 classes12_g.zip
    -rwxr-xr-x   1 ora<sid>     dba        1240587 Jan 10  2007 classes12dms.jar
    -rwxr-xr-x   1 ora<sid>     dba        1483154 Jan 10  2007 classes12dms_g.jar
    -rwxr-xr-x   1 ora<sid>     dba        1848170 Jan 10  2007 nls_charset12.jar
    -rwxr-xr-x   1 ora<sid>     dba        1878202 Jan 10  2007 nls_charset12.zip
    -rwxr-xr-x   1 ora<sid>     dba          37761 Jan 10  2007 ocrs12.jar
    -rwxr-xr-x   1 ora<sid>     dba          37785 Jan 10  2007 ocrs12.zip
    -rwxr-xr-x   1 ora<sid>     dba        1212964 Jan 10  2007 ojdbc14.jar
    -rwxr-xr-x   1 ora<sid>     dba        1427311 Jan 10  2007 ojdbc14_g.jar
    /oracle/client/9207/lib:
    total 52960
    lrwxr-xr-x   1 ora<sid>     dba             16 May 27 08:31 libclntsh.so -> libclntsh.so.9.0
    -rwxrwxrwx   1 ora<sid>     dba        25754472 Jan 10  2007 libclntsh.so.9.0
    -rwxr-xr-x   1 ora<sid>     dba         406606 Jan 10  2007 libocijdbc9.a
    -rwxr-xr-x   1 ora<sid>     dba         226656 Jan 10  2007 libocijdbc9.so
    -rwxr-xr-x   1 ora<sid>     dba         284592 Jan 10  2007 libocijdbc9_g.so
    -rwxr-xr-x   1 ora<sid>     dba         421258 Jan 10  2007 libocijdbcst9.a
    -rwxr-xr-x   1 ora<sid>     dba          18664 Jan 10  2007 libwtc9.so
    /oracle/client/9207/network:
    total 2
    drwxr-xr-x   2 ora<sid>     dba           1024 May 30 13:46 admin
    /oracle/client/9207/network/admin:
    total 8
    -rw-rr   1 ora<sid>     dba             24 May 29 15:38 snmp_ro.ora
    -rw-r-xr-x   1 ora<sid>     dba            277 May 29 15:38 sqlnet.ora
    -rw-r-xr-x   1 ora<sid>     dba           1332 May 29 15:38 tnsnames.ora.old
    /oracle/client/9207/ocommon:
    total 0
    drwxr-xr-x   3 ora<sid>     dba             96 Jan 10  2007 nls
    /oracle/client/9207/ocommon/nls:
    total 0
    drwxr-xr-x   3 ora<sid>     dba             96 Jan 10  2007 admin
    /oracle/client/9207/ocommon/nls/admin:
    total 28
    drwxr-xr-x   2 ora<sid>     dba          14336 Jan 10  2007 data
    /oracle/client/9207/ocommon/nls/admin/data:
    total 41676
    -rwxr-xr-x   1 ora<sid>     dba            721 Jan 10  2007 lx00001.nlb
    -rwxr-xr-x   1 ora<sid>     dba         124146 Jan 10  2007 lx607d01.nlb
    /oracle/client/9207/oracore:
    total 2
    drwxr-xr-x   2 ora<sid>     dba             96 Jan 10  2007 lib
    drwxr-xr-x   2 ora<sid>     dba           1024 Jan 10  2007 mesg
    drwxr-xr-x   2 ora<sid>     dba             96 Jan 10  2007 zoneinfo
    /oracle/client/9207/oracore/lib:
    total 4210
    -rwxr-xr-x   1 ora<sid>     dba        2155296 Jan 10  2007 libcore9.so
    /oracle/client/9207/oracore/mesg:
    total 116
    -rwxr-xr-x   1 ora<sid>     dba           8704 Jan 10  2007 lfiesa.msb
    -rwxr-xr-x   1 ora<sid>     dba           7168 Jan 10  2007 lfius.msb
    -rwxr-xr-x   1 ora<sid>     dba          27588 Jan 10  2007 lfius.msg
    -rwxr-xr-x   1 ora<sid>     dba           4608 Jan 10  2007 lrmesa.msb
    -rwxr-xr-x   1 ora<sid>     dba           4608 Jan 10  2007 lrmus.msb
    -rwxr-xr-x   1 ora<sid>     dba           4441 Jan 10  2007 lrmus.msg
    /oracle/client/9207/oracore/zoneinfo:
    total 1022
    -rwxr-xr-x   1 ora<sid>     dba           2297 Jan 10  2007 readme.txt
    -rwxr-xr-x   1 ora<sid>     dba         370494 Jan 10  2007 timezlrg.dat
    -rwxr-xr-x   1 ora<sid>     dba         148797 Jan 10  2007 timezone.dat
    /oracle/client/9207/rdbms:
    total 2
    drwxr-xr-x   2 ora<sid>     dba           1024 Jan 10  2007 mesg
    /oracle/client/9207/rdbms/mesg:
    total 8854
    -rwxr-xr-x   1 ora<sid>     dba           8704 Jan 10  2007 bbedus.msb
    -rwxr-xr-x   1 ora<sid>     dba         124079 Jan 10  2007 ulus.msg
    /oracle/client/92x_64:
    total 0
    drwxr-xr-x   2 ora<sid>     dba             96 Mar 12  2004 ietc
    lrwxr-xr-x   1 ora<sid>     dba             23 Mar 12  2004 jdbc -> /oracle/<sid>/920_64/jdbc
    lrwxr-xr-x   1 ora<sid>     dba             22 Mar 12  2004 lib -> /oracle/<sid>/920_64/lib
    drwxr-xr-x   3 ora<sid>     dba             96 Mar 12  2004 ocommon
    /oracle/client/92x_64/ietc:
    total 40
    -rwxr-xr-x   1 ora<sid>     dba          19961 Mar 12  2004 CROCLLNK
    /oracle/client/92x_64/ocommon:
    total 0
    drwxr-xr-x   3 ora<sid>     dba             96 Mar 12  2004 nls
    /oracle/client/92x_64/ocommon/nls:
    total 0
    drwxr-xr-x   2 ora<sid>     dba             96 Mar 12  2004 admin
    /oracle/client/92x_64/ocommon/nls/admin:
    total 0
    lrwxr-xr-x   1 ora<sid>     dba             41 Mar 12  2004 data -> /oracle/<sid>/920_64/ocommon/nls/admin/data
    <sid>adm> which brconnect
    /usr/sap/<SID>/SYS/exe/run/brconnect
    <sid>adm> pwd
    /sapmnt/<sid>/exe
    <sid>adm> ldd brconnect
            libnsl.1 =>     /usr/lib/pa20_64/libnsl.1
            libpthread.1 => /usr/lib/pa20_64/libpthread.1
            libm.2 =>       /usr/lib/pa20_64/libm.2
            Unable to find library 'libclntsh.sl.10.1'.
    Also it is not working even after adding oracle instant client path in SHLIB_PATH
    Regards,
    Vinod

Maybe you are looking for

  • Is there any way to combine multiple Apple IDs for the same individual?

    I have two Apple IDs, one of which has a .mac email address. Both have the same name and physical address. With the new iTunes and the coming iCloud, it would be convenient to combine the two for purchase history and access, app updates, etc. How can

  • File- XI- RFC, JDBC

    Hello Gurus. I have a scenario where i have to load File to JDBC (Oracle) and RFC (SAP) in parallel. If my file is QoS (EO), then do I have to use BPM to send the message to JDBC and RFC, or I can just create two Receivers, and the message will split

  • I CAN'T UPDATE FROM IOS 6.1.2 TO IOS 7 PLEASE HELP

    I'm on iOS 6.1.2 but I can't update to iOS 7 I tried also using iTunes and it still didn't work, I even tried updating my iTunes yet it still won't work, and when I download iOS 7 on computer I try updating it, it says extracting software but doesn't

  • Wich Practice exams are good for 1z0-042??

    Transcender and Selftestsoftware seems to be the same exam ?? I download the demos and they seems too much like. I bought Transcender, but I want one more practice exam to test. Anyone know good practice exams that I can buy ?? Anyone knows if Ucerti

  • Extensible Metadata Platform (XMP) included in Elements?

    Hello, I'm trying to find out if Adobe Elements uses the Extensible Metadata Platform.  I use Photoshop CS6 Extended and I like how it allows the user to add metadata to the file. I have an employee who I want to be able to add metadata, but I don't