Link between documentation for chars value and chars

Hi,
we need to find out sap transaction or report for link between documentation of chars value and chars.
we know for specific chars through CT04 and going to VALUES sub-tab then selecting perticular chars value and clicking on the documentation for value.

Go to transaction CT10 and select display option 'Allowed values'. You will have the characteristics along with their values.

Similar Messages

  • Link between Ivnoice A/R (OINV) and Ivnoice A/P (OPCH)

    Hi!
    Is it possible to find some link between Ivnoice A/R (OINV) and Ivnoice A/P (OPCH) without using batches, serial numbers and UDFs?
    Any ideas?
    Thanx!
    Regards,
    David

    Hi David,
    I only known of 1 link possibility.
    If you created the purchase order from the sales order (and the invoices are based on the orders) you can find the purchase invoice through the Purchase order, Sales Order, Sales Invoice.
    Regards
    Ad

  • How to create documentation for report programs and how to use it

    how to create documentation for report programs and how to use it in the selection screen by placing an icon in the Applicatin Tool bar. If i click this icon the help documentation has to display.
      Note: Exaple <b>RSTXSCRP</b> programs selection screen

    Hi
    1 goto SE38 transaction, give the program name
    2 Click on documentation radiobutton & then press change
    3 Write your PURPOSE, PREREQUISITES etc details
    4 Save the same & Activae it.
    The icon will come automatically on selection screen
    Thanks
    Sandeep
    Reward if useful

  • Standard Documentation for Add-on and Add-on's Data Base?

    Hi!
    I'd like to know if there is a stantard to create documentation for Add-On and Add-On's Data Base to get the Add-On's Certification.
    Thanks!
    William

    > When applying add-on images to our base the primary MSI's install just
    > fine but none of the MST's and MSP's do not apply.
    I meant to say that none of the MST's and MSP's apply. Sorry about that.

  • Table containing link between SAP REFX Business Partner and Customer

    Hi,
    I am stuck up at a requirement wherein i need the name of the table in which i can pass REFX Business Partner number and get the corresponding Customer Code in the output.
    Can anyone help me in this regard.
    Thanks in advance
    Pankaj Wadhwa

    Hi Pankaj,
    release 470: table BD001 contains link between partner and customer
    SAP ERP: table CVI_CUST_LINK contains link between internal partner guid(!) and customer
    Partner guid is field in table BUT000.
    Hope that helps.
    Regards, Franz

  • Link between SAP R/3 KPRO and SAP Portal

    I'm looking for a link between the archive <b>KPRO</b> of SAP R/3 and the content of <b>SAP portal</b>. In particular I'm interested in a link for the documents loaded in the KPRO archive in SAP R/3 and the SAP portal.
    Theank you for the interest.

    Hello Luca,
    here are some informations about KM Connector for DMS:
    Software:
    Service.sap.com/patches
    -> Entry by application group
    -> BP for DMS Connector KM 1.0
    Or Software and Documentation:
    https://www.sdn.sap.com/irj/sdn/developerareas/contentportfolio
    &#61672;     Browse Content Portfolio
    &#61672;     Choose: Every User – Content & Document Mgmt
    &#61672;     Choose: BP for DMS Connector for KM
    &#61672;     Choose button: Documentation (on the upper right corner)
    Regards
    Thomas

  • How to Query remote PC's registry by OU for 2 values and export to CSV file.

    I'm new to scripting and to Powershell but this is what I have managed to put together so far. Of course it fails. We have two custom entries in the registry that I want to query remote workstations for these values, Monitor 1 and Monitor 2. Output to a
    CSV along with the workstations name. Because of our AD structure I figured its just easier to input the OU individually as seen in the script. That portion of the script seems to work. I get the following error in bold when I run the script: I've Google'd
    and tinkered with this for a week now with no resolution and seem to be going in circles.  And yes, I had help to get this far.
    Exception calling "OpenRemoteBaseKey" with "2" argument(s): "The network path was not found.
    At C:\utils\RegMonitor2.ps1:33 char:5
    +     $regKey = [Microsoft.Win32.RegistryKey]::OpenRemoteBaseKey($Hive,$result.pro ...
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : NotSpecified: (:) [], MethodInvocationException
        + FullyQualifiedErrorId : IOException
    Exception calling "OpenRemoteBaseKey" with "2" argument(s): "The network path was not found.
    At C:\utils\RegMonitor2.ps1:33 char:5
    +     $regKey = [Microsoft.Win32.RegistryKey]::OpenRemoteBaseKey($Hive,$result.pro ...
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : NotSpecified: (:) [], MethodInvocationException
        + FullyQualifiedErrorId : IOException
    # 1) Searches Active Directory for all Computers under said OU
    # 2) Searches remote registry of those machines for the mentioned Monitor and Monitor2 subkeys.
    # 3) Exports CSV (Can be opened and saved as excel format later) with ordered columns Computername, Monitor1 value, monitor2 value.
    # ================================================================
    $SearchPath = "OU=XXX,OU=XXX,OU=XXX,DC=XXX,DC=XXX,DC=XXX"
    $objSearcher = New-Object System.DirectoryServices.DirectorySearcher
    $objSearcher.SearchRoot = New-Object System.DirectoryServices.DirectoryEntry("LDAP://$SearchPATH")
    $objSearcher.PageSize = 1000
    $objSearcher.Filter = "(objectClass=computer)"
    $objSearcher.SearchScope = "Subtree"
    $colProplist = "name"
    $colResults = $objSearcher.FindAll()
    $Store = @()
    $Hive = [Microsoft.Win32.RegistryHive]"LocalMachine";
    foreach ($result in $colResults)
    # Use $result.properties.name to retreive ComputerName
    $obj = New-Object PsObject
    $obj | Add-member -type noteproperty -name "Computername" -Value $result.properties.name
    $regKey = [Microsoft.Win32.RegistryKey]::OpenRemoteBaseKey($Hive,$result.properties.name);
    $ref = $regKey.OpenSubKey("SYSTEM\CurrentcontrolSet\control\Session Manager\Environment");
    $obj | Add-member -type Noteproperty -name "Monitor1" -value $ref.OpenSubKey("Monitor")
    $obj | Add-member -type Noteproperty -name "Monitor2" -value $ref.OpenSubKey("Monitor2")
    $store += $obj
    $store | Select-Object Computername,Monitor1,Monitor2 | Export-CSV -noTypeInformation -Path "Pathtosave.csv"
    People are always promising the apocalypse. They never deliver.
    Ok, I have modified the end of the script a bit, and no more error: Instead I get an unexpected output.
    foreach ($result in $colResults)
        # Use $result.properties.name to retreive ComputerName
        $obj = New-Object PsObject
        $obj | Add-member -type noteproperty -name "Computername" -Value $result.properties.name
        $regKey = [Microsoft.Win32.RegistryKey]::OpenRemoteBaseKey($Hive,$result.properties.name);
        $ref = $regKey.OpenSubKey("SYSTEM\CurrentcontrolSet\control\Session Manager\Environment");
        $obj | Add-member -type Noteproperty -name "Monitor1" -value $ref.OpenSubKey("Monitor")
        $obj | Add-member -type Noteproperty -name "Monitor2" -value $ref.OpenSubKey("Monitor2")
        $store += $obj
    $store | Select-Object Computername,Monitor1,Monitor2 | Export-CSV -noTypeInformation -Path "C:\Utils\Data.csv"
    Unexpected output:
    "Computername","Monitor1","Monitor2"
    "System.DirectoryServices.ResultPropertyValueCollection",,
    "System.DirectoryServices.ResultPropertyValueCollection",,
    "System.DirectoryServices.ResultPropertyValueCollection",,

    Hi,
    What do your registry values look like in the Monitor and Monitor2 subkeys?
    EDIT: This might help:
    # Retrieve list of computers using Get-ADComputer and process each
    Get-ADComputer -Filter * -SearchBase 'OU=Test PCs,DC=domain,DC=com' | ForEach {
    # Verify PC is alive
    If (Test-Connection $_.Name -Quiet -Count 1) {
    # Connect to registry
    $remoteHive = [Microsoft.Win32.RegistryHive]“LocalMachine”;
    $regKey = [Microsoft.Win32.RegistryKey]::OpenRemoteBaseKey($remoteHive,$($_.Name))
    # Open the Environment key
    $ref = $regKey.OpenSubKey('SYSTEM\CurrentcontrolSet\control\Session Manager\Environment')
    # Create an ordered hashtable with the data from string values named 'String Value One/Two' in Monitor and Monitor2 subkeys
    # You'll need to adjust these values based on your actual data
    # If you are running v2, remove [ordered] below (so the line reads $props = @{)
    $props = [ordered]@{
    Computer=$_.Name
    Monitor =$ref.OpenSubKey('Monitor').GetValue('String Value One')
    Monitor2=$ref.OpenSubKey('Monitor2').GetValue('String Value Two')
    # Create a custom object based on the hashtable above
    New-Object PsObject -Property $props
    } | Sort-Object Computer | Export-Csv .\MonitorRegistryCheck.csv -NoTypeInformation
    # The line above sorts the output object by the computer name and then exports the object to a CSV file
    Don't retire TechNet! -
    (Don't give up yet - 12,575+ strong and growing)

  • Link between implementation project configuration (SOLAR02) and ChaRM?

    Dears;
    We want to benefit from listing all IMG Objects and developments in an implementation project (SOLAR02) to control our transports as we have ChaRM activated on the affected systems.
    But there seems to be no link/control which has several consequences:
    *Status of "changes" in ChaRM and related developments in the implementation project have to be tracked seperately
    *There is no link between the development in the project (SOLAR02) and the created TR.
    *There is no limitation/control in the content of the TR if it concerns items not listed in your project => how to check if the project is up-to-date?
    Are my assumptions correct? Or am I forgetting something?
    What is the experience in maintaining changes (transports) for implementation project? On what level? Linked with the structure in Solar02 or completely independant?
    I have done quite some reading around the topics but documentation around project management via SolMan and ChaRM via SolMan seems never to be really connected? (only the overall status of the project and the activation of charm via SOLAR_PROJECT_ADMIN)

    >
    Jett Jiang wrote:
    > 1. Active Change Request Management. the inter-connect is in SOLAR_PROJECT_ADMIN.
    > 2. Use normal correction to control the TRs and updates the documents at the same time.
    Thank you for the reply. Concerning these points:
    1) This is done... No questions there
    2) The "and" in your sentence means that I myself have to do both things? So there is no link?
    So this does mean that (what my understanding was) I have to create a normal change via ChaRM but under the project for example a certain business scenario. That developers work on all topics related and should "remember" that if they put something under that transport they should verify if this is documented in the SOLAR02?
    If then the change is put to testing they should manually update the status of everything related to this transport in the SOLAR02...

  • Need link between Equipment- class- characteristics- values...

    Hi Guys,
    As per the customers requirement I have to list down all the equipments along with the respective corresponding values. The equipments are linked to the Characteristics by class type and class and then characteristics and then the the values that are assigned.
    I am aware that the characteristics and the values are saved in the CABN and CAWN table and the link between them us the internal number.
    Can any one please suggest me if there is a way to find a table link for equipment which are assignd to a Class type and hence a class and then these characteristics in CABN and values in CAWN.
    Thanks in advance.
    Anoop

    Plesae post your question in the appropriate forum -- this is for Asset Accounting.

  • Erroneous link between R/3 Schedule Lines and CRM Schedule Line

    Hi everybody,
    I am analyzing the best approach to fix a duplicate schedule line issue in CRM. The documents are modified from R/3 by means of an IDOC (ORDERS05).
    First of all, let me explain the process.
    1.- Document is first created in CRM
    2.- Document is updated from CRM in R/3 (Using middleware)
    3.- In R/3, a customer program (Z), does a lot of calculations to the order (rejection, item splitting, Qty changes, creation of new Items, etc) and once its done, it populates the IDOC and sends the information to CRM (ORDERS05).
    4.- CRM receives the IDOC, modifies the order.
    5.- Document is update from CRM in R/3 9Using middleware)
    The Z program, DOES NOT modify the database in R/3, it lets the process to be executed and also lets CRM to do this job.
    I had to make several modifications to the XIF module, in order to allow many of those changes to be valid in CRM (i.e., A rejected ITEM is changed to be valid and it's Qty changed. CRM does not allow this to be done in one step, since the qty is "greyed" for no changes).
    Edited by: Rob Burbank on Feb 17, 2010 5:34 PM

    My issue is this.
    The worst thing that happened, is the fact there is key fields in R/3 -> CRM, to link the schedule lines, since R/3 Uses the regular key fields in the T. table, CRM uses the GUID for the sched. lines.
    After a OSS msg and many goes and comes, I had the suggestion from SAP to change from ORDERS05 Idoc into CRMXIF_ORDER_SAVE_M01 idoc, since ORDERS05 is not supported by CRM (however the Idoc is in the system).
    I am not sure that is the best solution, in fact I do not believe that is a solution at all. CRMXIF_ORDER_SAVE_M01 does not exist in R/3 and even if somehow I do all the effort to create it in R/3, R/3 still does not have the schedule line GUID to properly point to the right record.
    What I did to override this error, was to include inside the XIF module the CRM_APO_SALES_SELECT_GUIDS, CRM_ORDER_READ and CRM_ORDER_CONVERT_DOCNUMBER Functions to get all the sched lines for the specific orders in the guid form. However this solution does not work OK, since sometimes the CRM system is not able to properly return the correct GUID values and this leads to the duplicate schedule lines error.
    If somebody has ever deal with a situation like this, I will appreciate if could share its point of view or even better, share the solution used.
    As an extra comment, modifying the Z program to update the database and let middleware to do the job for us, is ou of the qustion at this momento.
    Thank you for your time and help.
    Sincerely
    Meuli
    Moderator message - Welcome to SCN.
    There is a 2,500 character posting limit, but in this case I split it in two.

  • Why is Dynamic Link between Premiere Pro CC 2014 and After Effects CC 2014 not syncing audio changes?

    When I try to use a Dyamic Link between something I've cut in Premiere and a composition in After Effects, if it is simply an audio level change it will not update in AE.  Only if I alter the Video track does it then take the changes reflected.  Any suggestions as to what is causing this?
    Running Adobe Premiere Pro CC 2014 and After Effects CC 2014.

    As Dave alludes, AfterEffects is all about the visual changes ... or at least, mostly. For changes to the audio outside of PrPro's internal controls, highly suggested you use Audition instead. It is all about the sound ... and yes, will update PrPro when used correctly.
    Neil

  • Is there a link between ASCP released planned order and purchase requisition?

    Hi,
    i'm new to EBS. would like to know is there some kind of link on table level between a released planned order with purchase requisition?
    thanks

    Hi,
    As explained by Abhishek, we do not maintain any link between the PLANNED ORDER from which a requisition is created and the actual requisition.
    The simple reason being... in general, businesses run the plans on a daily basis and each time the plan is run, the previous data is overwritten... so there is no point in retaining the information of the planned order from which you are creating the requisition.
    Hope that helps.
    Regards,
    Mohan Balaji
    NOTE: Please mark the post as Helpful or Answered if the update has really helped you. This would also bring the thread to logical conclusion and will be helpful for the viewers.

  • Linking between books for PDF export

    Does anyone have any suggestions as to how to go about setting up links between books in such a way that they'll export to PDF? Here's my scenario: I have two books (indb files with many indd files each). One of the books needs to link to text anchors I've set up in the other. However, linking between the files doesn't work because each book is exported as a single PDF. I had planned to merge the files of the book that is being linked to prior to creating the links, but no matter what I try, Move Pages causes reflow (and given the length and intricacy of the documents I'm sure it's not worth the time to try to fix the reflow; I'd be better off linking the PDF by hand).
    Is this just not a possible workflow? I considered linking to a 'dummy' file that was named like my second book is named, but from what I can tell ID doesn't really export the text anchors in any usable fashion; you either get the links when you export or you can't massage them into being. Any advice would be appreciated.

    This is an interesting suggestion, but I'm not sure how it would work. I've tried outputting one PDF from this combo-indb file and then extracting the pages out into separate PDFs, but the links are lost. I've also tried selecting just the files from each of the actual books within the combo-indb and exporting PDFs for each one, but in that case it assumes it's looking for an anchor within the same PDF. Did you have another approach in mind?

  • Link between "Log of posting run" and GL document

    Dear all my friends,
    is there any table where "Log of posting run" stored ?
    if yes, can we link between "Log of posting run" Ref document and GL document ?
    i mean, link line item of "Log of posting run" Ref document with line item of GL document (Depreciation document, doctype = AF)
    many thanks !
    Edited by: Quoc Luc Nguyen on Oct 29, 2008 3:43 AM

    Hi.
    the link is as always the reference key information (AWKEY). This is partially described in note 890976:
    The created accounting documents can also be found by means of Transaction FB03. To do this, you must call the "Document List" function on the initial screen of the document display. The Company Code and Fiscal Year fields should then be entered individually. You can also enter 'AMDP' as a Reference Transaction. To find all general ledger documents for a certain reference document number, enter the following selection criterion in the "Reference Key" field:
    Reference key = Reference document number + company code + fiscal year
    As the company code and fiscal year, you must enter the parameters with which the depreciation posting run was executed.
    Example:
    - Reference document number from the depreciation posting run 0000001291
    - Company code   1000
    - Fiscal year   2005
    => Reference key = 000000129110002005
    Technically the reference document number is stored in table ANLP. The G/L document (header) is stored in table BKPF.
    Regards,
    Markus

  • Link Between Change Master Table (AENR) and ChangeDocTable (CDHDR/CDPOS)

    Dears,
    I am using change documents to get the detailed list of changes applied to
    BOM.
    This works fine, but I need to know additionnaly whether a given change has
    been done using Change Master ( can display change master in cc02), in reference with a change number.
    This seems feasible, however I don't find any obvious link between AENR
    table and change documents, does anybody have clues about it?

    Hi Ji,
    I am also having similar issue, if u have found the solution please reply. it will be very kind and appriciated.
    Requirement:(Business need)
    It has to be ensured that requested changes to a material, BOM or document carried out in the right order. Therefore, an automaticcheck for open change requests for a specific object record is required.
    Desired Functionality:
    - the user wants to maintain a material, bill of material or a document.
    - on the initial screen of the respective transaction (eg: MM02, CS02). She enters a change request number.
    - the system change whether the object record that the user wants to maintain is already assigned to other change request numbers.
    - if this is the case, the system displays a warning, stating that there are other open change requests for this master data record.
    - in addition, the system lists the relevant change request numbers.
    - the user can continue the maintenance or leave the transaction and first check the mentioned change requests.
    Thanks in advance
    sham.

Maybe you are looking for