Partner general text

Hello everybody,
from which table can I read the partner general text ?
Thankx !
Luca

Hi,
You can't read them directly as they are stored in Pool Tables.
You need to use function module to read the texts.
Thanks,
Ramesh

Similar Messages

  • Adding new Field in Business Partner General Data

    Hi All,
    I'm working on a mySAP CRM 4.0 implementation.
    I would like to extend the business partner data with this new three field:
    1) Capital Stock
    2) Base Number
    3) Sales pl.
    The three field are Dun & BradStreet information.
    I  created a BSP that show all Business Partner General Data and now we want to show also those fields.
    In order to extend the BP data we received two suggestion:
    The first one is to use the BP marketing Attributes.
    The second is to use the Easy Enhancement Workbench.
    I know that advantages of the EEW is the automatic creation of the layout (BSP & DYNPRO).
    Doo you have any suggestion??
    It's a good solution to use the EEW??
    Thanks a lot.
    Eugenio

    Hi,
    First of all thanks a lot for the fast reply.
    I have to add some information:
    The end-user will use the application only in PC-UI mode (through Enterprise Portal).
    We are customizing the BSP application (Accounts).
    I know that in past some colleagues used the EEW to extend or to add some field to application BP. I remember that the field (after Enhancement the new fields was visible in SAPGUI mode and in BSP mode).
    Now my questions are the following:
    1) Are you sure that I can use EEW only 10 times??
    2) We are using the BAPI (CRMXIF_PARTNER_SAVE) in order to add Business Partner in the system; after the creation of the new fields with EEW the BAPI (CRMXIF_PARTNER_SAVE) will be able to insert the new fields?? Or we need to extend this BAPI with new fields?
    The second question is very important for us because we have to import in the system about 30.000.000 of Business Partners.
    Kind Regards.
    Eugenio.

  • Create hyperlink in a General Text Object

    Hi,
    using transaction SE61 I want to create a hyperlink to an external site in General Text Object BBP_PRIV_STMNT_EXTERNAL.  The objective is to hav this link showing instead of the confidentiality agreement in the self-registration page.
    Anyone kwows how to do that?
    Thanks.

    I'm in the same boat as you, inasmuchas I taught myself LC. I've tried to replicate your issue. I'm trying to understand where the issue actually lies.
    First, I created a new document to test. I dragged the text field onto the document and stretched it to accomodate what I was going to type and entered: http://www.google.com/something
    This works as intended.
    Next I tried a link similar to yours in our own intranet: http://intranet/WebPages/support.aspx
    That also worked.
    Now, for what you're actually working with: a SharePoint document.
    I tried to paste a link to a document that I created on our Sharepoint site. The link failed! I noticed that the end of the link was truncated (something like 7 characters). So, I tried a shorter link. That worked!
    What else is happening when they click the link? Are they simply being asked to "check out" the document? Are you getting an error message like "an error has occured while opening the page"?
    Message was edited by: jasotastic81 (apparently "lnik" is not a word)

  • Partner Function text

    Hi BW Gurus,
    I need to load transaction data to infoobject ship to, Ship to info object is in Sales ods.I need to load the partner function text for this Ship to info object.
    The logic is:
    we need to take  the sales doc number from vbak for order type = 'X' sales org = 'Y ' and Dist channel - 'Z'.
    sales doc item number from vbap.
    To get the partner function text we need to give the vbeln (sales doc number) and parvw (partner function ) in the table vbpa.
    now take the ADRNR field which is the address field from vbpa and pass this field in table ADRC and try to pull the names from ADRC table.
    i tried to write this logic using Function module, but i am not sure where iam wrong . please let me know the changes i should do .
    FUNCTION zbw_shipto_partfunc.
    ""Local interface:
    *"  IMPORTING
    *"     VALUE(I_REQUNR) TYPE  SRSC_S_IF_SIMPLE-REQUNR
    *"     VALUE(I_DSOURCE) TYPE  SRSC_S_IF_SIMPLE-DSOURCE OPTIONAL
    *"     VALUE(I_MAXSIZE) TYPE  SRSC_S_IF_SIMPLE-MAXSIZE OPTIONAL
    *"     VALUE(I_INITFLAG) TYPE  SRSC_S_IF_SIMPLE-INITFLAG OPTIONAL
    *"     VALUE(I_READ_ONLY) TYPE  SRSC_S_IF_SIMPLE-READONLY OPTIONAL
    *"  TABLES
    *"      I_T_SELECT TYPE  SRSC_S_IF_SIMPLE-T_SELECT OPTIONAL
    *"      I_T_FIELDS TYPE  SRSC_S_IF_SIMPLE-T_FIELDS OPTIONAL
    *"      E_T_DATA STRUCTURE  XYZ OPTIONAL
    *"  EXCEPTIONS
    *"      NO_MORE_DATA
    *"      ERROR_PASSED_TO_MESS_HANDLER
    FUNCTION MODULE FOR SHIP TO PARTNER FUNCTION
      TABLES: vbak,vbap,vbpa,adrc.
      DATA: l_s_select TYPE srsc_s_select.
      STATICS: s_s_if TYPE srsc_s_if_simple,
    counter
      s_counter_datapakid LIKE sy-tabix,
    cursor
      s_cursor TYPE cursor.
    ranges: l_r_vbeln    for Vbpa-vbeln,
              l_r_posnr    for Vbpa-posnr.
      DATA: BEGIN OF t_vbak OCCURS 0,
             vbeln LIKE vbak-vbeln,
             END OF t_vbak.
      DATA: BEGIN OF t_vbap OCCURS 0,
            vbeln LIKE vbap-vbeln,
            posnr LIKE vbap-posnr,
            END OF t_vbap.
      DATA: BEGIN OF t_vbpa OCCURS 0,
            vbeln LIKE vbpa-vbeln,
            posnr LIKE vbpa-posnr,
            parvw LIKE vbpa-parvw,
            adrnr LIKE vbpa-adrnr,
            END OF t_vbpa.
      DATA: BEGIN OF t_adrc OCCURS 0,
           addrnumber LIKE adrc-addrnumber,
           name1 LIKE adrc-name1,
           name2 LIKE adrc-name2,
           name3 LIKE adrc-name3,
           name4 LIKE adrc-name4,
           END OF t_adrc.
      IF i_initflag = sbiwa_c_flag_on.
        CASE i_dsource.
          WHEN  'ZBW_SHIPTO_NAME'.
          WHEN OTHERS.
            IF 1 = 2. MESSAGE e009(r3). ENDIF.
    this is a typical log call. Please write every error message like this
            log_write 'E'                  "message type
                      'R3'                 "message class
                      '009'                "message number
                      i_dsource   "message variable 1
                      ' '.                 "message variable 2
            RAISE error_passed_to_mess_handler.
        ENDCASE.
        APPEND LINES OF i_t_select TO s_s_if-t_select.
    Fill parameter buffer for data extraction calls
        s_s_if-requnr    = i_requnr.
        s_s_if-dsource = i_dsource.
        s_s_if-maxsize   = i_maxsize.
    Fill field list table for an optimized select statement
    (in case that there is no 1:1 relation between InfoSource fields
    and database table fields this may be far from beeing trivial)
        APPEND LINES OF i_t_fields TO s_s_if-t_fields.
      ELSE.                 "Initialization mode or data extraction ?
        IF s_counter_datapakid = 0.
          LOOP AT s_s_if-t_select INTO l_s_select WHERE fieldnm = 'vbeln'.
            MOVE-CORRESPONDING l_s_select TO l_r_vbeln.
            APPEND l_r_vbeln.
          ENDLOOP.
          LOOP AT s_s_if-t_select INTO l_s_select WHERE fieldnm = 'posnr'.
            MOVE-CORRESPONDING l_s_select TO l_r_posnr.
            APPEND l_r_posnr.
          ENDLOOP.
      OPEN CURSOR WITH HOLD s_cursor FOR
      SELECT vbeln
           FROM vbak     WHERE vbeln in l_r_vbeln
                           and
                         auart EQ 'X' AND
                       vkorg EQ 'Y' AND
                       vtweg EQ 'Z'.
    SELECT vbeln
           FROM vbak   into table T_Vbak WHERE vbeln in l_r_vbeln
                           and
                         auart EQ 'X' AND
                       vkorg EQ 'Y' AND
                       vtweg EQ 'Z'.
          SELECT vbeln
                       posnr
               FROM vbap INTO TABLE t_vbap
               FOR ALL ENTRIES IN t_vbak
                                   WHERE  vbeln EQ t_vbak-vbeln.
             SELECT vbeln
                       posnr
                       parvw
                       adrnr FROM vbpa
                  INTO TABLE t_vbpa
                                   FOR ALL ENTRIES IN t_vbap
                                   WHERE vbeln EQ T_vbap-vbeln
                                    and
                                   parvw EQ 'ABC'.
          FETCH NEXT CURSOR S_CURSOR
                   APPENDING CORRESPONDING FIELDS
                   OF TABLE E_T_DATA
                   PACKAGE SIZE S_S_IF-MAXSIZE.
        IF SY-SUBRC <> 0.
          CLOSE CURSOR S_CURSOR.
          RAISE NO_MORE_DATA.
        ENDIF.
        S_COUNTER_DATAPAKID = S_COUNTER_DATAPAKID + 1.
      ENDIF.              "Initialization mode or data extraction ?
          LOOP AT t_vbpa.
            READ TABLE t_vbpa WITH KEY vbeln = t_vbap-vbeln
                                     posnr = t_vbap-posnr
                                     BINARY SEARCH.
            IF sy-subrc EQ 0.
            ELSE.
              READ TABLE t_vbpa WITH KEY vbeln = t_vbap-vbeln BINARY SEARCH.
            ENDIF.
    ENDLOOP.
              IF sy-subrc EQ 0.
                SELECT SINGLE addrnumber NAME1 NAME2 NAME3 NAME4 FROM adrc
    into T_ADRC
                 WHERE addrnumber EQ t_vbpa-adrnr.
                    ENDIF.
          ENDIF.
           loop at t_ADRC.
           Clear E_t_data.
          e_t_data-ADDRNUMBER = T_ADRC-ADDRNUMBER.
          e_t_data-NAME1 = T_ADRC-NAME1.
          e_t_data-NAME2 = T_ADRC-NAME2.
          e_t_data-NAME3 = T_ADRC-NAME3.
          e_t_data-NAME4 = T_ADRC-NAME4.
          move-corresponding T_ADRC to e_t_data.
          append e_t_data.
        endloop.
    ENDFUNCTION.
    when i check this in RSA3 i am not getting any records.please let me know what changes should i do in the code.
    My data structure in R/3 contains these fields
    ADDRNUMBER
    NAME1
    NAME2
    NAME3
    NAME4.
    should i change and add any other fields for this.

    Hello Pratik,
    Firstly, there are multiple Function Modules to create BP in CRM.
    BAPI_BUPA_CREATE_FROM_DATA seems to be the simplest one to me to create BP.
    In order to insert long text, you can refer to following sample code:
    DATA: notes type string,
                lt_lines TYPE comt_text_lines_t,
                ls_header              TYPE thead,
                ls_longtexts           LIKE LINE OF lt_longtexts.
        CALL FUNCTION 'CONV_TEXTSTRING_TO_ITF'
          EXPORTING
            iv_textstring = notes
          IMPORTING
            et_itf        = lt_lines.
        ls_header-tdid     = 'Z001'.           " This will be the long text ID defined in the Text Determination Procedure for BP
        ls_header-tdspras  = 'EN'.
        ls_header-tdname   = partner_no.
        ls_header-tdobject = 'BUT000'.
        ls_longtexts-data-lines = lt_lines.
        CALL FUNCTION 'SAVE_TEXT'
          EXPORTING
            header          = ls_header
            insert          = 'I'
            savemode_direct = 'X'
          TABLES
            lines           = ls_longtexts-data-lines
          EXCEPTIONS
            id              = 1
            language        = 2
            name            = 3
            object          = 4
            OTHERS          = 5.
        IF sy-subrc = 0.
          CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
            EXPORTING
              wait = 'X'.
        ENDIF.
    Hope this helps.
    Thanks
    Vishal

  • How to delete General Text version

    Hi experts,
    I created a general text, and there are three version for it, two raw version 001 and 003, one active version 002. now i want to delete active version 002 and raw version 003. in my requirement, i can not delete the general text, then create a new one.
    So is there any FMs to delete or retrieve to the old version?
    Thanks for your help.

    i got it, thanks

  • General text field in invoice register

    Hi,
    Can anybody plz tell me how to fetch general text field from
    vf03 transaction in SD. i am not able to find out its field name and table name.
    vf03 --> goto --> header ---> header text.
    regards
    Fozia

    Hi,
    Check this sample code:
    REPORT ZEXAMPLE.
    TABLES: TTXID, ITCPO.
    DATA: LANGUAGE      LIKE  T002-SPRAS VALUE 'E',
          ACTION        LIKE  TTXCT-FUNCTION,
          TEXTTITLE     LIKE TTXIT-TDTEXT.
    DATA BEGIN OF TEXTHEADER.
            INCLUDE STRUCTURE THEAD.
    DATA END OF TEXTHEADER.
    DATA BEGIN OF TEXTLINES OCCURS 0.
            INCLUDE STRUCTURE TLINE.
    DATA END OF TEXTLINES.
    CREATE A ONE-LINE TEXT ELEMENT
    PARAMETERS: P_OBJ  LIKE TTXID-TDOBJECT DEFAULT 'DOKU' OBLIGATORY,
                P_ID   LIKE TTXID-TDID DEFAULT 'TB' OBLIGATORY,
                P_NAME LIKE STXH-TDNAME DEFAULT 'MARA' OBLIGATORY.
    PARAMETERS: P_LINE LIKE TLINE-TDLINE,
                P_PRNFMT LIKE THEAD-TDTEXTTYPE,
                P_DEL  AS CHECKBOX.
    CLEAR: TEXTLINES, TEXTLINES[].
    TEXTLINES-TDLINE = P_LINE.
    APPEND TEXTLINES.
    SELECT SINGLE * FROM TTXID WHERE TDOBJECT EQ P_OBJ
                                 AND TDID EQ P_ID.
    IF SY-SUBRC EQ 0.
      CALL FUNCTION 'READ_TEXT'
           EXPORTING
                ID       = P_ID
                LANGUAGE = LANGUAGE
                NAME     = P_NAME
                OBJECT   = P_OBJ
           IMPORTING
                HEADER   = TEXTHEADER
           TABLES
                LINES    = TEXTLINES
           EXCEPTIONS
                OTHERS   = 1.
      IF SY-SUBRC = 0.
        MOVE 'LOCL' TO ITCPO-TDDEST.
        MOVE 1 TO ITCPO-TDCOPIES.
        IF P_PRNFMT = 'ITF'.
          CALL FUNCTION 'PRINT_TEXT_ITF'
               EXPORTING
                    HEADER  = TEXTHEADER
                    OPTIONS = ITCPO
               TABLES
                    LINES   = TEXTLINES.
        ELSE.
          CALL FUNCTION 'PRINT_TEXT'
               EXPORTING
                    HEADER  = TEXTHEADER
                    OPTIONS = ITCPO
               TABLES
                    LINES   = TEXTLINES
               EXCEPTIONS
                    OTHERS  = 1.
        ENDIF.
        IF SY-SUBRC EQ 0.
          CALL FUNCTION 'INIT_TEXT'
               EXPORTING
                    ID       = P_ID
                    LANGUAGE = LANGUAGE
                    NAME     = P_NAME
                    OBJECT   = P_OBJ
               IMPORTING
                    HEADER   = TEXTHEADER
               TABLES
                    LINES    = TEXTLINES.
          CALL FUNCTION 'EDIT_TEXT'
               EXPORTING
                    EDITOR_TITLE = TEXTTITLE
                    HEADER       = TEXTHEADER
                    SAVE         = SPACE
               IMPORTING
                    FUNCTION     = ACTION
                    NEWHEADER    = TEXTHEADER
               TABLES
                    LINES        = TEXTLINES.
          CALL FUNCTION 'CREATE_TEXT'
               EXPORTING
                    FID       = P_ID
                    FLANGUAGE = LANGUAGE
                    FNAME     = P_NAME
                    FOBJECT   = P_OBJ
               TABLES
                    FLINES    = TEXTLINES
               EXCEPTIONS
                    NO_INIT   = 1
                    NO_SAVE   = 2
                    OTHERS    = 3.
          IF SY-SUBRC EQ 0.
            CALL FUNCTION 'SAVE_TEXT'
                 EXPORTING
                      HEADER    = TEXTHEADER
                 IMPORTING
                      NEWHEADER = TEXTHEADER
                 TABLES
                      LINES     = TEXTLINES.
            CALL FUNCTION 'COMMIT_TEXT'
                 EXPORTING
                      OBJECT   = P_OBJ
                      NAME     = P_NAME
                      ID       = P_ID
                      LANGUAGE = LANGUAGE.
          ELSE.
            IF P_DEL EQ 'X'.
              CALL FUNCTION 'DELETE_TEXT'
                   EXPORTING
                        OBJECT   = P_OBJ
                        ID       = P_ID
                        NAME     = P_NAME
                        LANGUAGE = LANGUAGE.
              WRITE:/ P_OBJ, 'DELETED'.
            ELSE.
              WRITE:/ P_OBJ, 'EXISTS'.
            ENDIF.
          ENDIF.
        ENDIF.
      ENDIF.
    ENDIF.
    Values for     ID ,  NAME  ,OBJECT  can be founf by displaying the document in change mode then goto the header texts..select the text and then double click the editor it will goto sapscript editor from there Goto->Header..in the popup screen u will get all the info.
    Regards,
    Joy.

  • SAP CRM Se61 - General text - Link - Format Character disable.

    Hi,
    I have enabled text in sap gui log on screen ( where we enter user id and password). Here i have a URL which i need to make as a link, wright now its like a character not a link, can any one help me how to make this as link.. in the sap gui log on scree..
    Iam trying to do this via.. Se61-general text- Zlogin.....
    Thanks,
    Arun

    I dont think SE61 will help.. rather you will have to change the screen element properties on the SAP GUI screen where you want this link.
    Regards
    Priyanka

  • General text translation - SE61

    Experts,
    I have a requirement where i need to create a general text in SE61 and need to have a french translation as well.
    I have created text in EN. Now i tried to go with SE16>Utilities>Translation. But it doesn't take me to the right option where i can give french text. Can anyone please help me?
    Regards,
    Fasi

    In SE63 you have to choose translation->ABAP -> Long texts-> F1 Help or Technical long text for the same
    Nabheet

  • General Text translation problem

    Hi SDN,
    I have created general text through SE61 in English laguage, now i am trying to translate it into German language in SE63.
    Please let me know how to translate it through SE63.
    Regards,
    Rahul Wagh

    Hi All,
    I found out the solution & i am marking this thread as answered.
    Solution is:
    In SE63 goto translation-> ABAP Objects> Long text > from tree select L5 F1 Help> TX   General Texts
    Here Source & Target languages need to be specified & it will work fine.
    Regards,
    Rahul Wagh

  • Smartform and SE61 General Texts - Still no answer!!!

    Hi,
    This is in regards to General Texts created in SE61.
    In the smartform, is creating a text as include text the only way to extract data from the SE61 general text object?
    Is there a FM available to do this or is the above method the only possibility?
    Please help.
    Thanks,
    John
    Edited by: John Damion on Feb 19, 2008 12:41 AM

    Hi John,
    you need to use INCLUDE TEXT only.
    Regards,
    Atish

  • Please send the algorithm and project code for temperature sensing using daq usbdux fast if possible code also for general text gui icon programming.

    I have a daq card usb dux fast and I'm using linux zenwalk,
    so please if any one has done a program on daq using comedi language or any language or any other related to it.
    please send me the code and algorithm for it.
    if possible a algorithm and code for general gui text icon programming to [email protected]
    thanking you,

    Hi Vinay,
    you know you're posting in a LabVIEW forum?
    When you have questions on Comedi you should post in a Comedi-related forum!
    Or read some papers/manuals like this, easily found by Google...
    Best regards,
    GerdW
    CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
    Kudos are welcome

  • Difference between Business Partner (General) and Contract Partner

    Hi,
    How is a business partner different from a contract partner with respect to IS-U?
    Thanks
    C

    General Business Partner:
          The general business partner is only stored for information purpose.
    Contract Partner
         A contract partner is linked to the company through contract accounts and contracts. This makes  
         you to possible to allocate contract account to a business partner and bill for services if the 
         business partner was created with the role contract partner.
    Please Allot points if it helps
    Please let me know if you need any more clarifications on this.
    Regards,
    Shiva Kumar

  • Partner's texts not delivered

    Yesterday, my iPhone quit receiving messages from my partners phone. We are on the same account. The messages were picked up by my iPad, in the same physical space. Other people are getting her texts, and I am getting everyone else's texts. Help?
    Also, is there another more direct way to get this question answered? Like, by a live person, or in real time?
    Thank you for your attention.

    Strangely, the messages were showing up on my iPad, but not my iPhone. We both were able to send and receive texts to everybody else on our contact list without any problem. I saw that someone else posting to this forum had a similar issue. The problem resolved on its own, or I would've had to go elsewhere to try to solve the problem.
    You might want to let people know that there is a 24 hour + turnaround on responses to these forums.
    Thank you.

  • Business Partner General Role is not display.

    Dear experts,
    I need configure for an user by pfcg role can Create/Display/Change BP role type BUP002. This user create a BP (BP General role) but did not assign BP role BUP002 for thí BP. Then, this user can not search the BP (BP General role) that he created before. So, can anyone help me how to make an user display all BP General Role?
    Thanks and Regards!
    Longnd.

    Thanks all for your replies,
    Hi Shwhetha, My problem is resolved following your instruction.
    Hi Denis, i have read this note, but i am a programmer so it is not detail for me and i don not know what must i do following it. Can you show me how can configure to fix a value for assignment when i create a BP?
    Thanks and regards!
    Longnd.

  • Are SMS forwarding/Editing and Text Copy Paste functions supported in Firefox OS?

    Could not find any options to forward SMS or edit text messages, neither could find any options to copy paste general text. Most importantly, in the number dial pad, the cursor can't be moved to the desired location to add digits. Am I wrong? If so how do I go about these things?

    Hello,
    Thanks for reaching out to us! Unfortunately it is not possible to forward SMS messages. I'm not sure what you mean by editing text messages. As well as, could you elaborate on what you are looking for to be done with the dial pad?

Maybe you are looking for

  • Exporting data from DB to a XML file (in InDesign CS3)

    Hi folks, I receive my data from a call to a database in InDesign, then I need to save them in XML file in my local drive, I use Mac OS X but I want to use the same code (as much as possible) shared with the same version of plugin on Windows. I also

  • Terminalserver Session Broker not reconnecting to existing session

    Hi! Following scenario: Terminalserver-Farm 2x RemoteDesktopServer (Windows Server 2008R2) 1x TS Session Broker (Windows Server 2008) A user connects to TS-Farm -> occasionally it happens that he is redirected to (for example) TS2, even if he has an

  • Creative Cloud Photoshop Won't Open...???

    Getting an error message: Could not initialize Photoshop because of a program error.  Is there any way to reload the program?  Any ideas?

  • Issue with date profile

    Dear All, I have one issue related to date profile which is like this,i have created a date profile and i have assigned this date profile to both Tansaction type & Item category of TA(standard order). But the assigned date profile(date rules) is not

  • Cl_gui_frontend_services= directory_list_files issue

    Hi, Iu2019m using cl_gui_frontend_services=>directory_list_files to retrieve creation date form files in my PC. Iu2019m having 3 hours difference between the creation date in the properties visualized by the SO and the values returned by this method.