Is any relation between tables bbp_pdatt with any of the item table

Hi all,
I have created shopping cart with 2 line items and each line item is having 2 attachments.
Now I am having the attachment data in table bbp_pdatt .and we have item data also.
I could not get the line item number or data in table bbp_pdatt.In table bbp_pdatt only attachment data exist.
I want to know for which line item the attachment belongs to.
Please tell me if there is any table having the attachment data as well as item data.in single table.
Thanks,
Prashanth.

Hello ,
You can establish the link as follows:
Read CRMD_LINK table with  GUID_HI  = 'Item Guid'  AND
                                             OBJTYPE_SET '33'
The above will give you the result set which contains  set guids (GUID_SET) values for attachment. This value can be joined with the (SET_GUID) of the BBP_PDATT table.
This will give you the attachments for the Shopping cart at item level.
Best Regards,
Sapna.

Similar Messages

  • Is there any relation between oinv,inv1,owhs,oadm..

    hi.
    i am developing on layout in crystal report..
    oinv,inv1,owhs, are  i am including..
    i put parameter is DocEntry..based on this one data is comming.
    my question is can i add one more table oadm.....
    is there any relation between these four table..
    I need your valuable suggestions..

    Hi Sriniva,
    As per your requirement,
    use below query to execute.
    SELECT * FROM OINV
    T0  INNER JOIN INV1 T1 ON
    T0.DocEntry = T1.DocEntry
    INNER JOIN OWHS T2 ON
    T0.Filler = T2.WhsCode,
    OADM T3
    WHERE T0.[DocEntry] = '123'
    Note : Just replace '123' with your DocEntry Number
    Thanks & Regards,
    Nishit Makadia

  • Is there any relation between feilds " reason, code, code group , sub pro

    is there any relation between " reason , code , code group , subject profile'
    Actually i have make "reason" feild has default value ..
    i have to do by RFC .
    Cany any body plz reply from where i have to pick this reason feild and set reason feild has default value has " not started "
    thanks,
    aravind.

    Hi,
    Subject profiles are used in different areas like
    Service
    Complaint
    Activity reason(Used in all documents like sales,service order)
    There is a relationship between Codes, Code groups, code group profiles, Catologs, Subject profiles.
    Do not confuse 'Reason' with 'Code' or 'Subject'(Not subject profile), all are same. In different contexts you call them with different names.
    1. In IMG while creating codes you use the name "Code".
    2. While entering details about activity in any business transaction you call it as a "Reason"
    3. While entering the defect of the problem in Service or complaint doc. you use the name "Subject"
    In all above cases it is equivalent to name "CODE' which you define in IMG.
    Now coming to relationship of above mentioned entities, in any business transaction type customization you can select "business activity" as additional business transaction category. At the customizing header level of this bus. tran. category you are allowed to enter a "Subject profile" which controls your "Reason" field in the business transaction.
    In a similar way for service or complaint order you are allowed to enter a "Subject profile" for entering "Subject" in respective transactions.
    Each subject profile is assigned to Subject profile category like Service, Complaint, Activity reason etc.,
    1. First define catalogs
    2. For each  catalog define code groups and codes( Code, subject, reason mentioned earler)
    3. Create 'Code group profile' for each catalog and assign assign 'code groups' that are relevant for coreesponding catalog to 'code group profile'
    4. Now finally create a "Subject profile" which is the combination of "Catalog and code group profile"
    I think this would clarify your doubt.
    Coming to default value in this reason field, the standard system will not support this. You sholud use some Badi to get this.
    Reward points if it helps.
    Murali

  • Is There any Relation Between PCD and SSO

    Hi,
      Is there any relation between PCD and SSO, why because if i am try to connect from portal to R/3 in the user mapping i got one error i.e some pcd error.
    pls tell me how to rectify that.
    Regards,
    Jagadish Babu Kanikanti.

    Hi Jagadish
    The PCD is only a central persistance for storing Portal objects. There is no such relation between PCD and SSO that could create a problem. You can however check for the PCD error in this manner.
    1. In the system administration role, choose System Administration -> Support. The Support Desk appears.
    2. Select the area Portal Content Directory.
    3. Click on PCD Configuration in the test and configuration tools. The next screen shows all the parameter values currently maintained for the PCD.
    4. To reload the configuration, choose Reload.
    Hope that helped.
    Best Regards
    Priya

  • I goy my Ipad disable, is there any way to unblock it with no restore the system?

    I got my Ipad2 disable, i dont know why it dont recognized the passcode I set up on it.  Is there any way to unbloqued it with no restore the system?

    If you don't know the passcode, you'll have to restore your iPad from the computer to which it was last synched to remove the passcode.  If you don't have that computer, you'll have to restore the iPad as new, and you will lose all your data.

  • Export the data with Alias from the alternative table using ODI

    Hi!
    How to export the data from Essbase with Alias from the alternative table using ODI?
    Thanks.

    Are you on 10.1.3.6.x? Then: http://john-goodwin.blogspot.com/2008/09/odi-series-part-2-agent.html
    Are you on 11g? Then: http://john-goodwin.blogspot.com/2010/12/managing-odi-11g-standalone-agents.html
    I will say with only a mild amount of shame and a large amount of gratitude that I installed both releases' agents through John's blog posts.
    Regards,
    Cameron Lackpour
    Edited by: CL on Jun 4, 2012 5:48 PM
    Whoops, had the same link in there twice.

  • Identify the Cubes where dimension table size exactly 100% of the fact tabl

    Hello,
    We want to Identify the Cubes where dimension table size exactly 100%  of the fact table.
    Is there any table or standard query which can give me this data?
    Regards,
    Shital

    use report (se38) SAP_INFOCUBE_DESIGNS
    M.

  • Deleting a row from the item table

    Hi All,
    I have a requirement where I need to put a button to delete the selected row from the item table and for this I have written the following code:
    DATA lo_nd_t_bseg TYPE REF TO if_wd_context_node.
        DATA lo_el_t_bseg TYPE REF TO if_wd_context_element.
        DATA ls_t_bseg TYPE wd_this->element_t_bseg.
        data: it_tab type table of wd_this->element_t_bseg.
      lo_nd_t_bseg = wd_context->path_get_node( path = `Z.T_BSEG` ).
      lo_el_t_bseg = lo_nd_t_bseg->get_element( ).
      lo_el_t_bseg->get_static_attributes(
        IMPORTING
          static_attributes = ls_t_bseg ).
        lo_nd_t_bseg = wd_context->path_get_node( path = `Z.T_BSEG` ).
        lo_el_t_bseg = lo_nd_t_bseg->get_element( ).
        IF lo_el_t_bseg IS not INITIAL.
          lo_nd_t_bseg->remove_element( lo_el_t_bseg ).
        ENDIF.
    Now the problem is although it's deleteing the selected line correctly but because of this I am losing one line on the screen for the user to enter... my form has a fixed number of lines and in my case it's 10... so everytime I am using deleting a line item I am losing one line to enter..... can you please tell me how can I avoid this?
    Edited by: rajatg on Aug 4, 2011 3:12 PM

    lets say...
    i have 1,2,3 documents
    i have cleared , document 2....
    1. when the user selects this record.... you can read the context_element....using the context element you can get the values and clear those values and set the blank values...
    when the user click on save ...you can have only those two records in the table.
    2. conitnue with your logic .... remove_element. once it is done ,,, create_element at the deleted index...
    3. when clicked on delete ...remove_element ( current code).... bind the table to the node... and you will have ur values

  • Is any relation between customerNo and Plant in R/3

    hi,
    <b>in bapi_salesorder_cretefromdat2 i can get netprice by giving import parameters like customerNo,salesArea,material, etc.......That means customer should be assinged to a plant(one sales area can have many plants( material price can vary from plant to plant) .pls give me clear picture on how net price is calculated in bapi_salesorder_createfromdat2</b>.
    regards
    Guru

    There is a relation between customer and plant in the KNA1 General Data in Customer Master table.
    kna1-kunnr
    kna1-werks.
    Kindly reward the points

  • Any relation between my ram card cover and my screen?

    if i touch my ram card cover (while the computer is running) the screen flickers, gets fuzzy and has lines running up and down it. is there a relation between the two?

    The prices indicated on both links are the same. However, the answer to your question is that all MacBooks, MacBook Pros, Intel Minis, and Intel iMacs all use the same type and spec RAM. You will find the appropriate information in the computer's User Guide. It's also described in the Apple guide on how to install the RAM.
    Why reward points?(Quoted from Discussions Terms of Use.)
    The reward system helps to increase community participation. When a community member gives you (or another member) a reward for providing helpful advice or a solution to their question, your accumulated points will increase your status level within the community.
    Members may reward you with 5 points if they deem that your reply is helpful and 10 points if you post a solution to their issue. Likewise, when you mark a reply as Helpful or Solved in your own created topic, you will be awarding the respondent with the same point values.

  • Any relation between indexes and high cardinality.............

    HI,
      what is difference b/w index and high cardinality?
       and also difference b/w index and line item dimension?
    Thanks

    Hi,
    High Cardinality:
    Please Refer this link, especially the post from PB:
    line item dimension and high cardinality?
    Line Item Dimension:
    Please go through this link from SAP help for line item dimension
    http://help.sap.com/saphelp_nw04/helpdata/en/a7/d50f395fc8cb7fe10000000a11402f/content.htm
    Also in this thread the topic has been discussed
    Re: Line Item Dimension
    BI Index:
    There are two types of indexes in BW on Oracle, bitmap and b-tree
    Bitmap indexes are created by default on each dimension column of a fact table
    Setting the high cardinality flag for dimension usually affects query performance if the dimension is used in a query.
    You can change the bitmap index on the fact table dimension column to a b-tree index by setting the high cardinality flag. For this purpose it is not necessary
    to delete the data from the InfoCube
    Refer:
    Re: Bitmap vs BTree
    How to create B-Tree and Bitmap index in SAP
    Re: Cardinality
    Line Item Dimesnion
    Hope it helps...
    Cheers,
    Habeeb

  • Is thr any Functionality to Pull Resumes with any Strategy?

    Hi Experts,
                I have a Query  We have uploaded CV'S in SAP If we Search with any Function Name the CV of Corresponding Staff Should get pulled is there any Possibilities of Functionality to pull the Resumes With the Keywords
    Eg. If we Search for MBA or any Qualification the profiles of that category should get pulled is that Possible
    Expecting the Valuable Support
    Please help me
    Thanks & Regards
    Khaiser

    Hi Experts,
               Is My Question not understood by Gurus Please leave a Suggestions  experts pls guide me on this
    Regards
    Khaiser

  • Cant open any attachment or downloaded file with any office 365 for small bussines

    I cant open any e-mail attachment or downloaded file of any kind with any application in office 365 for small bussines. Since I need it for bussiness need help NOW. Thank you.

    Hi,
    Did you get any error message when you tried opening or downloading the attachment?
    Are you viewing attachments in Outlook Web App or Outlook desktop client? If you were using OWA when this issue happened, please have a look at this KB article and see if it applies:
    https://support.microsoft.com/kb/2852113
    Since this forum focus more on Office desktop client side questions, if it's an OWA issue in Office 365, I'd recommended you post a question in the Office 365 Community forum:
    http://community.office365.com/en-us/f/default.aspx
    The reason why we recommend posting appropriately is you will get the most
    qualifiedpool
    of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us.
    If I've misunderstood something, please feel free to let me know.
    Regards,
    Steve Fan
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Custom sort pivot table columns with Essbase as the data source

    Is it possible to sort columns in a pivot table according to an arbitrary value that I define when the data is coming from Essbase?
    For example, say I have a dimension called Soda, with values Coke, Diet Coke, Dr. Pepper and Diet Dr. Pepper. I create a report with a sales measure with the measure labels on the rows and the Soda dimension on the column. By default the columns will be sorted alphabetically:
    Coke Diet Coke Diet Dr. Pepper Dr. Pepper
    Sales 1M .5M .75M 1.25M
    I want to create a report that looks like this:
    Coke Diet Coke Diet Dr. Pepper Dr. Pepper
    Sales
    I think I could do this if the source was relational just by creating bins or creating a custom column with a case statement that assigns each Soda an arbitrary value and then sort on this value. Everything I've tried with Essbase as the source, though, results in:
    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 42043] An external aggregate is found in an outer query block. (HY000)
    Any ideas?

    Hi,
    1. You can try solve the 'An external aggregate is found in an outer query block' by changing aggregation rule for your measure both in physical and business layer.
    By default it's set to Aggr_External - change it to Sum
    In physical : Column properties->Aggregation rule
    In business model : Column properties->Aggregation tab -> Default aggregation rule.
    This may change the result - after changing check whether you still get correct values.
    2. Also, in case the desired order is the same as the order of members in the Essbase cube, and you want to leave Aggr_External, you can create a calculated column that will help you with the sort.
    See http://oraclebizint.wordpress.com/2008/04/28/oracle-bi-ee-101332-handling-sort-order-in-hyperion-essbase-931-evaluate-and-mdx/
    Hope this helps,
    Alex

  • Represinting my data and relations between records in diagram " not by the hierarchic

    hi all ,
    if there is a group of people in one table and the other table contains another group of people, and there is a relation between those groups, how to create a form or a report representing diagram for this relation. This diagram should be dynamic, when we change in the records of these people.
    Which tool can I use instad of "creating a hierarchical tree" ?
    Is there anyone who could help me? My email address is
    [email protected]
    or [email protected]

    Check out Graphics Builder, which you can incorporate into forms.

Maybe you are looking for

  • Motion tween with transitions

    Im trying to create and effect where a picture will move across the stage and I have done this. I have also been able to create transitions with little problems. The effect that i am looking for is to combine both motion tween and fade in fade out ef

  • Case front connections ms6577ver2.1 Please

    I have a msi ms 6577 motherboard(ver2.1) Which will be the center of my first build computer. Could anyone please show me how to connect the tower case connections to the motherboard

  • Set classpath from java code

    Hi, Is it possible to set new classpath from java code? Something like System.setClasspath(String); Many thanks Miso

  • Top of website not showing

    Hi - My website does not show up in full in Mozilla. The top of the website which also includes some menu items is completely missing. The website was developed in Joomla 2.5. Website address is www.irishsevensummits.com

  • Photoshop cc keeps shutting down

    i just bought a package of photoshop and lightroom, the moment i start the photoshop program it shuts down... I am clueless... please help!